File: control

package info (click to toggle)
httpx 0.16.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,840 kB
  • sloc: python: 9,094; sh: 95; javascript: 4; makefile: 4
file content (68 lines) | stat: -rw-r--r-- 2,365 bytes parent folder | download
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
Source: httpx
Section: python
Priority: optional
Maintainer: Sandro Tosi <morph@debian.org>
Uploaders: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>,
Build-Depends: debhelper (>= 13),
               debhelper-compat (= 13),
               dh-python,
               python3-all,
               python3-brotli <!nocheck>,
               python3-certifi,
               python3-chardet,
               python3-h11,
               python3-h2,
               python3-httpcore (>= 0.12) <!nocheck>,
               python3-idna,
               python3-pytest <!nocheck>,
               python3-pytest-cov <!nocheck>,
               python3-rfc3986 (>= 1.3.0),
               python3-setuptools,
               python3-sniffio,
               python3-trio <!nocheck>,
               python3-trustme <!nocheck>,
               python3-urllib3,
               python3-uvicorn <!nocheck>,
Standards-Version: 4.5.0
Homepage: https://www.python-httpx.org/
Vcs-Git: https://salsa.debian.org/python-team/packages/httpx.git
Vcs-Browser: https://salsa.debian.org/python-team/packages/httpx

Package: python3-httpx
Architecture: all
Depends: ${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