Skip to main content

Indices for using with catalog like text, field, etc.

Project description

zope.index

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.)

Changes

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-7.0.tar.gz (76.7 kB view details)

Uploaded Source

Built Distributions

zope.index-7.0-cp313-cp313-win_amd64.whl (95.8 kB view details)

Uploaded CPython 3.13 Windows x86-64

zope.index-7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (101.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

zope.index-7.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (100.7 kB view details)

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

zope.index-7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (100.3 kB view details)

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

zope.index-7.0-cp313-cp313-macosx_11_0_arm64.whl (91.9 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

zope.index-7.0-cp313-cp313-macosx_10_9_x86_64.whl (91.4 kB view details)

Uploaded CPython 3.13 macOS 10.9+ x86-64

zope.index-7.0-cp312-cp312-win_amd64.whl (95.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

zope.index-7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (101.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

zope.index-7.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (100.7 kB view details)

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

zope.index-7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (100.3 kB view details)

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

zope.index-7.0-cp312-cp312-macosx_11_0_arm64.whl (91.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

zope.index-7.0-cp312-cp312-macosx_10_9_x86_64.whl (91.4 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

zope.index-7.0-cp311-cp311-win_amd64.whl (95.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

zope.index-7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (100.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

zope.index-7.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (100.2 kB view details)

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

zope.index-7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (100.1 kB view details)

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

zope.index-7.0-cp311-cp311-macosx_11_0_arm64.whl (91.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

zope.index-7.0-cp311-cp311-macosx_10_9_x86_64.whl (91.4 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

zope.index-7.0-cp310-cp310-win_amd64.whl (95.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

zope.index-7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (100.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

zope.index-7.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (100.0 kB view details)

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

zope.index-7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (99.8 kB view details)

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

zope.index-7.0-cp310-cp310-macosx_11_0_arm64.whl (91.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

zope.index-7.0-cp310-cp310-macosx_10_9_x86_64.whl (91.4 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

zope.index-7.0-cp39-cp39-win_amd64.whl (95.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

zope.index-7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (100.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

zope.index-7.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (99.8 kB view details)

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

zope.index-7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (99.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

zope.index-7.0-cp39-cp39-macosx_11_0_arm64.whl (91.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

zope.index-7.0-cp39-cp39-macosx_10_9_x86_64.whl (91.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

zope.index-7.0-cp38-cp38-win_amd64.whl (95.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

zope.index-7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (101.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

zope.index-7.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (100.5 kB view details)

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

zope.index-7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (100.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

zope.index-7.0-cp38-cp38-macosx_11_0_arm64.whl (91.8 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

zope.index-7.0-cp38-cp38-macosx_10_9_x86_64.whl (91.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: zope_index-7.0.tar.gz
  • Upload date:
  • Size: 76.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for zope_index-7.0.tar.gz
Algorithm Hash digest
SHA256 0dd8ac64dbc1e6f3b51065b98d3c0f2acdb91e0ccdfee17535a56feaf093f6e0
MD5 e2d196b809d7b01c065c73eb2268a39f
BLAKE2b-256 aa31e883766f6520a16717f70b6d4291424c2ac8c1bc990e2ef6dc7b0a5867cb

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: zope.index-7.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 95.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.13.0rc2

File hashes

Hashes for zope.index-7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ce3589ba70f77cb902858079d1f90e414e25d246c5a1ad395c7ded3157509858
MD5 e0f1061f1b970cddb25cf236b354ffaf
BLAKE2b-256 0b7bc39249e0bbad27d255c79890d3651074d1e8ac6efd679440b223164d5781

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c43d9855eb80a259647fb0ebf5fe1bbd023ed95f26d04e8ce3ba9d456ac0001b
MD5 8ade7cf2ea5d55ad9bc30d56574f1b81
BLAKE2b-256 fd509e4ab358521988c84aaa7f4ba837c29a2833ee49503cb33d528e2bf2123c

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65dca21585f271f752db07176b3e4b0e5bf3af3b097ff0265eb741e9583bf69c
MD5 ebe9cd589bd13ee9fe5e2bbcf1db2799
BLAKE2b-256 eb892e0212a88c928b01f3f85ed46918ed8c63ccd1659b7578080e592b50bc41

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a5ffa1ee330cae29ec52eb3935c3d12cd47dda55b8c5a39b0ed803af5753ff01
MD5 f554eba772b943d3c5b084e36efe2b14
BLAKE2b-256 e673e8eb7d7b9eb52996e1366f207d9b29bb293b757128c0e01626450dc942ef

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4639c40651cf94d8ab6ecdc81686f56d8063e3b107214b0f21aabe7f5eada2cc
MD5 7bef13368e544a9a8d6bde44ca0a67c3
BLAKE2b-256 465e6fe55ddfdf346bf99af2919aa4a6f0877c5869b78254c9e405b72c538d69

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp313-cp313-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp313-cp313-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 20a34b01560aaf9bd7c562de2e9e0aa725e4653ecd506e25606ad394970680fe
MD5 36cfa5a2ca17a018c2e31e9e3e9e2254
BLAKE2b-256 a57491e3ed1db04435fc348852441a7a7525fd9e377ec39be28de82ca930b5a9

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: zope.index-7.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 95.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for zope.index-7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 819fe8601a01dbca34237eacf65c8af952d7ad2e118f61bab7ae7b7a0ff9b825
MD5 89d5ea2ed61bf0c7feb5065c035ad11d
BLAKE2b-256 894b8bbd09a44ea4eeab7d7ea23802c4d9011d6edb6dc8497ab7c4c9fcaf4661

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 043e5c907c2770e31b41ba6cad9a63e38acc767b86b6b8cb1dc91fc117890211
MD5 49965c752c1f43bb2a4ff3190cf8f4ae
BLAKE2b-256 8b1dee6dc009747d19b1f4b3d5b81cdcca135c17a0913303a5808dc805174f55

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 965b8c2f36b20557427b1c38b313bcc106ed2aff061cc2c9b724f42eca64853d
MD5 4ca9f50ad3630d6da1a7f1d069590610
BLAKE2b-256 c7e06e2b973d37588e5947cfa472f3e64890a9f078a0f07af936490c2b73c437

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0aaadefa7e0c6f7952409e53628508171812f56d00d139dfb44eae1573a5adae
MD5 078aa76f78ae0bd1d44d2b612daea373
BLAKE2b-256 9b8a5b41108a4b7c273e123c97e181f137cc90708d7ac51d4e0249c78ff04685

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34183e317006f41efebfd9080dda6f9c72277078b1c23c7e8c861dc4caa7b2d5
MD5 e8ee4edabdc9225c6ee35a256763dbeb
BLAKE2b-256 c5371743504d78c1de50d059b003377d3ff35287c41db9a29f8bf02c7836862f

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5481f1f60034d721f2ff8efa5a00087b23435cf7a43f1637c8b51f929e46ff0a
MD5 1a3633f8e2c89fbc181fad3ea4526e3a
BLAKE2b-256 c3e09e1e7ba6c3964d94cdcfe81e972c860cd9779bf8237049ebdd139a1907e1

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: zope.index-7.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 95.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for zope.index-7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b19367c7de431100dd3b9a84965b1e3a14f7976c001b110e3a13807f6b240b5b
MD5 a883dd53fc35f06ca37a99362675290b
BLAKE2b-256 4cdda2df96f75d9c32a5cbe534a9d52a3337f795c7c2bc922c4773b9f203eac7

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c812ea7716a8c04a0e13131d88c76047fadd0e0f5e694ce14104ad592fee772f
MD5 dcaca8f3ebb2ef90895e37100b0dd0a8
BLAKE2b-256 b89465b3200ac6679aecf75ab98338ce19e32149b477098c7c545512522eaf26

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd21901561cacb380a9f0d99d4e492fcede9634cf3058b40a6bd4f7e7fc231db
MD5 6c6caef0f44cae1cb96d483973e1bcc1
BLAKE2b-256 8b053f867a82ba0901d9e87e55d9214a7022f3bf026d6ebb960dc09e9b516218

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 25a6b6e39b734231b42057fdb11e1ad50ae957f2186f8dbac272cdfa90643901
MD5 7a7b0972a959050c32eba1daf5e41aae
BLAKE2b-256 311ec596b7810166974dccefc3031e744bf5474ee962360ce2fd0a1002d22c7b

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0493c85ba7647c8f52cbf9ba593dd14bc94acc95f1017bce643138f946b01c7
MD5 051ff4fd171e8dd1ea13effcaba4a94c
BLAKE2b-256 ef6e7fd3b6c3c976578f487e19d459498710b459426dcba153ab5686c8374e08

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 051a19b735264b56e9c30c3b84b36135fa534cd8e538b4cecf808a5f7d6b260b
MD5 aeb5e9f5c8c19d350790836b145f143e
BLAKE2b-256 15817a814760b98dbf2409c777c755601482f64f94dcbc918ea338a13d11d305

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: zope.index-7.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 95.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.11

File hashes

Hashes for zope.index-7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 13238e671e18a6017675f302f16031d98d06947bb1f32ba0985c1587f5c40807
MD5 75423ef7f10382dd1d5853e7351cce00
BLAKE2b-256 2b39e14e939444252235d5aeee3f6703c1f504dc462d7e2f88b2ad61114f2ecd

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f36c11b5bce26f8d7bba16823d5ec396c538be580dd85bb58d3b04ceae57b8f0
MD5 879a9fdd1b6df135a8cc8fa2b9d16b6b
BLAKE2b-256 f998844fb5e87ab348a05d95d9a32bd80cbb2f95c89cd44f5e30ed9966d84918

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72020d44eb46685880e64be6000bb19d3e7734b6ea095cb17be92c9038d97766
MD5 9cf0eef101d17d5a9e8addda70a12cd9
BLAKE2b-256 cff56f8fd7f424d2fd8f69692464d9714ee784e425bd79d99b32aeb5b235924d

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c4c992d49e0c0b79ff1f960f2e5e33269d63179a142c2e8d0df76c69f0ae0a39
MD5 1943e80aa319b1ab4fa7d3047f939969
BLAKE2b-256 3fa0d3ace56ec06b96d7b282839f1ff8709c53a4b4befd25b400d786f7e9c210

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11aa6ffa1584f85a2eacdc64f8aad18d6ea4e8899c924870e40e061e24b48823
MD5 897d22b4d7064b7a4dfe6785f6dcf103
BLAKE2b-256 f80aee400cc3c23fd5a4f915f53756ddce89ab3b3aef757d7d9bb47de5d1ac6f

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 af5862f2e7bfc0d023d82947cc5d4202ba96ac7e49e68be963b1b25e42adb455
MD5 932e61b1866bbea6853905dfacb0692d
BLAKE2b-256 0fa16e77b6f416276adeddf7d18e4af1feababb2d287106cb7156d9dfd2abe99

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: zope.index-7.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 95.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.13

File hashes

Hashes for zope.index-7.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f72f0d35f67b65dfd6261a8dfce266a84502aa0d047b92a86b7d16adb0cb483a
MD5 dee0f708afb02200950de69c06728953
BLAKE2b-256 3ae9915a57a5245e037924b4009ccfa22610fec69abaeaddc5050840f2edf462

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a0fbfb1fc1447fd800635432fe017581b234206bc2371ed9ddee6a9d79c64d7e
MD5 27c05e85dd6bbafafc4e4cfa1e642c50
BLAKE2b-256 a0fd7f7e3365170677cd9ddc410a10bd81ff45687704599dd406557a9f3cfae1

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7cf5da1c5e8beb80067383b306de09e36f0b74a75b8a797c6ec6f3a8e03e739
MD5 b749e0d72da08dfaaf1f19c093a0ea07
BLAKE2b-256 085fbbc51c3535bbda97c22bcc0977fec12b1b24b01ba0028ee065724f6b64b6

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 30033256f70e11ef62b2ebe610f474e2c002bf59b161303690e0d3fdb8dcaf2a
MD5 d5516a8991a9b15a1e88d603697bd77a
BLAKE2b-256 d6f3116b9f734baa5deefe0f2d295e70d965ce2ce9bdbbc3da9c32b0a056f830

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7fea6cc403bd870b222684ca7cd51d126d9b88db30361e8c23da17f5ce569530
MD5 6625509770616b8cca829068126a58ac
BLAKE2b-256 b0d7108a0acc358e95f462c047901c129f6010d941ce28c3722845990de85511

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0b599811a80ab80017413f68d448e8b62a21a5f6b2419adb24ce423cc22c5a6e
MD5 234995960235b967f50acc27960a847b
BLAKE2b-256 b686b10965c30592b716fb04029d0f7a71a8c63aea88d925f8248528534eed2e

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: zope.index-7.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 95.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.8.10

File hashes

Hashes for zope.index-7.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 08abaf5dc82a474b789f5d19c8df64bd1d277ba01f40c060e10399136aa4f693
MD5 3b2d16e43b8d44c02ae10d48f70f6f10
BLAKE2b-256 5c2e322498970b2e21705f5dbe86c71fb799cf7cae6497c068f5852c6968ad73

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84ef347828e2992d5a8b3d780c82604b97562b87219c086cd614adb731f02df4
MD5 08001bcd09c063078a7b93f556c98baf
BLAKE2b-256 d04711e2d0c159b3edbce89cd72d844e02209e8b6547bf7a2c478d81c134ad88

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb2e9910ba9c0f905075c341b8d732671a89488251b6dc8e2fcc4cff557b197b
MD5 874b233937938c5bfe867361fc05240e
BLAKE2b-256 8bfecfe1919fe3024c49913702b9165d46f267ae64614ef67a2635af4fef0912

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 35a3dd04e21a98736b5a5cff15ce4fe89adc3ae5a943597588c2d01c62f9f665
MD5 5cb9a1b15f8d88d368f74804262c83a0
BLAKE2b-256 24b6d424c32dad5ee1fb7e81bf8e759fd4e118ce78c7f93a886de088a8e4fefe

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33e4e6f4348717bf85356f75d7d6ded5af04dc528b531e622395ea016193f390
MD5 571c32ea45ff0567126b30b20e7f70de
BLAKE2b-256 abf04bf5dda72018e0631fe4c5fa20f9f51e0de1ad6a173c604a2644bcbe7d68

See more details on using hashes here.

File details

Details for the file zope.index-7.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope.index-7.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 65280ce0e7ea32610eec1bb24516171bbb5eec10bedcee14eb550abce14cdfe8
MD5 306990f2cd5b5832cec5b94708a2b2cb
BLAKE2b-256 f28414ac8b7c9852bba796efb73945ba51937f31337d49e4077f48c2b1264aa9

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page