gitextract_azh7ec58/ ├── .coveragerc ├── .github/ │ └── workflows/ │ ├── release.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs/ │ ├── Makefile │ ├── conf.py │ ├── configuration.rst │ ├── index.rst │ ├── profiling.rst │ ├── quickstart.rst │ └── troubleshooting.rst ├── gulpfile.js ├── package.json ├── project/ │ ├── example_app/ │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── migrations/ │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_alter_blind_photo.py │ │ │ ├── 0003_blind_unique_name_if_provided.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── templates/ │ │ │ └── example_app/ │ │ │ ├── blind_form.html │ │ │ ├── index.html │ │ │ └── login.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── manage.py │ ├── project/ │ │ ├── __init__.py │ │ ├── settings.py │ │ └── urls.py │ ├── tests/ │ │ ├── __init__.py │ │ ├── data/ │ │ │ ├── __init__.py │ │ │ └── dynamic.py │ │ ├── factories.py │ │ ├── test_app_config.py │ │ ├── test_code.py │ │ ├── test_code_gen_curl.py │ │ ├── test_code_gen_django.py │ │ ├── test_collector.py │ │ ├── test_command_garbage_collect.py │ │ ├── test_compat.py │ │ ├── test_config_auth.py │ │ ├── test_config_long_urls.py │ │ ├── test_config_max_body_size.py │ │ ├── test_config_meta.py │ │ ├── test_db.py │ │ ├── test_dynamic_profiling.py │ │ ├── test_encoding.py │ │ ├── test_end_points.py │ │ ├── test_execute_sql.py │ │ ├── test_filters.py │ │ ├── test_lib/ │ │ │ ├── __init__.py │ │ │ ├── assertion.py │ │ │ └── mock_suite.py │ │ ├── test_models.py │ │ ├── test_multipart_forms.py │ │ ├── test_profile_dot.py │ │ ├── test_profile_parser.py │ │ ├── test_response_assumptions.py │ │ ├── test_sensitive_data_in_request.py │ │ ├── test_silky_middleware.py │ │ ├── test_silky_profiler.py │ │ ├── test_view_clear_db.py │ │ ├── test_view_profiling.py │ │ ├── test_view_requests.py │ │ ├── test_view_sql_detail.py │ │ ├── test_view_summary_view.py │ │ ├── urlconf_without_silk.py │ │ └── util.py │ └── wsgi.py ├── pyproject.toml ├── pytest.ini ├── requirements.txt ├── scss/ │ ├── components/ │ │ ├── cell.scss │ │ ├── colors.scss │ │ ├── fonts.scss │ │ ├── heading.scss │ │ ├── numeric.scss │ │ ├── row.scss │ │ └── summary.scss │ └── pages/ │ ├── base.scss │ ├── clear_db.scss │ ├── cprofile.scss │ ├── detail_base.scss │ ├── profile_detail.scss │ ├── profiling.scss │ ├── raw.scss │ ├── request.scss │ ├── requests.scss │ ├── root_base.scss │ ├── sql.scss │ ├── sql_detail.scss │ └── summary.scss ├── setup.py ├── silk/ │ ├── __init__.py │ ├── apps.py │ ├── auth.py │ ├── code_generation/ │ │ ├── __init__.py │ │ ├── curl.py │ │ └── django_test_client.py │ ├── collector.py │ ├── config.py │ ├── errors.py │ ├── management/ │ │ ├── __init__.py │ │ └── commands/ │ │ ├── __init__.py │ │ ├── silk_clear_request_log.py │ │ └── silk_request_garbage_collect.py │ ├── middleware.py │ ├── migrations/ │ │ ├── 0001_initial.py │ │ ├── 0002_auto_update_uuid4_id_field.py │ │ ├── 0003_request_prof_file.py │ │ ├── 0004_request_prof_file_storage.py │ │ ├── 0005_increase_request_prof_file_length.py │ │ ├── 0006_fix_request_prof_file_blank.py │ │ ├── 0007_sqlquery_identifier.py │ │ ├── 0008_sqlquery_analysis.py │ │ └── __init__.py │ ├── model_factory.py │ ├── models.py │ ├── profiling/ │ │ ├── __init__.py │ │ ├── dynamic.py │ │ └── profiler.py │ ├── request_filters.py │ ├── singleton.py │ ├── sql.py │ ├── static/ │ │ └── silk/ │ │ ├── css/ │ │ │ ├── components/ │ │ │ │ ├── cell.css │ │ │ │ ├── colors.css │ │ │ │ ├── fonts.css │ │ │ │ ├── heading.css │ │ │ │ ├── numeric.css │ │ │ │ ├── row.css │ │ │ │ └── summary.css │ │ │ └── pages/ │ │ │ ├── base.css │ │ │ ├── clear_db.css │ │ │ ├── cprofile.css │ │ │ ├── detail_base.css │ │ │ ├── profile_detail.css │ │ │ ├── profiling.css │ │ │ ├── raw.css │ │ │ ├── request.css │ │ │ ├── requests.css │ │ │ ├── root_base.css │ │ │ ├── sql.css │ │ │ ├── sql_detail.css │ │ │ └── summary.css │ │ ├── js/ │ │ │ ├── components/ │ │ │ │ ├── cell.js │ │ │ │ └── filters.js │ │ │ └── pages/ │ │ │ ├── base.js │ │ │ ├── clear_db.js │ │ │ ├── detail_base.js │ │ │ ├── profile_detail.js │ │ │ ├── profiling.js │ │ │ ├── raw.js │ │ │ ├── request.js │ │ │ ├── requests.js │ │ │ ├── root_base.js │ │ │ ├── sql.js │ │ │ ├── sql_detail.js │ │ │ └── summary.js │ │ └── lib/ │ │ ├── highlight/ │ │ │ ├── foundation.css │ │ │ └── highlight.pack.js │ │ ├── jquery.datetimepicker.css │ │ ├── jquery.datetimepicker.js │ │ ├── sortable.js │ │ └── viz-lite.js │ ├── storage.py │ ├── templates/ │ │ └── silk/ │ │ ├── base/ │ │ │ ├── base.html │ │ │ ├── detail_base.html │ │ │ └── root_base.html │ │ ├── clear_db.html │ │ ├── cprofile.html │ │ ├── inclusion/ │ │ │ ├── code.html │ │ │ ├── heading.html │ │ │ ├── profile_menu.html │ │ │ ├── profile_summary.html │ │ │ ├── request_menu.html │ │ │ ├── request_summary.html │ │ │ ├── request_summary_row.html │ │ │ └── root_menu.html │ │ ├── profile_detail.html │ │ ├── profiling.html │ │ ├── raw.html │ │ ├── request.html │ │ ├── requests.html │ │ ├── sql.html │ │ ├── sql_detail.html │ │ └── summary.html │ ├── templatetags/ │ │ ├── __init__.py │ │ ├── silk_filters.py │ │ ├── silk_inclusion.py │ │ ├── silk_nav.py │ │ └── silk_urls.py │ ├── urls.py │ ├── utils/ │ │ ├── __init__.py │ │ ├── data_deletion.py │ │ ├── pagination.py │ │ └── profile_parser.py │ └── views/ │ ├── __init__.py │ ├── clear_db.py │ ├── code.py │ ├── cprofile.py │ ├── profile_detail.py │ ├── profile_dot.py │ ├── profile_download.py │ ├── profiling.py │ ├── raw.py │ ├── request_detail.py │ ├── requests.py │ ├── sql.py │ ├── sql_detail.py │ └── summary.py ├── silk.sublime-project ├── tox.ini └── web.psd