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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.8 Windows x86-64

zope.interface-4.7.0-cp38-cp38-win32.whl (132.8 kB view details)

Uploaded CPython 3.8 Windows x86

zope.interface-4.7.0-cp38-cp38-manylinux2010_x86_64.whl (174.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

zope.interface-4.7.0-cp38-cp38-manylinux1_x86_64.whl (174.3 kB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

zope.interface-4.7.0-cp37-cp37m-manylinux2010_x86_64.whl (169.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

zope.interface-4.7.0-cp37-cp37m-manylinux1_x86_64.whl (169.2 kB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

zope.interface-4.7.0-cp36-cp36m-manylinux2010_x86_64.whl (168.3 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

zope.interface-4.7.0-cp36-cp36m-manylinux1_x86_64.whl (168.3 kB view details)

Uploaded CPython 3.6m

zope.interface-4.7.0-cp36-cp36m-manylinux1_i686.whl (166.7 kB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

zope.interface-4.7.0-cp35-cp35m-win32.whl (132.5 kB view details)

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

zope.interface-4.7.0-cp35-cp35m-manylinux2010_i686.whl (166.5 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

zope.interface-4.7.0-cp35-cp35m-manylinux1_i686.whl (166.5 kB view details)

Uploaded CPython 3.5m

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

File details

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

File metadata

  • Download URL: zope.interface-4.7.0.tar.gz
  • Upload date:
  • Size: 151.3 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.0.tar.gz
Algorithm Hash digest
SHA256 12e99ded31149096c1dcb76a9e0833b1399570d0a4162e46722e847cad60109a
MD5 61ff78f7177e1e671685fdd6fca862e4
BLAKE2b-256 995adb136c50e3a1a14588c775867079b0659c7b2d8154c4477ab21953198fb2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.0-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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.8.0

File hashes

Hashes for zope.interface-4.7.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 31d0cccb655b489caa99ca5514c0258de741b36ab3a4d9349b02b7e2af7a498e
MD5 15827d2bb8527350b691d660f90359be
BLAKE2b-256 6cb895ca97e256af1d11c7433dd0ebcd5c6edb0ee4da6be4d1d13de1db8ef5e2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zope.interface-4.7.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5d53ad98728b62aedb551b767a7393036bf6aa47d1d160f402017aa6234001f5
MD5 91345d579c7100fb4d9537aa2d73e290
BLAKE2b-256 7adb67911e523dae5a2dd3b17c3eee78b1575690e0289f5df6a8f9a576c59c3e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 174.3 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.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 dd14a200fa5a95b3f2a28e90f99b58bad9044130e2470124caf4278d1811251b
MD5 4c537eca7645cbec93cd44ec39e2cb1c
BLAKE2b-256 734a8184b6d7c10832fa617bac783519ca5ec017a4d67174764dcc4797aa7f78

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.0-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.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7d80a927f9e73adcdb8dd197aafe5e952ae8cd857bc3a8435c357c9302885c80
MD5 795d303607c5c77d3e2473a465a621a3
BLAKE2b-256 0bc738b2543d55edf662543a3f25f871abed8b86f8226d9ed3016b9147262d44

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zope.interface-4.7.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 866d06769ca79ca821193461cb81de35c99882598507cef902fd67c21a40ea11
MD5 ce09c62947e2bc1fd53df6024dbeeeb5
BLAKE2b-256 4c3ad1f5fdfae4fcac06c4f96d33e9966d283914f902362bf0f550b8fe3e9bbc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.0-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.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 209f5adc703708ee4a4cfbbbea82fddbc43a451af9e6a8a659d9f52924ad245d
MD5 dc76431656a80f610e4e78003433e3f6
BLAKE2b-256 e3ff58be5bb48c16f50b6778cb772ffc9785ca0a2f05fca0d39a28a7f0505a74

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.0-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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.7.5

File hashes

Hashes for zope.interface-4.7.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3afb038a8ffc62bd70e0e90e2a9ecff4d133a7c3e02eaf9efd563b336e1d3de2
MD5 2e376431c3b66b012ce60b6f3bdb6047
BLAKE2b-256 f3426e7c936f6fc2ef3c2ccf00c5d7b06b7515466e855f546578a147b29b8d72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.0-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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.7.5

File hashes

Hashes for zope.interface-4.7.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 accf705e80f75d9025720eef8a33337c39fb792cc59aba957f76ff7db8836422
MD5 25dfca94ca21c261e6de8f6b4cd43e5e
BLAKE2b-256 9303936fadf384e75e54c1222d673264c91da8f2463f52ce181f8c5b29b09516

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 169.2 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.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bee5ad95aeaaf6d01757be8696bc71008d49b6768cb6ad15e9c771fe27889005
MD5 a9922ef4ee15d0cb6b407dc8ce72789e
BLAKE2b-256 5ccc3b4444003e0f76f67a5aac17c7671a7ac237fa016df0d6d9ee28ddbe7a72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.0-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.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a53c6a1a40aa79fd4f8135fc33967ea905d02c0b5f55e89c9ca6b162df2c79df
MD5 e47d11931ffeb38e19c8013f8aad87a4
BLAKE2b-256 35aeb907dd3c5c7b297bbed1828c73586c3632ab109ff23a7a0fa6881f8d0eaf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 169.2 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.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 038c7f561dfa868f8e19acb093ed7d653871c2153557f3f2c7763a92ed5601ac
MD5 4fb6876650d112255fbe576865e0c11c
BLAKE2b-256 5ff2732c79f5779f1c331b7ffdcc829e7a4d29c03259deaf73f959c68839d6d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.0-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.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a3fea30ba75ad1b51c3f0fc95b5db04dfe835e30daa7dfc652bc0f585d5584e6
MD5 2e53bb810f8a34d1de9b2e7eb7d851d0
BLAKE2b-256 55d75f4a5200a1afc205b914a7681bcee6da72f04bfd2812e3906116ab2449e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.0-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.6.2 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.8

File hashes

Hashes for zope.interface-4.7.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 d994237f320a8aba8fd6968876889e62a401e17fff5e04efdd26986b96bcf0a8
MD5 e0970af64d043862a884d13893262b64
BLAKE2b-256 8487e9813ec954cae65a92990194e360ecc4668389bd82212dcb3e3caf786afe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.0-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.6.2 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.8

File hashes

Hashes for zope.interface-4.7.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 f6248dd4ec3a111c970deee8278c691861d98328e8dd99ad1173a7e22823d0ed
MD5 d427a6d4947242f394139538fc241536
BLAKE2b-256 64b7fcc773938d17726a3e35e8cb27d46424793cdb0dfaac7d238fe0e2239f87

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 168.3 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.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c5fe323aa9fcfb7fdd4f66790cef494ad10d7a1ec7bb251fa36862b58fa64bc4
MD5 71ac750a25439b16d26224752c9b960d
BLAKE2b-256 409dca41b12ba34bad2cd7f5ef4e8b9d9717d07d595d18830f33e0c5ba7410d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.0-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.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2e0d290f6e12c487fb8dcda771068886c6e63ae2eacd50d8c7f05b71cee6747b
MD5 09fbda07bccd56a3d61b6f51f2b27378
BLAKE2b-256 2685d83f161f93cc86b14cb8c35f82332921afdd4b47195480723e9431c5b438

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 168.3 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.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 498c54e2d89d0e6e9097bfc9409105b89655015571d05aee139cb3164dec4ece
MD5 f635c7f01d12c86c128bde46a462b5d4
BLAKE2b-256 642b52052197ddec5192728e22e0de7c8d222ffad19530a693b1d19c798113c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 166.7 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.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 db8cf6e686b64457d6c911d5fceef97c2028a8e848f36d044f02cd4d15b9abe8
MD5 f086fd4f3b95542ff9bb292a5271f1b7
BLAKE2b-256 a4d6ccd0d9dc9fb41d0e373111c46c42cd2ebead569b527b088bc99352b13aa8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zope.interface-4.7.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 659bce5e1723b175758e4782274bdebd86fe83732f4c44f9fb1812e5054ace9a
MD5 e37d9f13024fcdb0ebac26b97bd9b3fd
BLAKE2b-256 2c04aa3f5558d1cae6741658ae46959f6faf338ac2cda865cf1d4789f585087a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zope.interface-4.7.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 d326ca5ad838e903bb0e1a3a9b3f47bc870210d4c53ae53ccb6dd15e6cf48b87
MD5 f6dbec2780a3abea0a16616a66d98b6e
BLAKE2b-256 dc8f55dc49c1e3159cf601c3c74ad0dc003f758108f150c9fba0a65a09469140

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.0-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.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f5b69427b7a407ebd90c4149ba232f9ae2af43eb8ed5fc4168d276a175b95cb2
MD5 6d0d003594ae3aa40586f4d8e079a220
BLAKE2b-256 110bfbf962fffae91f9c4dd1288a99fb7d2b1f3057d96990fcfb698b2358d92d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 166.5 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.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8624e40a0fb35a0730007876a987d972600ec5c841716d2bc716ec88e8a0b97e
MD5 b7a1e293b5932f2692452eed90991b5c
BLAKE2b-256 40c9f351d2532d124cbfb480a8e32b344b01d47d3ad5cd647efb469d2fcdafb2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.0-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.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 90f1ef467311b8c43978b4523100d96cfb24c8c4bd596c0e4e937851364ec0cf
MD5 f41473d64e78a62d42dd526d62b6c839
BLAKE2b-256 02419729ac71dbae3376ac5e7a75502596b275f2f19b36033a7463697056bc93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 166.5 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.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2c6b1d05dde7ba01ba92ce27f6aa5d9ad08f283eb49bef9cf74ebecda8c830f4
MD5 5be33343d4e4c7542e1517eab545486a
BLAKE2b-256 c3941c7d70ffd48c2fd4039d300a9cf17c565fa4b0cd434d7b52890a16d6ce79

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.0-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.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ed9517332ec1732360ceea43a3fe64ec38dc0bf46f412d9bc9d014c7406d0fb7
MD5 d9af86ab37f39af2b6eefe9dd2ee7ddb
BLAKE2b-256 74633c1b37d3d95b203c65c4dab4500fadbde1c77c406460ab253c40e6ae30ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.0-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.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0269df5d2ccf1916551cef74227adb60c2d1811f3c531e2d227c46958a9cb48e
MD5 57101c7cc4ebbdee5dbddbdd97c0ffdd
BLAKE2b-256 03b594c46b35656a602c9e604a51e653450b52403dcfba7e9658db2592825bed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.0-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.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7f850005a9c68ab4eab5d960c666253421826875cf27745b9768c49a0c8f63b8
MD5 bfd36843e06483418f5b2557fff56eaa
BLAKE2b-256 747c5f978bb905654b0a78a4ecb071569641b2742d54cc028b7e0000ebf261d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.0-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.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5475d65f36e6df3ee510cb04ca54e2927a631a217c31a7a43b8c237a30db1d77
MD5 3b0beffa2c8a071520ea988251d04576
BLAKE2b-256 51fdbf05ef0856c56bc09faf27699617b207f8688bca8d19fd2e78ce32342de5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.0-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/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.17

File hashes

Hashes for zope.interface-4.7.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 9c0b6ef221a80e1b4a132e24c9c606f5667891e20c297ad85306402dcc98d533
MD5 530f50a3bbb2fcb84e06381c4cfcbe82
BLAKE2b-256 67a0d6a7c1a0981dec0ee5aa44a0696da2d9e6c08a7aeca427d13ca2978077ab

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zope.interface-4.7.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 b4337f3d156745f0c6c4d51bbcc49a0d70396608575093fe05105aba9cfcbb65
MD5 c623acc3a54eb1a3957522cd9c65b360
BLAKE2b-256 bebbf087a7224e55963fd7f99cf99d6d9a0ef664e83bca449211d72f954b9270

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.0-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.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a48006ca377a939b5e505562eb82d66fd3462940e1cc1088b3f3ec5359f22726
MD5 9fe7c96b26192628bcc1a60b48de8c6d
BLAKE2b-256 c273798028ac7b8db2033962129ca9699b861ef918ff99123a95053fd8eb4df8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.0-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.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cf0b1fc25d2d3be9b0da5837d320ce934c017ca2e2b5013f691c58a2180d266f
MD5 dde8f0b3089b0163a506d8c2a2d19caf
BLAKE2b-256 de83360de17805f5724e37127575765f4637112e2ee1e18c945197b6834663c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.0-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.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 19e54706ed6be0671871b51016d4c0c02c9643e4a10ea32288f79de0cc44c4f0
MD5 a20979099f31716b4019bd6efd832a92
BLAKE2b-256 dd10aa9f16cd070ed53ed7309a735d876620808fe94ef44793a104da0962c3bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-4.7.0-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.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 583dff57a69ef6e763a08c37f489e64bc95dcdb6870f9cd7af616ae7e8484d12
MD5 02446943d394f5cc20828089b86cf225
BLAKE2b-256 525bdd6fd6d665f9366ce6181dbef56a8917b774ce1aaab267ffef8715fd9464

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