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

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-6.0.tar.gz (74.6 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-6.0-cp311-cp311-win_amd64.whl (94.7 kB view details)

Uploaded CPython 3.11Windows x86-64

zope.index-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (100.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

zope.index-6.0-cp311-cp311-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.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

zope.index-6.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (99.8 kB view details)

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

zope.index-6.0-cp311-cp311-macosx_11_0_arm64.whl (91.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zope.index-6.0-cp311-cp311-macosx_10_9_x86_64.whl (91.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

zope.index-6.0-cp310-cp310-win_amd64.whl (94.7 kB view details)

Uploaded CPython 3.10Windows x86-64

zope.index-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (100.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

zope.index-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (99.7 kB view details)

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

zope.index-6.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (99.6 kB view details)

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

zope.index-6.0-cp310-cp310-macosx_11_0_arm64.whl (91.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

zope.index-6.0-cp310-cp310-macosx_10_9_x86_64.whl (91.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

zope.index-6.0-cp39-cp39-win_amd64.whl (94.7 kB view details)

Uploaded CPython 3.9Windows x86-64

zope.index-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (100.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

zope.index-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (99.6 kB view details)

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

zope.index-6.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (99.4 kB view details)

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

zope.index-6.0-cp39-cp39-macosx_11_0_arm64.whl (91.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

zope.index-6.0-cp39-cp39-macosx_10_9_x86_64.whl (91.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

zope.index-6.0-cp38-cp38-win_amd64.whl (94.7 kB view details)

Uploaded CPython 3.8Windows x86-64

zope.index-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (100.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

zope.index-6.0-cp38-cp38-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.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

zope.index-6.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (100.1 kB view details)

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

zope.index-6.0-cp38-cp38-macosx_11_0_arm64.whl (91.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

zope.index-6.0-cp38-cp38-macosx_10_9_x86_64.whl (91.2 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

zope.index-6.0-cp37-cp37m-win_amd64.whl (94.7 kB view details)

Uploaded CPython 3.7mWindows x86-64

zope.index-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (100.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

zope.index-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (99.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

zope.index-6.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (99.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

zope.index-6.0-cp37-cp37m-macosx_10_15_x86_64.whl (91.2 kB view details)

Uploaded CPython 3.7mmacOS 10.15+ x86-64

File details

Details for the file zope.index-6.0.tar.gz.

File metadata

  • Download URL: zope.index-6.0.tar.gz
  • Upload date:
  • Size: 74.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for zope.index-6.0.tar.gz
Algorithm Hash digest
SHA256 61ceefd2cf57c16deb10ff6e954ad50f481860d10782eb92b3b45d2df3de45e4
MD5 6c9d5944da4b1e7b6b1c16d0c869a312
BLAKE2b-256 0fff421ba57dea948a581b87b0169dc0239015c4aeda53f0cc54f8653466c041

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.index-6.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 94.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for zope.index-6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0869330c36bf736ede9b0238f1e702fc3899063864806c2f050c570c3fac2e4f
MD5 1fa1c0533487b0ed387dcb7470c6eadf
BLAKE2b-256 e5853d6970cc67b6a27932b962f3cab057cbf2e048215ac5126a1bad90f384d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 53aa12ca4f39d82a5d8ea6cb95ddccb54e0fa928ce1a8ab1c3679dc7496cdf35
MD5 c3c88eb5fbfd7d96dfca0bd16725af0e
BLAKE2b-256 47473931d5749b2ddf2819f73063a429ec803dd483f6633944da8e8dc2c6feac

See more details on using hashes here.

File details

Details for the file zope.index-6.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-6.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9315f4b4d81d92ca940143506f4cc0c4f40dd803986b22dba4bd36db67be5b6
MD5 ff8caf041cf3f9f1bc0b3c6f54f45882
BLAKE2b-256 7ad0c83fde8d1c427888134ca4c0e5ae1bf6026361e7479ea6404a2abf1c5ab1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 270b5ec48cd7b937e089734516937234b42909a8503f65032c2f9409d809fa41
MD5 dfd2109c6c89bd1ae362613e0b4f6942
BLAKE2b-256 52f0d7618e59972392ff84586b667e71f1430b9a9726a0c1d451897e782ca7fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1e9804e527225b4ac9269d6680f2f77826ca0c1bddc14d5785557b4c7a28327
MD5 9d2d1345171f79eedd6d35592f3c0a05
BLAKE2b-256 cdaa60326ec4a96214032a503f0d200d2073925776235ed96cf2d133e7a6825a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d91675b41949a05f323567ee6eb022ebf402f647381fd64b585f674997bc5516
MD5 42d4c5aee8b1d695933317c56aa73fe0
BLAKE2b-256 2f8c74f6c77c221e566abc5bcbc77b8e359f506054f73a90fda647e1e85776a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.index-6.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 94.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.0

File hashes

Hashes for zope.index-6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fc3add2cb264f9520b4c7586d782c51620e9b8553d262621f5f3fd0497b2de02
MD5 ff895230595f416deae5d430a0ee3bfc
BLAKE2b-256 cee6951944e1211b9fe89397e233b9ab16a6a1627687f739127851a7f68b4492

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 450d2df6d7cd4044ecad6fc3c7c8f81cdaef6a0e6768550029b72f389962bea8
MD5 5c13a7de8c4bb902d4210b316a680790
BLAKE2b-256 ed0f3b641b4eee7388f20fd67c4c408684de108bfc1333e3557a0c2bd87e2755

See more details on using hashes here.

File details

Details for the file zope.index-6.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-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b9c07c352032ccce98230e501027c9a999fc62ec69628bee9af54f3f7ae1987
MD5 695bd8baea9203a0a56938cc17e12b9d
BLAKE2b-256 8dc5ed5b53bcf7b6520eacb355953ea681a51aba2f7844dc19ebf232adbe32fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 49c70d2addcfd53acccb665294df123c71429d378116f90d3b51f1fd8d807d4d
MD5 e5a738a0179f5b98dbb461b03697a1f1
BLAKE2b-256 a62d1c08b0dc3bf2c5859ab72d2b9a5d6456c0a11a1f33ae3d1ea2605c4fe742

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a38f51529c504f12eb4d999fe395d5b536d326ab09e50bdc0f5b994760f6009
MD5 c7fba1de86138a744a04de90556d8fbe
BLAKE2b-256 79f1b930966a6ba119af6fe6b1f1bc775b6975778c381b4ac6a4223b5588da74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6ce77bfbd557355002fdbac7e4c684e0bb949e66818951a0b830f6b6c36a18d4
MD5 4adf7863f1dce4ea872e42f7a05343e7
BLAKE2b-256 00393a0ddc3cac55d98b8057137e2e484f4fd28f3376948f14de476ce111a3fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.index-6.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 94.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.0

File hashes

Hashes for zope.index-6.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 285e90f3c8db4860c49964c56a7cd3a58019f0bef0aecc1c0ddcca6e30792847
MD5 88dbf179ed4571345fe6b71c154d7a8c
BLAKE2b-256 159c4c63ef5339c849abd74f6a9364e1563731ffed4d8a3485b81a83d9541b37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5cd2446a0b5b5af78e12e84f9ac0d6f1c45a9910b9d3a9dc9b1d993b866615b9
MD5 1bdb2768ef4b052fb7c9384fe62bee26
BLAKE2b-256 958a66cbd6900c6a5598b8eb64a829acbbcb562a0a471e8fb0e440f539a9c4be

See more details on using hashes here.

File details

Details for the file zope.index-6.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-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 58ef2c317885c6448c753ab75df8e678760c7eb73891afe52cb2fa33d1539736
MD5 7941a16892c12f6cc2f87cd112f43899
BLAKE2b-256 ed280f7cd7a0a2f67a3718f124a2bd3b579e52f686763d0f6d551fd48e7f907c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b9b9eef88052e3e16b12770b07a21c2a631d74e9fc4d6d0b16dd3224bfed5407
MD5 cfc660a276c8ae035cbe0f42f693cbde
BLAKE2b-256 b207ff2e17bb07c1d184e7d3cfe058f55475fecc0417747b865327fdf471ad66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed0d32736d0f5939b761cf08fa7f6575d9cde7b0eac3ebda4c8ad82fd91a0651
MD5 5b9aeba4037a8f10c5293bef2c0b9ff9
BLAKE2b-256 751e3c7043c3d19ea77f19096c1dacff3e1cfb9ff9e7b49cd42fe498014dcea3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3d9bc1c7759187274674e02c4ffbe8179f90ae8a26a599a660a610f80fac4b62
MD5 9505a9fd6bd130adf55f99bb76738c34
BLAKE2b-256 18dbc1a4ff76a220051232a59b382cca7133a0fa738ea9387fcdc65c5e58464f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.index-6.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 94.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.0

File hashes

Hashes for zope.index-6.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3042acb5a41ef0df2e93f93d9fe93f17d9c6e3ee1d120e3d97e0454e8d618cc6
MD5 88cf4ad96dc1bf0ed1fac3fbc225bf28
BLAKE2b-256 81f8446d6f7241c1e1c08fc426b6150d8aaed819ebdab9bb7b209e2575d72d88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84936abd1babea657a991d5fcc6ab7db7f918fd716a0d9bd1763299c7bcdc818
MD5 a6162123199c8631b3e597bb73e8a4c8
BLAKE2b-256 3f2f79bcd1912c635d4df8df0376c640b082bf2f2060ffb9be2897ea915a0ec6

See more details on using hashes here.

File details

Details for the file zope.index-6.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-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef0557d3340cf142c07e1a71fadc4b511c946cb048a7c1551aac44f015965517
MD5 269189861659ce1b7eae82af9bb11f31
BLAKE2b-256 7de337ebccd0484d2d0b3bdf7de57db05aed3dacbb87a78aa6647d021dde6caa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 39fc52c7b9eb79850095f0e1333d14688fb82a2459907b32287b726a86b92e84
MD5 41bcf397539cf7289b3e70127d85b904
BLAKE2b-256 0e6673cde2f48680184c70dd9db5d3d16dbec2abce30b48b10cbce35eb19f06c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3412cb99a10a1f9459125ba69fc2834665dc0949424cec5cb44e4d9c332ae03b
MD5 0697549c11ae53cae76b2479a99b6323
BLAKE2b-256 9f1b2d449585112b342910ab982e38913f34689519a39554abc827cfc69b5c7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0c5f5e439e33afaa7862f4708857681cbae61f9229c080a13f1a36317568408f
MD5 d9341ca7a24d086a89db0cb8312c8941
BLAKE2b-256 cf52c8d88df0b0902411fc12cd1dc3a657e6208df8a1cca6aa55742dca234374

See more details on using hashes here.

File details

Details for the file zope.index-6.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: zope.index-6.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 94.7 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.5

File hashes

Hashes for zope.index-6.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e3d460af323c5ee27935b38f893109ae3d300be0f9265547f7e7e8f3e6a55121
MD5 b1d24fcc3bf53c05aa308ba4a50bb2a0
BLAKE2b-256 f18c52e5b027c917958f15811ec1b7476c04259ff5ff31c4da899fd56db135a0

See more details on using hashes here.

File details

Details for the file zope.index-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zope.index-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c41403088f55f9b63aace73af024c5ee2827af946c26f240594be26631a6ac6
MD5 f37d1dea353d3f4679ceaaa769bba460
BLAKE2b-256 60ca7f35dba784c4788cbf7c46e2ebe30bd73a8fe7a66c98cabafa6b721691e0

See more details on using hashes here.

File details

Details for the file zope.index-6.0-cp37-cp37m-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-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad7421c765c29d4403e783da7569be7cf8887e6c5614f1e4611b0581ea6ef15c
MD5 a12e8b19c6828670d4820997c58f5d55
BLAKE2b-256 6b781aadbf39e4270bd71453f9dd14030b13a404ed35d59867dd53325075b099

See more details on using hashes here.

File details

Details for the file zope.index-6.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zope.index-6.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c6d814c0d4b0fd1202196076ddb589711d7d901aa7c05e641b188055b719e0fb
MD5 c1e15165b3e01e349247193d7ce0d73a
BLAKE2b-256 d92bfacfcb34d5bbc28d30597de565693d86240da13a1f71973add81dc256a40

See more details on using hashes here.

File details

Details for the file zope.index-6.0-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for zope.index-6.0-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a03cb6ed14792071603629cd371bc2952c8a43eaa714ec3c69db521c26f82904
MD5 ebdda5014e88cb3bd62f829b13060c87
BLAKE2b-256 7e5f3c059ec7f7b1540a0bdfdf562680379022c8b30a604231559996b6920a52

See more details on using hashes here.

Supported by

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