gitextract___lgw2bt/ ├── .github/ │ └── workflows/ │ └── tests.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs/ │ ├── README.md │ ├── configuration.md │ ├── frameworks.md │ ├── headers/ │ │ ├── cache_control.md │ │ ├── content_security_policy.md │ │ ├── cross-origin-resource-policy.md │ │ ├── cross_origin_embedder_policy.md │ │ ├── cross_origin_opener_policy.md │ │ ├── custom_header.md │ │ ├── dns_prefetch_control.md │ │ ├── permissions_policy.md │ │ ├── referrer_policy.md │ │ ├── server.md │ │ ├── strict_transport_security.md │ │ ├── x-permitted-cross-domain-policies.md │ │ ├── x_content_type_options.md │ │ └── x_frame_options.md │ ├── installation.md │ ├── migration.md │ ├── security_considerations.md │ └── usage.md ├── pyproject.toml ├── secure/ │ ├── __init__.py │ ├── _internal/ │ │ ├── __init__.py │ │ ├── configured_headers.py │ │ ├── constants.py │ │ ├── emit.py │ │ ├── normalize.py │ │ ├── policy.py │ │ ├── presets.py │ │ └── types.py │ ├── headers/ │ │ ├── __init__.py │ │ ├── _validation.py │ │ ├── base_header.py │ │ ├── cache_control.py │ │ ├── content_security_policy.py │ │ ├── cross_origin_embedder_policy.py │ │ ├── cross_origin_opener_policy.py │ │ ├── cross_origin_resource_policy.py │ │ ├── custom_header.py │ │ ├── permissions_policy.py │ │ ├── referrer_policy.py │ │ ├── server.py │ │ ├── strict_transport_security.py │ │ ├── x_content_type_options.py │ │ ├── x_dns_prefetch_control.py │ │ ├── x_frame_options.py │ │ └── x_permitted_cross_domain_policies.py │ ├── middleware/ │ │ ├── __init__.py │ │ ├── asgi.py │ │ └── wsgi.py │ ├── py.typed │ └── secure.py └── tests/ ├── __init__.py ├── headers/ │ ├── test_cache_control.py │ ├── test_content_security_policy.py │ ├── test_cross_origin_embedder_policy.py │ ├── test_cross_origin_opener_policy.py │ ├── test_custom_header.py │ ├── test_header_contracts_extended.py │ ├── test_permissions_policy.py │ ├── test_referrer_policy.py │ ├── test_server.py │ ├── test_strict_transport_security.py │ ├── test_x_content_type_options.py │ └── test_x_frame_options.py ├── middleware/ │ ├── test_middleware.py │ └── test_secure_protocols.py └── secure_tests/ ├── __init__.py ├── test_exports.py ├── test_headers.py ├── test_internal_helpers.py └── test_secure.py