File: control

package info (click to toggle)
python-dugong 3.8.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 548 kB
  • sloc: python: 2,714; makefile: 21; sh: 7
file content (60 lines) | stat: -rw-r--r-- 2,481 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
Source: python-dugong
Maintainer: Nikolaus Rath <Nikolaus@rath.org>
Uploaders: Debian Python Team <team+python@tracker.debian.org>
Section: python
Priority: optional
Build-Depends: debhelper-compat (= 13),
               python3-all,
               python3-sphinx,
               python3-pytest (>= 3.3.0),
               dh-python,
               python3-setuptools
Standards-Version: 4.5.1
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-dugong
Vcs-Git: https://salsa.debian.org/python-team/packages/python-dugong.git
Homepage: https://github.com/python-dugong/python-dugong
Rules-Requires-Root: no

Package: python3-dugong
Architecture: all
Depends: ${misc:Depends},
         ${python3:Depends}
Suggests: python-dugong-doc
Provides: ${python3:Provides}
Description: HTTP 1.1 client module for Python
 The Python Dugong module provides an API for communicating with HTTP 1.1
 servers. It is an alternative to the standard library's http.client (formerly
 httplib) module. In contrast to http.client, Dugong:
 .
  * allows you to send multiple requests right after each other without having
    to read the responses first.
  * supports waiting for 100-continue before sending the request body.
  * raises an exception instead of silently delivering partial data if the
    connection is closed before all data has been received.
  * raises one specific exception (ConnectionClosed) if the connection has been
    closed (while http.client connection may raise any of BrokenPipeError,
    BadStatusLine, ConnectionAbortedError, ConnectionResetError, IncompleteRead
    or simply return '' on read)
  * supports non-blocking, asynchronous operation and is compatible with the
    asyncio module.
  * can in most cases distinguish between an unavailable DNS server and
    an unresolvable hostname.
  * is not compatible with old HTTP 0.9 or 1.0 servers.
 .
 All request and response headers are represented as str, but must be encodable
 in latin1. Request and response body must be bytes-like objects or binary
 streams.

Package: python-dugong-doc
Architecture: all
Multi-Arch: foreign
Section: doc
Depends: ${sphinxdoc:Depends},
         ${misc:Depends}
Recommends: python3-dugong
Description: HTTP 1.1 client module for Python (documentation)
 The Python Dugong module provides an API for communicating with HTTP 1.1
 servers. It is an alternative to the standard library's http.client (formerly
 httplib) module.
 .
 This package provides the documentation.