├── .flake8 ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── poetry.lock ├── pyproject.toml ├── runtests.py ├── screenshots └── main.png ├── speedinfo ├── __init__.py ├── admin.py ├── apps.py ├── backends.py ├── conditions │ ├── __init__.py │ ├── base.py │ ├── dispatcher.py │ └── exclude_urls.py ├── conf.py ├── managers.py ├── middleware.py ├── models.py ├── profiler.py ├── static │ └── speedinfo │ │ ├── css │ │ └── admin.css │ │ ├── img │ │ ├── icon-turned-off.svg │ │ └── icon-turned-on.svg │ │ └── js │ │ └── jquery.fixed-table-header.js ├── storage │ ├── __init__.py │ ├── base.py │ ├── cache │ │ ├── __init__.py │ │ └── storage.py │ └── database │ │ ├── __init__.py │ │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ │ ├── models.py │ │ └── storage.py ├── templates │ └── admin │ │ └── speedinfo │ │ └── change_list.html └── utils.py └── tests ├── __init__.py ├── settings.py ├── test_admin.py ├── test_apps.py ├── test_conditions.py ├── test_middleware.py ├── test_models.py ├── test_profiler.py ├── test_storage.py ├── urls.py └── views.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/README.md -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/pyproject.toml -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/runtests.py -------------------------------------------------------------------------------- /screenshots/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/screenshots/main.png -------------------------------------------------------------------------------- /speedinfo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/speedinfo/__init__.py -------------------------------------------------------------------------------- /speedinfo/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/speedinfo/admin.py -------------------------------------------------------------------------------- /speedinfo/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/speedinfo/apps.py -------------------------------------------------------------------------------- /speedinfo/backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/speedinfo/backends.py -------------------------------------------------------------------------------- /speedinfo/conditions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /speedinfo/conditions/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/speedinfo/conditions/base.py -------------------------------------------------------------------------------- /speedinfo/conditions/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/speedinfo/conditions/dispatcher.py -------------------------------------------------------------------------------- /speedinfo/conditions/exclude_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/speedinfo/conditions/exclude_urls.py -------------------------------------------------------------------------------- /speedinfo/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/speedinfo/conf.py -------------------------------------------------------------------------------- /speedinfo/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/speedinfo/managers.py -------------------------------------------------------------------------------- /speedinfo/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/speedinfo/middleware.py -------------------------------------------------------------------------------- /speedinfo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/speedinfo/models.py -------------------------------------------------------------------------------- /speedinfo/profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/speedinfo/profiler.py -------------------------------------------------------------------------------- /speedinfo/static/speedinfo/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/speedinfo/static/speedinfo/css/admin.css -------------------------------------------------------------------------------- /speedinfo/static/speedinfo/img/icon-turned-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/speedinfo/static/speedinfo/img/icon-turned-off.svg -------------------------------------------------------------------------------- /speedinfo/static/speedinfo/img/icon-turned-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/speedinfo/static/speedinfo/img/icon-turned-on.svg -------------------------------------------------------------------------------- /speedinfo/static/speedinfo/js/jquery.fixed-table-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/speedinfo/static/speedinfo/js/jquery.fixed-table-header.js -------------------------------------------------------------------------------- /speedinfo/storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /speedinfo/storage/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/speedinfo/storage/base.py -------------------------------------------------------------------------------- /speedinfo/storage/cache/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /speedinfo/storage/cache/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/speedinfo/storage/cache/storage.py -------------------------------------------------------------------------------- /speedinfo/storage/database/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /speedinfo/storage/database/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/speedinfo/storage/database/migrations/0001_initial.py -------------------------------------------------------------------------------- /speedinfo/storage/database/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /speedinfo/storage/database/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/speedinfo/storage/database/models.py -------------------------------------------------------------------------------- /speedinfo/storage/database/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/speedinfo/storage/database/storage.py -------------------------------------------------------------------------------- /speedinfo/templates/admin/speedinfo/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/speedinfo/templates/admin/speedinfo/change_list.html -------------------------------------------------------------------------------- /speedinfo/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/speedinfo/utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/tests/test_admin.py -------------------------------------------------------------------------------- /tests/test_apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/tests/test_apps.py -------------------------------------------------------------------------------- /tests/test_conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/tests/test_conditions.py -------------------------------------------------------------------------------- /tests/test_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/tests/test_middleware.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/test_profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/tests/test_profiler.py -------------------------------------------------------------------------------- /tests/test_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/tests/test_storage.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tests/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catcombo/django-speedinfo/HEAD/tests/views.py --------------------------------------------------------------------------------