gitextract_gn9w6fxg/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── 1-issue.md │ │ └── config.yml │ ├── dependabot.yml │ ├── pull_request_template.md │ └── workflows/ │ ├── main.yml │ └── publish.yml ├── .gitignore ├── CITATION.cff ├── LICENSE.md ├── README.md ├── docs/ │ ├── CNAME │ ├── applications.md │ ├── authentication.md │ ├── background.md │ ├── config.md │ ├── contributing.md │ ├── css/ │ │ └── custom.css │ ├── database.md │ ├── endpoints.md │ ├── exceptions.md │ ├── graphql.md │ ├── index.md │ ├── js/ │ │ └── custom.js │ ├── lifespan.md │ ├── middleware.md │ ├── overrides/ │ │ ├── main.html │ │ └── partials/ │ │ └── toc-item.html │ ├── release-notes.md │ ├── requests.md │ ├── responses.md │ ├── routing.md │ ├── schemas.md │ ├── server-push.md │ ├── staticfiles.md │ ├── templates.md │ ├── testclient.md │ ├── third-party-packages.md │ ├── threadpool.md │ └── websockets.md ├── mkdocs.yml ├── pyproject.toml ├── scripts/ │ ├── README.md │ ├── build │ ├── check │ ├── coverage │ ├── docs │ ├── install │ ├── lint │ ├── sync-version │ └── test ├── starlette/ │ ├── __init__.py │ ├── _exception_handler.py │ ├── _utils.py │ ├── applications.py │ ├── authentication.py │ ├── background.py │ ├── concurrency.py │ ├── config.py │ ├── convertors.py │ ├── datastructures.py │ ├── endpoints.py │ ├── exceptions.py │ ├── formparsers.py │ ├── middleware/ │ │ ├── __init__.py │ │ ├── authentication.py │ │ ├── base.py │ │ ├── cors.py │ │ ├── errors.py │ │ ├── exceptions.py │ │ ├── gzip.py │ │ ├── httpsredirect.py │ │ ├── sessions.py │ │ ├── trustedhost.py │ │ └── wsgi.py │ ├── py.typed │ ├── requests.py │ ├── responses.py │ ├── routing.py │ ├── schemas.py │ ├── staticfiles.py │ ├── status.py │ ├── templating.py │ ├── testclient.py │ ├── types.py │ └── websockets.py └── tests/ ├── __init__.py ├── conftest.py ├── middleware/ │ ├── __init__.py │ ├── test_base.py │ ├── test_cors.py │ ├── test_errors.py │ ├── test_gzip.py │ ├── test_https_redirect.py │ ├── test_middleware.py │ ├── test_session.py │ ├── test_trusted_host.py │ └── test_wsgi.py ├── statics/ │ └── example.txt ├── test__utils.py ├── test_applications.py ├── test_authentication.py ├── test_background.py ├── test_concurrency.py ├── test_config.py ├── test_convertors.py ├── test_datastructures.py ├── test_endpoints.py ├── test_exceptions.py ├── test_formparsers.py ├── test_requests.py ├── test_responses.py ├── test_routing.py ├── test_schemas.py ├── test_staticfiles.py ├── test_status.py ├── test_templates.py ├── test_testclient.py ├── test_websockets.py └── types.py