zope.catalog


Namezope.catalog JSON
Version 5.0 PyPI version JSON
download
home_pagehttps://github.com/zopefoundation/zope.catalog
SummaryCataloging and Indexing Framework for the Zope Toolkit
upload_time2023-09-01 12:10:31
maintainer
docs_urlNone
authorZope Foundation and Contributors
requires_python>=3.7
licenseZPL 2.1
keywords zope3 catalog index
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ==============
 zope.catalog
==============

.. image:: https://img.shields.io/pypi/v/zope.catalog.svg
        :target: https://pypi.python.org/pypi/zope.catalog/
        :alt: Latest release

.. image:: https://img.shields.io/pypi/pyversions/zope.catalog.svg
        :target: https://pypi.org/project/zope.catalog/
        :alt: Supported Python versions

.. image:: https://github.com/zopefoundation/zope.catalog/actions/workflows/tests.yml/badge.svg
        :target: https://github.com/zopefoundation/zope.catalog/actions/workflows/tests.yml

.. image:: https://coveralls.io/repos/github/zopefoundation/zope.catalog/badge.svg?branch=master
        :target: https://coveralls.io/github/zopefoundation/zope.catalog?branch=master

.. image:: https://readthedocs.org/projects/zopecatalog/badge/?version=latest
        :target: http://zopecatalog.readthedocs.org/en/latest/
        :alt: Documentation Status

Catalogs provide management of collections of related indexes with a basic
search algorithm.


=========
 Changes
=========

5.0 (2023-09-01)
================

- Drop support for Python 2.7, 3.5, 3.6.

- Drop support for deprecated ``python setup.py test``.

- Add support for Python 3.11.


4.4.1 (2022-09-01)
==================

- Fix deprecation warning.


4.4.0 (2022-04-06)
==================

- Add support for Python 3.7, 3.8, 3.9, 3.10.

- Drop support for Python 3.4.


4.3.0 (2021-03-19)
==================

- Drop support for Python 3.3.

- Replace deprecated usage of ``zope.site.hooks`` with
  ``zope.component.hooks``.

- Replace deprecated test usage of
  ``zope.component.interfaces.IComponentLookup`` with the proper
  import from ``zope.interface``. This only impacted testing this
  package.


4.2.1 (2017-05-09)
==================

- Fix the definition of ``IAttributeIndex`` to specify a
  ``NativeStringLine`` instead of a ``BytesLine``. Bytes cannot be
  used with ``getattr`` on Python 3.
  See `issue 7 <https://github.com/zopefoundation/zope.catalog/issues/7>`_.


4.2.0 (2017-05-05)
==================

- Add support for Python 3.5 and 3.6.

- Drop support for Python 2.6.

- Fix the text index throwing a ``WrongType`` error on import in
  Python 3. See `issue 5 <https://github.com/zopefoundation/zope.catalog/issues/5>`_.

4.1.0 (2015-06-02)
==================

- Replace use of long-deprecated ``zope.testing.doctest`` with stdlib's
  ``doctest``.

- Add support for PyPy (PyPy3 support is blocked on a PyPy3-compatible
  release of ``zodbpickle``).

- Convert doctests to Sphinx documentation, including building docs
  and running doctest snippets under ``tox``.

4.0.0 (2014-12-24)
==================

- Add support for Python 3.4.

4.0.0a1 (2013-02-25)
====================

- Add support for Python 3.3.

- Replace deprecated ``zope.interface.implements`` usage with equivalent
  ``zope.interface.implementer`` decorator.

- Drop support for Python 2.4 and 2.5.

3.8.2 (2011-11-29)
==================

- Conform to repository policy.

3.8.1 (2009-12-27)
==================

- Remov ``zope.app.testing`` dependency.

3.8.0 (2009-02-01)
==================

- Move core functionality from ``zope.app.catalog`` to this package.
  The ``zope.app.catalog`` package now only contains ZMI-related browser
  views and backward-compatibility imports.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/zopefoundation/zope.catalog",
    "name": "zope.catalog",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "zope3 catalog index",
    "author": "Zope Foundation and Contributors",
    "author_email": "zope-dev@zope.dev",
    "download_url": "https://files.pythonhosted.org/packages/67/2c/026ac106ba157a76ae2d3dfd7f9e28deaa53fa2483a602cb7eba87092d8c/zope.catalog-5.0.tar.gz",
    "platform": null,
    "description": "==============\n zope.catalog\n==============\n\n.. image:: https://img.shields.io/pypi/v/zope.catalog.svg\n        :target: https://pypi.python.org/pypi/zope.catalog/\n        :alt: Latest release\n\n.. image:: https://img.shields.io/pypi/pyversions/zope.catalog.svg\n        :target: https://pypi.org/project/zope.catalog/\n        :alt: Supported Python versions\n\n.. image:: https://github.com/zopefoundation/zope.catalog/actions/workflows/tests.yml/badge.svg\n        :target: https://github.com/zopefoundation/zope.catalog/actions/workflows/tests.yml\n\n.. image:: https://coveralls.io/repos/github/zopefoundation/zope.catalog/badge.svg?branch=master\n        :target: https://coveralls.io/github/zopefoundation/zope.catalog?branch=master\n\n.. image:: https://readthedocs.org/projects/zopecatalog/badge/?version=latest\n        :target: http://zopecatalog.readthedocs.org/en/latest/\n        :alt: Documentation Status\n\nCatalogs provide management of collections of related indexes with a basic\nsearch algorithm.\n\n\n=========\n Changes\n=========\n\n5.0 (2023-09-01)\n================\n\n- Drop support for Python 2.7, 3.5, 3.6.\n\n- Drop support for deprecated ``python setup.py test``.\n\n- Add support for Python 3.11.\n\n\n4.4.1 (2022-09-01)\n==================\n\n- Fix deprecation warning.\n\n\n4.4.0 (2022-04-06)\n==================\n\n- Add support for Python 3.7, 3.8, 3.9, 3.10.\n\n- Drop support for Python 3.4.\n\n\n4.3.0 (2021-03-19)\n==================\n\n- Drop support for Python 3.3.\n\n- Replace deprecated usage of ``zope.site.hooks`` with\n  ``zope.component.hooks``.\n\n- Replace deprecated test usage of\n  ``zope.component.interfaces.IComponentLookup`` with the proper\n  import from ``zope.interface``. This only impacted testing this\n  package.\n\n\n4.2.1 (2017-05-09)\n==================\n\n- Fix the definition of ``IAttributeIndex`` to specify a\n  ``NativeStringLine`` instead of a ``BytesLine``. Bytes cannot be\n  used with ``getattr`` on Python 3.\n  See `issue 7 <https://github.com/zopefoundation/zope.catalog/issues/7>`_.\n\n\n4.2.0 (2017-05-05)\n==================\n\n- Add support for Python 3.5 and 3.6.\n\n- Drop support for Python 2.6.\n\n- Fix the text index throwing a ``WrongType`` error on import in\n  Python 3. See `issue 5 <https://github.com/zopefoundation/zope.catalog/issues/5>`_.\n\n4.1.0 (2015-06-02)\n==================\n\n- Replace use of long-deprecated ``zope.testing.doctest`` with stdlib's\n  ``doctest``.\n\n- Add support for PyPy (PyPy3 support is blocked on a PyPy3-compatible\n  release of ``zodbpickle``).\n\n- Convert doctests to Sphinx documentation, including building docs\n  and running doctest snippets under ``tox``.\n\n4.0.0 (2014-12-24)\n==================\n\n- Add support for Python 3.4.\n\n4.0.0a1 (2013-02-25)\n====================\n\n- Add support for Python 3.3.\n\n- Replace deprecated ``zope.interface.implements`` usage with equivalent\n  ``zope.interface.implementer`` decorator.\n\n- Drop support for Python 2.4 and 2.5.\n\n3.8.2 (2011-11-29)\n==================\n\n- Conform to repository policy.\n\n3.8.1 (2009-12-27)\n==================\n\n- Remov ``zope.app.testing`` dependency.\n\n3.8.0 (2009-02-01)\n==================\n\n- Move core functionality from ``zope.app.catalog`` to this package.\n  The ``zope.app.catalog`` package now only contains ZMI-related browser\n  views and backward-compatibility imports.\n",
    "bugtrack_url": null,
    "license": "ZPL 2.1",
    "summary": "Cataloging and Indexing Framework for the Zope Toolkit",
    "version": "5.0",
    "project_urls": {
        "Homepage": "https://github.com/zopefoundation/zope.catalog"
    },
    "split_keywords": [
        "zope3",
        "catalog",
        "index"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7fc25675bca46d289583d4a778c794d702186ab02c55ab23f8987764615e0823",
                "md5": "c09dfb2ad5279e4a42efd13147376a0d",
                "sha256": "a55ff7ca6e3dbe2c047ac428a7c3a600347376e5676b084e457d129920287412"
            },
            "downloads": -1,
            "filename": "zope.catalog-5.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c09dfb2ad5279e4a42efd13147376a0d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 20006,
            "upload_time": "2023-09-01T12:10:28",
            "upload_time_iso_8601": "2023-09-01T12:10:28.992162Z",
            "url": "https://files.pythonhosted.org/packages/7f/c2/5675bca46d289583d4a778c794d702186ab02c55ab23f8987764615e0823/zope.catalog-5.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "672c026ac106ba157a76ae2d3dfd7f9e28deaa53fa2483a602cb7eba87092d8c",
                "md5": "51d7375a40a23abab5d5aa711995cc6b",
                "sha256": "504419e065e427747aa5ee0f0e495ebcf3ff8841e3b699f4e8db28a6f80bdfcf"
            },
            "downloads": -1,
            "filename": "zope.catalog-5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "51d7375a40a23abab5d5aa711995cc6b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 31829,
            "upload_time": "2023-09-01T12:10:31",
            "upload_time_iso_8601": "2023-09-01T12:10:31.683637Z",
            "url": "https://files.pythonhosted.org/packages/67/2c/026ac106ba157a76ae2d3dfd7f9e28deaa53fa2483a602cb7eba87092d8c/zope.catalog-5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-01 12:10:31",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "zopefoundation",
    "github_project": "zope.catalog",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "zope.catalog"
}
        
Elapsed time: 0.09695s