raymondEDS commited on
Commit
889b952
Β·
1 Parent(s): 31653a7

restructure

Browse files
Files changed (30) hide show
  1. {app/__pycache__ β†’ __pycache__}/main.cpython-311.pyc +0 -0
  2. __pycache__/main.cpython-312.pyc +0 -0
  3. app.py +1 -1
  4. app/.DS_Store +0 -0
  5. app/__init__.py +0 -1
  6. app/__pycache__/__init__.cpython-311.pyc +0 -0
  7. {app/components β†’ components}/__init__.py +0 -0
  8. {app/components β†’ components}/__pycache__/__init__.cpython-311.pyc +0 -0
  9. {app/components β†’ components}/__pycache__/login.cpython-311.pyc +0 -0
  10. {app/components β†’ components}/login.py +0 -0
  11. app/main.py β†’ main.py +11 -11
  12. {app/pages β†’ pages}/.DS_Store +0 -0
  13. {app/pages β†’ pages}/__pycache__/week_1.cpython-311.pyc +0 -0
  14. {app/pages β†’ pages}/__pycache__/week_2.cpython-311.pyc +0 -0
  15. {app/pages β†’ pages}/__pycache__/week_3.cpython-311.pyc +0 -0
  16. {app/pages β†’ pages}/__pycache__/week_4.cpython-311.pyc +0 -0
  17. {app/pages β†’ pages}/__pycache__/week_5.cpython-311.pyc +0 -0
  18. {app/pages β†’ pages}/__pycache__/week_6.cpython-311.pyc +0 -0
  19. {app/pages β†’ pages}/__pycache__/week_7.cpython-311.pyc +0 -0
  20. {app/pages β†’ pages}/__pycache__/week_8.cpython-311.pyc +0 -0
  21. pages/__pycache__/week_8.cpython-312.pyc +0 -0
  22. {app/pages β†’ pages}/week_1.py +0 -0
  23. {app/pages β†’ pages}/week_1_WIP.py +0 -0
  24. {app/pages β†’ pages}/week_2.py +0 -0
  25. {app/pages β†’ pages}/week_3.py +0 -0
  26. {app/pages β†’ pages}/week_4.py +0 -0
  27. {app/pages β†’ pages}/week_5.py +0 -0
  28. {app/pages β†’ pages}/week_6.py +0 -0
  29. {app/pages β†’ pages}/week_7.py +0 -0
  30. {app/pages β†’ pages}/week_8.py +0 -0
{app/__pycache__ β†’ __pycache__}/main.cpython-311.pyc RENAMED
Binary files a/app/__pycache__/main.cpython-311.pyc and b/__pycache__/main.cpython-311.pyc differ
 
__pycache__/main.cpython-312.pyc ADDED
Binary file (7.46 kB). View file
 
app.py CHANGED
@@ -6,7 +6,7 @@ import sys
6
  sys.path.append(os.path.dirname(os.path.abspath(__file__)))
7
 
8
  # Import the main app
9
- from app.main import main, sidebar_navigation, load_css
10
 
11
  if __name__ == "__main__":
12
  # Initialize session state
 
6
  sys.path.append(os.path.dirname(os.path.abspath(__file__)))
7
 
8
  # Import the main app
9
+ from main import main, sidebar_navigation, load_css
10
 
11
  if __name__ == "__main__":
12
  # Initialize session state
app/.DS_Store DELETED
Binary file (6.15 kB)
 
app/__init__.py DELETED
@@ -1 +0,0 @@
1
- # This file makes the app directory a Python package
 
 
app/__pycache__/__init__.cpython-311.pyc DELETED
Binary file (166 Bytes)
 
{app/components β†’ components}/__init__.py RENAMED
File without changes
{app/components β†’ components}/__pycache__/__init__.cpython-311.pyc RENAMED
File without changes
{app/components β†’ components}/__pycache__/login.cpython-311.pyc RENAMED
File without changes
{app/components β†’ components}/login.py RENAMED
File without changes
app/main.py β†’ main.py RENAMED
@@ -10,21 +10,21 @@ from nltk.corpus import stopwords
10
  from nltk.tokenize import word_tokenize, sent_tokenize
11
 
12
 
13
- # Add the parent directory to the Python path
14
- sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
15
 
16
  # Import the login component
17
- from app.components.login import login
18
 
19
  # Import week pages
20
- from app.pages import week_1
21
- from app.pages import week_2
22
- from app.pages import week_3
23
- from app.pages import week_4
24
- from app.pages import week_5
25
- from app.pages import week_6
26
- from app.pages import week_7
27
- from app.pages import week_8
28
  # Page configuration
29
  st.set_page_config(
30
  page_title="Data Science Course App",
 
10
  from nltk.tokenize import word_tokenize, sent_tokenize
11
 
12
 
13
+ # Add the current directory to the Python path
14
+ sys.path.append(os.path.dirname(os.path.abspath(__file__)))
15
 
16
  # Import the login component
17
+ from components.login import login
18
 
19
  # Import week pages
20
+ from pages import week_1
21
+ from pages import week_2
22
+ from pages import week_3
23
+ from pages import week_4
24
+ from pages import week_5
25
+ from pages import week_6
26
+ from pages import week_7
27
+ from pages import week_8
28
  # Page configuration
29
  st.set_page_config(
30
  page_title="Data Science Course App",
{app/pages β†’ pages}/.DS_Store RENAMED
File without changes
{app/pages β†’ pages}/__pycache__/week_1.cpython-311.pyc RENAMED
File without changes
{app/pages β†’ pages}/__pycache__/week_2.cpython-311.pyc RENAMED
File without changes
{app/pages β†’ pages}/__pycache__/week_3.cpython-311.pyc RENAMED
File without changes
{app/pages β†’ pages}/__pycache__/week_4.cpython-311.pyc RENAMED
File without changes
{app/pages β†’ pages}/__pycache__/week_5.cpython-311.pyc RENAMED
File without changes
{app/pages β†’ pages}/__pycache__/week_6.cpython-311.pyc RENAMED
File without changes
{app/pages β†’ pages}/__pycache__/week_7.cpython-311.pyc RENAMED
File without changes
{app/pages β†’ pages}/__pycache__/week_8.cpython-311.pyc RENAMED
Binary files a/app/pages/__pycache__/week_8.cpython-311.pyc and b/pages/__pycache__/week_8.cpython-311.pyc differ
 
pages/__pycache__/week_8.cpython-312.pyc ADDED
Binary file (26 kB). View file
 
{app/pages β†’ pages}/week_1.py RENAMED
File without changes
{app/pages β†’ pages}/week_1_WIP.py RENAMED
File without changes
{app/pages β†’ pages}/week_2.py RENAMED
File without changes
{app/pages β†’ pages}/week_3.py RENAMED
File without changes
{app/pages β†’ pages}/week_4.py RENAMED
File without changes
{app/pages β†’ pages}/week_5.py RENAMED
File without changes
{app/pages β†’ pages}/week_6.py RENAMED
File without changes
{app/pages β†’ pages}/week_7.py RENAMED
File without changes
{app/pages β†’ pages}/week_8.py RENAMED
File without changes