Skip to content

Commit 883632b

Browse files
committed
switch the days 9-12 code and demo to match what is now in the course (fastapi)
1 parent c6f2fb2 commit 883632b

File tree

15 files changed

+95
-1265
lines changed

15 files changed

+95
-1265
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,3 +172,4 @@ days/013-016-css-basics/demos/selectorville/.idea/encodings.xml
172172
days/013-016-css-basics/demos/selectorville/.idea/selectorville.iml
173173
**.DS_Store
174174
days/041-044-react/**node_modules
175+
ruff.xml

.idea/100 days web course.iml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

days/001-004-flask-intro/code/demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
from program import app
1+
from program import app # noqa: F401
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from flask import Flask
2+
from program import routes # noqa: F401
23

34
app = Flask(__name__)
45

5-
from program import routes
6+
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
click
2+
Flask
3+
itsdangerous
4+
Jinja2
5+
MarkupSafe
6+
python-dotenv
7+
werkzeug
Lines changed: 33 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,33 @@
1-
click==6.7
2-
Flask==1.0.2
3-
itsdangerous==0.24
4-
Jinja2>=2.10.1
5-
MarkupSafe==1.0
6-
python-dotenv==0.9.1
7-
werkzeug>=0.15.3
1+
#
2+
# This file is autogenerated by pip-compile with Python 3.11
3+
# by the following command:
4+
#
5+
# pip-compile requirements.piptools
6+
#
7+
blinker==1.7.0
8+
# via flask
9+
click==8.1.7
10+
# via
11+
# -r requirements.piptools
12+
# flask
13+
flask==3.0.0
14+
# via -r requirements.piptools
15+
itsdangerous==2.1.2
16+
# via
17+
# -r requirements.piptools
18+
# flask
19+
jinja2==3.1.2
20+
# via
21+
# -r requirements.piptools
22+
# flask
23+
markupsafe==2.1.3
24+
# via
25+
# -r requirements.piptools
26+
# jinja2
27+
# werkzeug
28+
python-dotenv==1.0.0
29+
# via -r requirements.piptools
30+
werkzeug==3.0.1
31+
# via
32+
# -r requirements.piptools
33+
# flask

days/005-008-html5/demos/yahoo_clone/.idea/dictionaries/mkennedy.xml

Lines changed: 0 additions & 8 deletions
This file was deleted.

days/005-008-html5/demos/yahoo_clone/.idea/encodings.xml

Lines changed: 0 additions & 4 deletions
This file was deleted.

days/009-012-modern-apis-starred/demo/app.py

Lines changed: 0 additions & 85 deletions
This file was deleted.

days/009-012-modern-apis-starred/demo/cars.json

Lines changed: 0 additions & 1000 deletions
This file was deleted.

0 commit comments

Comments
 (0)