├── HowTo.txt ├── README.md ├── __pycache__ ├── main.cpython-38.pyc ├── model.cpython-38.pyc └── pg_db.cpython-38.pyc ├── main.py ├── model.py └── pg_db.py /HowTo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellocoder2020/fastapi-demo-1/HEAD/HowTo.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # fastapi-demo-1 -------------------------------------------------------------------------------- /__pycache__/main.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellocoder2020/fastapi-demo-1/HEAD/__pycache__/main.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellocoder2020/fastapi-demo-1/HEAD/__pycache__/model.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/pg_db.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellocoder2020/fastapi-demo-1/HEAD/__pycache__/pg_db.cpython-38.pyc -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellocoder2020/fastapi-demo-1/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellocoder2020/fastapi-demo-1/HEAD/model.py -------------------------------------------------------------------------------- /pg_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellocoder2020/fastapi-demo-1/HEAD/pg_db.py --------------------------------------------------------------------------------