Name | zodburi JSON |
Version |
3.0.0
JSON |
| download |
home_page | None |
Summary | Construct ZODB storage instances from URIs. |
upload_time | 2025-02-22 18:12:10 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | None |
keywords |
zodb
zodbconn
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
|
coveralls test coverage |
No coveralls.
|
``zodburi``
===========
A library which parses URIs and converts them to ZODB storage objects and
database arguments.
See the documentation at
https://docs.pylonsproject.org/projects/zodburi/en/latest/ for more information.
.. _change-log:
Change Log
----------
3.0.0 (2025-02-22)
~~~~~~~~~~~~~~~~~~
- Drop support for Python 3.7 and 3.8.
- Add support for Python 3.9 - 3.13.
- Rename private `zodburi._resolve_uri` helper to
`_get_uri_factory_and_dbkw` for clarity. Preserve original name
as a backward-compatibility alias (even though private, downstreams may
have found it needful to use the function).
- Update unit tests using `pytest` idioms, dropping the
`unittest.TestCase` classes.
- Remove Python2 compatibility shims.
- Replace use of deprecated `pkg_resources` APIs with new
`importlib.metadata` versions.
- Deprecate ``?demostorage`` query string parameter in favour of
``demo:`` URI scheme.
2.6.0 (2023-05-17)
~~~~~~~~~~~~~~~~~~
- Drop support for ZODB4.
- Drop support for python < 3.7.
2.5.0 (2021-05-12)
~~~~~~~~~~~~~~~~~~
- Support both ZODB4 and ZODB5.
- Add support for PyPy.
- Add support for Python 3.8.
- Drop support for Python 3.4.
- Add support for ``demo:`` URI scheme.
2.4.0 (2019-01-11)
~~~~~~~~~~~~~~~~~~
- Add support for Python 3.7.
- Fix PendingDeprecationWarning about ``cgi.parse_qsl``. (PR #21)
2.3.0 (2017-10-17)
~~~~~~~~~~~~~~~~~~
- Fix parsing of ``zeo://`` URI with IPv6 address.
- Drop support for Python 3.3.
- Add support for Python 3.6.
2.2.2 (2017-05-05)
~~~~~~~~~~~~~~~~~~
- Fix transposed ``install_requires`` and ``tests_require`` lists in
``setup.py``.
2.2.1 (2017-04-18)
~~~~~~~~~~~~~~~~~~
- Fix breakage added in 2.2 to the ``zconfig`` resolver.
2.2 (2017-04-17)
~~~~~~~~~~~~~~~~
- Add support for additional database configuration parameters:
``pool_timeout``, ``cache_size_bytes``, ``historical_pool_size``,
``historical_cache_size``, ``historical_cache_size_bytes``,
``historical_timeout``, and ``large_record_size``.
2.1 (2017-04-17)
~~~~~~~~~~~~~~~~
- Add support for Python 3.4 and 3.5.
- Drop support for Python 2.6 and 3.2.
- Add missing ClientStorage constructor kw args to resolver.
2.0 (2014-01-05)
~~~~~~~~~~~~~~~~
- Update ``ZODB3`` meta-package dependency to ``ZODB`` + ``ZConfig`` + ``ZEO``.
Those releases are what we import, and have final Py3k-compatible releases.
- Packaging: fix missing ``url`` argument to ``setup()``.
2.0b1 (2013-05-02)
~~~~~~~~~~~~~~~~~~
- Add support for Python 3.2 / 3.3.
- Add ``setup.py docs`` alias (runs ``setup.py develop`` and installs
documentation dependencies).
- Add ``setup.py dev`` alias (runs ``setup.py develop`` and installs
testing dependencies).
- Automate building the Sphinx docs via ``tox``.
- Fix ``zconfig:`` URIs under Python 2.7. The code worked around a bug in
the stdlib's ``urlparse.urlsplit`` for Python < 2.7; that workaround broke
under 2.7. See https://github.com/Pylons/zodburi/issues/5
- Drop support for Python 2.5.
1.1 (2012-09-12)
~~~~~~~~~~~~~~~~
- Remove support for ``postgres://`` URIs, which will now be provided by
the ``relstorage`` package. Thanks to Georges Dubus for the patch!
1.0 (2012-06-07)
~~~~~~~~~~~~~~~~
- Add support for ``postgres://`` URIs. Thanks to Georges Dubus for
the patch!
- Pin dependencies to Python 2.5-compatible versions when testing with
tox under Python 2.5.
- Update the documentation for publication to `ReadTheDocs
<https://docs.pylonsproject.org/projects/zodburi/en/latest/>`_
1.0b1 (2011-08-21)
~~~~~~~~~~~~~~~~~~
- Initial release.
Raw data
{
"_id": null,
"home_page": null,
"name": "zodburi",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "zodb, zodbconn",
"author": null,
"author_email": "Chris Rossi <pylons-discuss@googlegroups.com>",
"download_url": "https://files.pythonhosted.org/packages/be/a5/8921e5732f05fe5595fb5bfcb6f5264dd81258de2f12e763f8b4bd75fbd6/zodburi-3.0.0.tar.gz",
"platform": null,
"description": "``zodburi``\n===========\n\nA library which parses URIs and converts them to ZODB storage objects and\ndatabase arguments.\n\nSee the documentation at\nhttps://docs.pylonsproject.org/projects/zodburi/en/latest/ for more information.\n\n\n.. _change-log:\n\nChange Log\n----------\n\n3.0.0 (2025-02-22)\n~~~~~~~~~~~~~~~~~~\n\n- Drop support for Python 3.7 and 3.8.\n\n- Add support for Python 3.9 - 3.13.\n\n- Rename private `zodburi._resolve_uri` helper to \n `_get_uri_factory_and_dbkw` for clarity. Preserve original name\n as a backward-compatibility alias (even though private, downstreams may\n have found it needful to use the function).\n\n- Update unit tests using `pytest` idioms, dropping the\n `unittest.TestCase` classes.\n\n- Remove Python2 compatibility shims.\n\n- Replace use of deprecated `pkg_resources` APIs with new\n `importlib.metadata` versions.\n\n- Deprecate ``?demostorage`` query string parameter in favour of\n ``demo:`` URI scheme.\n\n\n2.6.0 (2023-05-17)\n~~~~~~~~~~~~~~~~~~\n\n- Drop support for ZODB4.\n\n- Drop support for python < 3.7.\n\n\n2.5.0 (2021-05-12)\n~~~~~~~~~~~~~~~~~~\n\n- Support both ZODB4 and ZODB5.\n\n- Add support for PyPy.\n\n- Add support for Python 3.8.\n\n- Drop support for Python 3.4.\n\n- Add support for ``demo:`` URI scheme.\n\n2.4.0 (2019-01-11)\n~~~~~~~~~~~~~~~~~~\n\n- Add support for Python 3.7.\n\n- Fix PendingDeprecationWarning about ``cgi.parse_qsl``. (PR #21)\n\n2.3.0 (2017-10-17)\n~~~~~~~~~~~~~~~~~~\n\n- Fix parsing of ``zeo://`` URI with IPv6 address.\n\n- Drop support for Python 3.3.\n\n- Add support for Python 3.6.\n\n2.2.2 (2017-05-05)\n~~~~~~~~~~~~~~~~~~\n\n- Fix transposed ``install_requires`` and ``tests_require`` lists in\n ``setup.py``.\n\n2.2.1 (2017-04-18)\n~~~~~~~~~~~~~~~~~~\n\n- Fix breakage added in 2.2 to the ``zconfig`` resolver.\n\n2.2 (2017-04-17)\n~~~~~~~~~~~~~~~~\n\n- Add support for additional database configuration parameters:\n ``pool_timeout``, ``cache_size_bytes``, ``historical_pool_size``,\n ``historical_cache_size``, ``historical_cache_size_bytes``,\n ``historical_timeout``, and ``large_record_size``.\n\n2.1 (2017-04-17)\n~~~~~~~~~~~~~~~~\n\n- Add support for Python 3.4 and 3.5.\n\n- Drop support for Python 2.6 and 3.2.\n\n- Add missing ClientStorage constructor kw args to resolver.\n\n2.0 (2014-01-05)\n~~~~~~~~~~~~~~~~\n\n- Update ``ZODB3`` meta-package dependency to ``ZODB`` + ``ZConfig`` + ``ZEO``.\n Those releases are what we import, and have final Py3k-compatible releases.\n\n- Packaging: fix missing ``url`` argument to ``setup()``.\n\n2.0b1 (2013-05-02)\n~~~~~~~~~~~~~~~~~~\n\n- Add support for Python 3.2 / 3.3.\n\n- Add ``setup.py docs`` alias (runs ``setup.py develop`` and installs\n documentation dependencies).\n\n- Add ``setup.py dev`` alias (runs ``setup.py develop`` and installs\n testing dependencies).\n\n- Automate building the Sphinx docs via ``tox``.\n\n- Fix ``zconfig:`` URIs under Python 2.7. The code worked around a bug in\n the stdlib's ``urlparse.urlsplit`` for Python < 2.7; that workaround broke\n under 2.7. See https://github.com/Pylons/zodburi/issues/5\n\n- Drop support for Python 2.5.\n\n1.1 (2012-09-12)\n~~~~~~~~~~~~~~~~\n\n- Remove support for ``postgres://`` URIs, which will now be provided by\n the ``relstorage`` package. Thanks to Georges Dubus for the patch!\n\n1.0 (2012-06-07)\n~~~~~~~~~~~~~~~~\n\n- Add support for ``postgres://`` URIs. Thanks to Georges Dubus for\n the patch!\n\n- Pin dependencies to Python 2.5-compatible versions when testing with\n tox under Python 2.5.\n\n- Update the documentation for publication to `ReadTheDocs\n <https://docs.pylonsproject.org/projects/zodburi/en/latest/>`_\n\n1.0b1 (2011-08-21)\n~~~~~~~~~~~~~~~~~~\n\n- Initial release.\n",
"bugtrack_url": null,
"license": null,
"summary": "Construct ZODB storage instances from URIs.",
"version": "3.0.0",
"project_urls": {
"Changelog": "https://github.com/Pylons/zodburi/blob/master/CHANGES.rst",
"Homepage": "https://docs.pylonsproject.org/projects/zodburi/en/latest/",
"Issues": "https://github.com/Pylons/zodburi/issues",
"Repository": "https://github.com/Pylons/zodburi"
},
"split_keywords": [
"zodb",
" zodbconn"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "c78453f0a2e27f4066790654c838f5fc2b779a31edf4bdaebc139de6021d1ec6",
"md5": "a0c3cbbcd1014231c4e69fce8d999a84",
"sha256": "b43329f3a092507cbd35ba66753dd307b5d08f2e908309848b91465c7d90a931"
},
"downloads": -1,
"filename": "zodburi-3.0.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "a0c3cbbcd1014231c4e69fce8d999a84",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 14352,
"upload_time": "2025-02-22T18:12:08",
"upload_time_iso_8601": "2025-02-22T18:12:08.286167Z",
"url": "https://files.pythonhosted.org/packages/c7/84/53f0a2e27f4066790654c838f5fc2b779a31edf4bdaebc139de6021d1ec6/zodburi-3.0.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bea58921e5732f05fe5595fb5bfcb6f5264dd81258de2f12e763f8b4bd75fbd6",
"md5": "8b553211942c29d734a48e7d12491255",
"sha256": "4359b964dffdae1e56a19124108d89f3730d15417260f828403cf05d6533cc41"
},
"downloads": -1,
"filename": "zodburi-3.0.0.tar.gz",
"has_sig": false,
"md5_digest": "8b553211942c29d734a48e7d12491255",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 24142,
"upload_time": "2025-02-22T18:12:10",
"upload_time_iso_8601": "2025-02-22T18:12:10.142286Z",
"url": "https://files.pythonhosted.org/packages/be/a5/8921e5732f05fe5595fb5bfcb6f5264dd81258de2f12e763f8b4bd75fbd6/zodburi-3.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-22 18:12:10",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "Pylons",
"github_project": "zodburi",
"travis_ci": true,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "zodburi"
}