Skip to main content

zope.interface

Latest Version Supported Python versions https://travis-ci.com/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

5.2.0 (2020-11-05)

  • Add documentation section Persistency and Equality (#218).

  • Create arm64 wheels.

  • Add support for Python 3.9.

5.1.2 (2020-10-01)

  • Make sure to call each invariant only once when validating invariants. Previously, invariants could be called multiple times because when an invariant is defined in an interface, it’s found by in all interfaces inheriting from that interface. See pull request 215.

5.1.1 (2020-09-30)

  • Fix the method definitions of IAdapterRegistry.subscribe, subscriptions and subscribers. Previously, they all were defined to accept a name keyword argument, but subscribers have no names and the implementation of that interface did not accept that argument. See issue 208.

  • Fix a potential reference leak in the C optimizations. Previously, applications that dynamically created unique Specification objects (e.g., used @implementer on dynamic classes) could notice a growth of small objects over time leading to increased garbage collection times. See issue 216.

5.1.0 (2020-04-08)

  • Make @implementer(*iface) and classImplements(cls, *iface) ignore redundant interfaces. If the class already implements an interface through inheritance, it is no longer redeclared specifically for cls. This solves many instances of inconsistent resolution orders, while still allowing the interface to be declared for readability and maintenance purposes. See issue 199.

  • Remove all bare except: statements. Previously, when accessing special attributes such as __provides__, __providedBy__, __class__ and __conform__, this package wrapped such access in a bare except: statement, meaning that many errors could pass silently; typically this would result in a fallback path being taken and sometimes (like with providedBy()) the result would be non-sensical. This is especially true when those attributes are implemented with descriptors. Now, only AttributeError is caught. This makes errors more obvious.

    Obviously, this means that some exceptions will be propagated differently than before. In particular, RuntimeError raised by Acquisition in the case of circular containment will now be propagated. Previously, when adapting such a broken object, a TypeError would be the common result, but now it will be a more informative RuntimeError.

    In addition, ZODB errors like POSKeyError could now be propagated where previously they would ignored by this package.

    See issue 200.

  • Require that the second argument (bases) to InterfaceClass is a tuple. This only matters when directly using InterfaceClass to create new interfaces dynamically. Previously, an individual interface was allowed, but did not work correctly. Now it is consistent with type and requires a tuple.

  • Let interfaces define custom __adapt__ methods. This implements the other side of the PEP 246 adaptation protocol: objects being adapted could already implement __conform__ if they know about the interface, and now interfaces can implement __adapt__ if they know about particular objects. There is no performance penalty for interfaces that do not supply custom __adapt__ methods.

    This includes the ability to add new methods, or override existing interface methods using the new @interfacemethod decorator.

    See issue 3.

  • Make the internal singleton object returned by APIs like implementedBy and directlyProvidedBy for objects that implement or provide no interfaces more immutable. Previously an internal cache could be mutated. See issue 204.

5.0.2 (2020-03-30)

  • Ensure that objects that implement no interfaces (such as direct subclasses of object) still include Interface itself in their __iro___ and __sro___. This fixes adapter registry lookups for such objects when the adapter is registered for Interface. See issue 197.

5.0.1 (2020-03-21)

  • Ensure the resolution order for InterfaceClass is consistent. See issue 192.

  • Ensure the resolution order for collections.OrderedDict is consistent on CPython 2. (It was already consistent on Python 3 and PyPy).

  • Fix the handling of the ZOPE_INTERFACE_STRICT_IRO environment variable. Previously, ZOPE_INTERFACE_STRICT_RO was read, in contrast with the documentation. See issue 194.

5.0.0 (2020-03-19)

  • Make an internal singleton object returned by APIs like implementedBy and directlyProvidedBy immutable. Previously, it was fully mutable and allowed changing its __bases___. That could potentially lead to wrong results in pathological corner cases. See issue 158.

  • Support the PURE_PYTHON environment variable at runtime instead of just at wheel build time. A value of 0 forces the C extensions to be used (even on PyPy) failing if they aren’t present. Any other value forces the Python implementation to be used, ignoring the C extensions. See PR 151.

  • Cache the result of __hash__ method in InterfaceClass as a speed optimization. The method is called very often (i.e several hundred thousand times during Plone 5.2 startup). Because the hash value never changes it can be cached. This improves test performance from 0.614s down to 0.575s (1.07x faster). In a real world Plone case a reindex index came down from 402s to 320s (1.26x faster). See PR 156.

  • Change the C classes SpecificationBase and its subclass ClassProvidesBase to store implementation attributes in their structures instead of their instance dictionaries. This eliminates the use of an undocumented private C API function, and helps make some instances require less memory. See PR 154.

  • Reduce memory usage in other ways based on observations of usage patterns in Zope (3) and Plone code bases.

    • Specifications with no dependents are common (more than 50%) so avoid allocating a WeakKeyDictionary unless we need it.

    • Likewise, tagged values are relatively rare, so don’t allocate a dictionary to hold them until they are used.

    • Use __slots___ or the C equivalent tp_members in more common places. Note that this removes the ability to set arbitrary instance variables on certain objects. See PR 155.

    The changes in this release resulted in a 7% memory reduction after loading about 6,000 modules that define about 2,200 interfaces.

  • Remove support for hashing uninitialized interfaces. This could only be done by subclassing InterfaceClass. This has generated a warning since it was first added in 2011 (3.6.5). Please call the InterfaceClass constructor or otherwise set the appropriate fields in your subclass before attempting to hash or sort it. See issue 157.

  • Remove unneeded override of the __hash__ method from zope.interface.declarations.Implements. Watching a reindex index process in ZCatalog with on a Py-Spy after 10k samples the time for .adapter._lookup was reduced from 27.5s to 18.8s (~1.5x faster). Overall reindex index time shrunk from 369s to 293s (1.26x faster). See PR 161.

  • Make the Python implementation closer to the C implementation by ignoring all exceptions, not just AttributeError, during (parts of) interface adaptation. See issue 163.

  • Micro-optimization in .adapter._lookup , .adapter._lookupAll and .adapter._subscriptions: By loading components.get into a local variable before entering the loop a bytcode “LOAD_FAST 0 (components)” in the loop can be eliminated. In Plone, while running all tests, average speedup of the “owntime” of _lookup is ~5x. See PR 167.

  • Add __all__ declarations to all modules. This helps tools that do auto-completion and documentation and results in less cluttered results. Wildcard (“*”) are not recommended and may be affected. See issue 153.

  • Fix verifyClass and verifyObject for builtin types like dict that have methods taking an optional, unnamed argument with no default value like dict.pop. On PyPy3, the verification is strict, but on PyPy2 (as on all versions of CPython) those methods cannot be verified and are ignored. See issue 118.

  • Update the common interfaces IEnumerableMapping, IExtendedReadMapping, IExtendedWriteMapping, IReadSequence and IUniqueMemberWriteSequence to no longer require methods that were removed from Python 3 on Python 3, such as __setslice___. Now, dict, list and tuple properly verify as IFullMapping, ISequence and IReadSequence, respectively on all versions of Python.

  • Add human-readable __str___ and __repr___ to Attribute and Method. These contain the name of the defining interface and the attribute. For methods, it also includes the signature.

  • Change the error strings raised by verifyObject and verifyClass. They now include more human-readable information and exclude extraneous lines and spaces. See issue 170.

  • Make verifyObject and verifyClass report all errors, if the candidate object has multiple detectable violations. Previously they reported only the first error. See issue.

    Like the above, this will break consumers depending on the exact output of error messages if more than one error is present.

  • Add zope.interface.common.collections, zope.interface.common.numbers, and zope.interface.common.io. These modules define interfaces based on the ABCs defined in the standard library collections.abc, numbers and io modules, respectively. Importing these modules will make the standard library concrete classes that are registered with those ABCs declare the appropriate interface. See issue 138.

  • Add zope.interface.common.builtins. This module defines interfaces of common builtin types, such as ITextString and IByteString, IDict, etc. These interfaces extend the appropriate interfaces from collections and numbers, and the standard library classes implement them after importing this module. This is intended as a replacement for third-party packages like dolmen.builtins. See issue 138.

  • Make providedBy() and implementedBy() respect super objects. For instance, if class Derived implements IDerived and extends Base which in turn implements IBase, then providedBy(super(Derived, derived)) will return [IBase]. Previously it would have returned [IDerived] (in general, it would previously have returned whatever would have been returned without super).

    Along with this change, adapter registries will unpack super objects into their __self___ before passing it to the factory. Together, this means that component.getAdapter(super(Derived, self), ITarget) is now meaningful.

    See issue 11.

  • Fix a potential interpreter crash in the low-level adapter registry lookup functions. See issue 11.

  • Adopt Python’s standard C3 resolution order to compute the __iro__ and __sro__ of interfaces, with tweaks to support additional cases that are common in interfaces but disallowed for Python classes. Previously, an ad-hoc ordering that made no particular guarantees was used.

    This has many beneficial properties, including the fact that base interface and base classes tend to appear near the end of the resolution order instead of the beginning. The resolution order in general should be more predictable and consistent.

    The C3 order enforces some constraints in order to be able to guarantee a sensible ordering. Older versions of zope.interface did not impose similar constraints, so it was possible to create interfaces and declarations that are inconsistent with the C3 constraints. In that event, zope.interface will still produce a resolution order equal to the old order, but it won’t be guaranteed to be fully C3 compliant. In the future, strict enforcement of C3 order may be the default.

    A set of environment variables and module constants allows controlling several aspects of this new behaviour. It is possible to request warnings about inconsistent resolution orders encountered, and even to forbid them. Differences between the C3 resolution order and the previous order can be logged, and, in extreme cases, the previous order can still be used (this ability will be removed in the future). For details, see the documentation for zope.interface.ro.

  • Make inherited tagged values in interfaces respect the resolution order (__iro__), as method and attribute lookup does. Previously tagged values could give inconsistent results. See issue 190.

  • Add getDirectTaggedValue (and related methods) to interfaces to allow accessing tagged values irrespective of inheritance. See issue 190.

  • Ensure that Interface is always the last item in the __iro__ and __sro__. This is usually the case, but if classes that do not implement any interfaces are part of a class inheritance hierarchy, Interface could be assigned too high a priority. See issue 8.

  • Implement sorting, equality, and hashing in C for Interface objects. In micro benchmarks, this makes those operations 40% to 80% faster. This translates to a 20% speed up in querying adapters.

    Note that this changes certain implementation details. In particular, InterfaceClass now has a non-default metaclass, and it is enforced that __module__ in instances of InterfaceClass is read-only.

    See PR 183.

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.

  • Change queryTaggedValue, getTaggedValue, getTaggedValueTags in interfaces. They now include inherited values by following __bases__. 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-5.2.0.tar.gz (227.1 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-5.2.0-cp39-cp39-win_amd64.whl (196.2 kB view details)

Uploaded CPython 3.9Windows x86-64

zope.interface-5.2.0-cp39-cp39-win32.whl (194.2 kB view details)

Uploaded CPython 3.9Windows x86

zope.interface-5.2.0-cp39-cp39-manylinux2014_aarch64.whl (241.9 kB view details)

Uploaded CPython 3.9

zope.interface-5.2.0-cp39-cp39-manylinux2010_x86_64.whl (241.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

zope.interface-5.2.0-cp39-cp39-manylinux2010_i686.whl (236.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

zope.interface-5.2.0-cp39-cp39-manylinux1_x86_64.whl (241.2 kB view details)

Uploaded CPython 3.9

zope.interface-5.2.0-cp39-cp39-manylinux1_i686.whl (236.0 kB view details)

Uploaded CPython 3.9

zope.interface-5.2.0-cp39-cp39-macosx_10_9_x86_64.whl (194.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

zope.interface-5.2.0-cp38-cp38-win_amd64.whl (196.4 kB view details)

Uploaded CPython 3.8Windows x86-64

zope.interface-5.2.0-cp38-cp38-win32.whl (194.4 kB view details)

Uploaded CPython 3.8Windows x86

zope.interface-5.2.0-cp38-cp38-manylinux2014_aarch64.whl (245.6 kB view details)

Uploaded CPython 3.8

zope.interface-5.2.0-cp38-cp38-manylinux2010_x86_64.whl (244.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

zope.interface-5.2.0-cp38-cp38-manylinux2010_i686.whl (239.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

zope.interface-5.2.0-cp38-cp38-manylinux1_x86_64.whl (244.6 kB view details)

Uploaded CPython 3.8

zope.interface-5.2.0-cp38-cp38-manylinux1_i686.whl (239.4 kB view details)

Uploaded CPython 3.8

zope.interface-5.2.0-cp38-cp38-macosx_10_9_x86_64.whl (194.0 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

zope.interface-5.2.0-cp37-cp37m-win_amd64.whl (196.0 kB view details)

Uploaded CPython 3.7mWindows x86-64

zope.interface-5.2.0-cp37-cp37m-win32.whl (194.1 kB view details)

Uploaded CPython 3.7mWindows x86

zope.interface-5.2.0-cp37-cp37m-manylinux2014_aarch64.whl (237.9 kB view details)

Uploaded CPython 3.7m

zope.interface-5.2.0-cp37-cp37m-manylinux2010_x86_64.whl (237.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

zope.interface-5.2.0-cp37-cp37m-manylinux2010_i686.whl (232.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

zope.interface-5.2.0-cp37-cp37m-manylinux1_x86_64.whl (237.4 kB view details)

Uploaded CPython 3.7m

zope.interface-5.2.0-cp37-cp37m-manylinux1_i686.whl (232.1 kB view details)

Uploaded CPython 3.7m

zope.interface-5.2.0-cp37-cp37m-macosx_10_9_x86_64.whl (193.7 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

zope.interface-5.2.0-cp36-cp36m-win_amd64.whl (196.0 kB view details)

Uploaded CPython 3.6mWindows x86-64

zope.interface-5.2.0-cp36-cp36m-win32.whl (194.1 kB view details)

Uploaded CPython 3.6mWindows x86

zope.interface-5.2.0-cp36-cp36m-manylinux2014_aarch64.whl (236.9 kB view details)

Uploaded CPython 3.6m

zope.interface-5.2.0-cp36-cp36m-manylinux2010_x86_64.whl (236.5 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

zope.interface-5.2.0-cp36-cp36m-manylinux2010_i686.whl (231.2 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

zope.interface-5.2.0-cp36-cp36m-manylinux1_x86_64.whl (236.5 kB view details)

Uploaded CPython 3.6m

zope.interface-5.2.0-cp36-cp36m-manylinux1_i686.whl (231.2 kB view details)

Uploaded CPython 3.6m

zope.interface-5.2.0-cp36-cp36m-macosx_10_6_intel.whl (204.8 kB view details)

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

zope.interface-5.2.0-cp35-cp35m-win_amd64.whl (196.0 kB view details)

Uploaded CPython 3.5mWindows x86-64

zope.interface-5.2.0-cp35-cp35m-win32.whl (194.1 kB view details)

Uploaded CPython 3.5mWindows x86

zope.interface-5.2.0-cp35-cp35m-manylinux2014_aarch64.whl (236.6 kB view details)

Uploaded CPython 3.5m

zope.interface-5.2.0-cp35-cp35m-manylinux2010_x86_64.whl (236.2 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

zope.interface-5.2.0-cp35-cp35m-manylinux2010_i686.whl (230.9 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

zope.interface-5.2.0-cp35-cp35m-manylinux1_x86_64.whl (236.2 kB view details)

Uploaded CPython 3.5m

zope.interface-5.2.0-cp35-cp35m-manylinux1_i686.whl (230.9 kB view details)

Uploaded CPython 3.5m

zope.interface-5.2.0-cp35-cp35m-macosx_10_6_intel.whl (204.8 kB view details)

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

zope.interface-5.2.0-cp27-cp27mu-manylinux2010_x86_64.whl (232.5 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

zope.interface-5.2.0-cp27-cp27mu-manylinux2010_i686.whl (227.0 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

zope.interface-5.2.0-cp27-cp27mu-manylinux1_x86_64.whl (232.5 kB view details)

Uploaded CPython 2.7mu

zope.interface-5.2.0-cp27-cp27mu-manylinux1_i686.whl (227.0 kB view details)

Uploaded CPython 2.7mu

zope.interface-5.2.0-cp27-cp27m-win_amd64.whl (194.0 kB view details)

Uploaded CPython 2.7mWindows x86-64

zope.interface-5.2.0-cp27-cp27m-win32.whl (193.0 kB view details)

Uploaded CPython 2.7mWindows x86

zope.interface-5.2.0-cp27-cp27m-manylinux2010_x86_64.whl (232.5 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

zope.interface-5.2.0-cp27-cp27m-manylinux2010_i686.whl (227.0 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

zope.interface-5.2.0-cp27-cp27m-manylinux1_x86_64.whl (232.5 kB view details)

Uploaded CPython 2.7m

zope.interface-5.2.0-cp27-cp27m-manylinux1_i686.whl (227.0 kB view details)

Uploaded CPython 2.7m

zope.interface-5.2.0-cp27-cp27m-macosx_10_9_x86_64.whl (193.6 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: zope.interface-5.2.0.tar.gz
  • Upload date:
  • Size: 227.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/None requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.9

File hashes

Hashes for zope.interface-5.2.0.tar.gz
Algorithm Hash digest
SHA256 8251f06a77985a2729a8bdbefbae79ee78567dddc3acbd499b87e705ca59fe24
MD5 c02d793ecc8916935755375c5602c32d
BLAKE2b-256 842180cdc749908ebf2719a9063eddcc02b668fbc62d200c1f1a4d92aaaba76b

See more details on using hashes here.

File details

Details for the file zope.interface-5.2.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: zope.interface-5.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 196.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for zope.interface-5.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a2b6d6eb693bc2fc6c484f2e5d93bd0b0da803fa77bf974f160533e555e4d095
MD5 e53c010d307536b8d18f91325c8ff0c7
BLAKE2b-256 63c4579b9bf1079133c8dd131c776aef1ee293ba26f9c1c4c9f05c6fb2735851

See more details on using hashes here.

File details

Details for the file zope.interface-5.2.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: zope.interface-5.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 194.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for zope.interface-5.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 27c267dc38a0f0079e96a2945ee65786d38ef111e413c702fbaaacbab6361d00
MD5 76c58531635dd4505076823ce4e0bda0
BLAKE2b-256 e6e0a3f3ebd50a002bb42d14afead3f0f020a677c5bb2276561dc0ca9be8aa0c

See more details on using hashes here.

File details

Details for the file zope.interface-5.2.0-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: zope.interface-5.2.0-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 241.9 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zope.interface-5.2.0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 05a97ba92c1c7c26f25c9f671aa1ef85ffead6cdad13770e5b689cf983adc7e1
MD5 a699a7597939358de4ee493fb2a09876
BLAKE2b-256 22a77f12461eb57e7b6d4c65ee5b170afe3905078bd66fb79a2d95233bbde6e1

See more details on using hashes here.

File details

Details for the file zope.interface-5.2.0-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: zope.interface-5.2.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 241.2 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for zope.interface-5.2.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f057897711a630a0b7a6a03f1acf379b6ba25d37dc5dc217a97191984ba7f2fc
MD5 69b908463cf1c58093b18271ad611410
BLAKE2b-256 cc26236e9d371cded87e1b02c978a5bbfe0743a20f7d21f19aeb907828c743ae

See more details on using hashes here.

File details

Details for the file zope.interface-5.2.0-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: zope.interface-5.2.0-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 236.0 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for zope.interface-5.2.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f44906f70205d456d503105023041f1e63aece7623b31c390a0103db4de17537
MD5 b26806c0181640e12a832985b83e365a
BLAKE2b-256 b72d7153da313cf22b5a5c0dbd98ef01f15e89c1cffe6430ccf50223175d59f5

See more details on using hashes here.

File details

Details for the file zope.interface-5.2.0-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: zope.interface-5.2.0-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 241.2 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for zope.interface-5.2.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 adf9ee115ae8ff8b6da4b854b4152f253b390ba64407a22d75456fe07dcbda65
MD5 aa03abf1260a398cca364334c5538525
BLAKE2b-256 b60234e0646cc0fa99f14d8720bdc44f0ec6d48f4c800a3017757c59260a5d79

See more details on using hashes here.

File details

Details for the file zope.interface-5.2.0-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: zope.interface-5.2.0-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 236.0 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for zope.interface-5.2.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6936aa9da390402d646a32a6a38d5409c2d2afb2950f045a7d02ab25a4e7d08d
MD5 d2a929b575addc66edbe2986e2a01ad3
BLAKE2b-256 c163088c01215309bd7c04a330bdf2095ae58ee79aaca44729ebee2951466e16

See more details on using hashes here.

File details

Details for the file zope.interface-5.2.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: zope.interface-5.2.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 194.0 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.10

File hashes

Hashes for zope.interface-5.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4b94df9f2fdde7b9314321bab8448e6ad5a23b80542dcab53e329527d4099dcb
MD5 7afb56639bbf11a8167a0a3dcb008060
BLAKE2b-256 0e08e847622008f81379c62b3c93fc4b9cb6e99a0f998951046d64bdf7f1dfa4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 196.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for zope.interface-5.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0a990dcc97806e5980bbb54b2e46b9cde9e48932d8e6984daf71ef1745516123
MD5 a6483ca5c304a1a06a8b49c6d72c3bad
BLAKE2b-256 779d0919a05c0c3cb988ebdf085cd9d565326e741b1562df10d4eadd405b3aac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 194.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for zope.interface-5.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9789bd945e9f5bd026ed3f5b453d640befb8b1fc33a779c1fe8d3eb21fe3fb4a
MD5 aa5c1fd8ab29f2f9060734e385a567b8
BLAKE2b-256 1b59f4edfd282eeafa342c5d37be24b92f8a2a13f2e79d4194bc169cd3f1aa80

See more details on using hashes here.

File details

Details for the file zope.interface-5.2.0-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: zope.interface-5.2.0-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 245.6 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zope.interface-5.2.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f37d45fab14ffef9d33a0dc3bc59ce0c5313e2253323312d47739192da94f5fd
MD5 6569b2bc7af240544f3a112a85d92230
BLAKE2b-256 78d1764ddafc0336a1217fe6653df60ba9a5c55142ddc16bf3241dd2dca7addf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 244.6 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for zope.interface-5.2.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2ced4c35061eea623bc84c7711eedce8ecc3c2c51cd9c6afa6290df3bae9e104
MD5 a12e8441a75590ddc2bfe783f6a2e7d8
BLAKE2b-256 b7ed44c57577170ee8edd6cc68de7dda6e99d051e1bb969aade99afba07e8b30

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 239.4 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for zope.interface-5.2.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 681dbb33e2b40262b33fd383bae63c36d33fd79fa1a8e4092945430744ffd34a
MD5 ddd038bd4f6725c106843cd194850ea1
BLAKE2b-256 5c2e907f00675a053135b2a392e11678f7b0fdbf7dabbdf98447a1bff8918183

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 244.6 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for zope.interface-5.2.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 150e8bcb7253a34a4535aeea3de36c0bb3b1a6a47a183a95d65a194b3e07f232
MD5 e733e0f1481a31a333e898fd6eb67dc7
BLAKE2b-256 16340c02ce62b5ec819af5bc2d61a7c05df1ec7f91cead330a421f05dcd5216c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 239.4 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for zope.interface-5.2.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2dcab01c660983ba5e5a612e0c935141ccbee67d2e2e14b833e01c2354bd8034
MD5 4e226d009c6809f0b569f107f09e3013
BLAKE2b-256 26dc7c623134713fc59f7c086705b7e2ef135f1ac06e49f806c5af15806b608d

See more details on using hashes here.

File details

Details for the file zope.interface-5.2.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: zope.interface-5.2.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 194.0 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.10

File hashes

Hashes for zope.interface-5.2.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4c48ddb63e2b20fba4c6a2bf81b4d49e99b6d4587fb67a6cd33a2c1f003af3e3
MD5 8094eefeeda851006b7f064ad377046c
BLAKE2b-256 9298ec429075ca578c2941e2871d9d79f894ef2ee7646f7ab9c690147e20964a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 196.0 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.5

File hashes

Hashes for zope.interface-5.2.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 21f579134a47083ffb5ddd1307f0405c91aa8b61ad4be6fd5af0171474fe0c45
MD5 8822fa40837a28f427721c78887a44ec
BLAKE2b-256 e6a115072b271df268d142cd4377f750836e3e76dfcf9de16107132c84b2f370

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 194.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.5

File hashes

Hashes for zope.interface-5.2.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 abb61afd84f23099ac6099d804cdba9bd3b902aaaded3ffff47e490b0a495520
MD5 77ff6b9b31e338d64895a53287cead83
BLAKE2b-256 90a8ffcf229570b7c93a700a8e6f6bb39975278f86bdc2db960280cba1fc23fb

See more details on using hashes here.

File details

Details for the file zope.interface-5.2.0-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: zope.interface-5.2.0-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 237.9 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zope.interface-5.2.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 32b40a4c46d199827d79c86bb8cb88b1bbb764f127876f2cb6f3a47f63dbada3
MD5 fe41c16efd3cb150e7f5bf32ccddb2df
BLAKE2b-256 8ce13c92359cfc92ae57d3c8029952ee131807fbf9abcd19d792687e9f57659d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 237.4 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for zope.interface-5.2.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 55465121e72e208a7b69b53de791402affe6165083b2ea71b892728bd19ba9ae
MD5 e29140cab17111ffbd45b00df202d9f7
BLAKE2b-256 f842d8f11eaef844bee267821281fffe445e49cf31b486d72a81821a9d45cd0a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 232.1 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for zope.interface-5.2.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 aab9f1e34d810feb00bf841993552b8fcc6ae71d473c505381627143d0018a6a
MD5 732a8abfc4b166ee5d5cd69208985195
BLAKE2b-256 4fc79712cab2313d99c54f455977a229401f330749db254626a5daa79bc8e32e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 237.4 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for zope.interface-5.2.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 efd550b3da28195746bb43bd1d815058181a7ca6d9d6aa89dd37f5eefe2cacb7
MD5 c842a87f9831f144362765589aec21c8
BLAKE2b-256 2d6b8c3873b8671d0bbba6adffc2294f37f1ed98171c706321bf96ff03dca346

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 232.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for zope.interface-5.2.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1b5f6c8fff4ed32aa2dd43e84061bc8346f32d3ba6ad6e58f088fe109608f102
MD5 6519150a498498bb0b9a06c649c3b4f2
BLAKE2b-256 7dcf89d14f51141515e95c59cb948e8aaaa673d3e3dc21eddbb8cfa91793fdbf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 193.7 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.10

File hashes

Hashes for zope.interface-5.2.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ba32f4a91c1cb7314c429b03afbf87b1fff4fb1c8db32260e7310104bd77f0c7
MD5 c117d3ac6028dcff432b725014a747ab
BLAKE2b-256 26bcc0bfe6e2a82edfc0953577850d0dafa948b24380e50dd8d3c78a5b1dc577

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 196.0 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.8

File hashes

Hashes for zope.interface-5.2.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3cc94c69f6bd48ed86e8e24f358cb75095c8129827df1298518ab860115269a4
MD5 31a6669c1d807ed63fb5cb9f96dee6ec
BLAKE2b-256 0096b2030965485cd7b89f9f919c78dcb458d477f9986bed9c2b5a603c7dcedf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 194.1 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.8

File hashes

Hashes for zope.interface-5.2.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 e4bc372b953bf6cec65a8d48482ba574f6e051621d157cf224227dbb55486b1e
MD5 5d226eb3eb0682c61174cb6929784e45
BLAKE2b-256 8a8733a29fffabeb858866f15e6dca8f68e6e6da1a2daf0fae4f95707441e0fa

See more details on using hashes here.

File details

Details for the file zope.interface-5.2.0-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: zope.interface-5.2.0-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 236.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zope.interface-5.2.0-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 efef581c8ba4d990770875e1a2218e856849d32ada2680e53aebc5d154a17e20
MD5 d7e6237753c64ac751b7e42c1311caae
BLAKE2b-256 381de175f7f60d29ca6b38290036e781fc1a959d608472ea660fe36b12947e00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 236.5 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for zope.interface-5.2.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8ceb3667dd13b8133f2e4d637b5b00f240f066448e2aa89a41f4c2d78a26ce50
MD5 a3c30583eabb24306c1536f16e0a7dd8
BLAKE2b-256 82b0da8afd9b3bd50c7665ecdac062f182982af1173c9081f9af7261091c5588

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 231.2 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for zope.interface-5.2.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b7a00ecb1434f8183395fac5366a21ee73d14900082ca37cf74993cf46baa56c
MD5 f442f14fbc5c1f52332582cc99e56618
BLAKE2b-256 fcc38d2e308b357b25bb78a951c60c5a7f01def17578802d499ec1372ea3e5df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 236.5 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for zope.interface-5.2.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4af87cdc0d4b14e600e6d3d09793dce3b7171348a094ba818e2a68ae7ee67546
MD5 5cf32c8784f8c018ec8db51e3bd6aa31
BLAKE2b-256 b87f68077712fe83112d25b1ccf2e34f59e23a3cd7a54ea631090a6df77862de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 231.2 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for zope.interface-5.2.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 aedc6c672b351afe6dfe17ff83ee5e7eb6ed44718f879a9328a68bdb20b57e11
MD5 9332a29cb83ce09c955e5a0b46b78287
BLAKE2b-256 5d391b8ed7df1d3482fce80faeb3a2385906f431ccf8b6e78ee045ffb2f4bcae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 204.8 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.6.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.10

File hashes

Hashes for zope.interface-5.2.0-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 1743bcfe45af8846b775086471c28258f4c6e9ee8ef37484de4495f15a98b549
MD5 4446452c19fe5706337e4448c2eb9bda
BLAKE2b-256 e2b01f2a39e12f5cb2d68e21dd5c2160cd472210d8c281e9a0bdc818229c67d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 196.0 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.5.4

File hashes

Hashes for zope.interface-5.2.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 4df9afd17bd5477e9f8c8b6bb8507e18dd0f8b4efe73bb99729ff203279e9e3b
MD5 a1154fee407f4cc91e50de8f877e08e3
BLAKE2b-256 6d789e17b0a16669d29689d8a8327295cb13c166604f51097d045972d1edb2b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 194.1 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.5.4

File hashes

Hashes for zope.interface-5.2.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 83b4aa5344cce005a9cff5d0321b2e318e871cc1dfc793b66c32dd4f59e9770d
MD5 e5fbc68730b748ac559c22539c431be2
BLAKE2b-256 76cefb0c5c78baad1b303eaeea2332b45d91efa5ebbaacdbe6ace2ecd9e1cacf

See more details on using hashes here.

File details

Details for the file zope.interface-5.2.0-cp35-cp35m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: zope.interface-5.2.0-cp35-cp35m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 236.6 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zope.interface-5.2.0-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42b278ac0989d6f5cf58d7e0828ea6b5951464e3cf2ff229dd09a96cb6ba0c86
MD5 ecd18f149e3275c7701a2c6e464a68b3
BLAKE2b-256 cb03114f6b621a93cd2adf561929a7ab19581b2480d6f9cb03e5395635bb2ae5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 236.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.6.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for zope.interface-5.2.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 eccac3d9aadc68e994b6d228cb0c8919fc47a5350d85a1b4d3d81d1e98baf40c
MD5 45b180a9199fc8f1d8697740e29654f0
BLAKE2b-256 5ee1809fcae70cf1c2c665b20948010de97a3280fef942189f52d0cac80a5d9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 230.9 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for zope.interface-5.2.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 21e49123f375703cf824214939d39df0af62c47d122d955b2a8d9153ea08cfd5
MD5 221f11954d5c01a47b918cc86084b5ce
BLAKE2b-256 5024ea3abafdd742a5d5be514865903523f9f4f0897a62dbb9b736f32dc396a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 236.2 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for zope.interface-5.2.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cbd0f2cbd8689861209cd89141371d3a22a11613304d1f0736492590aa0ab332
MD5 2fa385505866a1e9f018d3361bff4ce4
BLAKE2b-256 3c01c2f27ab45989023eb3ec41f8472c17d93def166e9a0da430ae5a5f3f718e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 230.9 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for zope.interface-5.2.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2ab88d8f228f803fcb8cb7d222c579d13dab2d3622c51e8cf321280da01102a7
MD5 01e02a348c1652517e9e8017862cacfc
BLAKE2b-256 7d986ab899a83a1cb07b09815e3744c33985105050b190b5718ef868dcee0db8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 204.8 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.6.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.10

File hashes

Hashes for zope.interface-5.2.0-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 32546af61a9a9b141ca38d971aa6eb9800450fa6620ce6323cc30eec447861f3
MD5 a930a4654d05700a7b36f38ea840c2e3
BLAKE2b-256 fdad6973c5dab8dee9e98fa7d286309c7b094768fb3dd6ec45f3d30f808512b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 232.5 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for zope.interface-5.2.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 299bde0ab9e5c4a92f01a152b7fbabb460f31343f1416f9b7b983167ab1e33bc
MD5 6a5b5081eecc5836bf950e895af86a89
BLAKE2b-256 2e98cf8017b2c1b384c12a8c13a348279e731c115817a0cc29baae4070ec7177

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 227.0 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for zope.interface-5.2.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 495b63fd0302f282ee6c1e6ea0f1c12cb3d1a49c8292d27287f01845ff252a96
MD5 30dd1444454e49dd7434e2e6dad18a78
BLAKE2b-256 38ac1ae985c79a8cd2d7cd511600457db97da0af85d51835409160efd0d0225e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 232.5 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for zope.interface-5.2.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 07d61722dd7d85547b7c6b0f5486b4338001fab349f2ac5cabc0b7182eb3425d
MD5 0317a2e98dcba7f2c6d0d4e67dbd9b40
BLAKE2b-256 64738de66bdab6c4494232339eba8f8864521180c9a76c7c6059b4202adb1e03

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 227.0 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for zope.interface-5.2.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 588384d70a0f19b47409cfdb10e0c27c20e4293b74fc891df3d8eb47782b8b3e
MD5 a2ef5c765f775e9870542cfb4c99fde8
BLAKE2b-256 fb8758b51b9c51a258afc915af7c037130de9ed34c90995e872962ea151fb97f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 194.0 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zope.interface-5.2.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 844fad925ac5c2ad4faaceb3b2520ad016b5280105c6e16e79838cf951903a7b
MD5 66a028c9f77478de986a86da5b108570
BLAKE2b-256 9bc09bdab8340b9e40477c894930ae450fcfdf5b3ee89f36f0163e8793682015

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 193.0 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zope.interface-5.2.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 92dc0fb79675882d0b6138be4bf0cec7ea7c7eede60aaca78303d8e8dbdaa523
MD5 75eb20c612894832976330dc0575b0b2
BLAKE2b-256 90c8eee1257ace65c8e922dd00843d42b8ecd476c899e7f19803cb69b50ff05e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 232.5 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for zope.interface-5.2.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 64ea6c221aeee4796860405e1aedec63424cda4202a7ad27a5066876db5b0fd2
MD5 117817192d23da88987d5f45633ac497
BLAKE2b-256 c7a95f878ec4dfd5108ff6e080cfab31348ef50a9aed9de887f1aa4404ed48a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 227.0 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for zope.interface-5.2.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 778d0ec38bbd288b150a3ae363c8ffd88d2207a756842495e9bffd8a8afbc89a
MD5 f79f5e4f5239f11a6ea8d7c569f48eb1
BLAKE2b-256 dfe540691681858039e9d88c36fe2bc29c9efdbbdb511a2b0098e22f3b8f8d19

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 232.5 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for zope.interface-5.2.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 538298e4e113ccb8b41658d5a4b605bebe75e46a30ceca22a5a289cf02c80bec
MD5 022bdedc3a597b2c64775fee7ec2790d
BLAKE2b-256 24b9787a6d2bfd1819ae14b9b9a3f40f11ce04e85a226f6769e6bc30d48dc9c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 227.0 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for zope.interface-5.2.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6278c080d4afffc9016e14325f8734456831124e8c12caa754fd544435c08386
MD5 31062ff412c5dd6f78bd6d952c54c89f
BLAKE2b-256 6ca32bee1306f9a3623df5d2a455af1cc348b9a98a2371fa35783b3a66e3a3d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zope.interface-5.2.0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 193.6 kB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.10

File hashes

Hashes for zope.interface-5.2.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 518950fe6a5d56f94ba125107895f938a4f34f704c658986eae8255edb41163b
MD5 07672afa6af927f3c7c2b5ce600c7e68
BLAKE2b-256 5a2bc1006c609e68c94d152a6f880fbee861c8a9597f1d9737e70ffee0394253

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

5.2.0

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