Skip to main content

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

Project description

zope.index

Latest release Supported Python versions https://travis-ci.org/zopefoundation/zope.index.svg?branch=master 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

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-5.0.0.tar.gz (73.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-5.0.0-cp38-cp38-win_amd64.whl (94.1 kB view details)

Uploaded CPython 3.8Windows x86-64

zope.index-5.0.0-cp38-cp38-win32.whl (93.4 kB view details)

Uploaded CPython 3.8Windows x86

zope.index-5.0.0-cp38-cp38-manylinux2010_x86_64.whl (102.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

zope.index-5.0.0-cp38-cp38-manylinux2010_i686.whl (101.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

zope.index-5.0.0-cp38-cp38-manylinux1_x86_64.whl (102.2 kB view details)

Uploaded CPython 3.8

zope.index-5.0.0-cp38-cp38-manylinux1_i686.whl (101.3 kB view details)

Uploaded CPython 3.8

zope.index-5.0.0-cp37-cp37m-win_amd64.whl (94.0 kB view details)

Uploaded CPython 3.7mWindows x86-64

zope.index-5.0.0-cp37-cp37m-win32.whl (93.3 kB view details)

Uploaded CPython 3.7mWindows x86

zope.index-5.0.0-cp37-cp37m-manylinux2010_x86_64.whl (102.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

zope.index-5.0.0-cp37-cp37m-manylinux2010_i686.whl (101.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

zope.index-5.0.0-cp37-cp37m-manylinux1_x86_64.whl (102.6 kB view details)

Uploaded CPython 3.7m

zope.index-5.0.0-cp37-cp37m-manylinux1_i686.whl (101.8 kB view details)

Uploaded CPython 3.7m

zope.index-5.0.0-cp37-cp37m-macosx_10_6_intel.whl (91.6 kB view details)

Uploaded CPython 3.7mmacOS 10.6+ Intel (x86-64, i386)

zope.index-5.0.0-cp36-cp36m-win_amd64.whl (94.0 kB view details)

Uploaded CPython 3.6mWindows x86-64

zope.index-5.0.0-cp36-cp36m-win32.whl (93.3 kB view details)

Uploaded CPython 3.6mWindows x86

zope.index-5.0.0-cp36-cp36m-manylinux2010_x86_64.whl (101.6 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

zope.index-5.0.0-cp36-cp36m-manylinux2010_i686.whl (101.0 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

zope.index-5.0.0-cp36-cp36m-manylinux1_x86_64.whl (101.6 kB view details)

Uploaded CPython 3.6m

zope.index-5.0.0-cp36-cp36m-manylinux1_i686.whl (101.0 kB view details)

Uploaded CPython 3.6m

zope.index-5.0.0-cp36-cp36m-macosx_10_6_intel.whl (91.6 kB view details)

Uploaded CPython 3.6mmacOS 10.6+ Intel (x86-64, i386)

zope.index-5.0.0-cp35-cp35m-win_amd64.whl (94.0 kB view details)

Uploaded CPython 3.5mWindows x86-64

zope.index-5.0.0-cp35-cp35m-win32.whl (93.2 kB view details)

Uploaded CPython 3.5mWindows x86

zope.index-5.0.0-cp35-cp35m-manylinux2010_x86_64.whl (101.4 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

zope.index-5.0.0-cp35-cp35m-manylinux2010_i686.whl (100.7 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

zope.index-5.0.0-cp35-cp35m-manylinux1_x86_64.whl (101.4 kB view details)

Uploaded CPython 3.5m

zope.index-5.0.0-cp35-cp35m-manylinux1_i686.whl (100.7 kB view details)

Uploaded CPython 3.5m

zope.index-5.0.0-cp35-cp35m-macosx_10_6_intel.whl (91.6 kB view details)

Uploaded CPython 3.5mmacOS 10.6+ Intel (x86-64, i386)

zope.index-5.0.0-cp27-cp27mu-manylinux2010_x86_64.whl (100.1 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

zope.index-5.0.0-cp27-cp27mu-manylinux2010_i686.whl (99.5 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

zope.index-5.0.0-cp27-cp27mu-manylinux1_x86_64.whl (100.1 kB view details)

Uploaded CPython 2.7mu

zope.index-5.0.0-cp27-cp27mu-manylinux1_i686.whl (99.5 kB view details)

Uploaded CPython 2.7mu

zope.index-5.0.0-cp27-cp27m-win_amd64.whl (91.9 kB view details)

Uploaded CPython 2.7mWindows x86-64

zope.index-5.0.0-cp27-cp27m-win32.whl (92.0 kB view details)

Uploaded CPython 2.7mWindows x86

zope.index-5.0.0-cp27-cp27m-manylinux2010_x86_64.whl (100.1 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

zope.index-5.0.0-cp27-cp27m-manylinux2010_i686.whl (99.5 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

zope.index-5.0.0-cp27-cp27m-manylinux1_x86_64.whl (100.1 kB view details)

Uploaded CPython 2.7m

zope.index-5.0.0-cp27-cp27m-manylinux1_i686.whl (99.5 kB view details)

Uploaded CPython 2.7m

zope.index-5.0.0-cp27-cp27m-macosx_10_6_intel.whl (91.6 kB view details)

Uploaded CPython 2.7mmacOS 10.6+ Intel (x86-64, i386)

File details

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

File metadata

  • Download URL: zope.index-5.0.0.tar.gz
  • Upload date:
  • Size: 73.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.5rc1

File hashes

Hashes for zope.index-5.0.0.tar.gz
Algorithm Hash digest
SHA256 c87097c30ed86ca0fddcbaf0acf320230382d488ef6aab02321cd59eeda69a37
MD5 769c1c02c3f35e45de9dd11514127cce
BLAKE2b-256 1bf680009ca4340240c23f04615f21591a614a54425fae45201e2271fc658ee4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.index-5.0.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 94.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.8.0

File hashes

Hashes for zope.index-5.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 197cb0066eb02c9cc0246e70a08c4b6dd03e7acf00a35874f90fde37c5391c5e
MD5 0a93dac33d5896950310d409f7b631c6
BLAKE2b-256 48fdd36c612235bc80e3faf338fc9eb7550cf92db53d2191c254cbb001385d6d

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 93.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.8.0

File hashes

Hashes for zope.index-5.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ea1acaf72c31661580b1e86178cbd81cb931ea3e71152ae30e6aefe486b877ed
MD5 bb3cdd85f54451e36fab0d4656601cec
BLAKE2b-256 b72826c1636e890121464663ed1ad9489389481697a7e1c7829d9492b5bb96f4

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 102.2 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.index-5.0.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 830f8f9b63fa4d086101c997d305232a93b5ad6b954de199f3d8d1c23b14a55f
MD5 2f0e8a0c74ca7e8946dce9c19559285e
BLAKE2b-256 d7c52d8fbeddea4241e948f3516fac5ec23f2892434e1b2f29d68fb7eb4a5ca7

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 101.3 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.index-5.0.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 194f890c7e92812aa652595f1f8a6edf68746bfb430cae646a4a16206049b301
MD5 eb05c82e49ca9dfc6e2078e7401cb892
BLAKE2b-256 dd407c04657d1c2756194acb520f39438217ab753622fd8cab9684d690ef5693

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 102.2 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.index-5.0.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b4775e267b4453b514124836af8ec16d6e34c81bcf02012748cd0c6afee151c6
MD5 e4d15e9fba8d377030e2ad5bbac01a9a
BLAKE2b-256 8083dcbeb3d92f5b8216e83747f516bb67a649b4a47b816104859c26910a6197

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 101.3 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.index-5.0.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8a94734d33c5d4613e4b49fc1ea4ca55fe213aa1f43b4f7fef4454283b64a64b
MD5 173a8926ba7813e394e4b1bc09eeba35
BLAKE2b-256 0dc0ceef0a9c23fb1f2ba8904f9154e88535dfc7e92cdff372074eef3e3ef97f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.index-5.0.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 94.0 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.7.5

File hashes

Hashes for zope.index-5.0.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d31ab54272461973285d3770ad18d2553f9db55b4f9bd897de18f960fe71f41a
MD5 13b12f1cb56e587d836e8ae41efea8ca
BLAKE2b-256 0fd3afef0342486bf02511c65a1145e2e318dfb4fa781ac677d06f1aab14ae82

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 93.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.7.5

File hashes

Hashes for zope.index-5.0.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 8c70569712778b2a3ca6caee0354d33b6bc50507a626644efdaa5e4a9cdc8288
MD5 63c14add00e23ec932deb5a24f1125a8
BLAKE2b-256 6be0ad2e1de657b07053b066ae02d90d2f9fdcf7608468ea63e4e589f32192e5

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 102.6 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.index-5.0.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b810d518b211ecc8a488e97500c25d918fb1431da175b1e8ce8fa67346c8d235
MD5 fb3f0b85f0403cc53508b86054b7c74f
BLAKE2b-256 0ce8b91d23556c20fd26aa13c2732cdb64fb1706364931ae520db9cf9eb803d4

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 101.8 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.index-5.0.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 93b66fd2727631895d0840939d4fabe883de02bc947c7d682bc08933574877c8
MD5 70eb6a9e92d163f30b741469c3eb0ce5
BLAKE2b-256 694b88e71757df842788a9f97bc6be18373b834a8c1b199282e0d2be42a7f09a

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 102.6 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.index-5.0.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 366871a79a177b2ac29c2042563f1b66256f374025b053db66cc935264ae40d0
MD5 b0414e2fbb5f1d002e1d322db8bf0824
BLAKE2b-256 e9ab1c348c1b53c84fab5d292f42975fc899ec58b725161273e3c9ba857fa64e

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 101.8 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.index-5.0.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0a98da03fc9e8ae8dec1c0e666b053dd46bd13a21f3db5401cf9ae9ae6e8ebcb
MD5 7c330b01cfbcf35a1f8ad5c9238797b4
BLAKE2b-256 b8d0bb1a31982e0c3752f5b517077d85fb227df0690802c6797e40112896ed86

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp37-cp37m-macosx_10_6_intel.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp37-cp37m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 91.6 kB
  • Tags: CPython 3.7m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.10

File hashes

Hashes for zope.index-5.0.0-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 a519d601d0d35ec27b812829bc866be9f44743c326eee5f5fab490461777335a
MD5 d4a141982aa6b8a397c1ee136c77111b
BLAKE2b-256 6cf77c5381a958ae88a9ec56bdf601f90ca96e0a6a1759a1adcf1c780d68d377

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 94.0 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.8

File hashes

Hashes for zope.index-5.0.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 725d87dcffd8a1a22f35d364a0cd925c4d6b00fc44e7da1fd494bd9ef566ac85
MD5 ae0bcbac5378efd18574065089840582
BLAKE2b-256 c6c8c578aa643bbac662a932291564abb62f88ba16e3b3b004e62c4c6a76ccdc

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 93.3 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.8

File hashes

Hashes for zope.index-5.0.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 951220a1237f5a4802118d361cea9202d561e228c6058e56bf7ad1f9af0b1ee2
MD5 b7e92bc67102506b5dc5e67e62f7ab9b
BLAKE2b-256 9101b3742c5397457d8307764e614aa877e87a663ba7fd88b17566bb1345c647

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 101.6 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.index-5.0.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3f86c8e02ecd19d48d918bb6002fe5cdcc6e9bcddd547e748cac490f71839075
MD5 1bf8687c6b532fbc43dc603d679d1725
BLAKE2b-256 cc0516849c612ae7aaa6c33d1dab769593a9fe10868d4b25130970b5cbc2d750

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 101.0 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.index-5.0.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 af1372782e4b1a6cfbb51a89a09d38ef30597dbc0ec38b4558cebe2d5b8babd0
MD5 5a43d1ff16581ec88651b27a0ddf6764
BLAKE2b-256 a33be53e08ee4bea1c884494f8bb5dce8f9a08ae939d795eb798f69934eeb370

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 101.6 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.index-5.0.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5a5831bf3825c06eaab9dfe738faf736d7d90e9b02f60faa0cfa838b08e2bd98
MD5 8ecdcc2daa2fde2c38ea7627c1ebd42a
BLAKE2b-256 ab0ff93bddfac1189bb6b973142da3ef2caa6817a59b07ca448095a30b644737

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 101.0 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.index-5.0.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2133f5be6c4262995c6a9dc0c854c4aa9bebab9e6b7855795c0c953afd91bc09
MD5 61e84282e910dd96d312eef89761153e
BLAKE2b-256 92252ceaa3c603976f38788334385d1a15fececae942b7b475f846adc5a35e4b

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp36-cp36m-macosx_10_6_intel.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 91.6 kB
  • Tags: CPython 3.6m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.10

File hashes

Hashes for zope.index-5.0.0-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 dafd21dfc34888d8a650abb52213d1745bd6892c5e9bccd1b8702e7623619cc6
MD5 96a0a9243240c0040196b9b7b6fb6b04
BLAKE2b-256 875fce479a0d9422a9404cb115f855a9916a363060ffc20812758947b7bbc418

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 94.0 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.5.4

File hashes

Hashes for zope.index-5.0.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 331099de0eca27ca502167fd991f539fac10fa4a2c93527d28d5c7ffca9636f7
MD5 1023276013eac5aa16e97fa986316b92
BLAKE2b-256 ed83d8789ae35e8d1c95be3ebb8595a9452f7d544272f8b5511b48c9828662a2

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 93.2 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.5.4

File hashes

Hashes for zope.index-5.0.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 5e954a43832de8827b323a48748b7f82fb0cf1c8a59df45b4be4a0ad233a1381
MD5 c76b2be7edcbff540895ad1b96d647fe
BLAKE2b-256 22f85225179746283cf22e0c9e13c670dc51b2587ae249dfa9a9e86f882211bb

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 101.4 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.index-5.0.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9855512eb25dc83d772a374d3e73ea77379cdb85cda1a1cfb5e540dd80d99949
MD5 3fbe50a57d3298dd238b13fbcbcf32c4
BLAKE2b-256 188e307b1b5bcb995933a98c0f1916e0fd20e5f52e92b9a8f78a3a5a60d9a7db

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 100.7 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.index-5.0.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e5668093d0699c7bdae410b1f766b449848646bc3fa816fcb8dc0e549c599b87
MD5 253124007c04af1183d9e5d7abf5688c
BLAKE2b-256 2eeb2fd0a2fb5844b9a4b1dc61ba95c32125f6f1dfcbbcd6842ddd838000d156

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 101.4 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.index-5.0.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dd3e310bed39012c5c72809a0b1fcd74c914cf4a96c6f30e44081085804d93a9
MD5 f0f87a52817c98b8568aa1d57bf896ee
BLAKE2b-256 93e8328e0c9ff45e07d50a577dcf5e7bb5b060f4670548f6194f44e98f41fd4e

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 100.7 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.index-5.0.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 965b00d89d72d6d930419767a4fd8efcf6328b1de2980c83f702e7b1391bf7b1
MD5 e327c8caffd8e5469f6eafa8119060b8
BLAKE2b-256 4f1f19ad54542a685dcd917378898d81be14e3b66d7d2c8882215a27f4b6b844

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp35-cp35m-macosx_10_6_intel.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 91.6 kB
  • Tags: CPython 3.5m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.10

File hashes

Hashes for zope.index-5.0.0-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 c08c74c5f587068a4b09756af04b6e720a758ab73e3a9c79f398c5aa2f6d8071
MD5 bdf6cb2ea3571a28fe119047f46fe431
BLAKE2b-256 e6a0840496ff2ddd673ba70cb699d35072deaf43d85162cb0569d655c1efa700

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 100.1 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.index-5.0.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f81eb1b0e46f5aac15c508178dbb5bb85b7ec11e63b72868d207a37abf102f22
MD5 0b3ae0a5895794a51cf10051ebbb6dcd
BLAKE2b-256 29ff8beededcbeff3ba0dc4927f9808e78e11dc148cec86ac0e1bc375f4a00f3

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 99.5 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.index-5.0.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a2e543582dd1e5757b5c354114fd83710de7e3f30c1dced3f043f800a513b392
MD5 f4ab704ccf89d4da87c044a531714a2a
BLAKE2b-256 c21ec2b5221426871d315c35dd04ba47e8d5ed7f0607bfd6a52e399dbd437e3d

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 100.1 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.index-5.0.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 be02b04ff8181481a341a699d65ea1f39d66b4db9315d2852688d53300532a50
MD5 69a5b6adb319bedd357ae37cad79cc51
BLAKE2b-256 d566dbd70cc9382d8319bc86d8c89ed9b8243ae2e041c71c53ea97eac9e55639

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 99.5 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.index-5.0.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 686176fa5aeca4726ebec628c9c9bb6d66dfcca42ddffebda0cfd037b4fb9d2a
MD5 6dbe11fff7043b7f65374c1a6628a99e
BLAKE2b-256 e966530cf479acab951456239d2b94db242edfcb2b030a09410e411c068641a9

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 91.9 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.17

File hashes

Hashes for zope.index-5.0.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 0ff9084a2ba8ccf9eaac0d14fc7f6e158063b11081d367b7b533ce5a4c845756
MD5 13ce65c64808dda531fb41732546fcfe
BLAKE2b-256 7e9655e478ee106546344ef46252599508801610d04abf4fa300f22456fbbf67

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp27-cp27m-win32.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 92.0 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.17

File hashes

Hashes for zope.index-5.0.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 18358e5546c0b522ee87219fa4cbce8f6e41fc947ace057573d99b0faf822cf0
MD5 2c848b254f3e34a34f07592d2ff23c9a
BLAKE2b-256 1315c640077a7a1d58a27618800e70395e5f6329401f3eb97ecc7e446a46afcd

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 100.1 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.index-5.0.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7f4eb8c486edd7425a469c38a50249a0f988ff1db008ec751790703b03dbccc4
MD5 26e8c55c9394f4e54e2a97e5552cdab1
BLAKE2b-256 352a7934887ec98040b0888688b37bb04a324fb3e9bb2047431a290641b5c017

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 99.5 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.index-5.0.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ee9c878c350d0d1f5532bba44de2611be56298107157f8ccdae54ae9b11e2d1b
MD5 6b7eff20e1b5a6689745892f8f964241
BLAKE2b-256 cbffe24efe806ae90df2921f4e2a75e68a66817a13d577ab402263b9bf353a81

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 100.1 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.index-5.0.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3632e11b0f52c0180a5e146a7ef3fe0a2cca52e02471412208421bc7fb6bc0bc
MD5 d0ad7c01164c192d9e4a078ab482d5e9
BLAKE2b-256 707c14357f2b576ad87f5165b003a27eb811b46949d6bcdb9588144ac98aa402

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 99.5 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.index-5.0.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 476836398cd2fd05b3e4e18dfcf935217b1bccadcb7285041725f6f3b63dcd1a
MD5 1eece52f44c3d1c84f7f4c6f145d70e4
BLAKE2b-256 ca4a34c0eea374812aa329b35d59dcae6c2389d6009592ef876bd00b747fc8a0

See more details on using hashes here.

File details

Details for the file zope.index-5.0.0-cp27-cp27m-macosx_10_6_intel.whl.

File metadata

  • Download URL: zope.index-5.0.0-cp27-cp27m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 91.6 kB
  • Tags: CPython 2.7m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.10

File hashes

Hashes for zope.index-5.0.0-cp27-cp27m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 5c0bccb8d01d00fb6edc22fb4b8877f5e73886cee824caf9b8ee51316091e418
MD5 4c18c5b087cf834a21fe5752a6d94f95
BLAKE2b-256 4ac12b87c0df7d46f0b304caa9222492ce14cbd75dac94d8ee715ceb17436de5

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