gitextract_sepaq9a1/ ├── .github/ │ └── workflows/ │ └── tests.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGES.md ├── LICENSE ├── README.md ├── examples/ │ ├── AsyncProgressBar/ │ │ ├── README.md │ │ ├── progress_bar.py │ │ └── requirements.txt │ ├── aioflaskr/ │ │ ├── .flaskenv │ │ ├── LICENSE │ │ ├── README.md │ │ ├── flaskr/ │ │ │ ├── __init__.py │ │ │ ├── auth.py │ │ │ ├── blog.py │ │ │ ├── models.py │ │ │ ├── static/ │ │ │ │ └── style.css │ │ │ └── templates/ │ │ │ ├── auth/ │ │ │ │ ├── login.html │ │ │ │ └── register.html │ │ │ ├── base.html │ │ │ └── blog/ │ │ │ ├── create.html │ │ │ ├── index.html │ │ │ └── update.html │ │ ├── requirements.txt │ │ └── tests/ │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_auth.py │ │ ├── test_blog.py │ │ └── test_init.py │ ├── g/ │ │ └── app.py │ ├── hello_world/ │ │ ├── app.py │ │ └── templates/ │ │ └── index.html │ ├── login/ │ │ └── app.py │ ├── quotes-aiohttp/ │ │ ├── README.md │ │ └── quotes.py │ └── quotes-requests/ │ ├── README.md │ ├── quotes.py │ └── quotes_app.py ├── pyproject.toml ├── setup.cfg ├── setup.py ├── src/ │ └── aioflask/ │ ├── __init__.py │ ├── app.py │ ├── asgi.py │ ├── cli.py │ ├── ctx.py │ ├── patch.py │ ├── patched/ │ │ ├── __init__.py │ │ └── flask_login/ │ │ └── __init__.py │ ├── templating.py │ └── testing.py ├── tests/ │ ├── __init__.py │ ├── templates/ │ │ └── template.html │ ├── test_app.py │ ├── test_cli.py │ ├── test_ctx.py │ ├── test_patch.py │ ├── test_templating.py │ └── utils.py └── tox.ini