Skip to main content

Interfaces for Python

Project description

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

Release history Release notifications | RSS feed

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

Uploaded Source

Built Distributions

zope.interface-4.7.1-cp38-cp38-win_amd64.whl (134.5 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

zope.interface-4.7.1-cp38-cp38-manylinux2010_i686.whl (178.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

zope.interface-4.7.1-cp38-cp38-manylinux1_i686.whl (178.5 kB view details)

Uploaded CPython 3.8

zope.interface-4.7.1-cp37-cp37m-win_amd64.whl (134.2 kB view details)

Uploaded CPython 3.7mWindows x86-64

zope.interface-4.7.1-cp37-cp37m-win32.whl (132.6 kB view details)

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

zope.interface-4.7.1-cp37-cp37m-macosx_10_6_intel.whl (140.4 kB view details)

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

zope.interface-4.7.1-cp36-cp36m-win_amd64.whl (134.2 kB view details)

Uploaded CPython 3.6mWindows x86-64

zope.interface-4.7.1-cp36-cp36m-win32.whl (132.6 kB view details)

Uploaded CPython 3.6mWindows x86

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

zope.interface-4.7.1-cp36-cp36m-macosx_10_6_intel.whl (140.4 kB view details)

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

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

Uploaded CPython 3.5mWindows x86-64

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

Uploaded CPython 3.5mWindows x86

zope.interface-4.7.1-cp35-cp35m-manylinux2010_x86_64.whl (168.1 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

zope.interface-4.7.1-cp35-cp35m-manylinux1_x86_64.whl (168.1 kB view details)

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

zope.interface-4.7.1-cp35-cp35m-macosx_10_6_intel.whl (140.4 kB view details)

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

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

zope.interface-4.7.1-cp27-cp27mu-manylinux2010_i686.whl (162.9 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

zope.interface-4.7.1-cp27-cp27mu-manylinux1_i686.whl (162.9 kB view details)

Uploaded CPython 2.7mu

zope.interface-4.7.1-cp27-cp27m-win_amd64.whl (132.1 kB view details)

Uploaded CPython 2.7mWindows x86-64

zope.interface-4.7.1-cp27-cp27m-win32.whl (131.4 kB view details)

Uploaded CPython 2.7mWindows x86

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

zope.interface-4.7.1-cp27-cp27m-manylinux2010_i686.whl (162.9 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

zope.interface-4.7.1-cp27-cp27m-manylinux1_i686.whl (162.9 kB view details)

Uploaded CPython 2.7m

zope.interface-4.7.1-cp27-cp27m-macosx_10_6_intel.whl (140.3 kB view details)

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

File details

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

File metadata

  • Download URL: zope.interface-4.7.1.tar.gz
  • Upload date:
  • Size: 151.4 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.interface-4.7.1.tar.gz
Algorithm Hash digest
SHA256 4bb937e998be9d5e345f486693e477ba79e4344674484001a0b646be1d530487
MD5 1bc66758275c5eb66d169acba3c8e50e
BLAKE2b-256 c305bf3130eb799548882ce61b7c3d2dbc5d4d5cc6e821efa8786c5273d56844

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 134.5 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/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.5rc1

File hashes

Hashes for zope.interface-4.7.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b47b1028be4758c3167e474884ccc079b94835f058984b15c145966c4df64d27
MD5 c75e2115e332e6713bbc12319a27e9c8
BLAKE2b-256 ea5f5711f41f09659f456bd6b9cb4f033e7e290284d38124da683d946ef2452b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 132.9 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/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.5rc1

File hashes

Hashes for zope.interface-4.7.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 db381f6fdaef483ad435f778086ccc4890120aff8df2ba5cfeeac24d280b3145
MD5 3238850c932a2dac847e84d22cf24f62
BLAKE2b-256 6144fe14da075671b756172660d5dc93a22beb9814b9b6f374b62aaa427907c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-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.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 05816cf8e7407cf62f2ec95c0a5d69ec4fa5741d9ccd10db9f21691916a9a098
MD5 ab1b0fd5b4115c347dd5c31f6beba378
BLAKE2b-256 c91023dcfa9ce5c15cf898a64cba9b2153b546a2cf2f0adfe7b2890e8857268f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 178.5 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.interface-4.7.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3dfce831b824ab5cf446ed0c350b793ac6fa5fe33b984305cb4c966a86a8fb79
MD5 5f08258c2f18dd48d0a6ba51397a7d22
BLAKE2b-256 69ac3b2cebdaeb096739bb456768f42430aa5aef1241153f74ac6609d6ce24f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-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.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 21c0a5d98650aebb84efa16ce2c8df1a46bdc4fe8a9e33237d0ca0b23f416ead
MD5 70cf137d7fdc363cafc1b85da7769e6f
BLAKE2b-256 d6c6ce028154db49656d84730d9eb56a7fdc267232b25dd1dd18452d0af7ff83

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 178.5 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.interface-4.7.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 91b847969d4784abd855165a2d163f72ac1e58e6dce09a5e46c20e58f19cc96d
MD5 42b7588721d2a9ecc531bddb02f570a9
BLAKE2b-256 3c11d510d7a0054999f1671c0ad315490ca6de6c9e1bbeab6926bfe81780db1a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 134.2 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/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.5rc1

File hashes

Hashes for zope.interface-4.7.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1a67408cacd198c7e6274a19920bb4568d56459e659e23c4915528686ac1763a
MD5 5ad0f214e97760d5a66e5835fdfc3907
BLAKE2b-256 94818ba38f29bd5391563722b5c872701937b24dd0c70adbef87b7ce959dbc33

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 132.6 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/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.5rc1

File hashes

Hashes for zope.interface-4.7.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 065d6a1ac89d35445168813bed45048ed4e67a4cdfc5a68fdb626a770378869f
MD5 64fa1e943ba726f04b1d8be351e6e296
BLAKE2b-256 afb7f51c5bedd87122d83b80a7c8cda78a5711b53eb1eb6b4209da1de0df53e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-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.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 25e0ef4a824017809d6d8b0ce4ab3288594ba283e4d4f94d8cfb81d73ed65114
MD5 95fe21058841339fc7aac9731d0aab6b
BLAKE2b-256 40e77e1060c2826d6b8c25bebbd1c96177f4b85ecfe3e2478d31acf9eaca3a11

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-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.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 864b4a94b60db301899cf373579fd9ef92edddbf0fb2cd5ae99f53ef423ccc56
MD5 6241570559710020b47302a0139dfd4a
BLAKE2b-256 85d33729ae1e93591f1f0499ca704b46934918e2c0eb61ad6fdfeb0c338635f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-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.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2f3bc2f49b67b1bea82b942d25bc958d4f4ea6709b411cb2b6b9718adf7914ce
MD5 00f7e6ef4b374468b2216d5413a3f0f3
BLAKE2b-256 fc1feeda511f9d857b63e248bbb2084f04e6c6a1863901954ba0872965c0895c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-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.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 bcb50a032c3b6ec7fb281b3a83d2b31ab5246c5b119588725b1350d3a1d9f6a3
MD5 656175a47ed6d4e2c48cc0652a490ea6
BLAKE2b-256 319a00eec5bf7e85136b05667aa9134220f2ffbfc979c5c37d1c2c8354fc7f4f

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.1-cp37-cp37m-macosx_10_6_intel.whl.

File metadata

  • Download URL: zope.interface-4.7.1-cp37-cp37m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 140.4 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.interface-4.7.1-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 e86923fa728dfba39c5bb6046a450bd4eec8ad949ac404eca728cfce320d1732
MD5 ca0d05de72ae4d8f2235dfea84b16352
BLAKE2b-256 46f8d6f022f17d5c5d229b0003555d2fe7846069ade155d7babefdaa97173281

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 134.2 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.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.5rc1

File hashes

Hashes for zope.interface-4.7.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 35d24be9d04d50da3a6f4d61de028c1dd087045385a0ff374d93ef85af61b584
MD5 307811436b3234721c43db4f8db80b47
BLAKE2b-256 14a5b70c4a1a1ced8633ed51d95b34db97e5acc16dd5107dc73e2646399ce184

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 132.6 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.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.5rc1

File hashes

Hashes for zope.interface-4.7.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 6e1816e7c10966330d77af45f77501f9a68818c065dec0ad11d22b50a0e212e7
MD5 c6c48972e717e81e75da35262099e406
BLAKE2b-256 ae4c523f2f4b7703a9e018024f89cccf8994175a4072ebfbcc78f86fae6f9b21

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-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.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 048b16ac882a05bc7ef534e8b9f15c9d7a6c190e24e8938a19b7617af4ed854a
MD5 b905ae83c91324e05c188550f968ea7f
BLAKE2b-256 051679fe71428c91673194a21fedcc46f7f1349db799bc2a65da4ffdbe570343

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-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.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e6487d01c8b7ed86af30ea141fcc4f93f8a7dde26f94177c1ad637c353bd5c07
MD5 c47c02d834c2ba578269113fd5652149
BLAKE2b-256 9053a10908d8e6c2e5aaf14e17eb6cf4233c4b4098cd670849b0dd90d7653e57

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-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.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 21bf781076dd616bd07cf0223f79d61ab4f45176076f90bc2890e18c48195da4
MD5 740682d04beac023e815a7cfa23b4806
BLAKE2b-256 161cd9e4d1e4eb9777ae675c5ac01290e70012498944d5e743bd2777d1096ad7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-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.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 fb62f2cbe790a50d95593fb40e8cca261c31a2f5637455ea39440d6457c2ba25
MD5 5bb878bbb1a98351540fa626e6869346
BLAKE2b-256 f5c30b11ac7da048535fc06bd561100b05f50cdfed8e4e276068adef528be02d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 140.4 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.interface-4.7.1-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 24b6fce1fb71abf9f4093e3259084efcc0ef479f89356757780685bd2b06ef37
MD5 8605253251a122e42b280f8f016ab405
BLAKE2b-256 85d63f42b90b663139bd3f95abcd7385223087991ce40030fda251d5bbdc98fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-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/2.0.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.interface-4.7.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 3f7866365df5a36a7b8de8056cd1c605648f56f9a226d918ed84c85d25e8d55f
MD5 254b3cddac30c2429aa03792acf019c2
BLAKE2b-256 5a2d5eabb0a2d480abf4aa25d9aa7349622cf5a713efbf182c4461f0ccc75adc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 132.6 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.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.interface-4.7.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 8093cd45cdb5f6c8591cfd1af03d32b32965b0f79b94684cd0c9afdf841982bb
MD5 174f16c9f3a115ac6ef4e9b7a60fb9a3
BLAKE2b-256 ff5d853ce493a4af33ebc7585ffa5382d501a82f8daaf310bfce734bf5e3415a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 168.1 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.interface-4.7.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 24f84ce24eb6b5fcdcb38ad9761524f1ae96f7126abb5e597f8a3973d9921409
MD5 058fc2c59069df8f6f724390bd48bc75
BLAKE2b-256 8e7ff3fc9b32c107c6056594a36e430f0844a133e422083ad3b9f98f9fe3b8b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-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.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1962c9f838bd6ae4075d0014f72697510daefc7e1c7e48b2607df0b6e157989c
MD5 682478d35a0db3bf22f2e626e91119d2
BLAKE2b-256 32902b41466e928a2a1cac0e9d5062364aece2e7b8d01f33aed332df09b4ef33

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 168.1 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.interface-4.7.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 23cfeea25d1e42ff3bf4f9a0c31e9d5950aa9e7c4b12f0c4bd086f378f7b7a71
MD5 5931726e35bf2b6beea24a953d4aa0f7
BLAKE2b-256 115a73527f0b8e3ba13758365b280fc9a006226aaa2a9d81da7ea6dc311a890f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-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.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2e8fdd625e9aba31228e7ddbc36bad5c38dc3ee99a86aa420f89a290bd987ce9
MD5 83dbeb47562adc9061b3b0cbf84ae101
BLAKE2b-256 f3d72174dd9dbc936d5013e77a0c39b10b54a1cb42472ceee8c2fa689d1f1ce3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 140.4 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.interface-4.7.1-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 8a27b4d3ea9c6d086ce8e7cdb3e8d319b6752e2a03238a388ccc83ccbe165f50
MD5 64e292de25bc886d548d291ed7f4440a
BLAKE2b-256 330fcc259459fef4ee8e8a458326616de0e661e284c31f5ac9729815412c1ac9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-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.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 455cc8c01de3bac6f9c223967cea41f4449f58b4c2e724ec8177382ddd183ab4
MD5 2699ac559ba53302c0de249c4b25ef80
BLAKE2b-256 d3f0521019b86fadc15272fd1229fbad811c4af5ad8f63a2ec604e0b50e7b473

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 162.9 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.interface-4.7.1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f6ca36dc1e9eeb46d779869c60001b3065fb670b5775c51421c099ea2a77c3c9
MD5 53ff665d6afd49f5689023033e57635b
BLAKE2b-256 08ff81fc85113e3a55faafacdb36d73c186e4e93f1540391b3fbee3ce66b9f43

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-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.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6e0a897d4e09859cc80c6a16a29697406ead752292ace17f1805126a4f63c838
MD5 c38bca7190e0232fdb220bd6da470d64
BLAKE2b-256 714dcdbbbdebd56fa4e799169abdb388b0a762d1f1cac156192be48c318ccf17

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 162.9 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.interface-4.7.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b68814a322835d8ad671b7acc23a3b2acecba527bb14f4b53fc925f8a27e44d8
MD5 4d5fa77eca3bd33286dfe07f2d3616df
BLAKE2b-256 556e760a42ae6f22fcbe52ac7456a34a35406a056ea105d13b5aa5b0ae42d802

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 132.1 kB
  • Tags: CPython 2.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/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.5rc1

File hashes

Hashes for zope.interface-4.7.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 c56db7d10b25ce8918b6aec6b08ac401842b47e6c136773bfb3b590753f7fb67
MD5 b994c03b14aa313e4b3d29b975079883
BLAKE2b-256 5a66821547ba9286380efb85d2ffa693113b32b50a804137ced0e2879f23e63c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 131.4 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.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.interface-4.7.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 c94b77a13d4f47883e4f97f9fa00f5feadd38af3e6b3c7be45cfdb0a14c7149b
MD5 4468061e2cb25186693665600ea1ee7a
BLAKE2b-256 9e96db6c1b7eaadf2466839b4869353d8453701319b831e2698a1342f6ea5fee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-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.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 73b5921c5c6ce3358c836461b5470bf675601c96d5e5d8f2a446951470614f67
MD5 98dbcfb5ff3fc28cb385777f219fa392
BLAKE2b-256 880629768cba65665704be526e3bf334dedb4644d5769814d3719a742fb2eaea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 162.9 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.interface-4.7.1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 52303a20902ca0888dfb83230ca3ee6fbe63c0ad1dd60aa0bba7958ccff454d8
MD5 c550800006375cf1463165670217fbb9
BLAKE2b-256 58bd46b8339d33d3caee22c194bd46518228a62469ad853e06b44a34d34715e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-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.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zope.interface-4.7.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 18dc895945694f397a0be86be760ff664b790f95d8e7752d5bab80284ff9105d
MD5 084bf62130bf299639c73bbaa8dbe4cc
BLAKE2b-256 b9c84476e07dfeb3f2dbd28f638aa56dcbcf779074a1de92512cd1d355e885b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.1-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 162.9 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.interface-4.7.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 35dbe4e8c73003dff40dfaeb15902910a4360699375e7b47d3c909a83ff27cd0
MD5 c68861fcfdcc234f4256ade9dd2ac62d
BLAKE2b-256 a98bac70bd1d82005e68ecb0d9070bdca561971314d8aa53812a379399ace5b2

See more details on using hashes here.

File details

Details for the file zope.interface-4.7.1-cp27-cp27m-macosx_10_6_intel.whl.

File metadata

  • Download URL: zope.interface-4.7.1-cp27-cp27m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 140.3 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.interface-4.7.1-cp27-cp27m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 14157421f4121a57625002cc4f48ac7521ea238d697c4a4459a884b62132b977
MD5 c5a39f169abb30a8c14d35d2fb1e7f9f
BLAKE2b-256 62578268358788e59fc7265cde9c33b7d61d5c072b27c9e80b29cec7f36e5a2d

See more details on using hashes here.

Supported by

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