Inital commit
parent
0f85422575
commit
b75e72eca0
@ -1,5 +1,5 @@
|
|||||||
# fast_api
|
# Learn FastAPI
|
||||||
|
|
||||||
|
Simple CRUD app created with Fast-API following the Test Driven article:
|
||||||
|
|
||||||
Simple CRUD app created with Fast-API
|
|
||||||
|
|
||||||
https://testdriven.io/blog/fastapi-crud/
|
https://testdriven.io/blog/fastapi-crud/
|
@ -0,0 +1,5 @@
|
|||||||
|
black
|
||||||
|
flake8
|
||||||
|
pip-tools
|
||||||
|
pytest
|
||||||
|
requests
|
@ -0,0 +1,35 @@
|
|||||||
|
#
|
||||||
|
# This file is autogenerated by pip-compile
|
||||||
|
# To update, run:
|
||||||
|
#
|
||||||
|
# pip-compile dev_requirements.in
|
||||||
|
#
|
||||||
|
appdirs==1.4.3 # via black
|
||||||
|
attrs==19.3.0 # via black, pytest
|
||||||
|
black==19.10b0
|
||||||
|
certifi==2019.11.28 # via requests
|
||||||
|
chardet==3.0.4 # via requests
|
||||||
|
click==7.0 # via black, pip-tools
|
||||||
|
entrypoints==0.3 # via flake8
|
||||||
|
flake8==3.7.9
|
||||||
|
idna==2.8 # via requests
|
||||||
|
importlib-metadata==1.5.0 # via pluggy, pytest
|
||||||
|
mccabe==0.6.1 # via flake8
|
||||||
|
more-itertools==8.2.0 # via pytest
|
||||||
|
packaging==20.1 # via pytest
|
||||||
|
pathspec==0.7.0 # via black
|
||||||
|
pip-tools==4.4.1
|
||||||
|
pluggy==0.13.1 # via pytest
|
||||||
|
py==1.8.1 # via pytest
|
||||||
|
pycodestyle==2.5.0 # via flake8
|
||||||
|
pyflakes==2.1.1 # via flake8
|
||||||
|
pyparsing==2.4.6 # via packaging
|
||||||
|
pytest==5.3.5
|
||||||
|
regex==2020.1.8 # via black
|
||||||
|
requests==2.22.0
|
||||||
|
six==1.14.0 # via packaging, pip-tools
|
||||||
|
toml==0.10.0 # via black
|
||||||
|
typed-ast==1.4.1 # via black
|
||||||
|
urllib3==1.25.8 # via requests
|
||||||
|
wcwidth==0.1.8 # via pytest
|
||||||
|
zipp==2.1.0 # via importlib-metadata
|
@ -0,0 +1,5 @@
|
|||||||
|
asyncpg
|
||||||
|
databases[postgresql]
|
||||||
|
fastapi
|
||||||
|
SQLAlchemy
|
||||||
|
uvicorn
|
@ -0,0 +1,19 @@
|
|||||||
|
#
|
||||||
|
# This file is autogenerated by pip-compile
|
||||||
|
# To update, run:
|
||||||
|
#
|
||||||
|
# pip-compile requirements.in
|
||||||
|
#
|
||||||
|
asyncpg==0.20.1
|
||||||
|
click==7.0 # via uvicorn
|
||||||
|
databases[postgresql]==0.2.6
|
||||||
|
fastapi==0.48.0
|
||||||
|
h11==0.9.0 # via uvicorn
|
||||||
|
httptools==0.0.13 # via uvicorn
|
||||||
|
psycopg2-binary==2.8.4 # via databases
|
||||||
|
pydantic==1.4 # via fastapi
|
||||||
|
sqlalchemy==1.3.13
|
||||||
|
starlette==0.12.9 # via fastapi
|
||||||
|
uvicorn==0.11.2
|
||||||
|
uvloop==0.14.0 # via uvicorn
|
||||||
|
websockets==8.1 # via uvicorn
|
Loading…
Reference in New Issue