Skip to content

Commit ddfb931

Browse files
committedSep 7, 2022
Initial commit
1 parent 0a44157 commit ddfb931

File tree

4 files changed

+134
-1
lines changed

4 files changed

+134
-1
lines changed
 

Diff for: ‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__pycache__/

Diff for: ‎README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
# codespaces-try-flask
1+
# codespaces-try-flask
2+
3+
```
4+
flask --debug run
5+
```

Diff for: ‎app.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from flask import Flask
2+
3+
app = Flask(__name__)
4+
5+
@app.route("/")
6+
def hello_world():
7+
return "<p>Hello, World!</p>"

Diff for: ‎requirements.txt

+121
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
absl-py==1.2.0
2+
anyio==3.6.1
3+
argon2-cffi==21.3.0
4+
argon2-cffi-bindings==21.2.0
5+
asttokens==2.0.8
6+
astunparse==1.6.3
7+
attrs==22.1.0
8+
Babel==2.10.3
9+
backcall==0.2.0
10+
beautifulsoup4==4.11.1
11+
bleach==5.0.1
12+
cachetools==5.2.0
13+
certifi==2022.6.15
14+
cffi==1.15.1
15+
charset-normalizer==2.1.1
16+
click==8.1.3
17+
cycler==0.11.0
18+
debugpy==1.6.3
19+
decorator==5.1.1
20+
defusedxml==0.7.1
21+
entrypoints==0.4
22+
executing==0.10.0
23+
fastjsonschema==2.16.1
24+
Flask==2.2.2
25+
flatbuffers==1.12
26+
fonttools==4.36.0
27+
gast==0.4.0
28+
google-auth==2.11.0
29+
google-auth-oauthlib==0.4.6
30+
google-pasta==0.2.0
31+
grpcio==1.47.0
32+
h5py==3.7.0
33+
idna==3.3
34+
ipykernel==6.15.1
35+
ipython==8.4.0
36+
ipython-genutils==0.2.0
37+
itsdangerous==2.1.2
38+
jedi==0.18.1
39+
Jinja2==3.1.2
40+
joblib==1.1.0
41+
json5==0.9.10
42+
jsonschema==4.14.0
43+
jupyter-client==7.3.4
44+
jupyter-core==4.11.1
45+
jupyter-server==1.18.1
46+
jupyterlab==3.4.5
47+
jupyterlab-pygments==0.2.2
48+
jupyterlab-server==2.15.0
49+
keras==2.9.0
50+
Keras-Preprocessing==1.1.2
51+
kiwisolver==1.4.4
52+
libclang==14.0.6
53+
lxml==4.9.1
54+
Markdown==3.4.1
55+
MarkupSafe==2.1.1
56+
matplotlib==3.5.3
57+
matplotlib-inline==0.1.6
58+
mistune==2.0.4
59+
nbclassic==0.4.3
60+
nbclient==0.6.6
61+
nbconvert==7.0.0
62+
nbformat==5.4.0
63+
nest-asyncio==1.5.5
64+
notebook==6.4.12
65+
notebook-shim==0.1.0
66+
numpy==1.23.2
67+
oauthlib==3.2.0
68+
opt-einsum==3.3.0
69+
packaging==21.3
70+
pandas==1.4.3
71+
pandocfilters==1.5.0
72+
parso==0.8.3
73+
pexpect==4.8.0
74+
pickleshare==0.7.5
75+
Pillow==9.2.0
76+
prometheus-client==0.14.1
77+
prompt-toolkit==3.0.30
78+
protobuf==3.19.4
79+
psutil==5.9.1
80+
ptyprocess==0.7.0
81+
pure-eval==0.2.2
82+
pyasn1==0.4.8
83+
pyasn1-modules==0.2.8
84+
pycparser==2.21
85+
Pygments==2.13.0
86+
pyparsing==3.0.9
87+
pyrsistent==0.18.1
88+
python-dateutil==2.8.2
89+
pytz==2022.2.1
90+
pyzmq==23.2.1
91+
requests==2.28.1
92+
requests-oauthlib==1.3.1
93+
rsa==4.9
94+
scikit-learn==1.1.2
95+
scipy==1.9.0
96+
seaborn==0.11.2
97+
Send2Trash==1.8.0
98+
six==1.16.0
99+
sniffio==1.2.0
100+
soupsieve==2.3.2.post1
101+
stack-data==0.4.0
102+
tensorboard==2.9.1
103+
tensorboard-data-server==0.6.1
104+
tensorboard-plugin-wit==1.8.1
105+
tensorflow==2.9.1
106+
tensorflow-estimator==2.9.0
107+
tensorflow-io-gcs-filesystem==0.26.0
108+
termcolor==1.1.0
109+
terminado==0.15.0
110+
threadpoolctl==3.1.0
111+
tinycss2==1.1.1
112+
torch==1.12.1
113+
tornado==6.2
114+
traitlets==5.3.0
115+
typing_extensions==4.3.0
116+
urllib3==1.26.12
117+
wcwidth==0.2.5
118+
webencodings==0.5.1
119+
websocket-client==1.3.3
120+
Werkzeug==2.2.2
121+
wrapt==1.14.1

0 commit comments

Comments
 (0)