Skip to main content

Generic Transparent Proxies

Project description

zope.proxy

Latest Version https://travis-ci.com/zopefoundation/zope.proxy.svg?branch=master Documentation Status

Proxies are special objects which serve as mostly-transparent wrappers around another object, intervening in the apparent behavior of the wrapped object only when necessary to apply the policy (e.g., access checking, location brokering, etc.) for which the proxy is responsible.

zope.proxy is implemented via a C extension module, which lets it do things like lie about its own __class__ that are difficult in pure Python (and were completely impossible before metaclasses). It also proxies all the internal slots (such as __int__/__str__/__add__).

Complete documentation is at https://zopeproxy.readthedocs.io

Changes

4.4.0 (2021-07-22)

  • Add support for Python 3.9.

  • Create aarch64 wheels.

4.3.5 (2020-03-16)

  • Stop installing C header files on PyPy (which is what zope.proxy before 4.3.4 used to do), fixes issue 39.

4.3.4 (2020-03-13)

  • Fix a compilation warning on Python 3.8. The slot tp_print changed to tp_vectorcall_offset in 3.8 and must not be set. Prior to 3.8, it was reserved and ignored in all Python 3 versions. See issue 36.

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

4.3.3 (2019-11-11)

  • Add support for Python 3.8.

  • Drop support for Python 3.4.

4.3.2 (2019-07-12)

  • Fix error handling in ProxyBase.__setattr__: any the exception raised by PyString_AsString/PyUnicode_AsUTF8 would be silently swallowed up and ignored. See issue 31.

4.3.1 (2018-08-09)

  • Simplify the internal C handling of attribute names in __getattribute__ and __setattr__.

  • Make building the C extension optional. We still attempt to build it on supported platforms, but we allow it to fail in case of a missing compiler or headers. See issue 26.

  • Test the PURE_PYTHON environment and PyPy3 on Travis CI.

  • Add support for Python 3.7.

4.3.0 (2017-09-13)

  • Fix a potential rare crash when deallocating proxies. See issue 20.

  • Drop support for Python 3.3.

  • Drop support for “python setup.py test”.

  • 100% test coverage.

  • Fix indexing pure-Python proxies with slices under Python 3, and restore the use of __getslice__ (if implemented by the target’s type) under Python 2. Previously, pure-Python proxies would fail with an AttributeError when given a slice on Python 3, and on Python 2, a custom __getslice__ was ignored. See issue 21.

4.2.1 (2017-04-23)

  • Make the pure-Python implementation of sameProxiedObjects handle zope.security proxies. See issue 15.

  • Add support for Python 3.6.

4.2.0 (2016-05-05)

  • Correctly strip zope.security proxies in removeAllProxies. See issue 13.

  • Avoid poisoning the user’s global wheel cache when testing PURE_PYTHON environments under tox,

  • Drop support for Python 2.6 and 3.2.

  • Add support for Python 3.5.

4.1.6 (2015-06-02)

  • Make subclasses of ProxyBase properly delegate __module__ to the wrapped object. This fixes some zope.interface lookups under PyPy.

  • Make the pure-Python implementation of ProxyBase properly report the zope.interface interfaces implemented by builtin types like list. This fixes some zope.interface lookups under PyPy.

4.1.5 (2015-05-19)

  • Make the C implementation proxy __unicode__ correctly.

  • Make the C implementation use the standard methods to proxy int and float.

  • Make the pure Python implementation handle descriptors defined in subclasses like the C version. See https://github.com/zopefoundation/zope.proxy/issues/5.

4.1.4 (2014-03-19)

  • Add support for Python 3.4.

  • Update bootstrap.py to version 2.2.

4.1.3 (2013-03-12)

  • Fix interface object introspection in PyPy. For some reason PyPy makes attributes available despite the restrictive __slots__ declaration.

  • Add a bunch of tests surrounding interface lookup and adaptation.

4.1.2 (2013-03-11)

  • Make PyProxyBase.__iter__() return the result of PyProxyBase._wrapped.__iter__ if available, otherwise falling back to Python internals. The previous implementation always created a generator.

  • In PyProxyBase.__setattr__(), allow setting of properties on the proxy itself. This is needed to properly allow proxy extensions as was evidenced int he zope.security.decorator module.

4.1.1 (2012-12-31)

  • Fleshed out PyPI Trove classifiers.

4.1.0 (2012-12-19)

  • Enable compilation of dependent modules under Py3k.

  • Replace use of PyCObject APIs with equivalent PyCapsule APIs, except under Python 2.6.

    N.B. This change is an ABI incompatibility under Python 2.7:

    extensions built under Python 2.7 against 4.0.x versions of zope.proxy must be rebuilt.

4.0.1 (2012-11-21)

  • Add support for Python 3.3.

4.0.0 (2012-06-06)

  • Add support for PyPy.

    N.B.: the C extension is not built under PyPy.

  • Add a pure-Python reference / fallback implementations of zope.proxy.ProxyBase and the proxy module API functions.

    N.B.: the pure-Python proxy implements all regular features of ProxyBase; however, it does not exclude access to the wrapped object in the same way that the C version does. If you need that information hiding (e.g., to implement security sandboxing), you still need to use the C version.

  • Add support for continuous integration using tox and jenkins.

  • 100% unit test coverage.

  • Add Sphinx documentation: moved doctest examples to API reference.

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

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

  • Replace deprecated zope.interface.implements usage with equivalent zope.interface.implementer decorator.

  • Drop support for Python 2.4 and 2.5.

  • Add Python 3.2 support.

3.6.1 (2010-07-06)

  • Make tests compatible with Python 2.7.

3.6.0 (2010-04-30)

  • Remove test extra and the remaining dependency on zope.testing.

  • Remove use of ‘zope.testing.doctestunit’ in favor of stdlib’s ‘doctest.

3.5.0 (2009/01/31)

  • Add support to bootstrap on Jython.

  • Use zope.container instead of zope.app.container.

3.4.2 (2008/07/27)

  • Make C code compatible with Python 2.5 on 64bit architectures.

3.4.1 (2008/06/24)

  • Bug: Update setup.py script to conform to common layout. Also updated some of the fields.

  • Bug: Honor pre-cooked indices for tuples and lists in the __getslice__() and __setslice__() methods. See http://docs.python.org/ref/sequence-methods.html.

3.4.0 (2007/07/12)

  • Feature: Add a decorator module that supports declaring interfaces on proxies that get blended with the interfaces of the things they proxy.

3.3.0 (2006/12/20)

  • Corresponds to the verison of the zope.proxy package shipped as part of the Zope 3.3.0 release.

3.2.0 (2006/01/05)

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

3.0.0 (2004/11/07)

  • Corresponds to the verison of the zope.proxy 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.proxy-4.4.0.tar.gz (43.7 kB view details)

Uploaded Source

Built Distributions

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

zope.proxy-4.4.0-cp39-cp39-win_amd64.whl (42.0 kB view details)

Uploaded CPython 3.9Windows x86-64

zope.proxy-4.4.0-cp39-cp39-win32.whl (41.0 kB view details)

Uploaded CPython 3.9Windows x86

zope.proxy-4.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (72.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

zope.proxy-4.4.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (72.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

zope.proxy-4.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (68.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686manylinux: glibc 2.5+ i686

zope.proxy-4.4.0-cp39-cp39-macosx_10_14_x86_64.whl (40.6 kB view details)

Uploaded CPython 3.9macOS 10.14+ x86-64

zope.proxy-4.4.0-cp38-cp38-win_amd64.whl (42.1 kB view details)

Uploaded CPython 3.8Windows x86-64

zope.proxy-4.4.0-cp38-cp38-win32.whl (41.0 kB view details)

Uploaded CPython 3.8Windows x86

zope.proxy-4.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (72.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

zope.proxy-4.4.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (72.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

zope.proxy-4.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (68.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686manylinux: glibc 2.5+ i686

zope.proxy-4.4.0-cp38-cp38-macosx_10_14_x86_64.whl (40.6 kB view details)

Uploaded CPython 3.8macOS 10.14+ x86-64

zope.proxy-4.4.0-cp37-cp37m-win_amd64.whl (41.9 kB view details)

Uploaded CPython 3.7mWindows x86-64

zope.proxy-4.4.0-cp37-cp37m-win32.whl (40.9 kB view details)

Uploaded CPython 3.7mWindows x86

zope.proxy-4.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (71.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

zope.proxy-4.4.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (71.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

zope.proxy-4.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (67.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686manylinux: glibc 2.5+ i686

zope.proxy-4.4.0-cp37-cp37m-macosx_10_14_x86_64.whl (40.5 kB view details)

Uploaded CPython 3.7mmacOS 10.14+ x86-64

zope.proxy-4.4.0-cp36-cp36m-win_amd64.whl (41.9 kB view details)

Uploaded CPython 3.6mWindows x86-64

zope.proxy-4.4.0-cp36-cp36m-win32.whl (40.9 kB view details)

Uploaded CPython 3.6mWindows x86

zope.proxy-4.4.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (70.9 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

zope.proxy-4.4.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (71.0 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

zope.proxy-4.4.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (66.8 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686manylinux: glibc 2.5+ i686

zope.proxy-4.4.0-cp36-cp36m-macosx_10_14_x86_64.whl (40.5 kB view details)

Uploaded CPython 3.6mmacOS 10.14+ x86-64

zope.proxy-4.4.0-cp35-cp35m-win_amd64.whl (41.9 kB view details)

Uploaded CPython 3.5mWindows x86-64

zope.proxy-4.4.0-cp35-cp35m-win32.whl (40.9 kB view details)

Uploaded CPython 3.5mWindows x86

zope.proxy-4.4.0-cp27-cp27m-win_amd64.whl (40.2 kB view details)

Uploaded CPython 2.7mWindows x86-64

zope.proxy-4.4.0-cp27-cp27m-win32.whl (39.7 kB view details)

Uploaded CPython 2.7mWindows x86

zope.proxy-4.4.0-cp27-cp27m-macosx_10_14_x86_64.whl (41.0 kB view details)

Uploaded CPython 2.7mmacOS 10.14+ x86-64

File details

Details for the file zope.proxy-4.4.0.tar.gz.

File metadata

  • Download URL: zope.proxy-4.4.0.tar.gz
  • Upload date:
  • Size: 43.7 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.11

File hashes

Hashes for zope.proxy-4.4.0.tar.gz
Algorithm Hash digest
SHA256 b244904c5148067c3f1899d29a2c1a28faca747b143192c0f825e6bf3170a347
MD5 2d0b9804aca7c52546998c09c5d83c78
BLAKE2b-256 63c461fd8fee17b3e54bc32c5d7815114a6c334fd100352fc3c07730e54f95c0

See more details on using hashes here.

File details

Details for the file zope.proxy-4.4.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: zope.proxy-4.4.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 42.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.0

File hashes

Hashes for zope.proxy-4.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 285fad7f7d07904fb64d2cc77dd7c4e4ca3036ebd4c85d035d85d607dfae823d
MD5 bd4920c844ffc1f91293efbd55b49c11
BLAKE2b-256 73b789386c11675f03bba5fb7f972d9e6f6321eb1a976a00f1afadde13a25cef

See more details on using hashes here.

File details

Details for the file zope.proxy-4.4.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: zope.proxy-4.4.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 41.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.0

File hashes

Hashes for zope.proxy-4.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 25a17df41ba17011ced815e13cd63ceb1500aa6ff0eb64fd07e35e696a4293d1
MD5 78c6e74a2a4c4d7dba906e67e9a4f1d6
BLAKE2b-256 dddd57133a27f8391eadf43690e3df253de80dea11336d67de08a4efda4a48ee

See more details on using hashes here.

File details

Details for the file zope.proxy-4.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zope.proxy-4.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 96ce8bebe0525fecb3b144705098f4b0326fdc07faecb85e7f58ee1c21299c45
MD5 bbdb1d7c9c94146f0d10dfbae25dce5b
BLAKE2b-256 833e75a401e5e6eb3707c8f641cda07eee5b781d8934a8e8f33b7f8f61299c9b

See more details on using hashes here.

File details

Details for the file zope.proxy-4.4.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for zope.proxy-4.4.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c48b4a205ab599edbd9378dfd8167afc3ecd47365b83f53853fa9d55abe1cade
MD5 7ab03d991bf6437b29302d940248018b
BLAKE2b-256 a3b0a11d4d9b41780d61981559eac4bc5948a1cfd9fe3dfa314efc55737ccbe4

See more details on using hashes here.

File details

Details for the file zope.proxy-4.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for zope.proxy-4.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 dcb28a774a3a5cbb4a7986dc2fbf83dea36d8d6f185f6234eb4fe6daff1a6cb5
MD5 3dcc4343df96898b3dcb8e72b22d0d67
BLAKE2b-256 d370eea973ca1e2ae6997d3d4489889439883c11614c48c8dad2c41fe83d04b0

See more details on using hashes here.

File details

Details for the file zope.proxy-4.4.0-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: zope.proxy-4.4.0-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 40.6 kB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6

File hashes

Hashes for zope.proxy-4.4.0-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 43d886e9beb446be4b2db564dfb378b0c9b304376d4eb29398b714210154517c
MD5 bd3547062c0237966f56cac37bb2eae5
BLAKE2b-256 1a8584cd45e3085221a58d70dc0e6fc1d07c7db1bc420d1fdb327d1eab3419a0

See more details on using hashes here.

File details

Details for the file zope.proxy-4.4.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: zope.proxy-4.4.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 42.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.0

File hashes

Hashes for zope.proxy-4.4.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d4beb640cd833a660271bc916483d0fde832c81b0bb9a037afdb6b7bd7e71a4d
MD5 4d13ad65050076705ab21be1324d96a4
BLAKE2b-256 34f4ce7f9602dd908a49adceecaeeefdf2267490eb0166d9e666acf09f274c7c

See more details on using hashes here.

File details

Details for the file zope.proxy-4.4.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: zope.proxy-4.4.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 41.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.0

File hashes

Hashes for zope.proxy-4.4.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 77d25de12f01be186c26d1eb8dd680e0d35590788c5cea1d10322bb3be8a83a3
MD5 6fb6f5fcaa7c288273a31ae49b06856a
BLAKE2b-256 8908a822761433e57492c1d8991a9fbcd9afead62948b15556fc083c8e16445f

See more details on using hashes here.

File details

Details for the file zope.proxy-4.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zope.proxy-4.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0201fb3bbea590224aa3ef397cf881f0d4c3432a2211a962b7eb6d38c64830b4
MD5 b3b4b7dcfd40c5cf31c0b2ec60f6ca43
BLAKE2b-256 ea21fa1eedbf00e679c7ed3163fab6b09f9a314da0092d581c1d8064a7c797ba

See more details on using hashes here.

File details

Details for the file zope.proxy-4.4.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for zope.proxy-4.4.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 75b650259bb8b5b2e2c5d9076d4e790522a6436dbdb8c891911833da67d1415a
MD5 00a882641450a58bae6c464b655e8f7f
BLAKE2b-256 4bb1167e400a170c36e29c02ca8f5e70985972bd2a31a0380f2029f74db7bde1

See more details on using hashes here.

File details

Details for the file zope.proxy-4.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for zope.proxy-4.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c8581474d7d9c9efbd1133e72df995746261d94b914b6bdb9bba1893d9ba4dcd
MD5 34079c7e3360dd31ef19134c93475525
BLAKE2b-256 3a2e4604a7f769aecc15689471d2c0d27edfa496c7306a3e27a695aca944c972

See more details on using hashes here.

File details

Details for the file zope.proxy-4.4.0-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: zope.proxy-4.4.0-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 40.6 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.11

File hashes

Hashes for zope.proxy-4.4.0-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 5f87812ddd40d4d2a249d0d072ea78c8e69440634e106b392de2ef5d79d7d9e8
MD5 3960c5712b974d5e959b7043ab6d8b02
BLAKE2b-256 e18f9a8cdd6f338a7c3629391ac91ec0832121daf36d1c9eaac54632fd9029fd

See more details on using hashes here.

File details

Details for the file zope.proxy-4.4.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: zope.proxy-4.4.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 41.9 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.7.5

File hashes

Hashes for zope.proxy-4.4.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7fbb5217affa46c054ef751ab77e79ee58acb5370bfee3dbee8b5b518cc565a2
MD5 8b6669014648a3560e0bf334e9e2d57a
BLAKE2b-256 bda554555f26e599b107d48d93127751d918eca338f29c65936e8729c745d186

See more details on using hashes here.

File details

Details for the file zope.proxy-4.4.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: zope.proxy-4.4.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 40.9 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.7.5

File hashes

Hashes for zope.proxy-4.4.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 67d3a04fc26895e955831ad0964b988e0f0f29f92705186f72c8378c5b92b887
MD5 7f4db36c53532228f3b17541007b7fde
BLAKE2b-256 a479fa3b7ce2a9e7c3e45261c971ba16d2fa7d0176572751186ce3d023189898

See more details on using hashes here.

File details

Details for the file zope.proxy-4.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zope.proxy-4.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 56b29b6aa74ba65f2459765be7796cca00e3db0e3536d040bd97afe10d419608
MD5 4004249a0bd408b931ffa71540590e26
BLAKE2b-256 a772223dc2f2f30efb144616f0a3e7f74c33e84fce2e2636e67625e605cb1354

See more details on using hashes here.

File details

Details for the file zope.proxy-4.4.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for zope.proxy-4.4.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6cad1ec4f4ca4ed5c39c99c1eb0383392b5317b3db1c61681bef5756296d896a
MD5 3adb494fe21806150569c389a16b27fb
BLAKE2b-256 a0cba7f829ceae92579928e4a4fb4543a18f521bb13174de94c06f6af677a92a

See more details on using hashes here.

File details

Details for the file zope.proxy-4.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for zope.proxy-4.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f314d4188081b67b03555b82c6822626ead11da6f27727aea5ea9d5084f712fa
MD5 a49feb8632ed1e37526fcea96ac774ba
BLAKE2b-256 32e4bb59fd9da183eadb0821c4465cdb367007961a1365179521a4baf0bdf1bb

See more details on using hashes here.

File details

Details for the file zope.proxy-4.4.0-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: zope.proxy-4.4.0-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 40.5 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.7.11

File hashes

Hashes for zope.proxy-4.4.0-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 7c02b01385ce812a2bb9029c3f6720bb768207fb6f73ea74afd77faab32b1585
MD5 17c3286f052c625132114a9eaa98a8de
BLAKE2b-256 7decc9ccbf2307c0f16b5f499c28e6a0666bb91a7c5f83626734969d2cce2fd7

See more details on using hashes here.

File details

Details for the file zope.proxy-4.4.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: zope.proxy-4.4.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 41.9 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.6.8

File hashes

Hashes for zope.proxy-4.4.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 05ad3382f419223e86197247547ea0fffe61e755ab76f46a29ffb33f1ac33123
MD5 ab2ebe69aac0b80ae09247fb89bdde40
BLAKE2b-256 4e8e1539e9ee5dcc1853278f5f3c6efea6832ec42691f392e08ee32b907215f2

See more details on using hashes here.

File details

Details for the file zope.proxy-4.4.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: zope.proxy-4.4.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 40.9 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.6.8

File hashes

Hashes for zope.proxy-4.4.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 1cf637f06c72a0b1c7fa2b427b4b49a43f89d5b46f332319ad0454e1c270a8a0
MD5 a48243031f687274ada764039d37d713
BLAKE2b-256 6560e2d613c4ceae47ad5084e73ecd6acae48315c4ab081584d50cbdbbbb429c

See more details on using hashes here.

File details

Details for the file zope.proxy-4.4.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zope.proxy-4.4.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 57181574cf10413acb4716b9009150e95180454df0ec581c1a1d6c21ad644861
MD5 a012d606b0c973c9d46680e9e9562079
BLAKE2b-256 0fcff04c59827a8d52ef6647d0ed0d666b8f912a4331109f456d9b5c4b5d611d

See more details on using hashes here.

File details

Details for the file zope.proxy-4.4.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for zope.proxy-4.4.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9f18a490c3a93efcf00d6fde080065d7fd258a7ddd677f193071214cc6d76faf
MD5 1cddd3d65bf1ff0670fe6905f743b833
BLAKE2b-256 1a0b2918f8753a7a99813fc9e33317640df4d4b778b8b4020e1fccb14550c26c

See more details on using hashes here.

File details

Details for the file zope.proxy-4.4.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for zope.proxy-4.4.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b85902900222ebb3f7c8377fe4b1e8280243a2ccc429cf5086a08cc66778d530
MD5 a0ceab6a6b4097848db5ec0d8751203c
BLAKE2b-256 d97908a575ffa10b5d6acf6effa4aedd62215f561f0db8528e10068436ba2795

See more details on using hashes here.

File details

Details for the file zope.proxy-4.4.0-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: zope.proxy-4.4.0-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 40.5 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.6.14

File hashes

Hashes for zope.proxy-4.4.0-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 540a3d7d38e0fc89d6489509bdbb4a877e77795148951a76f0ce3f1156eea25c
MD5 24c302dfa3fb166a9aa8f92be5728570
BLAKE2b-256 622f2f08656037f5b659554eef2f1b631a51737ba1646c8e061d58f644be7411

See more details on using hashes here.

File details

Details for the file zope.proxy-4.4.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: zope.proxy-4.4.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 41.9 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.1 requests/2.25.1 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.5.4

File hashes

Hashes for zope.proxy-4.4.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 c81dbfb28d2ae5e89ddbf9af54cc4c357c04bc56b6bef5a69a5080b79369a0af
MD5 20a34bdd6c88a94fac28d272084acc72
BLAKE2b-256 14aac725b129e17c22750853cc693907525265ae4baeaaf0a94838f7779bcb85

See more details on using hashes here.

File details

Details for the file zope.proxy-4.4.0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: zope.proxy-4.4.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 40.9 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.1 requests/2.25.1 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.5.4

File hashes

Hashes for zope.proxy-4.4.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 787612b5c690b1f7e03f268c538970b3da9dd176a0ec89e56b0c921d363ecd02
MD5 a812e33165ef589fb625d81931590550
BLAKE2b-256 ab2ee2fd95af0da6e52c60bb363a996530611e53417669a0a247a28685731acd

See more details on using hashes here.

File details

Details for the file zope.proxy-4.4.0-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: zope.proxy-4.4.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 40.2 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.1 requests/2.26.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/2.7.17

File hashes

Hashes for zope.proxy-4.4.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 c06248e0091c1aebc448e1621956b545a6862dcf13f65ce8a354d6437da30a47
MD5 a66b607d2fa3178b96a7b977a8698eb4
BLAKE2b-256 1f5f432e4e9e5cb733ea820f4f08521bc1b04d23c2a7e4d01c8861ab0863e1b0

See more details on using hashes here.

File details

Details for the file zope.proxy-4.4.0-cp27-cp27m-win32.whl.

File metadata

  • Download URL: zope.proxy-4.4.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 39.7 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.1 requests/2.26.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/2.7.17

File hashes

Hashes for zope.proxy-4.4.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 f274d27cff6c53478a0b05a0020583eca1aa454b8fc1c05ae1a9d8945418f12a
MD5 3b58a0d6f3153b4c5d538660f73b90db
BLAKE2b-256 35ae30ecd22f4caa9d3fbb833d63628af8215eaf36374b49485266a6689baf00

See more details on using hashes here.

File details

Details for the file zope.proxy-4.4.0-cp27-cp27m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: zope.proxy-4.4.0-cp27-cp27m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 41.0 kB
  • Tags: CPython 2.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.1 requests/2.26.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/2.7.18

File hashes

Hashes for zope.proxy-4.4.0-cp27-cp27m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 801f79cb3c69c71a255816525aa3580e826e1ab6c7df37be0bc71ab04c4f2bbf
MD5 9664851dc4ea390136dd3c7aa2aa56aa
BLAKE2b-256 cf650a8cb51f81ffcc8fc8ca43421b1fffe1228aea401d524f01b04edb8265f6

See more details on using hashes here.

Supported by

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