gitextract_2vanwzu3/ ├── .github/ │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── 1-issue.md │ │ └── config.yml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ └── workflows/ │ ├── publish.yml │ └── test-suite.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── docs/ │ ├── CNAME │ ├── advanced/ │ │ ├── authentication.md │ │ ├── clients.md │ │ ├── event-hooks.md │ │ ├── extensions.md │ │ ├── proxies.md │ │ ├── resource-limits.md │ │ ├── ssl.md │ │ ├── text-encodings.md │ │ ├── timeouts.md │ │ └── transports.md │ ├── api.md │ ├── async.md │ ├── code_of_conduct.md │ ├── compatibility.md │ ├── contributing.md │ ├── css/ │ │ └── custom.css │ ├── environment_variables.md │ ├── exceptions.md │ ├── http2.md │ ├── index.md │ ├── logging.md │ ├── overrides/ │ │ └── partials/ │ │ └── nav.html │ ├── quickstart.md │ ├── third_party_packages.md │ └── troubleshooting.md ├── httpx/ │ ├── __init__.py │ ├── __version__.py │ ├── _api.py │ ├── _auth.py │ ├── _client.py │ ├── _config.py │ ├── _content.py │ ├── _decoders.py │ ├── _exceptions.py │ ├── _main.py │ ├── _models.py │ ├── _multipart.py │ ├── _status_codes.py │ ├── _transports/ │ │ ├── __init__.py │ │ ├── asgi.py │ │ ├── base.py │ │ ├── default.py │ │ ├── mock.py │ │ └── wsgi.py │ ├── _types.py │ ├── _urlparse.py │ ├── _urls.py │ ├── _utils.py │ └── py.typed ├── mkdocs.yml ├── pyproject.toml ├── requirements.txt ├── scripts/ │ ├── build │ ├── check │ ├── clean │ ├── coverage │ ├── docs │ ├── install │ ├── lint │ ├── publish │ ├── sync-version │ └── test └── tests/ ├── __init__.py ├── client/ │ ├── __init__.py │ ├── test_async_client.py │ ├── test_auth.py │ ├── test_client.py │ ├── test_cookies.py │ ├── test_event_hooks.py │ ├── test_headers.py │ ├── test_properties.py │ ├── test_proxies.py │ ├── test_queryparams.py │ └── test_redirects.py ├── common.py ├── concurrency.py ├── conftest.py ├── fixtures/ │ ├── .netrc │ └── .netrc-nopassword ├── models/ │ ├── __init__.py │ ├── test_cookies.py │ ├── test_headers.py │ ├── test_queryparams.py │ ├── test_requests.py │ ├── test_responses.py │ ├── test_url.py │ ├── test_whatwg.py │ └── whatwg.json ├── test_api.py ├── test_asgi.py ├── test_auth.py ├── test_config.py ├── test_content.py ├── test_decoders.py ├── test_exceptions.py ├── test_exported_members.py ├── test_main.py ├── test_multipart.py ├── test_status_codes.py ├── test_timeouts.py ├── test_utils.py └── test_wsgi.py