1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
Source: httpx
Section: python
Priority: optional
Maintainer: Sandro Tosi <morph@debian.org>
Build-Depends: debhelper (>= 13),
debhelper-compat (= 13),
pybuild-plugin-pyproject,
python3-all,
python3-anyio,
python3-brotli <!nocheck>,
python3-certifi,
python3-chardet,
python3-charset-normalizer <!nocheck>,
python3-click (>= 8) <!nocheck>,
python3-h11,
python3-h2,
python3-hatch-fancy-pypi-readme,
python3-hatchling,
python3-httpcore (>= 1) <!nocheck>,
python3-idna,
python3-pygments <!nocheck>,
python3-pytest <!nocheck>,
python3-pytest-asyncio <!nocheck>,
# Should be enough to pass last skipped test but not available in the archive
# python3-pytest-trio <!nocheck>,
python3-pytest-cov <!nocheck>,
python3-rich (>= 10) <!nocheck>,
python3-setuptools,
python3-sniffio,
python3-socksio <!nocheck>,
python3-trio <!nocheck>,
python3-trustme <!nocheck>,
python3-urllib3,
python3-uvicorn <!nocheck>,
python3-zstandard <!nocheck>,
Standards-Version: 4.6.2.0
Homepage: https://www.python-httpx.org/
Vcs-Git: https://salsa.debian.org/morph/httpx.git
Vcs-Browser: https://salsa.debian.org/morph/httpx
Package: python3-httpx
Architecture: all
Depends: python3-click (>= 8),
python3-pygments,
python3-rich (>= 10),
${misc:Depends},
${python3:Depends},
Recommends: ${python3:Recommends},
Suggests: ${python3:Suggests},
Description: next generation HTTP client
HTTPX is a fully featured HTTP client for Python 3, which provides sync and
async APIs, and support for both HTTP/1.1 and HTTP/2.
.
HTTPX is a high performance asynchronous HTTP client, that builds on the
well-established usability of requests, and gives you:
.
* A broadly requests-compatible API.
* Standard synchronous interface, but with async support if you need it.
* HTTP/1.1 and HTTP/2 support.
* Ability to make requests directly to WSGI applications or ASGI applications.
* Strict timeouts everywhere.
* Fully type annotated.
* 99% test coverage.
.
Plus all the standard features of requests:
.
* International Domains and URLs
* Keep-Alive & Connection Pooling
* Sessions with Cookie Persistence
* Browser-style SSL Verification
* Basic/Digest Authentication
* Elegant Key/Value Cookies
* Automatic Decompression
* Automatic Content Decoding
* Unicode Response Bodies
* Multipart File Uploads
* HTTP(S) Proxy Support
* Connection Timeouts
* Streaming Downloads
* .netrc Support
* Chunked Requests
|