Source: python-httpx2
Section: python
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders: Matheus Polkorny <mpolkorny@gmail.com>,
Build-Depends: debhelper-compat (= 13),
               dh-sequence-python3,
               pybuild-plugin-pyproject,
               python3-all,
               python3-anyio <!nocheck>,
               python3-chardet <!nocheck>,
               python3-h11,
               python3-h2 <!nocheck>,
               python3-hatch-fancy-pypi-readme,
               python3-hatchling,
               python3-hpack <!nocheck>,
               python3-hyperframe <!nocheck>,
               python3-idna <!nocheck>,
               python3-pytest <!nocheck>,
               python3-pytest-httpbin <!nocheck>,
               python3-pytest-trio <!nocheck>,
               python3-rich <!nocheck>,
               python3-socksio <!nocheck>,
               python3-trio <!nocheck>,
               python3-trustme <!nocheck>,
               python3-truststore,
               python3-uvicorn <!nocheck>,
               python3-zstandard <!nocheck>,
Standards-Version: 4.7.4
Homepage: https://github.com/pydantic/httpx2
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-httpx2
Vcs-Git: https://salsa.debian.org/python-team/packages/python-httpx2.git

Package: python3-httpcore2
Architecture: all
Depends: ${misc:Depends},
         ${python3:Depends},
Suggests: python3-anyio,
          python3-h2,
          python3-socksio,
          python3-trio,
Description: Provides a minimal low-level HTTP Python client library
 Some things HTTP Core does do:
  * Sending HTTP requests;
  * Thread-safe / task-safe connection pooling;
  * HTTP(S) proxy & SOCKS proxy support;
  * Supports HTTP/1.1 and HTTP/2;
  * Provides both sync and async interfaces;
  * Async backend support for asyncio and trio.

Package: python3-httpx2
Architecture: all
Depends: python3-anyio,
         python3-h11,
         python3-httpcore2 (= ${binary:Version}),
         python3-idna (>= 3.18),
         python3-truststore,
         ${misc:Depends},
         ${python3:Depends},
Suggests: python3-brotli,
          python3-brotlicffi,
          python3-click,
          python3-h2,
          python3-pygments,
          python3-rich,
          python3-socksio,
          python3-zstandard,
Description: Next generation HTTP client Python library for httpx
 HTTPX2 is a fully featured HTTP client for Python, which provides sync and
 async APIs, and support for both HTTP/1.1 and HTTP/2. It's a continuation of
 the wonderful work started by @lovelydinosaur and the broader HTTPX community.
 .
 These Features are included:
  * A broadly requests-compatible API.
  * An integrated command-line client.
  * HTTP/1.1 and HTTP/2 support.
  * Standard synchronous interface, but with async support if you need it.
  * Ability to make requests directly to WSGI applications or ASGI
    applications.
  * Strict timeouts everywhere.
  * Fully type annotated.
 .
 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
