Metadata-Version: 2.1
Name: zodburi
Version: 2.4.0
Summary: Construct ZODB storage instances from URIs.
Home-page: https://pylonsproject.org/
Author: Chris Rossi
Author-email: pylons-discuss@googlegroups.com
License: BSD-derived (http://www.repoze.org/LICENSE.txt)
Keywords: zodb zodbconn
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: Repoze Public License
Requires-Dist: ZODB
Requires-Dist: ZConfig
Requires-Dist: ZEO
Provides-Extra: docs
Requires-Dist: ZODB; extra == 'docs'
Requires-Dist: ZConfig; extra == 'docs'
Requires-Dist: ZEO; extra == 'docs'
Requires-Dist: mock; extra == 'docs'
Requires-Dist: Sphinx (>=1.8.1); extra == 'docs'
Requires-Dist: repoze.sphinx.autointerface; extra == 'docs'
Requires-Dist: pylons-sphinx-themes (>=1.0.10); extra == 'docs'
Provides-Extra: testing
Requires-Dist: ZODB; extra == 'testing'
Requires-Dist: ZConfig; extra == 'testing'
Requires-Dist: ZEO; extra == 'testing'
Requires-Dist: mock; extra == 'testing'
Requires-Dist: nose; extra == 'testing'
Requires-Dist: coverage; extra == 'testing'

``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
----------

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.


