PostgreSQL database adapter for Python
Provides
Requires
License
LGPL-3.0-only
Changelog
* Tue Jan 27 2026 Dirk Müller <dmueller@suse.com>
- update to 3.3.2:
* Add :ref:`template strings queries <template-strings>`
(:ticket:`#1054`).
* More flexible :ref:`composite adaptation<adapt-composite>`:
it is now possible to adapt Python objects to PostgreSQL
composites and back even if they are not sequences or if they
take keyword arguments (:ticket:`#932`, :ticket:`#1202`).
* Cursors are now iterators, not just iterables. This means you
can call next(cur) or anext(cur), which is useful as a
:ref:`type-safe expression <typing-fetchone>`
(:ticket:`#1064`).