File: control

package info (click to toggle)
psycopg3 3.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,836 kB
  • sloc: python: 46,657; sh: 403; ansic: 149; makefile: 73
file content (199 lines) | stat: -rw-r--r-- 6,780 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
Source: psycopg3
Section: python
Priority: optional
Build-Depends:
 debhelper-compat (= 13),
 dh-sequence-python3,
 dh-sequence-sphinxdoc,
 libpq-dev,
 postgresql,
 cmake,
 python3-all-dev,
 python3-setuptools,
 pybuild-plugin-pyproject,
 python3-typing-extensions,
 python3-anyio <!nocheck>,
 python3-pytest <!nocheck>,
 python3-dnspython <!nocheck>,
 python3-numpy <!nocheck>,
 python3-shapely <!nocheck>,
 python3-tenacity <!nocheck>
Build-Depends-Indep:
 python3-doc <!nodoc>,
 python-psycopg2-doc <!nodoc>,
 python-numpy-doc <!nodoc>,
 python3-sphinx <!nodoc>,
 python3-sphinx-autodoc-typehints <!nodoc>,
 furo <!nodoc>,
Build-Depends-Arch:
 cython3,
Maintainer: Tomasz Rybak <serpent@debian.org>
Uploaders: Debian Python Team <team+python@tracker.debian.org>
Standards-Version: 4.7.2
Rules-Requires-Root: no
Vcs-Git: https://salsa.debian.org/python-team/packages/psycopg3.git
Vcs-Browser: https://salsa.debian.org/python-team/packages/psycopg3
Homepage: https://www.psycopg.org/psycopg3/

Package: python3-psycopg
Architecture: all
Depends:
 ${misc:Depends},
 ${python3:Depends},
 ${shlibs:Depends},
 libpq5
Recommends:
 python3-psycopg-c
Suggests:
 python3-psycopg-pool,
 python-psycopg-doc
Conflicts: python3-psycopg3
Replaces: python3-psycopg3
Description: PostgreSQL database adapter for Python 3
 Psycopg 3 is a newly designed PostgreSQL database adapter for the Python
 programming language.
 .
 Psycopg 3 is a complete rewrite of Psycopg 2, maintaining the same
 fundamental libpq wrapper architecture and DB-API interface design, but
 exposing new features to better work with the newer versions of Python
 and PostgreSQL.
 .
 On the Python side, Psycopg 3 allows the use of asyncio-based
 concurrency and static typing. Many improvement to the Python interface
 make the library much simpler and more idiomatic to use,
 .
 On the PostgreSQL side, Psycopg 3 makes use of server-side parameters,
 prepared statements, binary parameters, and great support for COPY
 operations.
 .
 Psycopg 3 presents a familiar interface for everyone who has used
 Psycopg 2 or any other `DB-API 2.0` database adapter, but allows one
 to use more modern PostgreSQL and Python features, such as:
  - Strict Strong Typing
  - asynchronous support
  - server-side parameters binding
  - binary communication
  - a great integration of the COPY support
  - direct access to the libpq functionalities

Package: python3-psycopg-c
Architecture: any
Depends:
 ${misc:Depends},
 ${python3:Depends},
 ${shlibs:Depends},
 libpq5,
 python3-psycopg (= ${source:Version})
Suggests:
 python3-psycopg-pool,
 python-psycopg-doc
Description: PostgreSQL database adapter for Python 3 - binary module
 Psycopg 3 is a newly designed PostgreSQL database adapter for the Python
 programming language.
 .
 Psycopg 3 is a complete rewrite of Psycopg 2, maintaining the same
 fundamental libpq wrapper architecture and DB-API interface design, but
 exposing new features to better work with the newer versions of Python
 and PostgreSQL.
 .
 On the Python side, Psycopg 3 allows the use of asyncio-based
 concurrency and static typing. Many improvement to the Python interface
 make the library much simpler and more idiomatic to use,
 .
 On the PostgreSQL side, Psycopg 3 makes use of server-side parameters,
 prepared statements, binary parameters, and great support for COPY
 operations.
 .
 Psycopg 3 presents a familiar interface for everyone who has used
 Psycopg 2 or any other `DB-API 2.0` database adapter, but allows one
 to use more modern PostgreSQL and Python features, such as:
  - Strict Strong Typing
  - asynchronous support
  - server-side parameters binding
  - binary communication
  - a great integration of the COPY support
  - direct access to the libpq functionalities
 .
 This package contains binary module, increasing performance of operations

Package: python3-psycopg-pool
Architecture: all
Depends:
 ${misc:Depends},
 ${python3:Depends},
 ${shlibs:Depends},
 python3-psycopg
Conflicts: python3-psycopg3-pool
Replaces: python3-psycopg3-pool
Description: PostgreSQL database adapter for Python 3: connection pool
 Psycopg 3 is a newly designed PostgreSQL database adapter for the Python
 programming language.
 .
 Psycopg 3 is a complete rewrite of Psycopg 2, maintaining the same
 fundamental libpq wrapper architecture and DB-API interface design, but
 exposing new features to better work with the newer versions of Python
 and PostgreSQL.
 .
 On the Python side, Psycopg 3 allows the use of asyncio-based
 concurrency and static typing. Many improvement to the Python interface
 make the library much simpler and more idiomatic to use,
 .
 On the PostgreSQL side, Psycopg 3 makes use of server-side parameters,
 prepared statements, binary parameters, and great support for COPY
 operations.
 .
 Psycopg 3 presents a familiar interface for everyone who has used
 Psycopg 2 or any other `DB-API 2.0` database adapter, but allows one
 to use more modern PostgreSQL and Python features, such as:
  - Strict Strong Typing
  - asynchronous support
  - server-side parameters binding
  - binary communication
  - a great integration of the COPY support
  - direct access to the libpq functionalities
 .
 This package contains two connection pool implementations

Package: python-psycopg-doc
Section: doc
Architecture: all
Multi-Arch: foreign
Build-Profiles: <!nodoc>
Depends:
 ${misc:Depends},
 ${sphinxdoc:Depends}
Recommends:
 python3-doc,
 python-numpy-doc,
 python-psycopg2-doc
Suggests: python3-psycopg
Conflicts: python-psycopg3-doc
Replaces: python-psycopg3-doc
Description: PostgreSQL database adapter for Python 3 (documentation package)
 Psycopg 3 is a newly designed PostgreSQL database adapter for the Python
 programming language.
 .
 Psycopg 3 is a complete rewrite of Psycopg 2, maintaining the same
 fundamental libpq wrapper architecture and DB-API interface design, but
 exposing new features to better work with the newer versions of Python
 and PostgreSQL.
 .
 On the Python side, Psycopg 3 allows the use of asyncio-based
 concurrency and static typing. Many improvement to the Python interface
 make the library much simpler and more idiomatic to use,
 .
 On the PostgreSQL side, Psycopg 3 makes use of server-side parameters,
 prepared statements, binary parameters, and great support for COPY
 operations.
 .
 Psycopg 3 presents a familiar interface for everyone who has used
 Psycopg 2 or any other `DB-API 2.0` database adapter, but allows one
 to use more modern PostgreSQL and Python features, such as:
  - Strict Strong Typing
  - asynchronous support
  - server-side parameters binding
  - binary communication
  - a great integration of the COPY support
  - direct access to the libpq functionalities
 .
 This package contains the psycopg3 documentation