├── .gitignore ├── README.rst ├── app ├── .gitignore ├── films.py ├── gunicorn.py ├── requirements.txt ├── reviews.py └── run.py └── post.lua /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | *~ 3 | __pycache__/ 4 | .* -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgjones/faster_than_flask_article/HEAD/README.rst -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | venv/ 3 | -------------------------------------------------------------------------------- /app/films.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgjones/faster_than_flask_article/HEAD/app/films.py -------------------------------------------------------------------------------- /app/gunicorn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgjones/faster_than_flask_article/HEAD/app/gunicorn.py -------------------------------------------------------------------------------- /app/requirements.txt: -------------------------------------------------------------------------------- 1 | asyncpg 2 | gunicorn 3 | quart 4 | uvloop 5 | -------------------------------------------------------------------------------- /app/reviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgjones/faster_than_flask_article/HEAD/app/reviews.py -------------------------------------------------------------------------------- /app/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgjones/faster_than_flask_article/HEAD/app/run.py -------------------------------------------------------------------------------- /post.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgjones/faster_than_flask_article/HEAD/post.lua --------------------------------------------------------------------------------