Spaces:
Running
Running
raymondEDS
commited on
Commit
Β·
889b952
1
Parent(s):
31653a7
restructure
Browse files- {app/__pycache__ β __pycache__}/main.cpython-311.pyc +0 -0
- __pycache__/main.cpython-312.pyc +0 -0
- app.py +1 -1
- app/.DS_Store +0 -0
- app/__init__.py +0 -1
- app/__pycache__/__init__.cpython-311.pyc +0 -0
- {app/components β components}/__init__.py +0 -0
- {app/components β components}/__pycache__/__init__.cpython-311.pyc +0 -0
- {app/components β components}/__pycache__/login.cpython-311.pyc +0 -0
- {app/components β components}/login.py +0 -0
- app/main.py β main.py +11 -11
- {app/pages β pages}/.DS_Store +0 -0
- {app/pages β pages}/__pycache__/week_1.cpython-311.pyc +0 -0
- {app/pages β pages}/__pycache__/week_2.cpython-311.pyc +0 -0
- {app/pages β pages}/__pycache__/week_3.cpython-311.pyc +0 -0
- {app/pages β pages}/__pycache__/week_4.cpython-311.pyc +0 -0
- {app/pages β pages}/__pycache__/week_5.cpython-311.pyc +0 -0
- {app/pages β pages}/__pycache__/week_6.cpython-311.pyc +0 -0
- {app/pages β pages}/__pycache__/week_7.cpython-311.pyc +0 -0
- {app/pages β pages}/__pycache__/week_8.cpython-311.pyc +0 -0
- pages/__pycache__/week_8.cpython-312.pyc +0 -0
- {app/pages β pages}/week_1.py +0 -0
- {app/pages β pages}/week_1_WIP.py +0 -0
- {app/pages β pages}/week_2.py +0 -0
- {app/pages β pages}/week_3.py +0 -0
- {app/pages β pages}/week_4.py +0 -0
- {app/pages β pages}/week_5.py +0 -0
- {app/pages β pages}/week_6.py +0 -0
- {app/pages β pages}/week_7.py +0 -0
- {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
|
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
|
14 |
-
sys.path.append(os.path.dirname(os.path.
|
15 |
|
16 |
# Import the login component
|
17 |
-
from
|
18 |
|
19 |
# Import week pages
|
20 |
-
from
|
21 |
-
from
|
22 |
-
from
|
23 |
-
from
|
24 |
-
from
|
25 |
-
from
|
26 |
-
from
|
27 |
-
from
|
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
|