]> git.ipfire.org Git - thirdparty/httpx.git/commit
Initial commit
authorTom Christie <tom@tomchristie.com>
Tue, 16 Sep 2025 17:59:11 +0000 (18:59 +0100)
committerTom Christie <tom@tomchristie.com>
Tue, 16 Sep 2025 17:59:11 +0000 (18:59 +0100)
commit77589cc6f7b0b395f29df49c767cda6d144812bc
tree5264b9699c815f5f595b40f54603af3a1b48c289
Initial commit
74 files changed:
.github/ISSUE_TEMPLATE/config.yml [new file with mode: 0644]
.github/ISSUE_TEMPLATE/read-only-issues.md [new file with mode: 0644]
.github/workflows/test-suite.yml [new file with mode: 0644]
.gitignore [new file with mode: 0644]
README.md [new file with mode: 0644]
docs/about.md [new file with mode: 0644]
docs/clients.md [new file with mode: 0644]
docs/connections.md [new file with mode: 0644]
docs/content-types.md [new file with mode: 0644]
docs/headers.md [new file with mode: 0644]
docs/img/butterfly.png [new file with mode: 0644]
docs/index.md [new file with mode: 0644]
docs/networking.md [new file with mode: 0644]
docs/parsers.md [new file with mode: 0644]
docs/quickstart.md [new file with mode: 0644]
docs/requests.md [new file with mode: 0644]
docs/responses.md [new file with mode: 0644]
docs/servers.md [new file with mode: 0644]
docs/streams.md [new file with mode: 0644]
docs/templates/base.html [new file with mode: 0644]
docs/urls.md [new file with mode: 0644]
pyproject.toml [new file with mode: 0644]
requirements.txt [new file with mode: 0644]
scripts/build [new file with mode: 0755]
scripts/docs [new file with mode: 0755]
scripts/install [new file with mode: 0755]
scripts/publish [new file with mode: 0755]
scripts/test [new file with mode: 0755]
scripts/unasync [new file with mode: 0755]
src/ahttpx/__init__.py [new file with mode: 0644]
src/ahttpx/__version__.py [new file with mode: 0644]
src/ahttpx/_client.py [new file with mode: 0644]
src/ahttpx/_content.py [new file with mode: 0644]
src/ahttpx/_headers.py [new file with mode: 0644]
src/ahttpx/_network.py [new file with mode: 0644]
src/ahttpx/_parsers.py [new file with mode: 0644]
src/ahttpx/_pool.py [new file with mode: 0644]
src/ahttpx/_quickstart.py [new file with mode: 0644]
src/ahttpx/_request.py [new file with mode: 0644]
src/ahttpx/_response.py [new file with mode: 0644]
src/ahttpx/_server.py [new file with mode: 0644]
src/ahttpx/_streams.py [new file with mode: 0644]
src/ahttpx/_urlencode.py [new file with mode: 0644]
src/ahttpx/_urlparse.py [new file with mode: 0644]
src/ahttpx/_urls.py [new file with mode: 0644]
src/httpx/__init__.py [new file with mode: 0644]
src/httpx/__version__.py [new file with mode: 0644]
src/httpx/_client.py [new file with mode: 0644]
src/httpx/_content.py [new file with mode: 0644]
src/httpx/_headers.py [new file with mode: 0644]
src/httpx/_network.py [new file with mode: 0644]
src/httpx/_parsers.py [new file with mode: 0644]
src/httpx/_pool.py [new file with mode: 0644]
src/httpx/_quickstart.py [new file with mode: 0644]
src/httpx/_request.py [new file with mode: 0644]
src/httpx/_response.py [new file with mode: 0644]
src/httpx/_server.py [new file with mode: 0644]
src/httpx/_streams.py [new file with mode: 0644]
src/httpx/_urlencode.py [new file with mode: 0644]
src/httpx/_urlparse.py [new file with mode: 0644]
src/httpx/_urls.py [new file with mode: 0644]
tests/__init__.py [new file with mode: 0644]
tests/test_client.py [new file with mode: 0644]
tests/test_content.py [new file with mode: 0644]
tests/test_headers.py [new file with mode: 0644]
tests/test_network.py [new file with mode: 0644]
tests/test_parsers.py [new file with mode: 0644]
tests/test_pool.py [new file with mode: 0644]
tests/test_quickstart.py [new file with mode: 0644]
tests/test_request.py [new file with mode: 0644]
tests/test_response.py [new file with mode: 0644]
tests/test_streams.py [new file with mode: 0644]
tests/test_urlencode.py [new file with mode: 0644]
tests/test_urls.py [new file with mode: 0644]