Skip to content

Commit 50a006d

Browse files
authored
Merge pull request #45 from SaboorNisha/new-todo-app
new version of TODO-APP
2 parents 32714f5 + 5eb4f34 commit 50a006d

38 files changed

+634
-0
lines changed

todo_project/db.sqlite3

132 KB
Binary file not shown.

todo_project/manage.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#!/usr/bin/env python
2+
"""Django's command-line utility for administrative tasks."""
3+
import os
4+
import sys
5+
6+
7+
def main():
8+
"""Run administrative tasks."""
9+
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'todo_project.settings')
10+
try:
11+
from django.core.management import execute_from_command_line
12+
except ImportError as exc:
13+
raise ImportError(
14+
"Couldn't import Django. Are you sure it's installed and "
15+
"available on your PYTHONPATH environment variable? Did you "
16+
"forget to activate a virtual environment?"
17+
) from exc
18+
execute_from_command_line(sys.argv)
19+
20+
21+
if __name__ == '__main__':
22+
main()

todo_project/requirements.txt

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
alembic==1.13.2
2+
asgiref==3.8.1
3+
blinker==1.8.1
4+
certifi==2024.8.30
5+
charset-normalizer==3.3.2
6+
click==8.1.7
7+
colorama==0.4.6
8+
comtypes==1.4.7
9+
distlib==0.3.8
10+
dj-database-url==2.3.0
11+
Django==5.0.4
12+
filelock==3.16.1
13+
Flask==3.0.3
14+
Flask-Login==0.6.3
15+
Flask-Migrate==4.0.7
16+
Flask-SQLAlchemy==3.1.1
17+
greenlet==3.0.3
18+
gunicorn==23.0.0
19+
idna==3.10
20+
itsdangerous==2.2.0
21+
Jinja2==3.1.3
22+
Mako==1.3.5
23+
MarkupSafe==2.1.5
24+
mysql-connector-python==9.0.0
25+
packaging==24.1
26+
pillow==10.4.0
27+
pipenv==2024.1.0
28+
platformdirs==4.3.6
29+
psycopg2-binary==2.9.10
30+
PyAudio==0.2.14
31+
pygame==2.6.0
32+
pypiwin32==223
33+
pyttsx3==2.97
34+
pywin32==306
35+
requests==2.32.3
36+
SpeechRecognition==3.10.4
37+
SQLAlchemy==2.0.31
38+
sqlparse==0.5.0
39+
typing_extensions==4.12.2
40+
tzdata==2024.1
41+
urllib3==2.2.3
42+
virtualenv==20.26.6
43+
Werkzeug==3.0.2
44+
whitenoise==6.8.2

todo_project/todo_app/__init__.py

Whitespace-only changes.
162 Bytes
Binary file not shown.
217 Bytes
Binary file not shown.
536 Bytes
Binary file not shown.
808 Bytes
Binary file not shown.
993 Bytes
Binary file not shown.
753 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)