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.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-6.1.tar.gz (75.5 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.1-cp312-cp312-win_amd64.whl (94.9 kB view details)

Uploaded CPython 3.12Windows x86-64

zope.index-6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (101.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

zope.index-6.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (100.6 kB view details)

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

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

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

zope.index-6.1-cp312-cp312-macosx_11_0_arm64.whl (91.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

zope.index-6.1-cp311-cp311-win_amd64.whl (94.9 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

zope.index-6.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (100.1 kB view details)

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

zope.index-6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (100.0 kB view details)

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

zope.index-6.1-cp311-cp311-macosx_11_0_arm64.whl (91.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

zope.index-6.1-cp310-cp310-win_amd64.whl (94.9 kB view details)

Uploaded CPython 3.10Windows x86-64

zope.index-6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (100.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

zope.index-6.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (99.9 kB view details)

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

zope.index-6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (99.7 kB view details)

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

zope.index-6.1-cp310-cp310-macosx_11_0_arm64.whl (91.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

zope.index-6.1-cp39-cp39-win_amd64.whl (94.9 kB view details)

Uploaded CPython 3.9Windows x86-64

zope.index-6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (100.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

zope.index-6.1-cp39-cp39-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.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

zope.index-6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (99.6 kB view details)

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

zope.index-6.1-cp39-cp39-macosx_11_0_arm64.whl (91.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

zope.index-6.1-cp38-cp38-win_amd64.whl (94.9 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

zope.index-6.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (100.4 kB view details)

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

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

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

zope.index-6.1-cp38-cp38-macosx_11_0_arm64.whl (91.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

zope.index-6.1-cp37-cp37m-win_amd64.whl (94.9 kB view details)

Uploaded CPython 3.7mWindows x86-64

zope.index-6.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (100.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

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

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

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

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

zope.index-6.1-cp37-cp37m-macosx_11_0_x86_64.whl (91.4 kB view details)

Uploaded CPython 3.7mmacOS 11.0+ x86-64

File details

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

File metadata

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

File hashes

Hashes for zope.index-6.1.tar.gz
Algorithm Hash digest
SHA256 99f1e041771add767428b12967c54bdb2152b17df9233d1671efabdfe01f6524
MD5 36bcefc0d766d5bb3ff032b6cc25d6eb
BLAKE2b-256 07860d14ecd18002448a9475b349706ee9ddf9bbd71ee766296676a490edca94

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.index-6.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 94.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for zope.index-6.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 92e43db949b03957d6139e16d85e4d85e864214582ae558671992d89dfbcfa0b
MD5 4ef09d8ab7e6be81deee851be031c7bf
BLAKE2b-256 42148899ed31c09635f96cff42a714524d5bc166a49443aca6ac04960f31b758

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6fce98844bdba780857b64f0dcc99cdbe40c040c592b0e82bf8877622f727fe
MD5 4202a5ba53c35733afcc899d2fc97972
BLAKE2b-256 69dd50fa2bddd995975091f310b7b4b1f001b29f82ae821b9067433a25e554cf

See more details on using hashes here.

File details

Details for the file zope.index-6.1-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-6.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 442764b6da30f369da45601664a79f029898aac746b00ed7a3e1be39aa286115
MD5 e9356c9f8628af84bdb75746c6777303
BLAKE2b-256 d1241058ceb9ebc8b119a986572cf777de545261ceb4a1aad291158b2710bf9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cafd25ffee9c59c184956e1e1968977f2ce8b984b899dcdf124ac1bf539f1306
MD5 fc6c94c96f7a900a180eb8e2898a5d32
BLAKE2b-256 0770999c6d15205584223fdc4dd379a9025cbbfff8a869e99180cf9f60f8bf03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93038dd692f24f03a3f71ae84bb2cc1ccb68bec79eb50b68d34a3b99be19dfdf
MD5 a9460d48d674b2af1f4fbd37f89eaa9b
BLAKE2b-256 ab5875e5a90cca57e771bd3fcceef3be1e289ebf55f500595ae6fa27c95a29a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c9771bbf0cf237a92e78bae164c7d1be8d8af2360eb7c4471c33ab7bb7249776
MD5 8bc472e4b0385c1d7a55c85f94626a1c
BLAKE2b-256 0fab0502ced281151693ddc50d29f0fc8d8da17dae178ab4260e5d0e80735942

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.index-6.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 94.9 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3ebd3b85a461d128b19eeb6a7bf3286895cfd8c61efa64b8b151ae9e5ff9a543
MD5 b123df57cff85b9e916beab90260c997
BLAKE2b-256 3d2c601c627a203f6b48cd0382a1cefcd5883f3f9d1e8dfc29abfb853667147a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e527a5b4e67668ad710716afc0e9d64a4e14497bb6ce8b888f26beec3e5f6e3
MD5 bbb4c61d45f1c694e7d22c69e9b4edff
BLAKE2b-256 6ec78d8fc4baaea29314bb35dcaaeab41d7828d94abc4ce294da34b57a3b5758

See more details on using hashes here.

File details

Details for the file zope.index-6.1-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.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d584eab0d83597d95dadf6d1bb22eba90060ab4242d3b99390b92848dabfc73
MD5 669d235f8f428a6b978db7223effd704
BLAKE2b-256 390a854b458e999bca63ad19db45488d7e13987747a5cace96cdae77da7d680a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 573691a31f76917c383baa7cf9af47b9bc9d504054be48396c7ad4652901760b
MD5 7fd4edd36bba17d6aa68a27bce5d391b
BLAKE2b-256 8c2a12095b283af53c91069b9e9c9f95554ddf7325fc9dcbc5aabe63b871163a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d84c263e1d0a5f95e2bf55c402d675f2aded080eaf17848afe3d22f38b16dd7
MD5 812149c172afa122995fd6e967f99e8d
BLAKE2b-256 a3a0c88b7a3142b4687bfc4c914fa274b8422ea5d46b8338faddab25304b1a89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e90c4172c2f39541ff45d393eb966591922c6c36d76f7857bd31b4149ee1ec11
MD5 3e56cbe30baef3d4e22731ee5a250ba2
BLAKE2b-256 db35e4c24920b4cb2269d25022d4a2cef83e7f8c24d4914752865e01f195121d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.index-6.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 94.9 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f89498401ed2f46c04ecf2fdc5e9b0b67178191883a3f54ba82f295e2745749e
MD5 27c0d282f967520015398ff1acf51c35
BLAKE2b-256 51c865cda30b3df82d0aaa1169721d20c1164bcb91369e701489a7bfdab4aa12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b8a1ff3f57786ca9e9bcbaee1b4a43a6cd7214f8b88a11a20c7718d55b61477
MD5 527f34c597463968991aa9aa3074ead0
BLAKE2b-256 c44d1364fe6307256873e10b8ab0ccd8d6aece10a744753d8efb763e4007e5b0

See more details on using hashes here.

File details

Details for the file zope.index-6.1-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.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70ac502c184ee8335636871bf9df8466ec3891aa9a88fcef2bea8bb5252c676e
MD5 7b6aca3cfe08f933797ec6b1f8a63ad1
BLAKE2b-256 b7395de1344be39d3a1469ba448492be7dd664a23f6a9c5dca9e89750a5e5255

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 853562d070e5f92fdbea3aa3151db3577136c59b5274e9bb59391b837d3e97d9
MD5 4de592c947807dd47077b992c4ad4da4
BLAKE2b-256 bc24268516c02cfa86f7184132aa677ec0d1c9f7cf51ad2514999b2b937d0786

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b063d98de193c97b30889948281f73186c5314f4f5e2561e4dcc043227956e29
MD5 8a26d79fef20c9d096643fd1ae673755
BLAKE2b-256 3fc22ddc52814c4821b60e325e19181db095f0c58106920741ee7f18ef28340d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8df963fdd45d2f4278ae9f22bdf819abc67655197d114470aba51fe88e788428
MD5 8c9ada89c32f7fd668c3c1a7544e5559
BLAKE2b-256 a0436c2d146b20ce0708abfc6660cc28177773e81a89ca110f0eba74a8754755

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.index-6.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 94.9 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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c11f67ed2a6c3b00475a0fabcdd0e0f5cf07a6e4e070d6ce6651f293b200bfa4
MD5 671061559372be74fb1c5a178eb97f29
BLAKE2b-256 9f90b578e28d45b03482e19f7df1ab4a7c18aa1a7f60c4c246dc2d181b8b430e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55affc13ac5b1caccb964c46bfa65a102e65f11e6d337130bb13b978b4c9928b
MD5 b47b1474b4a90d278532d51a7b9d9cd6
BLAKE2b-256 79aaabd3508ec18c12033e140d0abb99c4bd8824d94b74c024c3352c49c0e687

See more details on using hashes here.

File details

Details for the file zope.index-6.1-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.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5bfc300b0b919569425433b68b77e661e11f15af14af6437e151ba5be73769b6
MD5 add757821d742b7e80ca3e374b58cb76
BLAKE2b-256 19fe47cf5a58429ff361d03e857224d8f75db69e33fdf649349749f4500fd7ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e1e72ad565ced9a1b024913ec91d2c98787e5afaa12e51bb6e6011a4267b9033
MD5 4271f672f07d5362364b26f8090c8d48
BLAKE2b-256 84cef5b40a3cb63901dfb46f3d9103562a10c437b3c801dba102cc34f27dcc84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 264f309898e1e60f4de7b2b0d62082584ea7781fe9f5db36eb1b7f4b1b7997d2
MD5 ed73f9c019c5d17b917b496f57d0c4f8
BLAKE2b-256 3ae0c6c977dc0a691790ea19c8b2cc1452b04b016b081b130f463ab919f1eb49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9192e53b478706c14b5015c2ca3ce7df15cd05f4c502414741d6d852b6f5beae
MD5 c93ae0889bfc28e184a025aab86d33bf
BLAKE2b-256 0c0a3043adff71129ea458f60a35d4aa8fcca01d80eddf7464331394937d341a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.index-6.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 94.9 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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 24f974527c5273431cd77005996afd7a406423d9131234ba99fae186dc5c4be7
MD5 1559f7e96db6459b34ec9494349c749c
BLAKE2b-256 c72f666f63cb86ebfa2babfea543189fd5357d34969660d217c5fdff74d69573

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae865aea0aa35aef816220dd8918182ed480623177349c46e6a5dee944e04969
MD5 ba4ed7913a39f8298597aef2e27257fd
BLAKE2b-256 c63ff18ec05d12e64910504bf4d8c6b9053420b2db280fcd04e542758cad3e29

See more details on using hashes here.

File details

Details for the file zope.index-6.1-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.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a3fef4b3ef48d8bf5ca2bb4ca9066bae816b301c7cb47d86eb44b9d523c059c
MD5 5c3d75b7114fb2d23d43d603e298cfd8
BLAKE2b-256 7a3dec7186f8de334fb4777b62821cc1dfce8f7357e20035ea768156bdb1c5e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 92813495298f10e1e8c8f4743ac7ad5c45f26e74654f3fecea77325b99ed62ac
MD5 6657f076dc087f70c43d79891e5c5b96
BLAKE2b-256 8a6cef980f135d5c869de417d65be72cca4f6cfe620c7b9bc215fdc642d1e055

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d36b10483a988c284fb4024f26292782d65007878e7ddaac9140938425f61dab
MD5 7536b62cfc598083c05e60592784fcc4
BLAKE2b-256 34af1253994762fdb9d85ebe890a129b84b24e3d1fe8f0537fee67f7f7994cc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ba5177be0bccecb4ab51eab94489fc06d2b78b0d055144ce00af4863bde83bcc
MD5 e3fb5aeb820ac210329cdd7324cd09d8
BLAKE2b-256 d3c5b42bd7aa9ebd40335948f56e150cbafe91eb1a96218e51cca42089e0879d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.index-6.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 94.9 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.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 0743dbe71b341d183fb726c861be9afcb8e600ec04db2c7a9c67b5599b94bcf5
MD5 c38c734cfc9b41ccf71f8bd4ce368d93
BLAKE2b-256 4bf871bc28d3c1b4c0e2e50fe316b62e4242b90fffb562853ade50ca77f714ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 05221bce18947b065f748f11ed2d245406cbe088c86fd8d4374e1daac050e540
MD5 265438cf70bab2cbf10b1f6345b9aaea
BLAKE2b-256 e34332a364628db223e493647b696b7f6a543b743b17b7bc9f0be5d19517d1f7

See more details on using hashes here.

File details

Details for the file zope.index-6.1-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.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47bb60fcaa6f73ac0d262a424f3a5b732c0c2a1a9739ea98ff3c6d03130e4679
MD5 3512aaa4b496d922ef34afbe6cfb932a
BLAKE2b-256 d68d378c9e70a1835683e62f6b5821c13119c29c2e9c0308cf61da1e9ef430cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope.index-6.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3d15a0e84580002a063fcbc422083a43f2c364a2a23f402ff4c70b963883acec
MD5 0cb9328a017043b848cd1e878d7c3655
BLAKE2b-256 c02d6c2f4e1a231bde11734af02926edf4de999f7587fe5ee2183777656d7165

See more details on using hashes here.

File details

Details for the file zope.index-6.1-cp37-cp37m-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for zope.index-6.1-cp37-cp37m-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 cea818cdcae189f8b2fc21a1bbdc3ef7c4c04085f657dcffbcd4c302ed72939e
MD5 68216006b32d689cecba85c4aa6eb230
BLAKE2b-256 f7ab7438553063aba0528e49f9a3e1f0c897268d99a55989fdf1715904420e14

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