gitextract_uy8tz9g5/ ├── .codecov.yml ├── .coveragerc ├── .flake8 ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── auto-merge.yml │ ├── ci.yml │ └── codeql.yml ├── .gitignore ├── .mypy.ini ├── .pre-commit-config.yaml ├── CHANGES.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── aiohttp_debugtoolbar/ │ ├── __init__.py │ ├── main.py │ ├── middlewares.py │ ├── panels/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── headers.py │ │ ├── logger.py │ │ ├── middlewares.py │ │ ├── performance.py │ │ ├── request_vars.py │ │ ├── routes.py │ │ ├── settings.py │ │ ├── templates/ │ │ │ ├── headers.jinja2 │ │ │ ├── logger.jinja2 │ │ │ ├── middlewares.jinja2 │ │ │ ├── performance.jinja2 │ │ │ ├── request_vars.jinja2 │ │ │ ├── routes.jinja2 │ │ │ ├── settings.jinja2 │ │ │ ├── sqlalchemy_explain.jinja2 │ │ │ ├── sqlalchemy_select.jinja2 │ │ │ ├── traceback.jinja2 │ │ │ └── versions.jinja2 │ │ ├── traceback.py │ │ └── versions.py │ ├── py.typed │ ├── static/ │ │ ├── css/ │ │ │ ├── dashboard.css │ │ │ ├── debugger.css │ │ │ ├── prism.css │ │ │ ├── toolbar.css │ │ │ └── toolbar_button.css │ │ ├── font/ │ │ │ └── FONT_LICENSE │ │ └── js/ │ │ ├── README.rst │ │ ├── debugger.js │ │ ├── jquery.cookie.js │ │ ├── prism.js │ │ ├── r.js │ │ ├── require.js │ │ ├── tests.html │ │ └── toolbar.js │ ├── tbtools/ │ │ ├── __init__.py │ │ ├── console.py │ │ ├── repr.py │ │ └── tbtools.py │ ├── templates/ │ │ ├── console.jinja2 │ │ ├── exception.jinja2 │ │ ├── exception_summary.jinja2 │ │ ├── global_tab.jinja2 │ │ ├── history_tab.jinja2 │ │ ├── redirect.jinja2 │ │ ├── settings_tab.jinja2 │ │ └── toolbar.jinja2 │ ├── toolbar.py │ ├── utils.py │ └── views.py ├── demo/ │ ├── README.rst │ ├── demo.py │ ├── static/ │ │ ├── main.js │ │ └── require-1.0.6.js │ └── templates/ │ ├── ajax.jinja2 │ ├── error.jinja2 │ └── index.jinja2 ├── examples/ │ ├── extra_panels/ │ │ ├── extra_pgsql.py │ │ ├── extra_redis.py │ │ ├── extra_tpl/ │ │ │ ├── request_pgsql.jinja2 │ │ │ └── request_redis.jinja2 │ │ └── server.py │ └── simple.py ├── pytest.ini ├── requirements-dev.txt ├── requirements.txt ├── setup.py └── tests/ ├── conftest.py ├── pep492/ │ └── test_await.py ├── test_debug.py ├── test_exception_views.py ├── test_imports.py ├── test_middleware.py ├── test_panel.py ├── test_panels_versions.py ├── test_server_push.py ├── test_utils.py └── tpl/ └── test.jinja2