Skip to content

Commit a8d03b9

Browse files
committed
add dependecies
1 parent 30fd414 commit a8d03b9

File tree

3 files changed

+40
-1
lines changed

3 files changed

+40
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/__pycache__/
2+
/venv

Main.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
from fastapi import FastAPI
2+
3+
app = FastAPI()
4+
5+
@app.get("/")
6+
async def root():
7+
8+
return {
9+
"message": "hello world"
10+
}

requirements.txt

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,28 @@
1-
1+
anyio==3.6.2
2+
certifi==2022.12.7
3+
click==8.1.3
4+
dnspython==2.3.0
5+
email-validator==1.3.1
6+
fastapi==0.95.0
7+
h11==0.14.0
8+
httpcore==0.16.3
9+
httptools==0.5.0
10+
httpx==0.23.3
11+
idna==3.4
12+
itsdangerous==2.1.2
13+
Jinja2==3.1.2
14+
MarkupSafe==2.1.2
15+
orjson==3.8.9
16+
pydantic==1.10.7
17+
python-dotenv==1.0.0
18+
python-multipart==0.0.6
19+
PyYAML==6.0
20+
rfc3986==1.5.0
21+
sniffio==1.3.0
22+
starlette==0.26.1
23+
typing_extensions==4.5.0
24+
ujson==5.7.0
25+
uvicorn==0.21.1
26+
uvloop==0.17.0
27+
watchfiles==0.19.0
28+
websockets==11.0.1

0 commit comments

Comments
 (0)