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

Release files for zope.index 8.2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for zope.index 8.2
File Size Uploaded
zope_index-8.2.tar.gz 75.3 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for zope.index 8.2
File
zope_index-8.2-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
zope_index-8.2-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
zope_index-8.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64 Details
zope_index-8.2-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
zope_index-8.2-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
zope_index-8.2-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
zope_index-8.2-cp314-cp314-macosx_10_9_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.9+ x86-64 Details
zope_index-8.2-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
zope_index-8.2-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
zope_index-8.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
zope_index-8.2-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
zope_index-8.2-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
zope_index-8.2-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
zope_index-8.2-cp313-cp313-macosx_10_9_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.9+ x86-64 Details
zope_index-8.2-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
zope_index-8.2-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
zope_index-8.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
zope_index-8.2-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.5+ x86-64, Linux glibc 2.17+ x86-64 Details
zope_index-8.2-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
zope_index-8.2-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
zope_index-8.2-cp312-cp312-macosx_10_9_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.9+ x86-64 Details
zope_index-8.2-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
zope_index-8.2-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
zope_index-8.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
zope_index-8.2-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
zope_index-8.2-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
zope_index-8.2-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
zope_index-8.2-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
zope_index-8.2-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
zope_index-8.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
zope_index-8.2-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-64, Linux glibc 2.17+ x86-64 Details
zope_index-8.2-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
zope_index-8.2-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
zope_index-8.2-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details

Total release size: 3.3 MB

Release files / zope_index-8.2.tar.gz

Download URL zope_index-8.2.tar.gz
Size 75.3 kB
Tags Source
SHA-256 checksum
How to use checksums
e51f0534a445ddc161d3c6997e652b4420fb0d560a035b01803fa8e465060381
BLAKE2b-256 checksum
How to use checksums
aacf68b62cfc034645f47b9d2b2f31193e6d8a94171c1bdddab0c86fcdb1efb8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp314-cp314-win_arm64.whl

Download URL zope_index-8.2-cp314-cp314-win_arm64.whl
Size 94.4 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
b7dacf55d754ee66a90c39d8ef9f308f6f73ca2f6bffb769af90485efd091cff
BLAKE2b-256 checksum
How to use checksums
3880d2bc4fcf1962cd23e2edb7b7f5f6b72d6b0f9fe1aa1d1c8ac337f6d5e5e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp314-cp314-win_amd64.whl

Download URL zope_index-8.2-cp314-cp314-win_amd64.whl
Size 94.8 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
295d9ac3deac425db13e82097bdb321300cd8352b27943232332f5b296bf8de1
BLAKE2b-256 checksum
How to use checksums
382cf791a5743de29b9d010ae5b01806e95590d688127bf7d6c93ff8fd07aa5d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL zope_index-8.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 101.1 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
f2c0ece2aad11ac02c719cc6bfba12c5f95f55e35f7e06a0ce99f5b57f537270
BLAKE2b-256 checksum
How to use checksums
0d51807d18e90a6eb76865aabfe6794cde3152ce9cebda512d204829e99dc0be
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl

Download URL zope_index-8.2-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Size 100.5 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
4d924076f64a2c496d65ca6b578f0f6715e52d0fa5f360690a1208501fedf327
BLAKE2b-256 checksum
How to use checksums
b0ba7055e880da67027b016b20ad943d4be059b38c6a8b9d9e5797755d941747
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl

Download URL zope_index-8.2-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Size 100.1 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
deaafbffb2564727268bb0c0f36138d2aa89f0cb15529ad8b600facb250244e9
BLAKE2b-256 checksum
How to use checksums
f6ef2248bbbe5c01f285bcb845c9c414188c462b06d534c75c1ec5945660f7e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp314-cp314-macosx_11_0_arm64.whl

Download URL zope_index-8.2-cp314-cp314-macosx_11_0_arm64.whl
Size 91.4 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
647394f33579a240fb9a835362ce4d32a4767719487548327f43fa9799f60e95
BLAKE2b-256 checksum
How to use checksums
ca012f56e2949d0f461c2bac629ae3c221f19a55427d2db6b15da567b4ac0101
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp314-cp314-macosx_10_9_x86_64.whl

Download URL zope_index-8.2-cp314-cp314-macosx_10_9_x86_64.whl
Size 91.0 kB
Tags CPython 3.14 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
559f7b55f1b32c6107b2d379668ab51ad129b0e6a52b163ca48aecb2f40c7605
BLAKE2b-256 checksum
How to use checksums
a51ddb241249b05cbb306d761d92b0f9936ae4d4fb69e006d0237cf411c7d53d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp313-cp313-win_arm64.whl

Download URL zope_index-8.2-cp313-cp313-win_arm64.whl
Size 94.4 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
9afe46ff9ef3f70ae10f168f1e621420eed3f83a038b381a9107dc26b3678177
BLAKE2b-256 checksum
How to use checksums
b3ad9bdb63970f0c236b1d2f0ed241295728b96c28faa491be2f17b2729dd79b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp313-cp313-win_amd64.whl

Download URL zope_index-8.2-cp313-cp313-win_amd64.whl
Size 94.7 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
4f596b81eee8fee1b7a06bef2a5d633d71627235167e91dc45509f0c756cf2a5
BLAKE2b-256 checksum
How to use checksums
10b66ec3db908f14d083eaa46bd4f81fc63824a8d7f08d28d8351352ac98aad6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL zope_index-8.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 101.0 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
883ee57c65d0fdfa8e2e38aa4bbf517f15f11264416dd9fb3ea4b1ea32b2e47d
BLAKE2b-256 checksum
How to use checksums
51ad58e4859fc23cb236b7f95881a9af719501be224ea870774dcada2df36151
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl

Download URL zope_index-8.2-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Size 100.4 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
b6d79afc8da3b6cdac8b9f4a51e72f38d418ac234989ba5818edd7c5b144d015
BLAKE2b-256 checksum
How to use checksums
e18b194e0309ab0657562b438af67a5d148df15f0f4937858794664d1a0c62b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl

Download URL zope_index-8.2-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Size 100.1 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
99c0035345f6f4e7af307887c1f261632f8115fd052aa6df5be0518628e04125
BLAKE2b-256 checksum
How to use checksums
2c6d668b5808dc6db5321ad1ac76cd685b658a35a469afa7d5e0a358963c88f1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp313-cp313-macosx_11_0_arm64.whl

Download URL zope_index-8.2-cp313-cp313-macosx_11_0_arm64.whl
Size 91.4 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1611f51eb27cdec530addab4547d0b464698f9851558bf29a717483f9e7e5de1
BLAKE2b-256 checksum
How to use checksums
6b39bda07d520a59a0af6fb56426755a5e730df6a1b5a45e1ec7255b377d66c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp313-cp313-macosx_10_9_x86_64.whl

Download URL zope_index-8.2-cp313-cp313-macosx_10_9_x86_64.whl
Size 91.0 kB
Tags CPython 3.13 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
24bdf24a302d8f38f13a72aff15af1c443fc626692ed2e5cf5875e33c604696f
BLAKE2b-256 checksum
How to use checksums
58fd7637ff489df8a3fd16d4763620cfe9be9eea890f42f5b72ff90bcf9e514b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp312-cp312-win_arm64.whl

Download URL zope_index-8.2-cp312-cp312-win_arm64.whl
Size 94.4 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
0c21a3bfdc12d9ff35ae8146b7c1bcb2604eaf557c4f75599001e4b4b2853c2a
BLAKE2b-256 checksum
How to use checksums
31d7057927ff0a04c79c76797be4e7ebbdc4735ba42c6a96810035f846f81647
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp312-cp312-win_amd64.whl

Download URL zope_index-8.2-cp312-cp312-win_amd64.whl
Size 94.7 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
91abf2cf63a15f59d64b55858597635a68c4b310fe131b7961368e4e9947a7c6
BLAKE2b-256 checksum
How to use checksums
d5ac73c41aa5c6bb374ee9137f57f90e7a7ec505cc1a852ac3218cd1facbd3b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL zope_index-8.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 101.0 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
800de5ab3fb2d24be921d63e194b2019ee8235aad782b7bc1b88aefa793cdd8b
BLAKE2b-256 checksum
How to use checksums
90cf913cb97e2f96f3f069464ca5bb80cd30a245042bfb4ec827b42254b3da1d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl

Download URL zope_index-8.2-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Size 100.5 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
fd05a51507bd6c927bbd100632ab1dae109e96f2b86ddc06026478be66ceea64
BLAKE2b-256 checksum
How to use checksums
c0efdd078ed628db26d6e4e97be15b751031d8176db3c7fe4734c87d350b7197
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl

Download URL zope_index-8.2-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Size 100.1 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e0d9fd82b6a4ff285e819255bd44b2cebc2be995a9486949c5381bec34136f15
BLAKE2b-256 checksum
How to use checksums
831a32d0c5cc7d4a1da1b57d01a66ce0b4107be2805434fc4271640efcdf5894
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp312-cp312-macosx_11_0_arm64.whl

Download URL zope_index-8.2-cp312-cp312-macosx_11_0_arm64.whl
Size 91.4 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1e04f8a01d492bd0533ad9e4c9316c60c1142b684d913110cd2c80c8da04b5f1
BLAKE2b-256 checksum
How to use checksums
9a096fe6ee752dedef800c0b05b0458a1b842a93f462cb4bf36211bf5a1c3d9e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp312-cp312-macosx_10_9_x86_64.whl

Download URL zope_index-8.2-cp312-cp312-macosx_10_9_x86_64.whl
Size 91.0 kB
Tags CPython 3.12 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
e9a8e235688be3668ec1ad91a32734606d3e2ac022ab0be22635d90e5d9464b1
BLAKE2b-256 checksum
How to use checksums
814edee4dbf58776a541a990c1ea5955266f64921d490b90f27b7c4963549240
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp311-cp311-win_arm64.whl

Download URL zope_index-8.2-cp311-cp311-win_arm64.whl
Size 94.4 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
52441294c36681f0d658c4ee4d139a17febc9502006b52468bb2b65e996721b7
BLAKE2b-256 checksum
How to use checksums
d869380a847af950f7cd45afc4b9525e3e598f282015ab53e8f3649ba999ccb0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp311-cp311-win_amd64.whl

Download URL zope_index-8.2-cp311-cp311-win_amd64.whl
Size 94.7 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
28de82c73bfa1d6a9c8a4bca5a0e7ac2033d816d7c7f9b4789ef40b7ac5f675a
BLAKE2b-256 checksum
How to use checksums
1cfc31a6952e033020e55cc15a0fde821fda1af84ac428717c3251c8db699965
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL zope_index-8.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 100.6 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
3adf378b90df6a9f783e2c9ec7fad492cc073e9541036223d20af55906a55774
BLAKE2b-256 checksum
How to use checksums
9d6688deea546d23e26dcdde9cf31224c2eaf00adaa95ad6ce68e0597304da97
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl

Download URL zope_index-8.2-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Size 100.0 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
074f8f87f60af38a567457559906d65a87ed3e113c9bf0d7ab0fa196550a2a3c
BLAKE2b-256 checksum
How to use checksums
8d334f7cedf82fd931fd3c9004a2b07e8f5c553441d7d4bb645ba1dcbef43611
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl

Download URL zope_index-8.2-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Size 99.8 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
d43039ec63204b6c2961e2002946c6832472df408d4e543fb326bbde4eda1807
BLAKE2b-256 checksum
How to use checksums
aa72b42619549c61a11fb82ff4aab991a154f0e8133011add3ff547a00ba57b0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp311-cp311-macosx_11_0_arm64.whl

Download URL zope_index-8.2-cp311-cp311-macosx_11_0_arm64.whl
Size 91.4 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b4c65745139e33aeee583c6b8f9547c35bf46de2f0966bc998f793f35097d06c
BLAKE2b-256 checksum
How to use checksums
5d2e0f310e90e6268db33e8ceb86c2ad53bcc4e7205523332a374eccabbd60db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp311-cp311-macosx_10_9_x86_64.whl

Download URL zope_index-8.2-cp311-cp311-macosx_10_9_x86_64.whl
Size 91.0 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
f3244546f83826f116e577375f64cd634700ca82d9e3dd78ac1c45bb8c8edfd5
BLAKE2b-256 checksum
How to use checksums
5c1887fcc849b8d4170a4373d7cae5825487f5b49f61ee62dda6081d5284200e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp310-cp310-win_amd64.whl

Download URL zope_index-8.2-cp310-cp310-win_amd64.whl
Size 94.7 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
e812f2335357acad4360fb2c7f5d8101e76e78ec61a189303477b2771d90241c
BLAKE2b-256 checksum
How to use checksums
f7989a3a5d203318089e734f0f23cbcabeebc259977a6ecc18f4ea4853b42f36
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL zope_index-8.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 100.3 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
dd3faa750ae7e904b90f5cf337958a537182b5ea9943ac06dcb23bea7ed9d8f5
BLAKE2b-256 checksum
How to use checksums
945adf98b37ab644285564dbed8beba513ae751f3e95011da64f24ab37edec4f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl

Download URL zope_index-8.2-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Size 99.7 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
2b8ae3dd7ccf0f08723d278f49a1b30e0477af019abd939d942dd9626f228797
BLAKE2b-256 checksum
How to use checksums
3f1f81f18dc851c59e3e39093d1b4974fb4ccc30ecccbddef5a41d656816b809
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl

Download URL zope_index-8.2-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Size 99.6 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
a9b5836cf06ce7af3271546b9e2a2ebfadba3a71382d73f7a9f9eb517d99ed9d
BLAKE2b-256 checksum
How to use checksums
18a2d48b413ef734d13b1f0a3fffe723577cf02c8094d9fd61fb1f0ad1adca08
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp310-cp310-macosx_11_0_arm64.whl

Download URL zope_index-8.2-cp310-cp310-macosx_11_0_arm64.whl
Size 91.4 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e5b82368a5d2a97231489b77b423cd0188e33c6b079f0eeeb8b764f68fa2c5c1
BLAKE2b-256 checksum
How to use checksums
737faad98341b0b0f7f90da9ea9c781b1315e64863310d3f0398cb77188de550
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / zope_index-8.2-cp310-cp310-macosx_10_9_x86_64.whl

Download URL zope_index-8.2-cp310-cp310-macosx_10_9_x86_64.whl
Size 91.0 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
c1446e5513c6be9100bbd76d79c59164b29683d099b8313ff30d1cdea42c23da
BLAKE2b-256 checksum
How to use checksums
bf2a875398b7f5b2fef60723564fee0c3fd512a5c694e4bf92d574caa4525ccd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

8.2 This release

35 release files

8.1

31 release files

8.0

31 release files

7.0

37 release files

6.1

36 release files

6.0

30 release files

5.2.1

36 release files

5.1.0

30 release files

5.0.0

39 release files

4.3.0

39 release files

4.2.0

28 release files

4.1.0

17 release files

4.0.1

17 release files

4.0.0

17 release files

3.6.4

11 release files

3.5.2

3 release files

3.5.1

3 release files

3.5.0

3 release files

3.4.1

3 release files

3.4.0

3 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page