zope.proxy


Namezope.proxy JSON
Version 5.2 PyPI version JSON
download
home_pagehttp://github.com/zopefoundation/zope.proxy
SummaryGeneric Transparent Proxies
upload_time2024-02-09 07:25:22
maintainer
docs_urlNone
authorZope Foundation and Contributors
requires_python>=3.7
licenseZPL 2.1
keywords proxy generic transparent
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            ================
 ``zope.proxy``
================

.. image:: https://github.com/zopefoundation/zope.proxy/actions/workflows/tests.yml/badge.svg
        :target: https://github.com/zopefoundation/zope.proxy/actions/workflows/tests.yml

.. image:: https://ci.appveyor.com/api/projects/status/github/zopefoundation/zope.proxy?branch=master&svg=true
        :target: https://ci.appveyor.com/project/mgedmin/zope-proxy

.. image:: https://coveralls.io/repos/github/zopefoundation/zope.proxy/badge.svg?branch=master
        :target: https://coveralls.io/github/zopefoundation/zope.proxy?branch=master

.. image:: https://readthedocs.org/projects/zopeproxy/badge/?version=latest
        :target: https://zopeproxy.readthedocs.io/en/latest/
        :alt: Documentation Status

.. image:: https://img.shields.io/pypi/v/zope.proxy.svg
        :target: https://pypi.org/project/zope.proxy/
        :alt: Latest release

.. image:: https://img.shields.io/pypi/pyversions/zope.proxy.svg
        :target: https://pypi.org/project/zope.proxy/
        :alt: Python versions

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

5.2 (2024-02-09)
================

- Add preliminary support for Python 3.13 as of 3.13a3.


5.1 (2023-10-05)
================

- Add support for Python 3.12.


5.0.0 (2023-01-18)
==================

- Drop support for Python 2.7, 3.5, 3.6.

- Remove proxying code for names that no longer exist in Python 3
  like ``__long__`` and some others.
  (`#55 <https://github.com/zopefoundation/zope.proxy/issues/55>`_)


4.6.1 (2022-11-16)
==================

- Add support for building arm64 wheels on macOS.


4.6.0 (2022-11-03)
==================

- Add support for Python 3.11.


4.5.1 (2022-09-15)
==================

- Disable unsafe math optimizations in C code.  See `pull request 53
  <https://github.com/zopefoundation/zope.proxy/pull/53>`_.


4.5.0 (2021-11-17)
==================

- Add support for Python 3.10.


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
  <https://github.com/zopefoundation/zope.proxy/issues/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
  <https://github.com/zopefoundation/zope.proxy/issues/36>`_.

- Remove deprecated use of setuptools features.  See `issue 38
  <https://github.com/zopefoundation/zope.proxy/issues/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
  <https://github.com/zopefoundation/zope.proxy/issues/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
  <https://github.com/zopefoundation/zope.proxy/issues/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
  <https://github.com/zopefoundation/zope.proxy/issues/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
  <https://github.com/zopefoundation/zope.proxy/issues/21>`_.

4.2.1 (2017-04-23)
==================

- Make the pure-Python implementation of ``sameProxiedObjects`` handle
  ``zope.security`` proxies. See `issue 15 <https://github.com/zopefoundation/zope.proxy/issues/15>`_.

- Add support for Python 3.6.

4.2.0 (2016-05-05)
==================

- Correctly strip ``zope.security`` proxies in ``removeAllProxies``.
  See `issue 13 <https://github.com/zopefoundation/zope.proxy/pull/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.

            

Raw data

            {
    "_id": null,
    "home_page": "http://github.com/zopefoundation/zope.proxy",
    "name": "zope.proxy",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "proxy generic transparent",
    "author": "Zope Foundation and Contributors",
    "author_email": "zope-dev@zope.org",
    "download_url": "https://files.pythonhosted.org/packages/1f/cc/42cf13980331e234048307e171c55fc72ddebfc4d41b55e224f12e257f5c/zope.proxy-5.2.tar.gz",
    "platform": null,
    "description": "================\n ``zope.proxy``\n================\n\n.. image:: https://github.com/zopefoundation/zope.proxy/actions/workflows/tests.yml/badge.svg\n        :target: https://github.com/zopefoundation/zope.proxy/actions/workflows/tests.yml\n\n.. image:: https://ci.appveyor.com/api/projects/status/github/zopefoundation/zope.proxy?branch=master&svg=true\n        :target: https://ci.appveyor.com/project/mgedmin/zope-proxy\n\n.. image:: https://coveralls.io/repos/github/zopefoundation/zope.proxy/badge.svg?branch=master\n        :target: https://coveralls.io/github/zopefoundation/zope.proxy?branch=master\n\n.. image:: https://readthedocs.org/projects/zopeproxy/badge/?version=latest\n        :target: https://zopeproxy.readthedocs.io/en/latest/\n        :alt: Documentation Status\n\n.. image:: https://img.shields.io/pypi/v/zope.proxy.svg\n        :target: https://pypi.org/project/zope.proxy/\n        :alt: Latest release\n\n.. image:: https://img.shields.io/pypi/pyversions/zope.proxy.svg\n        :target: https://pypi.org/project/zope.proxy/\n        :alt: Python versions\n\nProxies are special objects which serve as mostly-transparent\nwrappers around another object, intervening in the apparent behavior of\nthe wrapped object only when necessary to apply the policy (e.g., access\nchecking, location brokering, etc.) for which the proxy is responsible.\n\nzope.proxy is implemented via a C extension module, which lets it do things\nlike lie about its own ``__class__`` that are difficult in pure Python (and\nwere completely impossible before metaclasses).  It also proxies all the\ninternal slots (such as ``__int__``/``__str__``/``__add__``).\n\nComplete documentation is at https://zopeproxy.readthedocs.io\n\n\n=========\n Changes\n=========\n\n5.2 (2024-02-09)\n================\n\n- Add preliminary support for Python 3.13 as of 3.13a3.\n\n\n5.1 (2023-10-05)\n================\n\n- Add support for Python 3.12.\n\n\n5.0.0 (2023-01-18)\n==================\n\n- Drop support for Python 2.7, 3.5, 3.6.\n\n- Remove proxying code for names that no longer exist in Python 3\n  like ``__long__`` and some others.\n  (`#55 <https://github.com/zopefoundation/zope.proxy/issues/55>`_)\n\n\n4.6.1 (2022-11-16)\n==================\n\n- Add support for building arm64 wheels on macOS.\n\n\n4.6.0 (2022-11-03)\n==================\n\n- Add support for Python 3.11.\n\n\n4.5.1 (2022-09-15)\n==================\n\n- Disable unsafe math optimizations in C code.  See `pull request 53\n  <https://github.com/zopefoundation/zope.proxy/pull/53>`_.\n\n\n4.5.0 (2021-11-17)\n==================\n\n- Add support for Python 3.10.\n\n\n4.4.0 (2021-07-22)\n==================\n\n- Add support for Python 3.9.\n\n- Create aarch64 wheels.\n\n\n4.3.5 (2020-03-16)\n==================\n\n- Stop installing C header files on PyPy (which is what zope.proxy before 4.3.4\n  used to do), fixes `issue 39\n  <https://github.com/zopefoundation/zope.proxy/issues/39>`_.\n\n\n4.3.4 (2020-03-13)\n==================\n\n- Fix a compilation warning on Python 3.8. The slot ``tp_print``\n  changed to ``tp_vectorcall_offset`` in 3.8 and must not be set.\n  Prior to 3.8, it was reserved and ignored in all Python 3 versions.\n  See `issue 36\n  <https://github.com/zopefoundation/zope.proxy/issues/36>`_.\n\n- Remove deprecated use of setuptools features.  See `issue 38\n  <https://github.com/zopefoundation/zope.proxy/issues/38>`_.\n\n\n4.3.3 (2019-11-11)\n==================\n\n- Add support for Python 3.8.\n\n- Drop support for Python 3.4.\n\n\n4.3.2 (2019-07-12)\n==================\n\n- Fix error handling in ``ProxyBase.__setattr__``: any the exception raised by\n  ``PyString_AsString``/``PyUnicode_AsUTF8`` would be silently swallowed up\n  and ignored.  See `issue 31\n  <https://github.com/zopefoundation/zope.proxy/issues/31>`_.\n\n\n4.3.1 (2018-08-09)\n==================\n\n- Simplify the internal C handling of attribute names in\n  ``__getattribute__`` and ``__setattr__``.\n\n- Make building the C extension optional. We still attempt to build it\n  on supported platforms, but we allow it to fail in case of a missing\n  compiler or headers. See `issue 26\n  <https://github.com/zopefoundation/zope.proxy/issues/26>`_.\n\n- Test the PURE_PYTHON environment and PyPy3 on Travis CI.\n\n- Add support for Python 3.7.\n\n4.3.0 (2017-09-13)\n==================\n\n- Fix a potential rare crash when deallocating proxies. See `issue 20\n  <https://github.com/zopefoundation/zope.proxy/issues/20>`_.\n\n- Drop support for Python 3.3.\n\n- Drop support for \"python setup.py test\".\n\n- 100% test coverage.\n\n- Fix indexing pure-Python proxies with slices under Python 3, and\n  restore the use of ``__getslice__`` (if implemented by the target's\n  type) under Python 2. Previously, pure-Python proxies would fail\n  with an AttributeError when given a slice on Python 3, and on Python\n  2, a custom ``__getslice__`` was ignored. See `issue 21\n  <https://github.com/zopefoundation/zope.proxy/issues/21>`_.\n\n4.2.1 (2017-04-23)\n==================\n\n- Make the pure-Python implementation of ``sameProxiedObjects`` handle\n  ``zope.security`` proxies. See `issue 15 <https://github.com/zopefoundation/zope.proxy/issues/15>`_.\n\n- Add support for Python 3.6.\n\n4.2.0 (2016-05-05)\n==================\n\n- Correctly strip ``zope.security`` proxies in ``removeAllProxies``.\n  See `issue 13 <https://github.com/zopefoundation/zope.proxy/pull/13>`_.\n\n- Avoid poisoning the user's global wheel cache when testing ``PURE_PYTHON``\n  environments under ``tox``,\n\n- Drop support for Python 2.6 and 3.2.\n\n- Add support for Python 3.5.\n\n4.1.6 (2015-06-02)\n==================\n\n- Make subclasses of ProxyBase properly delegate ``__module__`` to the\n  wrapped object. This fixes some ``zope.interface`` lookups under\n  PyPy.\n\n- Make the pure-Python implementation of ProxyBase properly report the\n  ``zope.interface`` interfaces implemented by builtin types like\n  ``list``. This fixes some ``zope.interface`` lookups under PyPy.\n\n4.1.5 (2015-05-19)\n==================\n\n- Make the C implementation proxy ``__unicode__`` correctly.\n\n- Make the C implementation use the standard methods to proxy ``int`` and\n  ``float``.\n\n- Make the pure Python implementation handle descriptors defined in\n  subclasses like the C version. See\n  https://github.com/zopefoundation/zope.proxy/issues/5.\n\n4.1.4 (2014-03-19)\n==================\n\n- Add support for Python 3.4.\n\n- Update ``bootstrap.py`` to version 2.2.\n\n4.1.3 (2013-03-12)\n==================\n\n- Fix interface object introspection in PyPy. For some reason PyPy makes\n  attributes available despite the restrictive ``__slots__`` declaration.\n\n- Add a bunch of tests surrounding interface lookup and adaptation.\n\n4.1.2 (2013-03-11)\n==================\n\n- Make ``PyProxyBase.__iter__()`` return the result of\n  ``PyProxyBase._wrapped.__iter__`` if available, otherwise falling back to\n  Python internals. The previous implementation always created a generator.\n\n- In ``PyProxyBase.__setattr__()``, allow setting of properties on the\n  proxy itself. This is needed to properly allow proxy extensions as was\n  evidenced int he ``zope.security.decorator`` module.\n\n4.1.1 (2012-12-31)\n==================\n\n- Fleshed out PyPI Trove classifiers.\n\n4.1.0 (2012-12-19)\n==================\n\n- Enable compilation of dependent modules under Py3k.\n\n- Replace use of ``PyCObject`` APIs with equivalent ``PyCapsule`` APIs,\n  except under Python 2.6.\n\n  N.B.  This change is an ABI incompatibility under Python 2.7:\n        extensions built under Python 2.7 against 4.0.x versions of\n        ``zope.proxy`` must be rebuilt.\n\n4.0.1 (2012-11-21)\n==================\n\n- Add support for Python 3.3.\n\n4.0.0 (2012-06-06)\n==================\n\n- Add support for PyPy.\n\n  N.B.:  the C extension is *not* built under PyPy.\n\n- Add a pure-Python reference / fallback implementations of\n  ``zope.proxy.ProxyBase`` and the proxy module API functions.\n\n  N.B.:  the pure-Python proxy implements all regular features of\n  ``ProxyBase``;  however, it does not exclude access to the wrapped object\n  in the same way that the C version does.  If you need that information\n  hiding (e.g., to implement security sandboxing), you still need to use\n  the C version.\n\n- Add support for continuous integration using ``tox`` and ``jenkins``.\n\n- 100% unit test coverage.\n\n- Add Sphinx documentation:  moved doctest examples to API reference.\n\n- Add 'setup.py docs' alias (installs ``Sphinx`` and dependencies).\n\n- Add 'setup.py dev' alias (runs ``setup.py develop`` plus installs\n  ``nose`` and ``coverage``).\n\n- Replace deprecated ``zope.interface.implements`` usage with equivalent\n  ``zope.interface.implementer`` decorator.\n\n- Drop support for Python 2.4 and 2.5.\n\n- Add Python 3.2 support.\n\n3.6.1 (2010-07-06)\n==================\n\n- Make tests compatible with Python 2.7.\n\n3.6.0 (2010-04-30)\n==================\n\n- Remove test extra and the remaining dependency on zope.testing.\n\n- Remove use of 'zope.testing.doctestunit' in favor of stdlib's 'doctest.\n\n3.5.0 (2009/01/31)\n==================\n\n- Add support to bootstrap on Jython.\n\n- Use ``zope.container`` instead of ``zope.app.container``.\n\n3.4.2 (2008/07/27)\n==================\n\n- Make C code compatible with Python 2.5 on 64bit architectures.\n\n3.4.1 (2008/06/24)\n==================\n\n- Bug: Update ``setup.py`` script to conform to common layout. Also updated\n  some of the fields.\n\n- Bug: Honor pre-cooked indices for tuples and lists in the ``__getslice__()``\n  and ``__setslice__()`` methods. See\n  http://docs.python.org/ref/sequence-methods.html.\n\n3.4.0 (2007/07/12)\n==================\n\n- Feature: Add a ``decorator`` module that supports declaring interfaces on\n  proxies that get blended with the interfaces of the things they proxy.\n\n3.3.0 (2006/12/20)\n==================\n\n- Corresponds to the verison of the ``zope.proxy`` package shipped as part of\n  the Zope 3.3.0 release.\n\n\n3.2.0 (2006/01/05)\n==================\n\n- Corresponds to the verison of the ``zope.proxy`` package shipped as part of\n  the Zope 3.2.0 release.\n\n\n3.0.0 (2004/11/07)\n==================\n\n- Corresponds to the verison of the ``zope.proxy`` package shipped as part of\n  the Zope X3.0.0 release.\n",
    "bugtrack_url": null,
    "license": "ZPL 2.1",
    "summary": "Generic Transparent Proxies",
    "version": "5.2",
    "project_urls": {
        "Documentation": "https://zopeproxy.readthedocs.io",
        "Homepage": "http://github.com/zopefoundation/zope.proxy",
        "Issue Tracker": "https://github.com/zopefoundation/zope.proxy/issues",
        "Sources": "https://github.com/zopefoundation/zope.proxy"
    },
    "split_keywords": [
        "proxy",
        "generic",
        "transparent"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5dc60d77e8be650d96351b5932adbca2079f34e62936caa17971c8608bd4375a",
                "md5": "8f983b5fd20699a54c34684a82aab6b7",
                "sha256": "7266bfa500c872c1192e6aedf10bc5dd403e47287b1b009009f9cb7bb4d5e215"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8f983b5fd20699a54c34684a82aab6b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 39243,
            "upload_time": "2024-02-09T07:27:40",
            "upload_time_iso_8601": "2024-02-09T07:27:40.067192Z",
            "url": "https://files.pythonhosted.org/packages/5d/c6/0d77e8be650d96351b5932adbca2079f34e62936caa17971c8608bd4375a/zope.proxy-5.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9eefdf89e3ebbfd465790d300972ed44576d53bc21a4620eadfc8fcd0ee8cd20",
                "md5": "6cf95ee8ddca58eec8b027b17879d230",
                "sha256": "3ac6b6e529a2ee3b16c257a7e0727dc9e53d37450fc599b4edb1f831b04eb8f5"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6cf95ee8ddca58eec8b027b17879d230",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 39741,
            "upload_time": "2024-02-09T07:27:41",
            "upload_time_iso_8601": "2024-02-09T07:27:41.668423Z",
            "url": "https://files.pythonhosted.org/packages/9e/ef/df89e3ebbfd465790d300972ed44576d53bc21a4620eadfc8fcd0ee8cd20/zope.proxy-5.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "833e6d381f6277be9b3aca51cdfcedb1a89f4d0ad9cb19efde032091208de487",
                "md5": "cac0f24011fcc3ff7d1bb35ff88dfed2",
                "sha256": "f2ba3c02270595b79a8c6eb5f6ccacf6bb94f33031ca5806835d78024186850a"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cac0f24011fcc3ff7d1bb35ff88dfed2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 70280,
            "upload_time": "2024-02-09T07:41:40",
            "upload_time_iso_8601": "2024-02-09T07:41:40.808983Z",
            "url": "https://files.pythonhosted.org/packages/83/3e/6d381f6277be9b3aca51cdfcedb1a89f4d0ad9cb19efde032091208de487/zope.proxy-5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8357fbb67021dff6a524066bf4cc1adba196a57a41f22b423f59c33afa48cf7d",
                "md5": "b2b84c8e30be54a17437dadd3f73feaa",
                "sha256": "834a3d42c8f9ef62725d69ff98449e076000ff6eb0e4339fcdaaa322b8398622"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b2b84c8e30be54a17437dadd3f73feaa",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 65185,
            "upload_time": "2024-02-09T07:27:40",
            "upload_time_iso_8601": "2024-02-09T07:27:40.561390Z",
            "url": "https://files.pythonhosted.org/packages/83/57/fbb67021dff6a524066bf4cc1adba196a57a41f22b423f59c33afa48cf7d/zope.proxy-5.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4edb0a0734cd240ace4bbbc678e3e61eac71b1da7dc06792aa27b22795643f72",
                "md5": "e36d55c1da265676b23d359e255588db",
                "sha256": "e0a846f212512182c12ab4310557dfe4b5722309e727a4aff3786b630f681aaf"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e36d55c1da265676b23d359e255588db",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 70260,
            "upload_time": "2024-02-09T07:27:57",
            "upload_time_iso_8601": "2024-02-09T07:27:57.612570Z",
            "url": "https://files.pythonhosted.org/packages/4e/db/0a0734cd240ace4bbbc678e3e61eac71b1da7dc06792aa27b22795643f72/zope.proxy-5.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b55e439918e84cba9aa453760d35776c258a47f153a178cd21f6f1e580ba87ac",
                "md5": "f9d31c54d8f0abb4e229b6926d295fff",
                "sha256": "7652d546c5b2432a36c496cfcacc6dcc08e5b939bdafed58043ce2329719b90b"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f9d31c54d8f0abb4e229b6926d295fff",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 40212,
            "upload_time": "2024-02-09T07:39:18",
            "upload_time_iso_8601": "2024-02-09T07:39:18.537112Z",
            "url": "https://files.pythonhosted.org/packages/b5/5e/439918e84cba9aa453760d35776c258a47f153a178cd21f6f1e580ba87ac/zope.proxy-5.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ecb03ae905d6d91cc40f972dbd8d4d6cff2793338c97079ee0613cebb5b645ff",
                "md5": "691889a5e4827e63231cc8135eee744b",
                "sha256": "761851d5523b81c7c3f565cd26d1f2bf0a0622562969f976238b3dcdf52cc94b"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "691889a5e4827e63231cc8135eee744b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 39266,
            "upload_time": "2024-02-09T07:28:14",
            "upload_time_iso_8601": "2024-02-09T07:28:14.486292Z",
            "url": "https://files.pythonhosted.org/packages/ec/b0/3ae905d6d91cc40f972dbd8d4d6cff2793338c97079ee0613cebb5b645ff/zope.proxy-5.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dedf3159cdc52fc0eb4bc23b4ffe8de00368274ba46974270ec34e14e93f6193",
                "md5": "bc62d562530be2986031c84ac68772a9",
                "sha256": "f9adaeafc5fab0a11e4036766d119e4728b9d0c29120d606e15830648c8fe459"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "bc62d562530be2986031c84ac68772a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 39739,
            "upload_time": "2024-02-09T07:28:16",
            "upload_time_iso_8601": "2024-02-09T07:28:16.369680Z",
            "url": "https://files.pythonhosted.org/packages/de/df/3159cdc52fc0eb4bc23b4ffe8de00368274ba46974270ec34e14e93f6193/zope.proxy-5.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3410f6653bf89ce45286196aa7d45d14f080583f84003243b4af62dd43e9f7d",
                "md5": "8b34c308b34a6530afef55b2141d9c67",
                "sha256": "12cbff2f4fd736013094ed9fb4a62d9f4ef1b6ae825b0ee0f3e5b2a9ddeaf718"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8b34c308b34a6530afef55b2141d9c67",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 71784,
            "upload_time": "2024-02-09T07:41:42",
            "upload_time_iso_8601": "2024-02-09T07:41:42.792717Z",
            "url": "https://files.pythonhosted.org/packages/a3/41/0f6653bf89ce45286196aa7d45d14f080583f84003243b4af62dd43e9f7d/zope.proxy-5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55a0a75bb3959a261bc0f469daff6579b5be3a6f9299540a9ecd60ad8b2359ed",
                "md5": "a8b1d2b379f9f9a0fc02bb80f769c8f1",
                "sha256": "568bb29cb94a51b158701371bcdb3e7fa1b6a455fbea631b10c1329070125c33"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a8b1d2b379f9f9a0fc02bb80f769c8f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 66720,
            "upload_time": "2024-02-09T07:27:42",
            "upload_time_iso_8601": "2024-02-09T07:27:42.915123Z",
            "url": "https://files.pythonhosted.org/packages/55/a0/a75bb3959a261bc0f469daff6579b5be3a6f9299540a9ecd60ad8b2359ed/zope.proxy-5.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb159acaa3228d5e9dff7d6ac6a53876c0913c49aadfc354a2fb20ca4a66403c",
                "md5": "4baf09a8daf2da3b054bf6f55d0028c7",
                "sha256": "691b7a7b5406125c5a570c9e64ada4d4fdc69617f50a352489b0c370c80094b7"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4baf09a8daf2da3b054bf6f55d0028c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 71894,
            "upload_time": "2024-02-09T07:27:58",
            "upload_time_iso_8601": "2024-02-09T07:27:58.968970Z",
            "url": "https://files.pythonhosted.org/packages/bb/15/9acaa3228d5e9dff7d6ac6a53876c0913c49aadfc354a2fb20ca4a66403c/zope.proxy-5.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d6a72d4f4aa3f12470876b190102d90592e13d88cae91ad33cb6ae8df0b3ce7",
                "md5": "d11a5ab3995792fd42b3affce1c1e63f",
                "sha256": "6c0dc0b1af5536d41b113088b099b8774910765f0c278d7d02a5f4d5f7d3df2c"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d11a5ab3995792fd42b3affce1c1e63f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 40217,
            "upload_time": "2024-02-09T07:41:06",
            "upload_time_iso_8601": "2024-02-09T07:41:06.547872Z",
            "url": "https://files.pythonhosted.org/packages/8d/6a/72d4f4aa3f12470876b190102d90592e13d88cae91ad33cb6ae8df0b3ce7/zope.proxy-5.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "573220650aec61ce86161db18a0d777424cb696e23facbd5a65e0a0129edfee5",
                "md5": "18074f8c32248cf077d7a4ec6b38a723",
                "sha256": "e680362d9e9f0d473dddc1a8dc615193b216aad24752ff5c1c3456a7b68d8210"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "18074f8c32248cf077d7a4ec6b38a723",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 39398,
            "upload_time": "2024-02-09T07:28:22",
            "upload_time_iso_8601": "2024-02-09T07:28:22.032399Z",
            "url": "https://files.pythonhosted.org/packages/57/32/20650aec61ce86161db18a0d777424cb696e23facbd5a65e0a0129edfee5/zope.proxy-5.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6fa8f6a05effd67db24f8bcbd7d0c088cc04f3dd0eb050aa350452146888be8",
                "md5": "daf30d44f6038a82437dc5551af9aac4",
                "sha256": "2aa909f3e157e674f96e69e13f424b854960f90754e2d8973a68b02c6e0460a8"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "daf30d44f6038a82437dc5551af9aac4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 39888,
            "upload_time": "2024-02-09T07:28:23",
            "upload_time_iso_8601": "2024-02-09T07:28:23.938918Z",
            "url": "https://files.pythonhosted.org/packages/b6/fa/8f6a05effd67db24f8bcbd7d0c088cc04f3dd0eb050aa350452146888be8/zope.proxy-5.2-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "44ad871ccb2b0382b38e5795c85d3796b8696a88aa4406f90122fddfb901da04",
                "md5": "f6da3d408146fdc031b844d258479523",
                "sha256": "01a85be4ac837c2bef209ce547f97f8edb6423bbc7affa314cd36a643f96c455"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f6da3d408146fdc031b844d258479523",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 72824,
            "upload_time": "2024-02-09T07:41:44",
            "upload_time_iso_8601": "2024-02-09T07:41:44.726872Z",
            "url": "https://files.pythonhosted.org/packages/44/ad/871ccb2b0382b38e5795c85d3796b8696a88aa4406f90122fddfb901da04/zope.proxy-5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "67a33f247de519f22031b2cc4087725911ccd41a41a78f38bdf9f2d9a1b9e7e1",
                "md5": "928bc92327641f11857eaeede8277b6a",
                "sha256": "e291d8d7a7ded9082c0cd5d271d269d765e1832cb472f3bf194322807c600ae9"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "928bc92327641f11857eaeede8277b6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 68039,
            "upload_time": "2024-02-09T07:27:45",
            "upload_time_iso_8601": "2024-02-09T07:27:45.464696Z",
            "url": "https://files.pythonhosted.org/packages/67/a3/3f247de519f22031b2cc4087725911ccd41a41a78f38bdf9f2d9a1b9e7e1/zope.proxy-5.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6b4e8f9fed6633e2ce88f3af52db852cee9ffcef9c5fc2f57ad8ccb697439d4",
                "md5": "9669db808a08378bcc60f1a0a8c29566",
                "sha256": "3638b5954c6a3b8e472a22bb87d687106764d145e11bb164bdc412f2a65d69bf"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9669db808a08378bcc60f1a0a8c29566",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 73617,
            "upload_time": "2024-02-09T07:28:00",
            "upload_time_iso_8601": "2024-02-09T07:28:00.412942Z",
            "url": "https://files.pythonhosted.org/packages/b6/b4/e8f9fed6633e2ce88f3af52db852cee9ffcef9c5fc2f57ad8ccb697439d4/zope.proxy-5.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1035e9b66bc6f7769c2cad484d85b8e3ffbbb79231cde97a66275f3cc9cff514",
                "md5": "3587a5909f31678e8d8072b6abe518bb",
                "sha256": "1350b047804166bcc5002880f1a1c44ba8938a55a1f59893152cf3fe0c26433d"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3587a5909f31678e8d8072b6abe518bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 40362,
            "upload_time": "2024-02-09T07:42:56",
            "upload_time_iso_8601": "2024-02-09T07:42:56.635326Z",
            "url": "https://files.pythonhosted.org/packages/10/35/e9b66bc6f7769c2cad484d85b8e3ffbbb79231cde97a66275f3cc9cff514/zope.proxy-5.2-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "faf6336833cfc736c872d49ceeb01ae6dd2fc1a70af727603515c0047a08734e",
                "md5": "87d525089db1024d9cd918d2cb97f21c",
                "sha256": "15ca1676c99ebab3e8344097018a798c285c75693b6f4488269175e436a8ac8c"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp37-cp37m-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "87d525089db1024d9cd918d2cb97f21c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 39265,
            "upload_time": "2024-02-09T07:28:43",
            "upload_time_iso_8601": "2024-02-09T07:28:43.603848Z",
            "url": "https://files.pythonhosted.org/packages/fa/f6/336833cfc736c872d49ceeb01ae6dd2fc1a70af727603515c0047a08734e/zope.proxy-5.2-cp37-cp37m-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d861fbfaf907cf9226d3f1e851cbc005b1afdb1bc1930b9256af1fab09949c06",
                "md5": "7ce7875a2ce6a3f0928eaa8e03260365",
                "sha256": "13bec2a276c831b2aceceee445ba72d940b39776ee389bf8fcb163e9ef89553a"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7ce7875a2ce6a3f0928eaa8e03260365",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 65603,
            "upload_time": "2024-02-09T07:41:46",
            "upload_time_iso_8601": "2024-02-09T07:41:46.843281Z",
            "url": "https://files.pythonhosted.org/packages/d8/61/fbfaf907cf9226d3f1e851cbc005b1afdb1bc1930b9256af1fab09949c06/zope.proxy-5.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9da0a83d1087cacd0b0e35ab2efa0d54548687912eb52ceeb51ab6eabc88ea12",
                "md5": "a136b6e195eabe513cf6dd196f6d3ec3",
                "sha256": "b9aad8867467ad6072fbaa4b2daf781fe0ed0f8ddd3adb62c0d2c6db5fc13207"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a136b6e195eabe513cf6dd196f6d3ec3",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 61347,
            "upload_time": "2024-02-09T07:27:47",
            "upload_time_iso_8601": "2024-02-09T07:27:47.470779Z",
            "url": "https://files.pythonhosted.org/packages/9d/a0/a83d1087cacd0b0e35ab2efa0d54548687912eb52ceeb51ab6eabc88ea12/zope.proxy-5.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d528c49312252d88c008084148916a2f9b037742ad2babc9e3e278845ac6c484",
                "md5": "5214f84506da3b4c303bd9423446852c",
                "sha256": "8a5807c68158a9d88d0b0f7375bcf857b0528701334485246ebb12bbb1d37e47"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5214f84506da3b4c303bd9423446852c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 65541,
            "upload_time": "2024-02-09T07:28:02",
            "upload_time_iso_8601": "2024-02-09T07:28:02.136824Z",
            "url": "https://files.pythonhosted.org/packages/d5/28/c49312252d88c008084148916a2f9b037742ad2babc9e3e278845ac6c484/zope.proxy-5.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e01cff7be39bdc582eb24f5336ff39e7d1033553d37a53c0e90932a63f1aae6c",
                "md5": "964230b284193282a01a5897c5d10fab",
                "sha256": "1ff30a3c0c3df449ac911652f053e0d345cf4e4be0139dcf59e3bee4e80780aa"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "964230b284193282a01a5897c5d10fab",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 40139,
            "upload_time": "2024-02-09T07:35:00",
            "upload_time_iso_8601": "2024-02-09T07:35:00.129779Z",
            "url": "https://files.pythonhosted.org/packages/e0/1c/ff7be39bdc582eb24f5336ff39e7d1033553d37a53c0e90932a63f1aae6c/zope.proxy-5.2-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9b52d9f7174316475c9222df09265efc147be076dcabe9cfef9ef1a21f71f22c",
                "md5": "71441af32b2ebf82c45cc64d592aeb46",
                "sha256": "9ccc739f5b885f6a53ef5d412aaabc1670095cf50590f635903625e61afeb92d"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "71441af32b2ebf82c45cc64d592aeb46",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 39242,
            "upload_time": "2024-02-09T07:29:16",
            "upload_time_iso_8601": "2024-02-09T07:29:16.770294Z",
            "url": "https://files.pythonhosted.org/packages/9b/52/d9f7174316475c9222df09265efc147be076dcabe9cfef9ef1a21f71f22c/zope.proxy-5.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f43f5f1abf6090e4214b297c6dc6b2c84f133c55f49d0bf2d5ead7a22053d0a7",
                "md5": "f16ab68df29d1ac94fd67cd77f455573",
                "sha256": "783fb32942839541c098a26122c8f2af6608a67787002a54b32aedee424c3a08"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f16ab68df29d1ac94fd67cd77f455573",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 39738,
            "upload_time": "2024-02-09T07:29:18",
            "upload_time_iso_8601": "2024-02-09T07:29:18.175483Z",
            "url": "https://files.pythonhosted.org/packages/f4/3f/5f1abf6090e4214b297c6dc6b2c84f133c55f49d0bf2d5ead7a22053d0a7/zope.proxy-5.2-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9203770d8edd885ef59725876b5ace8ee584b24387a8f15fdef9006582a48723",
                "md5": "26a085c343b301511bb70f78abede647",
                "sha256": "0f20b5aada97a5db72e16be041171b5019d03cedd2828aeb2aa60ee6d7940b61"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "26a085c343b301511bb70f78abede647",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 67061,
            "upload_time": "2024-02-09T07:41:48",
            "upload_time_iso_8601": "2024-02-09T07:41:48.844185Z",
            "url": "https://files.pythonhosted.org/packages/92/03/770d8edd885ef59725876b5ace8ee584b24387a8f15fdef9006582a48723/zope.proxy-5.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e401921c4cdac9e1a535ddf9832e9728cea94b6ae3e01ff61249856961ee6c6",
                "md5": "429a8e5791e3f7fd57b83956beb55af2",
                "sha256": "41f028ea60ec1f41ac85187f9bed764b04d404ad8e6d8410ae6d00e6a00d3535"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "429a8e5791e3f7fd57b83956beb55af2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 63195,
            "upload_time": "2024-02-09T07:27:49",
            "upload_time_iso_8601": "2024-02-09T07:27:49.484185Z",
            "url": "https://files.pythonhosted.org/packages/9e/40/1921c4cdac9e1a535ddf9832e9728cea94b6ae3e01ff61249856961ee6c6/zope.proxy-5.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "827feeb9512a242704c94dd69628cbb2efe59fd2843e91c168194ec469512808",
                "md5": "b98b23563cb9827b724a1aefd71fffd5",
                "sha256": "05c82d21b1323e57cf3c32bf8395500eb1358fa0f75861d2a6126cba57336055"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b98b23563cb9827b724a1aefd71fffd5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 67511,
            "upload_time": "2024-02-09T07:28:04",
            "upload_time_iso_8601": "2024-02-09T07:28:04.151570Z",
            "url": "https://files.pythonhosted.org/packages/82/7f/eeb9512a242704c94dd69628cbb2efe59fd2843e91c168194ec469512808/zope.proxy-5.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a123dd1cf60be8f41125a31ef4001d1547639f50278f5e68d4216308fca3e48",
                "md5": "f6815e92da4cfac5e1a8b344cfef77c8",
                "sha256": "17dfc8446acf2a4f1ef46298d223a1f35db24a2d9a24db510d21165ea64532d0"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f6815e92da4cfac5e1a8b344cfef77c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 40207,
            "upload_time": "2024-02-09T07:36:10",
            "upload_time_iso_8601": "2024-02-09T07:36:10.205562Z",
            "url": "https://files.pythonhosted.org/packages/0a/12/3dd1cf60be8f41125a31ef4001d1547639f50278f5e68d4216308fca3e48/zope.proxy-5.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f3072b17ac6423a9076ca178e190606c13654dfc086a4ca0e1c27aa9461dcbc0",
                "md5": "bb2b2f4e43582e767bae9a45edf36147",
                "sha256": "6fbe20851dfb4d4621de0f388dd4199611d411869fdb56fec35ede94569d1c2c"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bb2b2f4e43582e767bae9a45edf36147",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 39241,
            "upload_time": "2024-02-09T07:29:22",
            "upload_time_iso_8601": "2024-02-09T07:29:22.446014Z",
            "url": "https://files.pythonhosted.org/packages/f3/07/2b17ac6423a9076ca178e190606c13654dfc086a4ca0e1c27aa9461dcbc0/zope.proxy-5.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8689545b780ceb9ac45fb7a1527da7e9b18674c166b00dbb7ea185913713161f",
                "md5": "16d17f057d4441ab89141114f4093667",
                "sha256": "5b251138f33306b006af498be496f52e60aac23d2e7c7fdd251496eafc97099c"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "16d17f057d4441ab89141114f4093667",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 39735,
            "upload_time": "2024-02-09T07:29:23",
            "upload_time_iso_8601": "2024-02-09T07:29:23.843971Z",
            "url": "https://files.pythonhosted.org/packages/86/89/545b780ceb9ac45fb7a1527da7e9b18674c166b00dbb7ea185913713161f/zope.proxy-5.2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c900e1ff750dc16910f4aff65d71210887bfbc4fd3af7c1ad6f6521d365cef08",
                "md5": "192997f2bbf4448db75503fc789bec3e",
                "sha256": "b4ab4df8df7424c4ea0c7d157a041f9c6dac14e54b5c635d0a2d707620a0b2c8"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "192997f2bbf4448db75503fc789bec3e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 68156,
            "upload_time": "2024-02-09T07:41:50",
            "upload_time_iso_8601": "2024-02-09T07:41:50.919440Z",
            "url": "https://files.pythonhosted.org/packages/c9/00/e1ff750dc16910f4aff65d71210887bfbc4fd3af7c1ad6f6521d365cef08/zope.proxy-5.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "301511252b0c60b52811a1f4931032785e734ee9f4a86117422ad52764302bae",
                "md5": "201df48504f788bd5c6677cda8f5bc0b",
                "sha256": "6deb3aaca99346c7fd24e57b7b2bc9a973789c7f94705fa924f506c25480820c"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "201df48504f788bd5c6677cda8f5bc0b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 63795,
            "upload_time": "2024-02-09T07:27:51",
            "upload_time_iso_8601": "2024-02-09T07:27:51.065381Z",
            "url": "https://files.pythonhosted.org/packages/30/15/11252b0c60b52811a1f4931032785e734ee9f4a86117422ad52764302bae/zope.proxy-5.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3340362cb9f6da656a1e23b540320d52d1eabd8b6f77b555057e6b99fb107e50",
                "md5": "751b0020b5a8d5091af8e439afe4d45a",
                "sha256": "d0e850b6e49d36b8d509a68c56bda9bcea573c445e7cc2f135dca980034184f0"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "751b0020b5a8d5091af8e439afe4d45a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 68097,
            "upload_time": "2024-02-09T07:28:06",
            "upload_time_iso_8601": "2024-02-09T07:28:06.143107Z",
            "url": "https://files.pythonhosted.org/packages/33/40/362cb9f6da656a1e23b540320d52d1eabd8b6f77b555057e6b99fb107e50/zope.proxy-5.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9818b1f00950dd5288c9a17acf4e40b10b119615a182a27dddb26e3165041d3e",
                "md5": "63afed7f3ee3af1d2e69a66cd716d84e",
                "sha256": "89ee4a870de6bd08f5f0bdd5de4ef5b14fd1ecd9e09677b700cfe2e23aa87b1d"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "63afed7f3ee3af1d2e69a66cd716d84e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 40213,
            "upload_time": "2024-02-09T07:37:39",
            "upload_time_iso_8601": "2024-02-09T07:37:39.314527Z",
            "url": "https://files.pythonhosted.org/packages/98/18/b1f00950dd5288c9a17acf4e40b10b119615a182a27dddb26e3165041d3e/zope.proxy-5.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1fcc42cf13980331e234048307e171c55fc72ddebfc4d41b55e224f12e257f5c",
                "md5": "d3084fbed488c8c6b5090cfa00ac853b",
                "sha256": "f777d56c2ab2fcf40d026ada1e67f1e39cf6318e3deeb9a1cd5087fccb1f286e"
            },
            "downloads": -1,
            "filename": "zope.proxy-5.2.tar.gz",
            "has_sig": false,
            "md5_digest": "d3084fbed488c8c6b5090cfa00ac853b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 44049,
            "upload_time": "2024-02-09T07:25:22",
            "upload_time_iso_8601": "2024-02-09T07:25:22.481666Z",
            "url": "https://files.pythonhosted.org/packages/1f/cc/42cf13980331e234048307e171c55fc72ddebfc4d41b55e224f12e257f5c/zope.proxy-5.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-09 07:25:22",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "zopefoundation",
    "github_project": "zope.proxy",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "appveyor": true,
    "tox": true,
    "lcname": "zope.proxy"
}
        
Elapsed time: 0.21957s