.. image:: https://github.com/dataflake/Products.ZPsycopgDA/actions/workflows/tests.yml/badge.svg
:target: https://github.com/dataflake/Products.ZPsycopgDA/actions/workflows/tests.yml
.. image:: https://coveralls.io/repos/github/dataflake/Products.ZPsycopgDA/badge.svg?branch=master
:target: https://coveralls.io/github/dataflake/Products.ZPsycopgDA?branch=master
.. image:: https://readthedocs.org/projects/zpsycopgda/badge/?version=latest
:target: https://zpsycopgda.readthedocs.io
:alt: Documentation Status
.. image:: https://img.shields.io/pypi/v/Products.ZPsycopgDA.svg
:target: https://pypi.org/project/Products.ZPsycopgDA/
:alt: Latest stable release on PyPI
.. image:: https://img.shields.io/pypi/pyversions/Products.ZPsycopgDA.svg
:target: https://pypi.org/project/Products.ZPsycopgDA/
:alt: Stable release supported Python versions
=====================
Products.ZPsycopgDA
=====================
This is a Zope database adapter for PostGreSQL based on psycopg2__ for Zope 4
and up on all Python versions supported by Zope 4 and 5.
The code was forked from the original project at
https://github.com/psycopg/ZPsycopgDA because it appears to be dead. The old
code is not compatible with Zope 4/5 and Python 3.
.. __: https://pypi.org/project/psycopg2/
Contributors
============
- Federico Di Georgio: Original Author
- Daniele Varrazzo: Separate ZPsycopgDA project
- Rijk Stofberg: Eggifying
- Jens Vagelpohl: Compatibility with Zope 4 and up; drop Zope 2 and Zope 3
Changelog
=========
4.3 (2025-10-07)
----------------
- Ensure connections always reconnect deterministically after a server
disconnect (or crash).
Previously the pool may have harboured long-running connections that only
got reconnected when the pool felt like returning it to the application.
Those connections can easily have lingered for a long time, causing
user-visible errors long after the original problem was fixed, e.g. when
the server has restarted a couple of hours ago.
(`#7 <https://github.com/dataflake/Products.ZPsycopgDA/pull/7>`_)
- Add support for Python 3.13.
- Drop support for Python 3.7 and 3.8.
4.2 (2023-12-07)
----------------
- Add support for Python 3.12.
- Ensure connection always get properly initialized.
- Add support for PostgreSQL 13.
4.1 (2023-10-04)
----------------
- Add support for reading the connection string from an environment variable.
Use ``ENV:DB_CONN`` as connection string to look up the actual connection
string in the environment variable ``DB_CONN``.
4.0 (2023-02-02)
----------------
- Drop support for Python 2.7, 3.5, 3.6.
3.1 (2023-01-16)
----------------
- Update to latest meta/config
3.0 (2023-01-05)
----------------
- Add support for Python 3.11
3.0b1 (2022-08-31)
------------------
- Re-released under the Zope Public License (ZPL) version 2.1
- Updated package layout and name to conform to current Zope standards
- Added compatibility with Zope 4 and Zope 5
- Removed compatibility with Zope 2 and Zope 3
- Added unit and functional tests
2.4.7
-----
- Removed ZPsycopgDA dependencies on deprecated (Python or Zope) features.
2.4.6
-----
- Added all the supported isolation level options
- Fixed pool bugs (psycopg issues #123, #125, #142)
2.4.4
-----
- Make this and egg.
Raw data
{
"_id": null,
"home_page": "https://github.com/dataflake/Products.ZPsycopgDA",
"name": "Products.ZPsycopgDA",
"maintainer": "Jens Vagelpohl",
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": "jens@dataflake.org",
"keywords": null,
"author": "Federico Di Gregorio",
"author_email": "fog@initd.org",
"download_url": "https://files.pythonhosted.org/packages/70/bb/557b3b8ebdd4108ae1e6e36bd1c2440aeec6140cb200f5d4eaec3d041d5d/products_zpsycopgda-4.3.tar.gz",
"platform": null,
"description": ".. image:: https://github.com/dataflake/Products.ZPsycopgDA/actions/workflows/tests.yml/badge.svg\n :target: https://github.com/dataflake/Products.ZPsycopgDA/actions/workflows/tests.yml\n\n.. image:: https://coveralls.io/repos/github/dataflake/Products.ZPsycopgDA/badge.svg?branch=master\n :target: https://coveralls.io/github/dataflake/Products.ZPsycopgDA?branch=master\n\n.. image:: https://readthedocs.org/projects/zpsycopgda/badge/?version=latest\n :target: https://zpsycopgda.readthedocs.io\n :alt: Documentation Status\n\n.. image:: https://img.shields.io/pypi/v/Products.ZPsycopgDA.svg\n :target: https://pypi.org/project/Products.ZPsycopgDA/\n :alt: Latest stable release on PyPI\n\n.. image:: https://img.shields.io/pypi/pyversions/Products.ZPsycopgDA.svg\n :target: https://pypi.org/project/Products.ZPsycopgDA/\n :alt: Stable release supported Python versions\n\n\n=====================\n Products.ZPsycopgDA\n=====================\n\nThis is a Zope database adapter for PostGreSQL based on psycopg2__ for Zope 4\nand up on all Python versions supported by Zope 4 and 5.\n\nThe code was forked from the original project at\nhttps://github.com/psycopg/ZPsycopgDA because it appears to be dead. The old\ncode is not compatible with Zope 4/5 and Python 3.\n\n.. __: https://pypi.org/project/psycopg2/\n\nContributors\n============\n\n- Federico Di Georgio: Original Author\n- Daniele Varrazzo: Separate ZPsycopgDA project\n- Rijk Stofberg: Eggifying\n- Jens Vagelpohl: Compatibility with Zope 4 and up; drop Zope 2 and Zope 3\n\nChangelog\n=========\n\n4.3 (2025-10-07)\n----------------\n\n- Ensure connections always reconnect deterministically after a server\n disconnect (or crash).\n Previously the pool may have harboured long-running connections that only\n got reconnected when the pool felt like returning it to the application.\n Those connections can easily have lingered for a long time, causing\n user-visible errors long after the original problem was fixed, e.g. when\n the server has restarted a couple of hours ago.\n (`#7 <https://github.com/dataflake/Products.ZPsycopgDA/pull/7>`_)\n\n- Add support for Python 3.13.\n\n- Drop support for Python 3.7 and 3.8.\n\n\n4.2 (2023-12-07)\n----------------\n\n- Add support for Python 3.12.\n\n- Ensure connection always get properly initialized.\n\n- Add support for PostgreSQL 13.\n\n\n4.1 (2023-10-04)\n----------------\n\n- Add support for reading the connection string from an environment variable.\n Use ``ENV:DB_CONN`` as connection string to look up the actual connection\n string in the environment variable ``DB_CONN``.\n\n\n4.0 (2023-02-02)\n----------------\n\n- Drop support for Python 2.7, 3.5, 3.6.\n\n\n3.1 (2023-01-16)\n----------------\n\n- Update to latest meta/config\n\n\n3.0 (2023-01-05)\n----------------\n\n- Add support for Python 3.11\n\n\n3.0b1 (2022-08-31)\n------------------\n\n- Re-released under the Zope Public License (ZPL) version 2.1\n\n- Updated package layout and name to conform to current Zope standards\n\n- Added compatibility with Zope 4 and Zope 5\n\n- Removed compatibility with Zope 2 and Zope 3\n\n- Added unit and functional tests\n\n\n2.4.7\n-----\n\n- Removed ZPsycopgDA dependencies on deprecated (Python or Zope) features.\n\n\n2.4.6\n-----\n\n- Added all the supported isolation level options\n- Fixed pool bugs (psycopg issues #123, #125, #142)\n\n\n2.4.4\n-----\n\n- Make this and egg.\n\n",
"bugtrack_url": null,
"license": "ZPL-2.1",
"summary": "Zope database adapter for PostGreSQL",
"version": "4.3",
"project_urls": {
"Documentation": "https://zpsycopgda.readthedocs.io",
"Homepage": "https://github.com/dataflake/Products.ZPsycopgDA",
"Issue Tracker": "https://github.com/dataflake/Products.ZPsycopgDA/issues",
"Sources": "https://github.com/dataflake/Products.ZPsycopgDA"
},
"split_keywords": [],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "ee01753f9170b61903a83c8544d7bb5693d9ceeb8b2266c26ba7a69f13ea77af",
"md5": "7401224c4f4c3537537fd0346c5782c7",
"sha256": "2f6afe793db680818f3a678df35b8d38d0fb1c8aede68bc263f8c7d06aa17031"
},
"downloads": -1,
"filename": "products_zpsycopgda-4.3-py3-none-any.whl",
"has_sig": false,
"md5_digest": "7401224c4f4c3537537fd0346c5782c7",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 37075,
"upload_time": "2025-10-07T10:53:25",
"upload_time_iso_8601": "2025-10-07T10:53:25.016801Z",
"url": "https://files.pythonhosted.org/packages/ee/01/753f9170b61903a83c8544d7bb5693d9ceeb8b2266c26ba7a69f13ea77af/products_zpsycopgda-4.3-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "70bb557b3b8ebdd4108ae1e6e36bd1c2440aeec6140cb200f5d4eaec3d041d5d",
"md5": "863c3485b34f8aa37b67565e289d5370",
"sha256": "8016484700a0a9932a77da7a523a465aa490d7e902cab7ed2bc6532743304efd"
},
"downloads": -1,
"filename": "products_zpsycopgda-4.3.tar.gz",
"has_sig": false,
"md5_digest": "863c3485b34f8aa37b67565e289d5370",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 38045,
"upload_time": "2025-10-07T10:53:26",
"upload_time_iso_8601": "2025-10-07T10:53:26.108416Z",
"url": "https://files.pythonhosted.org/packages/70/bb/557b3b8ebdd4108ae1e6e36bd1c2440aeec6140cb200f5d4eaec3d041d5d/products_zpsycopgda-4.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-10-07 10:53:26",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "dataflake",
"github_project": "Products.ZPsycopgDA",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "products.zpsycopgda"
}