Skip to main content

zope.interface

Latest Version Supported Python versions https://travis-ci.org/zopefoundation/zope.interface.svg?branch=master Documentation Status

This package is intended to be independently reusable in any Python project. It is maintained by the Zope Toolkit project.

This package provides an implementation of “object interfaces” for Python. Interfaces are a mechanism for labeling objects as conforming to a given API or contract. So, this package can be considered as implementation of the Design By Contract methodology support in Python.

For detailed documentation, please see https://zopeinterface.readthedocs.io/en/latest/

Changes

4.7.2 (2020-03-10)

  • Remove deprecated use of setuptools features. See issue 30.

4.7.1 (2019-11-11)

  • Use Python 3 syntax in the documentation. See issue 119.

4.7.0 (2019-11-11)

  • Drop support for Python 3.4.

  • Fix queryTaggedValue, getTaggedValue, getTaggedValueTags subclass inheritance. See PR 144.

  • Add support for Python 3.8.

4.6.0 (2018-10-23)

  • Add support for Python 3.7

  • Fix verifyObject for class objects with staticmethods on Python 3. See issue 126.

4.5.0 (2018-04-19)

  • Drop support for 3.3, avoid accidental dependence breakage via setup.py. See PR 110.

  • Allow registering and unregistering instance methods as listeners. See issue 12 and PR 102.

  • Synchronize and simplify zope/__init__.py. See issue 114

4.4.3 (2017-09-22)

  • Avoid exceptions when the __annotations__ attribute is added to interface definitions with Python 3.x type hints. See issue 98.

  • Fix the possibility of a rare crash in the C extension when deallocating items. See issue 100.

4.4.2 (2017-06-14)

  • Fix a regression storing zope.component.persistentregistry.PersistentRegistry instances. See issue 85.

  • Fix a regression that could lead to the utility registration cache of Components getting out of sync. See issue 93.

4.4.1 (2017-05-13)

  • Simplify the caching of utility-registration data. In addition to simplification, avoids spurious test failures when checking for leaks in tests with persistent registries. See pull 84.

  • Raise ValueError when non-text names are passed to adapter registry methods: prevents corruption of lookup caches.

4.4.0 (2017-04-21)

4.3.3 (2016-12-13)

4.3.2 (2016-09-05)

4.3.1 (2016-08-31)

4.3.0 (2016-08-31)

4.2.0 (2016-06-10)

  • Add support for Python 3.5

  • Drop support for Python 2.6 and 3.2.

4.1.3 (2015-10-05)

4.1.2 (2014-12-27)

  • Add support for PyPy3.

  • Remove unittest assertions deprecated in Python3.x.

  • Add zope.interface.document.asReStructuredText, which formats the generated text for an interface using ReST double-backtick markers.

4.1.1 (2014-03-19)

  • Add support for Python 3.4.

4.1.0 (2014-02-05)

  • Update boostrap.py to version 2.2.

  • Add @named(name) declaration, that specifies the component name, so it does not have to be passed in during registration.

4.0.5 (2013-02-28)

  • Fix a bug where a decorated method caused false positive failures on verifyClass().

4.0.4 (2013-02-21)

  • Fix a bug that was revealed by porting zope.traversing. During a loop, the loop body modified a weakref dict causing a RuntimeError error.

4.0.3 (2012-12-31)

  • Fleshed out PyPI Trove classifiers.

4.0.2 (2012-11-21)

  • Add support for Python 3.3.

  • Restored ability to install the package in the absence of setuptools.

  • LP #1055223: Fix test which depended on dictionary order and failed randomly in Python 3.3.

4.0.1 (2012-05-22)

  • Drop explicit DeprecationWarnings for “class advice” APIS (these APIs are still deprecated under Python 2.x, and still raise an exception under Python 3.x, but no longer cause a warning to be emitted under Python 2.x).

4.0.0 (2012-05-16)

  • Automated build of Sphinx HTML docs and running doctest snippets via tox.

  • Deprecate the “class advice” APIs from zope.interface.declarations: implements, implementsOnly, and classProvides. In their place, prefer the equivalent class decorators: @implementer, @implementer_only, and @provider. Code which uses the deprecated APIs will not work as expected under Py3k.

  • Remove use of ‘2to3’ and associated fixers when installing under Py3k. The code is now in a “compatible subset” which supports Python 2.6, 2.7, and 3.2, including PyPy 1.8 (the version compatible with the 2.7 language spec).

  • Drop explicit support for Python 2.4 / 2.5 / 3.1.

  • Add support for PyPy.

  • Add support for continuous integration using tox and jenkins.

  • Add ‘setup.py dev’ alias (runs setup.py develop plus installs nose and coverage).

  • Add ‘setup.py docs’ alias (installs Sphinx and dependencies).

  • Replace all unittest coverage previously accomplished via doctests with unittests. The doctests have been moved into a docs section, managed as a Sphinx collection.

  • LP #910987: Ensure that the semantics of the lookup method of zope.interface.adapter.LookupBase are the same in both the C and Python implementations.

  • LP #900906: Avoid exceptions due to tne new __qualname__ attribute added in Python 3.3 (see PEP 3155 for rationale). Thanks to Antoine Pitrou for the patch.

3.8.0 (2011-09-22)

  • New module zope.interface.registry. This is code moved from zope.component.registry which implements a basic nonperistent component registry as zope.interface.registry.Components. This class was moved from zope.component to make porting systems (such as Pyramid) that rely only on a basic component registry to Python 3 possible without needing to port the entirety of the zope.component package. Backwards compatibility import shims have been left behind in zope.component, so this change will not break any existing code.

  • New tests_require dependency: zope.event to test events sent by Components implementation. The zope.interface package does not have a hard dependency on zope.event, but if zope.event is importable, it will send component registration events when methods of an instance of zope.interface.registry.Components are called.

  • New interfaces added to support zope.interface.registry.Components addition: ComponentLookupError, Invalid, IObjectEvent, ObjectEvent, IComponentLookup, IRegistration, IUtilityRegistration, IAdapterRegistration, ISubscriptionAdapterRegistration, IHandlerRegistration, IRegistrationEvent, RegistrationEvent, IRegistered, Registered, IUnregistered, Unregistered, IComponentRegistry, and IComponents.

  • No longer Python 2.4 compatible (tested under 2.5, 2.6, 2.7, and 3.2).

3.7.0 (2011-08-13)

  • Move changes from 3.6.2 - 3.6.5 to a new 3.7.x release line.

3.6.7 (2011-08-20)

  • Fix sporadic failures on x86-64 platforms in tests of rich comparisons of interfaces.

3.6.6 (2011-08-13)

  • LP #570942: Now correctly compare interfaces from different modules but with the same names.

    N.B.: This is a less intrusive / destabilizing fix than the one applied in 3.6.3: we only fix the underlying cmp-alike function, rather than adding the other “rich comparison” functions.

  • Revert to software as released with 3.6.1 for “stable” 3.6 release branch.

3.6.5 (2011-08-11)

  • LP #811792: work around buggy behavior in some subclasses of zope.interface.interface.InterfaceClass, which invoke __hash__ before initializing __module__ and __name__. The workaround returns a fixed constant hash in such cases, and issues a UserWarning.

  • LP #804832: Under PyPy, zope.interface should not build its C extension. Also, prevent attempting to build it under Jython.

  • Add a tox.ini for easier xplatform testing.

  • Fix testing deprecation warnings issued when tested under Py3K.

3.6.4 (2011-07-04)

  • LP 804951: InterfaceClass instances were unhashable under Python 3.x.

3.6.3 (2011-05-26)

  • LP #570942: Now correctly compare interfaces from different modules but with the same names.

3.6.2 (2011-05-17)

  • Moved detailed documentation out-of-line from PyPI page, linking instead to http://docs.zope.org/zope.interface .

  • Fixes for small issues when running tests under Python 3.2 using zope.testrunner.

  • LP # 675064: Specify return value type for C optimizations module init under Python 3: undeclared value caused warnings, and segfaults on some 64 bit architectures.

  • setup.py now raises RuntimeError if you don’t have Distutils installed when running under Python 3.

3.6.1 (2010-05-03)

  • A non-ASCII character in the changelog made 3.6.0 uninstallable on Python 3 systems with another default encoding than UTF-8.

  • Fix compiler warnings under GCC 4.3.3.

3.6.0 (2010-04-29)

  • LP #185974: Clear the cache used by Specificaton.get inside Specification.changed. Thanks to Jacob Holm for the patch.

  • Add support for Python 3.1. Contributors:

    Lennart Regebro Martin v Loewis Thomas Lotze Wolfgang Schnerring

    The 3.1 support is completely backwards compatible. However, the implements syntax used under Python 2.X does not work under 3.X, since it depends on how metaclasses are implemented and this has changed. Instead it now supports a decorator syntax (also under Python 2.X):

    class Foo:
        implements(IFoo)
        ...

    can now also be written:

    @implementer(IFoo):
    class Foo:
        ...

    There are 2to3 fixers available to do this change automatically in the zope.fixers package.

  • Python 2.3 is no longer supported.

3.5.4 (2009-12-23)

  • Use the standard Python doctest module instead of zope.testing.doctest, which has been deprecated.

3.5.3 (2009-12-08)

3.5.2 (2009-07-01)

  • BaseAdapterRegistry.unregister, unsubscribe: Remove empty portions of the data structures when something is removed. This avoids leaving references to global objects (interfaces) that may be slated for removal from the calling application.

3.5.1 (2009-03-18)

  • verifyObject: use getattr instead of hasattr to test for object attributes in order to let exceptions other than AttributeError raised by properties propagate to the caller

  • Add Sphinx-based documentation building to the package buildout configuration. Use the bin/docs command after buildout.

  • Improve package description a bit. Unify changelog entries formatting.

  • Change package’s mailing list address to zope-dev at zope.org as zope3-dev at zope.org is now retired.

3.5.0 (2008-10-26)

  • Fix declaration of _zope_interface_coptimizations, it’s not a top level package.

  • Add a DocTestSuite for odd.py module, so their tests are run.

  • Allow to bootstrap on Jython.

  • Fix https://bugs.launchpad.net/zope3/3.3/+bug/98388: ISpecification was missing a declaration for __iro__.

  • Add optional code optimizations support, which allows the building of C code optimizations to fail (Jython).

  • Replace _flatten with a non-recursive implementation, effectively making it 3x faster.

3.4.1 (2007-10-02)

  • Fix a setup bug that prevented installation from source on systems without setuptools.

3.4.0 (2007-07-19)

  • Final release for 3.4.0.

3.4.0b3 (2007-05-22)

  • When checking whether an object is already registered, use identity comparison, to allow adding registering with picky custom comparison methods.

3.3.0.1 (2007-01-03)

  • Made a reference to OverflowWarning, which disappeared in Python 2.5, conditional.

3.3.0 (2007/01/03)

New Features

  • Refactor the adapter-lookup algorithim to make it much simpler and faster.

    Also, implement more of the adapter-lookup logic in C, making debugging of application code easier, since there is less infrastructre code to step through.

  • Treat objects without interface declarations as if they declared that they provide zope.interface.Interface.

  • Add a number of richer new adapter-registration interfaces that provide greater control and introspection.

  • Add a new interface decorator to zope.interface that allows the setting of tagged values on an interface at definition time (see zope.interface.taggedValue).

Bug Fixes

  • A bug in multi-adapter lookup sometimes caused incorrect adapters to be returned.

3.2.0.2 (2006-04-15)

  • Fix packaging bug: ‘package_dir’ must be a relative path.

3.2.0.1 (2006-04-14)

  • Packaging change: suppress inclusion of ‘setup.cfg’ in ‘sdist’ builds.

3.2.0 (2006-01-05)

  • Corresponds to the verison of the zope.interface package shipped as part of the Zope 3.2.0 release.

3.1.0 (2005-10-03)

  • Corresponds to the verison of the zope.interface package shipped as part of the Zope 3.1.0 release.

  • Made attribute resolution order consistent with component lookup order, i.e. new-style class MRO semantics.

  • Deprecate ‘isImplementedBy’ and ‘isImplementedByInstancesOf’ APIs in favor of ‘implementedBy’ and ‘providedBy’.

3.0.1 (2005-07-27)

  • Corresponds to the verison of the zope.interface package shipped as part of the Zope X3.0.1 release.

  • Fix a bug reported by James Knight, which caused adapter registries to fail occasionally to reflect declaration changes.

3.0.0 (2004-11-07)

  • Corresponds to the verison of the zope.interface package shipped as part of the Zope X3.0.0 release.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

zope.interface-4.7.2.tar.gz (151.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

zope.interface-4.7.2-cp38-cp38-win_amd64.whl (134.6 kB view details)

Uploaded CPython 3.8Windows x86-64

zope.interface-4.7.2-cp38-cp38-win32.whl (132.9 kB view details)

Uploaded CPython 3.8Windows x86

zope.interface-4.7.2-cp38-cp38-manylinux2010_x86_64.whl (174.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

zope.interface-4.7.2-cp38-cp38-manylinux2010_i686.whl (178.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

zope.interface-4.7.2-cp38-cp38-manylinux1_x86_64.whl (174.4 kB view details)

Uploaded CPython 3.8

zope.interface-4.7.2-cp38-cp38-manylinux1_i686.whl (178.6 kB view details)

Uploaded CPython 3.8

zope.interface-4.7.2-cp37-cp37m-win_amd64.whl (134.3 kB view details)

Uploaded CPython 3.7mWindows x86-64

zope.interface-4.7.2-cp37-cp37m-win32.whl (132.7 kB view details)

Uploaded CPython 3.7mWindows x86

zope.interface-4.7.2-cp37-cp37m-manylinux2010_x86_64.whl (169.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

zope.interface-4.7.2-cp37-cp37m-manylinux2010_i686.whl (167.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

zope.interface-4.7.2-cp37-cp37m-manylinux1_x86_64.whl (169.3 kB view details)

Uploaded CPython 3.7m

zope.interface-4.7.2-cp37-cp37m-manylinux1_i686.whl (167.7 kB view details)

Uploaded CPython 3.7m

zope.interface-4.7.2-cp37-cp37m-macosx_10_9_x86_64.whl (131.9 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

zope.interface-4.7.2-cp36-cp36m-win_amd64.whl (134.3 kB view details)

Uploaded CPython 3.6mWindows x86-64

zope.interface-4.7.2-cp36-cp36m-win32.whl (132.7 kB view details)

Uploaded CPython 3.6mWindows x86

zope.interface-4.7.2-cp36-cp36m-manylinux2010_x86_64.whl (168.4 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

zope.interface-4.7.2-cp36-cp36m-manylinux2010_i686.whl (166.8 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

zope.interface-4.7.2-cp36-cp36m-manylinux1_x86_64.whl (168.4 kB view details)

Uploaded CPython 3.6m

zope.interface-4.7.2-cp36-cp36m-manylinux1_i686.whl (166.8 kB view details)

Uploaded CPython 3.6m

zope.interface-4.7.2-cp36-cp36m-macosx_10_6_intel.whl (140.5 kB view details)

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

zope.interface-4.7.2-cp35-cp35m-win_amd64.whl (134.2 kB view details)

Uploaded CPython 3.5mWindows x86-64

zope.interface-4.7.2-cp35-cp35m-win32.whl (132.6 kB view details)

Uploaded CPython 3.5mWindows x86

zope.interface-4.7.2-cp35-cp35m-manylinux2010_x86_64.whl (168.2 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

zope.interface-4.7.2-cp35-cp35m-manylinux2010_i686.whl (166.6 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

zope.interface-4.7.2-cp35-cp35m-manylinux1_x86_64.whl (168.2 kB view details)

Uploaded CPython 3.5m

zope.interface-4.7.2-cp35-cp35m-manylinux1_i686.whl (166.6 kB view details)

Uploaded CPython 3.5m

zope.interface-4.7.2-cp35-cp35m-macosx_10_6_intel.whl (140.5 kB view details)

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

zope.interface-4.7.2-cp27-cp27mu-manylinux2010_x86_64.whl (164.7 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

zope.interface-4.7.2-cp27-cp27mu-manylinux2010_i686.whl (163.0 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

zope.interface-4.7.2-cp27-cp27mu-manylinux1_x86_64.whl (164.7 kB view details)

Uploaded CPython 2.7mu

zope.interface-4.7.2-cp27-cp27mu-manylinux1_i686.whl (163.0 kB view details)

Uploaded CPython 2.7mu

zope.interface-4.7.2-cp27-cp27m-win_amd64.whl (132.2 kB view details)

Uploaded CPython 2.7mWindows x86-64

zope.interface-4.7.2-cp27-cp27m-win32.whl (131.5 kB view details)

Uploaded CPython 2.7mWindows x86

zope.interface-4.7.2-cp27-cp27m-manylinux2010_x86_64.whl (164.7 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

zope.interface-4.7.2-cp27-cp27m-manylinux2010_i686.whl (163.0 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

zope.interface-4.7.2-cp27-cp27m-manylinux1_x86_64.whl (164.7 kB view details)

Uploaded CPython 2.7m

zope.interface-4.7.2-cp27-cp27m-manylinux1_i686.whl (163.0 kB view details)

Uploaded CPython 2.7m

zope.interface-4.7.2-cp27-cp27m-macosx_10_9_x86_64.whl (131.8 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

Details for the file zope.interface-4.7.2.tar.gz.

File metadata

  • Download URL: zope.interface-4.7.2.tar.gz
  • Upload date:
  • Size: 151.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.5

File hashes

Hashes for zope.interface-4.7.2.tar.gz
Algorithm Hash digest
SHA256 fd1101bd3fcb4f4cf3485bb20d6cb0b56909b94d3bd2a53a6cb9d381c3da3365
MD5 ea062be6c8908896ed28a1568802ba1a
BLAKE2b-256 f8448531e65de6fde76e6055f5ce93e8a482dff534cea9bebcac7845e2273efd

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 134.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for zope.interface-4.7.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d79da12a15edd6d7c366766954c4b6de0247e85ba35ee2ad9f37f972e7080f8a
MD5 464130cab0a161c6391704c5b538ddd9
BLAKE2b-256 81bebdf0150df6e08f9a0e32cff4a20e12c31a383acf5119a24e058477603159

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 132.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for zope.interface-4.7.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 993051db4278f9ec3b191ae823a7bb32b6a91fed6e960d43500fc4ce64cdb4e0
MD5 3cfc12c75c2c06ed208e775f14985d00
BLAKE2b-256 5320015bacb6452a65827c2d6133a387018b9b72dee0a8831b8d5bcb7c188dca

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 174.4 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.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 08ae0a88ac29b92faff069e0511ad27197b3274bdf67ebd8c75aaeb05823c7af
MD5 ee65966ca01f707803790e6f72fa40a0
BLAKE2b-256 bb236e67ef73f0dbd50eaec6515aa2b94984aaaf09c6254e262a84a99ab6d0af

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 178.6 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.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.2-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 65cef4766be4be9372621cd17773424302c21785dfaf6e9bd5b64b1f1264f9cc
MD5 01ff2ee8f7f39db9cbce919a30d488d2
BLAKE2b-256 15d4db354db52db309537dae90de3abbd4e289172633af8f0271eff96f3487e4

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 174.4 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 11db683f49652b34aa87904b27d00f9032fa2db7f1f9676c05b13361a3c7547c
MD5 db0807607efa496a6f87614938e2d8b6
BLAKE2b-256 5e31c1c57e1b9eecad54049ac409bb4ddc32f98b454ac4377b9f65d8934ae1e6

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 178.6 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.2-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 07a8bb9110854c0ab9329adbbec7050af242a78a62e226ab49e9c2182090f501
MD5 f828db101249f01cc3f162eb74f38f34
BLAKE2b-256 94ce9e28edcd7418c292920b1301c35c504a086e06a966b3b89b6dc6d11b92e2

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 134.3 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.5

File hashes

Hashes for zope.interface-4.7.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 eb92c733be08c6e2b8dfd4613d1b3c2f345ca4f83219d40fda4680333d3a0dc4
MD5 403b6992c083efdfd0e338245ac23c28
BLAKE2b-256 6f79414774c764fd0cd3ee0bdb233db452063f489538f1f07b347b301f440ce7

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 132.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.5

File hashes

Hashes for zope.interface-4.7.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3b6a2ef2c6b4e9786939bd9861e7b98bc01cb3024f87c8cf4b78872f2afcf584
MD5 4737b5b882fd1a2a85b0801c231d6233
BLAKE2b-256 8b4688e558c201c07cb955d6b711990d0eb2c6dfb95e34b579aabbeb425f85fc

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 169.3 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.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4855384c27fe7e31efbee32f74659421d64e5bfa8b7df2ec08d306d0f3d4cee6
MD5 2baf718b2f0be61b76f9e782eab971ed
BLAKE2b-256 784c5c9584d631c5ddc098c3d6c4e26c3f5f428f9c62a2d756475b0f9c01f6e1

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 167.7 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.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.2-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 36e7438d2f71153cea6b119ddd2648bc010cec4368fd8e7170e50090c0d7ed19
MD5 8a537e4f11c25f1911453b3edf208444
BLAKE2b-256 b2963a44eb0001f6408602a7ca616aaeaf9c3d05939d30cb16ac76cad0f4834c

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 169.3 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 07de051fac6dedc6c659034f80bc46623edc776c757fa26f3f467954b12d2403
MD5 bfc11dba772d8bf43ab845368ba1bd1d
BLAKE2b-256 ff0ef94754dec231e0ed41c32eb892a0e044db0cf285229d75ede740d7650023

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 167.7 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b906dda76ab70b6905ef3014260e7f1c861a0c4841e29826eb34a6187255504b
MD5 58b2999c2210967471e44b9e386dd502
BLAKE2b-256 80888a4a056ed2e004d7f59ab764dc6966259ba1989484c8d4463937b7db81da

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 131.9 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.10

File hashes

Hashes for zope.interface-4.7.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9e67e9fa7dc43210ad766cd6eef133d9d256a530fe07e5585685cdc742170d10
MD5 684444a0690ed138b40fd67be81c3f80
BLAKE2b-256 e5cff2f94cba5146dd48a3dd75f6c196f3fec5b101dd69e5217079ac53d16566

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 134.3 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.8

File hashes

Hashes for zope.interface-4.7.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 31fdcc9eaf2c379e8b416184a0749ce3f95fdaf206b092b63bdc065aecca6a95
MD5 f0b653d42451138e4e3bb865c0417639
BLAKE2b-256 a918efaa2369d91ca0a6103b88329e82b480d709a15c9e50c75d35ca57fb09da

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp36-cp36m-win32.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 132.7 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.8

File hashes

Hashes for zope.interface-4.7.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 02339c53bbf7e438dec371af1f401e4843f9dc5765b3b032032b195dd72b47f2
MD5 4ff47d41d9078a99ea47e9407047333a
BLAKE2b-256 7d226812b52dca8fb1c65c3ace844c3b02dc03e083ee1dd78da2f6c464249a59

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 168.4 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.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7d3c4f10b7a8502a68a8eadcd57e86a35e3948af3edee7bd49a21b225361b0da
MD5 ea66a30e7d0bdd8ae9101b2bf8b712b3
BLAKE2b-256 37a71975afa75fc246da1c6d10dd2fbfe7914b342c7c2b2cd434e0c1fa75c900

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 166.8 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.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.2-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b12241fac561b635329c3275e911a53e104b43875b99d31332d006d52e180912
MD5 8032229cec7ff12d7fe0c411077de883
BLAKE2b-256 d128239efe37957ea02e9e96112807437bbcb7868484a3cb9f06eac1df93cde0

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 168.4 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6f2bf246ee9350f428860c37db6158cfb27a7e585d60b2bb3b88864810875835
MD5 718359073e805bd918ae03074bf469b2
BLAKE2b-256 78f43e3fa96515029643c68d6ee8af0baabdc52735f322ff5eff98c6c14d2d7c

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 166.8 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 98a21acc7d1e45fcb700831b66ec6c84a3c2a5a94868d72ef83565966adc474f
MD5 c8229d80bf19da046c1cc7dab8b88ffd
BLAKE2b-256 5803a60d8c0529348427ad2603d0009a8f2fb04266a875ef4e1419ebfc14f62c

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp36-cp36m-macosx_10_6_intel.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 140.5 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.23.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.10

File hashes

Hashes for zope.interface-4.7.2-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 61b95dbfd03ce2a55c38da711cba7130605dbef4839ca12b53c46827826c5c5b
MD5 d098f93efc69c5721bdebdbee8895690
BLAKE2b-256 db67ad9538be50c40ffa41e7396b986086dff203583ad82dacacd381d3e5a654

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 134.2 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.23.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.4

File hashes

Hashes for zope.interface-4.7.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 23c4a70a9abb8faa35e2967e2e7cbd9225512b706b6eb96b01eb1ccbb2b632c3
MD5 08f0bd297c734bad9676d9ef54cd2983
BLAKE2b-256 10b7f4260b01e7d44b41cc0d967bc7ce8236af166f2e7b7391b618f0fa1b588d

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp35-cp35m-win32.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 132.6 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.23.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.4

File hashes

Hashes for zope.interface-4.7.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 f044fec9c7e1b0ec6fdf0d3abc648c2f3b9128933051a9a73af52dbdd9e6d6e9
MD5 a0fa5246c686aa8ee85cc0dbd52a8e32
BLAKE2b-256 4307e7743a833331a01561cca773c6e2f950583cbd2d1a829af728d0586f8d6f

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 168.2 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.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a9fce290a6ba88e5e6e81dd1e800c045212df69ab69d1de0d303b1af9cec692f
MD5 c4224d1ce7c44b775b52121f9f1edc48
BLAKE2b-256 44a9ba423282302640bc1133153489ecd0be1ac480b904ad108d03f59e14916e

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 166.6 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.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.2-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a7b50fa86c1bd863ef3b3314da62928c015a732bb0aef220852b9606104f0df5
MD5 9c5ef688c55ad1238aa7dbd150536054
BLAKE2b-256 3a1de8cfb3aa22c8c5948c9ca9e282ccf7255d1a699ebc9991c0df91775c2cc1

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 168.2 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 64446f9baa2c51f47b0e272939c583ffd220e67f5bcbc2f18dd244c5a46a7018
MD5 9dbae75f7293934427aa69bee7fc2dd4
BLAKE2b-256 5dbf605242ca1bc5de2b34bcf99925c756f0072c947769c6ad5095f193c8ef3b

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 166.6 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.2-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ae6c4a1fa696c12c3b654fa0d160f3781271f0edbbb0ae50f285a91f2a272a09
MD5 e7230805bcd1db026dceb5a4dc52d42d
BLAKE2b-256 3b30532c50dbc329cdfb5f4b06f20f4a33bcacd65737aa3c7d6632465cc53e9d

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp35-cp35m-macosx_10_6_intel.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 140.5 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.23.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.10

File hashes

Hashes for zope.interface-4.7.2-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 1033e7bb858c398580ca7cbb50f15b715e6031d5772f8a1bde4042c12300a52a
MD5 812cadb938cf2138083534fac8d58016
BLAKE2b-256 d692659701a266ac4329128184348b354cdbafc8efee487c3592e9b0861e571e

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 164.7 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.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.2-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a41a34c55887743ee124e8f696217dec1a7eead1164d27ef27dfae528c396a23
MD5 617943cf733e9659c26ccc8942f789c5
BLAKE2b-256 5f212e246c00dff7277523b6563926d6c481625d5c2fbc68f3ad84f642d267b0

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 163.0 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.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.2-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6f1e8914eee2e3a0bcf435d963ca5cf3a3df89a47cbd3e2b16343bc875194fed
MD5 4f75b45bd5ba09dc34768cc4d1adfda8
BLAKE2b-256 fcfc7928a6a0c6d0e3add8d6b59cb60f8758c7846f12064083cd8d90bfc330d6

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 164.7 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0616040d5a18786aff5d25ef6e1fa0f875b7ba5b6f1a923c1153be81dd9c65ad
MD5 af722fa3f503b4f1be6a117fca5249f3
BLAKE2b-256 beb8af9b37b11adc15f433a36a902700c9ca6ec4db99a731e2e5df8d0d8c26d7

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 163.0 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.2-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2690fd5b042062d866017db11ce1e12d4862df28614cc2915dc57e52b46a8594
MD5 b03705eadffdc7720ae079f300798c32
BLAKE2b-256 9411ce09abf6689fbfca2b961d00c0fe4c2c8e7856360770461e86d045c5b15a

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 132.2 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.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.17

File hashes

Hashes for zope.interface-4.7.2-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 a36e7e1972109504dfa0995a89b6c24a990113eb4cedef93d0eaf1452901b6ac
MD5 7f027e7f0b5bbf6b38f0fa2cdd8b15c2
BLAKE2b-256 d197290c5ecacdf36488a6d514946515a3b1a38b4417ac1fdeabc8672b7c4903

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp27-cp27m-win32.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 131.5 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.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.17

File hashes

Hashes for zope.interface-4.7.2-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 d8a0cb84de725ccd6abd9b5bd32cb94a11db336076fb6d459f1fed23d0719e0c
MD5 cc9b4a4823f2925bd3dfe02f54a4a0a5
BLAKE2b-256 c57999b99bbeb35875b4369f4f8cef1a927d16a9c5f5ec50b83e9adc10190082

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 164.7 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.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.2-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b0029f193d91a1e0085e4a99dd71e4c63a3e7826ec4a8d2ea457f02e1b6b0bb4
MD5 02de7708d1453a696f6a67e275343691
BLAKE2b-256 358680b9042ae0159fc44f11c81562d47538ce756462af7436b255791963850e

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 163.0 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.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.2-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a82d36ecc28e72904388f72f57f3c04aee7c43a019e302d61944b3886c261be3
MD5 2e63b1c6f008eade9fba577c0917d729
BLAKE2b-256 58180c834532589d9de57d800e87206050f4eaa7dd838f4a7a24b1f85f862cf4

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 164.7 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 73a618e734803ded8b8d8f14f9a6371c6a1acc445840cf6ae57733041e796671
MD5 bebfbd86e16f959be83e08f2e3a01bd5
BLAKE2b-256 5186af3103c09351c0b1bac5cfe13b56514f52757f1506ad5fa917f148d0d524

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 163.0 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.2-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4d0830e1d544b2c303064ec01923de2b9d6f5b5d0d78608a91d758b0f469361c
MD5 b9a4277aa33c2565314b5d91eaa8485f
BLAKE2b-256 88cc9ad1dd3d2bf9ef5cfcf014619264cc5d03edf9712003850d5eef85921584

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.2-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: zope.interface-4.7.2-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 131.8 kB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.10

File hashes

Hashes for zope.interface-4.7.2-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 34381fcecc6e6f57d72bc2fab6175976eeacdd61dbb34427a37b260238278199
MD5 fbd0f1822c829e982c315e07ab823062
BLAKE2b-256 864e926f5adaa77078764d7ca4ffe8e00d2417e4ce203cb6a9fcae94182f1374

See more details on using hashes here.

Release history Release notifications | RSS feed

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