Skip to main content
Latest release Supported Python versions https://github.com/zopefoundation/zope.index/actions/workflows/tests.yml/badge.svg https://coveralls.io/repos/github/zopefoundation/zope.index/badge.svg?branch=master Documentation Status

The zope.index package provides several indices for the Zope catalog. These include:

  • a field index (for indexing orderable values),

  • a keyword index,

  • a topic index,

  • a text index (with support for lexicon, splitter, normalizer, etc.)

Change log

8.2 (2026-08-20)

  • Add support for Python 3.15.

  • Add support for automatically building and publishing Windows/ARM64 wheels.

  • Add support for automatically building and publishing source distributions.

8.1 (2025-11-18)

  • Move all supported package metadata into pyproject.toml.

  • Drop support for Python 3.9.

  • Add support for Python 3.14.

8.0 (2025-09-12)

  • Replace pkg_resources namespace with PEP 420 native namespace.

  • Drop support for Python 3.8.

  • Add preliminary support for Python 3.14.

7.0 (2024-09-18)

6.1 (2024-02-02)

  • Add support for Python 3.12.

  • Add preliminary support for Python 3.13 as of 3.13a3.

  • Fix error in OkapiIndex._search_wids for Python 3.10+, occurring when a word is contained in more than 10 documents. #48

6.0 (2023-03-24)

  • Add support for Python 3.11.

  • Add preliminary support for Python 3.12a5.

  • Drop support for Python 2.7, 3.5, 3.6.

5.2.1 (2022-09-15)

5.2.0 (2022-04-06)

  • Add support for Python 3.10.

5.1.0 (2021-07-19)

  • Add support for Python 3.9.

  • Build aarch64 wheels.

5.0.0 (2019-11-12)

  • Fix zope.index.text.ricecode.decode_deltas(..., []). See issue 22.

  • Drop support for Python 3.4.

  • Add support for Python 3.8.

4.4.0 (2018-10-05)

  • Drop support for Python 3.3.

  • Add support for Python 3.7. SortingIndexMixin.sort now just returns instead of raising StopIteration as required by PEP 479. See issue 20.

  • Docs are now hosted at https://zopeindex.readthedocs.io/

  • Drop support for setup.py test.

  • Remove some internal test scripts that were never ported to Python 3.

  • Reach and maintain 100% test coverage.

4.3.0 (2017-04-24)

  • None are now valid values in a field index. This requires BTrees >= 4.4.1.

  • Allow TypeError to propagate from a field index when the value cannot be stored in a BTree. Previously it was silently ignored because it was expected that these were usually None.

  • Add support for Python 3.6. See issue 8.

  • Make the C implementation of the text index’s score function (zope.text.index.okascore) importable under Python 3. Previously we would fall back to a pure-Python implementation. See issue 14.

  • Packaging: Distribute manylinux wheels and Windows wheels.

4.2.0 (2016-06-10)

  • Drop support for Python 2.6.

  • Add support for Python 3.5.

4.1.0 (2014-12-27)

4.0.1 (2013-02-28)

4.0.0 (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.6.4 (2012-03-12)

  • Insure proper unindex behavior if index_doc is called with a empty sequence.

  • Use the standard Python doctest module instead of zope.testing.doctest

3.6.3 (2011-12-03)

  • KeywordIndex: Minor optimization; use __nonzero__ instead of __len__ to avoid loading the full TreeSet.

3.6.2 (2011-12-03)

  • KeywordIndex: Store docids in TreeSet rather than a Set when the number of documents matching a word reaches a configurable threshold (default 64). The rule is applied to individual words at indexing time, but you can call the new optimize method to optimize all the words in an index at once. Designed to fix LP #881950.

3.6.1 (2010-07-08)

  • TextIndex: reuse the lexicon from the underlying Okapi / Cosine index, if passed. (LP #232516)

  • Lexicon: avoid raising an exception when indexing None. (LP #598776)

3.6.0 (2009-08-03)

  • Improve test readability and reached 100% test coverage.

  • Fix a broken optimization in okascore.c: it was passing a Python float to the PyInt_AS_LONG() macro. This resulted in wrong scores, especially on 64 bit platforms, where all scores typically ended up being zero.

  • Change okascore.c to produce the same results as its Python equivalent, reducing the brittleness of the text index tests.

3.5.2 (2009-06-09)

  • Port okascore.c optimization used in okapiiindex from Zope2 catalog implementation. This module is compiled conditionally, based on whether your environment has a working C compiler.

  • Don’t use len(self._docweight) in okapiindex _search_wids method (obtaining the length of a BTree is very expensive at scale). Instead use self.documentCount(). Also a Zope2 port.

3.5.1 (2009-02-27)

  • The baseindex, okapiindex, and lexicon used plain counters for various lengths, which is unsuitable for production applications. Backport code from Zope2 indexes which opportunistically replaces the counters with BTree.Length objects.

  • Backport non-insane version of baseindex._del_wordinfo from Zope2 text index. This improves deletion performance by several orders of magnitude.

  • Don’t modify given query dictionary in the KeywordIndex.apply method.

  • Move FieldIndex’s sorting functionality to a mixin class so it can be reused by zc.catalog’s ValueIndex.

3.5.0 (2008-12-30)

  • Remove zope.testing from dependencies, as it’s not really needed.

  • Define IIndexSort interface for indexes that support sorting.

  • Implement sorting for FieldIndex (adapted from repoze.catalog/ZCatalog).

  • Add an apply method for KeywordIndex/TopicIndex, making them implement IIndexSearch that can be useful in catalog.

  • Optimize the search method of KeywordIndex/TopicIndex by using multiunion for the or operator and sorting before intersection for and.

  • IMPORTANT: KeywordIndex/TopicIndex now use IFSets instead of IISets. This makes it more compatible with other indexes (for example, when using in catalog). This change can lead to problems, if your code somehow depends on the II nature of sets, as it was before.

    Also, FilteredSets used to use IFSets as well, if you have any FilteredSets pickled in the database, you need to migrate them to IFSets yourself. You can do it like that:

    filter._ids = filter.family.IF.Set(filter._ids)

    Where filter is an instance of FilteredSet.

  • IMPORTANT: KeywordIndex are now non-normalizing. Because it can be useful for non-string keywords, where case-normalizing doesn’t make any sense. Instead, it provides the normalize method that can be overriden by subclasses to provide some normalization.

    The CaseInsensitiveKeywordIndex class is now provided that do case-normalization for string-based keywords. The old CaseSensitiveKeywordIndex is gone, applications should use KeywordIndex for that.

Looks like the KeywordIndex/TopicIndex was sort of abadonware and wasn’t used by application developers, so after some discussion we decided to refactor them to make them more usable, optimal and compatible with other indexes and catalog.

Porting application from old KeywordIndex/TopicIndex to new ones are rather easy and explained above, so we believe that it isn’t a problem. Please, use zope3-users@zope.org or zope-dev@zope.org mailing lists, if you have any problems with migration.

Thanks Chris McDonough of repoze for supporting and useful code.

3.4.1 (2007-09-28)

  • Fix bug in package metadata (wrong homepage URL).

3.4.0 (2007-09-28)

No further changes since 3.4.0a1.

3.4.0a1 (2007-04-22)

Initial release as a separate project, corresponds to zope.index from Zope 3.4.0a1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

zope_index-8.2.tar.gz (75.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

zope_index-8.2-cp314-cp314-win_arm64.whl (94.4 kB view details)

Uploaded CPython 3.14Windows ARM64

zope_index-8.2-cp314-cp314-win_amd64.whl (94.8 kB view details)

Uploaded CPython 3.14Windows x86-64

zope_index-8.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (101.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

zope_index-8.2-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (100.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

zope_index-8.2-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (100.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

zope_index-8.2-cp314-cp314-macosx_11_0_arm64.whl (91.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

zope_index-8.2-cp314-cp314-macosx_10_9_x86_64.whl (91.0 kB view details)

Uploaded CPython 3.14macOS 10.9+ x86-64

zope_index-8.2-cp313-cp313-win_arm64.whl (94.4 kB view details)

Uploaded CPython 3.13Windows ARM64

zope_index-8.2-cp313-cp313-win_amd64.whl (94.7 kB view details)

Uploaded CPython 3.13Windows x86-64

zope_index-8.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (101.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

zope_index-8.2-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (100.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

zope_index-8.2-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (100.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

zope_index-8.2-cp313-cp313-macosx_11_0_arm64.whl (91.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zope_index-8.2-cp313-cp313-macosx_10_9_x86_64.whl (91.0 kB view details)

Uploaded CPython 3.13macOS 10.9+ x86-64

zope_index-8.2-cp312-cp312-win_arm64.whl (94.4 kB view details)

Uploaded CPython 3.12Windows ARM64

zope_index-8.2-cp312-cp312-win_amd64.whl (94.7 kB view details)

Uploaded CPython 3.12Windows x86-64

zope_index-8.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (101.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

zope_index-8.2-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (100.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

zope_index-8.2-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (100.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

zope_index-8.2-cp312-cp312-macosx_11_0_arm64.whl (91.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zope_index-8.2-cp312-cp312-macosx_10_9_x86_64.whl (91.0 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

zope_index-8.2-cp311-cp311-win_arm64.whl (94.4 kB view details)

Uploaded CPython 3.11Windows ARM64

zope_index-8.2-cp311-cp311-win_amd64.whl (94.7 kB view details)

Uploaded CPython 3.11Windows x86-64

zope_index-8.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (100.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

zope_index-8.2-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (100.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

zope_index-8.2-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (99.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

zope_index-8.2-cp311-cp311-macosx_11_0_arm64.whl (91.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zope_index-8.2-cp311-cp311-macosx_10_9_x86_64.whl (91.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

zope_index-8.2-cp310-cp310-win_amd64.whl (94.7 kB view details)

Uploaded CPython 3.10Windows x86-64

zope_index-8.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (100.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

zope_index-8.2-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (99.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

zope_index-8.2-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (99.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

zope_index-8.2-cp310-cp310-macosx_11_0_arm64.whl (91.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

zope_index-8.2-cp310-cp310-macosx_10_9_x86_64.whl (91.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file zope_index-8.2.tar.gz.

File metadata

  • Download URL: zope_index-8.2.tar.gz
  • Upload date:
  • Size: 75.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for zope_index-8.2.tar.gz
Algorithm Hash digest
SHA256 e51f0534a445ddc161d3c6997e652b4420fb0d560a035b01803fa8e465060381
MD5 7fd44a0f380937d9c8b78213b469c7f8
BLAKE2b-256 aacf68b62cfc034645f47b9d2b2f31193e6d8a94171c1bdddab0c86fcdb1efb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2.tar.gz:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: zope_index-8.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 94.4 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for zope_index-8.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 b7dacf55d754ee66a90c39d8ef9f308f6f73ca2f6bffb769af90485efd091cff
MD5 5450df9a3df2951501171df312eb1559
BLAKE2b-256 3880d2bc4fcf1962cd23e2edb7b7f5f6b72d6b0f9fe1aa1d1c8ac337f6d5e5e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp314-cp314-win_arm64.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: zope_index-8.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 94.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for zope_index-8.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 295d9ac3deac425db13e82097bdb321300cd8352b27943232332f5b296bf8de1
MD5 7db3541aa3e5a4c13614c974d70930e0
BLAKE2b-256 382cf791a5743de29b9d010ae5b01806e95590d688127bf7d6c93ff8fd07aa5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp314-cp314-win_amd64.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zope_index-8.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 f2c0ece2aad11ac02c719cc6bfba12c5f95f55e35f7e06a0ce99f5b57f537270
MD5 fdd59c56e3aa1f3adeccdfb9ab1a468f
BLAKE2b-256 0d51807d18e90a6eb76865aabfe6794cde3152ce9cebda512d204829e99dc0be

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for zope_index-8.2-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4d924076f64a2c496d65ca6b578f0f6715e52d0fa5f360690a1208501fedf327
MD5 e6cef99e70b14e94134209ddf8d60490
BLAKE2b-256 b0ba7055e880da67027b016b20ad943d4be059b38c6a8b9d9e5797755d941747

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zope_index-8.2-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 deaafbffb2564727268bb0c0f36138d2aa89f0cb15529ad8b600facb250244e9
MD5 7c2c96eb078a60fca46d9997955740b5
BLAKE2b-256 f6ef2248bbbe5c01f285bcb845c9c414188c462b06d534c75c1ec5945660f7e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope_index-8.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 647394f33579a240fb9a835362ce4d32a4767719487548327f43fa9799f60e95
MD5 ac16e686f989be2b7a3d1fcbff6822c5
BLAKE2b-256 ca012f56e2949d0f461c2bac629ae3c221f19a55427d2db6b15da567b4ac0101

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp314-cp314-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope_index-8.2-cp314-cp314-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 559f7b55f1b32c6107b2d379668ab51ad129b0e6a52b163ca48aecb2f40c7605
MD5 344e6e1e9b9f5653c7bc692d5115e56d
BLAKE2b-256 a51ddb241249b05cbb306d761d92b0f9936ae4d4fb69e006d0237cf411c7d53d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp314-cp314-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: zope_index-8.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 94.4 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for zope_index-8.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 9afe46ff9ef3f70ae10f168f1e621420eed3f83a038b381a9107dc26b3678177
MD5 74737f74e3f65e9d61a731bf887f2275
BLAKE2b-256 b3ad9bdb63970f0c236b1d2f0ed241295728b96c28faa491be2f17b2729dd79b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp313-cp313-win_arm64.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: zope_index-8.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 94.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for zope_index-8.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4f596b81eee8fee1b7a06bef2a5d633d71627235167e91dc45509f0c756cf2a5
MD5 ecc05f732120d88ba88d538b67ed27c2
BLAKE2b-256 10b66ec3db908f14d083eaa46bd4f81fc63824a8d7f08d28d8351352ac98aad6

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp313-cp313-win_amd64.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zope_index-8.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 883ee57c65d0fdfa8e2e38aa4bbf517f15f11264416dd9fb3ea4b1ea32b2e47d
MD5 bb148e91af28318e182725109b7deb82
BLAKE2b-256 51ad58e4859fc23cb236b7f95881a9af719501be224ea870774dcada2df36151

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for zope_index-8.2-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b6d79afc8da3b6cdac8b9f4a51e72f38d418ac234989ba5818edd7c5b144d015
MD5 51673c051eeaad5a3197c8e70d371754
BLAKE2b-256 e18b194e0309ab0657562b438af67a5d148df15f0f4937858794664d1a0c62b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zope_index-8.2-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 99c0035345f6f4e7af307887c1f261632f8115fd052aa6df5be0518628e04125
MD5 ffc3a7ae552cc1075b4c7797e30fcb56
BLAKE2b-256 2c6d668b5808dc6db5321ad1ac76cd685b658a35a469afa7d5e0a358963c88f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope_index-8.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1611f51eb27cdec530addab4547d0b464698f9851558bf29a717483f9e7e5de1
MD5 2fa3de29b61780712ba7f974ebbe56a2
BLAKE2b-256 6b39bda07d520a59a0af6fb56426755a5e730df6a1b5a45e1ec7255b377d66c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp313-cp313-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope_index-8.2-cp313-cp313-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 24bdf24a302d8f38f13a72aff15af1c443fc626692ed2e5cf5875e33c604696f
MD5 69016b8c65a5de123990af1a3b4a28bc
BLAKE2b-256 58fd7637ff489df8a3fd16d4763620cfe9be9eea890f42f5b72ff90bcf9e514b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp313-cp313-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: zope_index-8.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 94.4 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for zope_index-8.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0c21a3bfdc12d9ff35ae8146b7c1bcb2604eaf557c4f75599001e4b4b2853c2a
MD5 deff329d2fc7e6cec745ad177d59b3fd
BLAKE2b-256 31d7057927ff0a04c79c76797be4e7ebbdc4735ba42c6a96810035f846f81647

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp312-cp312-win_arm64.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: zope_index-8.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 94.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for zope_index-8.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 91abf2cf63a15f59d64b55858597635a68c4b310fe131b7961368e4e9947a7c6
MD5 05d43cff7de32c67681d6c856bf75d29
BLAKE2b-256 d5ac73c41aa5c6bb374ee9137f57f90e7a7ec505cc1a852ac3218cd1facbd3b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp312-cp312-win_amd64.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zope_index-8.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 800de5ab3fb2d24be921d63e194b2019ee8235aad782b7bc1b88aefa793cdd8b
MD5 14892975a8dd0660be03cf35426b762b
BLAKE2b-256 90cf913cb97e2f96f3f069464ca5bb80cd30a245042bfb4ec827b42254b3da1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for zope_index-8.2-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 fd05a51507bd6c927bbd100632ab1dae109e96f2b86ddc06026478be66ceea64
MD5 2e430612ee23105c932ec2c0ac296b6d
BLAKE2b-256 c0efdd078ed628db26d6e4e97be15b751031d8176db3c7fe4734c87d350b7197

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zope_index-8.2-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e0d9fd82b6a4ff285e819255bd44b2cebc2be995a9486949c5381bec34136f15
MD5 518fd8ba05a5bd5787da3026b9bbb956
BLAKE2b-256 831a32d0c5cc7d4a1da1b57d01a66ce0b4107be2805434fc4271640efcdf5894

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope_index-8.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e04f8a01d492bd0533ad9e4c9316c60c1142b684d913110cd2c80c8da04b5f1
MD5 7646056e2e3bded2d5ba66be4cd6ad36
BLAKE2b-256 9a096fe6ee752dedef800c0b05b0458a1b842a93f462cb4bf36211bf5a1c3d9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope_index-8.2-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e9a8e235688be3668ec1ad91a32734606d3e2ac022ab0be22635d90e5d9464b1
MD5 cbebd31c53f4eaf93fbe6fc63481999b
BLAKE2b-256 814edee4dbf58776a541a990c1ea5955266f64921d490b90f27b7c4963549240

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp312-cp312-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: zope_index-8.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 94.4 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for zope_index-8.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 52441294c36681f0d658c4ee4d139a17febc9502006b52468bb2b65e996721b7
MD5 981890628482771deef98ef8ecc6f026
BLAKE2b-256 d869380a847af950f7cd45afc4b9525e3e598f282015ab53e8f3649ba999ccb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp311-cp311-win_arm64.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: zope_index-8.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 94.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for zope_index-8.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 28de82c73bfa1d6a9c8a4bca5a0e7ac2033d816d7c7f9b4789ef40b7ac5f675a
MD5 f3b6dae571a05a7841f36f5585de414c
BLAKE2b-256 1cfc31a6952e033020e55cc15a0fde821fda1af84ac428717c3251c8db699965

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp311-cp311-win_amd64.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zope_index-8.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 3adf378b90df6a9f783e2c9ec7fad492cc073e9541036223d20af55906a55774
MD5 813ca24888e9ce4696620a46f1182912
BLAKE2b-256 9d6688deea546d23e26dcdde9cf31224c2eaf00adaa95ad6ce68e0597304da97

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for zope_index-8.2-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 074f8f87f60af38a567457559906d65a87ed3e113c9bf0d7ab0fa196550a2a3c
MD5 13207542b7899c42f71a087b5211c408
BLAKE2b-256 8d334f7cedf82fd931fd3c9004a2b07e8f5c553441d7d4bb645ba1dcbef43611

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zope_index-8.2-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d43039ec63204b6c2961e2002946c6832472df408d4e543fb326bbde4eda1807
MD5 40197c15c1bc022bb1a0778a0a589000
BLAKE2b-256 aa72b42619549c61a11fb82ff4aab991a154f0e8133011add3ff547a00ba57b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope_index-8.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4c65745139e33aeee583c6b8f9547c35bf46de2f0966bc998f793f35097d06c
MD5 9798337cf8226308e806eee672f689c1
BLAKE2b-256 5d2e0f310e90e6268db33e8ceb86c2ad53bcc4e7205523332a374eccabbd60db

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope_index-8.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f3244546f83826f116e577375f64cd634700ca82d9e3dd78ac1c45bb8c8edfd5
MD5 cbf64fa1631bc6431b4217d41ad0c881
BLAKE2b-256 5c1887fcc849b8d4170a4373d7cae5825487f5b49f61ee62dda6081d5284200e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: zope_index-8.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 94.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for zope_index-8.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e812f2335357acad4360fb2c7f5d8101e76e78ec61a189303477b2771d90241c
MD5 fe8df033e07ea6448014888dc5fb7f92
BLAKE2b-256 f7989a3a5d203318089e734f0f23cbcabeebc259977a6ecc18f4ea4853b42f36

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp310-cp310-win_amd64.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zope_index-8.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 dd3faa750ae7e904b90f5cf337958a537182b5ea9943ac06dcb23bea7ed9d8f5
MD5 11813ecd0838fd7f6560a3b6ea8d63b5
BLAKE2b-256 945adf98b37ab644285564dbed8beba513ae751f3e95011da64f24ab37edec4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for zope_index-8.2-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 2b8ae3dd7ccf0f08723d278f49a1b30e0477af019abd939d942dd9626f228797
MD5 181dc4d1232a964f2e54a725aa521b20
BLAKE2b-256 3f1f81f18dc851c59e3e39093d1b4974fb4ccc30ecccbddef5a41d656816b809

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zope_index-8.2-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a9b5836cf06ce7af3271546b9e2a2ebfadba3a71382d73f7a9f9eb517d99ed9d
MD5 3b4b99e6fdd91c71f6fb24cbb0f304b7
BLAKE2b-256 18a2d48b413ef734d13b1f0a3fffe723577cf02c8094d9fd61fb1f0ad1adca08

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope_index-8.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5b82368a5d2a97231489b77b423cd0188e33c6b079f0eeeb8b764f68fa2c5c1
MD5 62043d0858de49d92fd7a59a5c337e65
BLAKE2b-256 737faad98341b0b0f7f90da9ea9c781b1315e64863310d3f0398cb77188de550

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_index-8.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope_index-8.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c1446e5513c6be9100bbd76d79c59164b29683d099b8313ff30d1cdea42c23da
MD5 74ae2ed4ba783193e66fc4ff25a2a344
BLAKE2b-256 bf2a875398b7f5b2fef60723564fee0c3fd512a5c694e4bf92d574caa4525ccd

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_index-8.2-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

8.2 This release

35 files

8.1

31 files

8.0

31 files

7.0

37 files

6.1

36 files

6.0

30 files

5.2.1

36 files

5.2.0

36 files

5.1.0

30 files

5.0.0

39 files

4.4.0

29 files

4.3.0

39 files

4.2.0

28 files

4.1.0

17 files

4.0.1

17 files

4.0.0

17 files

3.6.4

11 files

3.6.3

11 files

3.6.2

11 files

3.6.1

11 files

3.6.0

11 files

3.5.2

3 files

3.5.1

3 files

3.5.0

3 files

3.4.1

3 files

3.4.0

3 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page