{ "info": { "author": "Zope Foundation and Contributors", "author_email": "zope-dev@zope.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Zope :: 3", "Intended Audience :: Developers", "License :: OSI Approved :: Zope Public License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Internet :: WWW/HTTP" ], "description": "===============\n zope.security\n===============\n\n.. image:: https://img.shields.io/pypi/v/zope.security.svg\n :target: https://pypi.python.org/pypi/zope.security/\n :alt: Latest release\n\n.. image:: https://img.shields.io/pypi/pyversions/zope.security.svg\n :target: https://pypi.org/project/zope.security/\n :alt: Supported Python versions\n\n.. image:: https://travis-ci.org/zopefoundation/zope.security.svg?branch=master\n :target: https://travis-ci.org/zopefoundation/zope.security\n\n.. image:: https://coveralls.io/repos/github/zopefoundation/zope.security/badge.svg?branch=master\n :target: https://coveralls.io/github/zopefoundation/zope.security?branch=master\n\n.. image:: https://readthedocs.org/projects/zopesecurity/badge/?version=latest\n :target: https://zopesecurity.readthedocs.io/en/latest/\n :alt: Documentation Status\n\n\nThe Security framework provides a generic mechanism to implement security\npolicies on Python objects.\n\nDocumentation is available at https://zopesecurity.readthedocs.io/\n\n\n=========\n Changes\n=========\n\n4.3.1 (2019-01-03)\n==================\n\n- Fix the decimal.Decimal checker, ``__truediv__`` was missing causing\n ``ForbiddenAttribute`` on a ``ProxyFactory(Decimal('1')) / 1`` operation\n\n\n4.3.0 (2018-08-24)\n==================\n\n- Add the interface ``ISystemPrincipal`` and make\n ``zope.security.management.system_user`` a regular object that\n implements this interface. This facilitates providing adapter\n registrations specifically for the ``system_user``.\n\n\n4.2.3 (2018-08-09)\n==================\n\n- Add support for Python 3.7.\n\n\n4.2.2 (2018-01-11)\n==================\n\n- Make the pure-Python proxy on Python 2 *not* check permissions for\n ``__unicode__`` just like the C implementation. Note that\n ``__str__`` is checked for both implementations on both Python 2 and\n 3, but if there is no ``__unicode__`` method defined, Python 2's\n automatic fallback to ``__str__`` is **not** checked when\n ``unicode`` is called. See `issue 10\n `_.\n\n\n4.2.1 (2017-11-30)\n==================\n\n- Fix the default values for ``Permission`` fields ``title`` and\n ``description`` under Python 2. See `issue 48\n `_.\n\n- Change the ``IPermission.id`` from ``Text`` (unicode) to a\n ``NativeStringLine``. This matches what ZCML creates and what is\n usually written in source code.\n\n\n4.2.0 (2017-09-20)\n==================\n\n- Fix the extremely rare potential for a crash when the C extensions\n are in use. See `issue 35 `_.\n\n- Fix `issue 7\n `_: The\n pure-Python proxy didn't propagate ``TypeError`` from ``__repr__``\n and ``__str__`` like the C implementation did.\n\n- Fix `issue 27 `_:\n iteration of ``zope.interface.providedBy()`` is now allowed by\n default on all versions of Python. Previously it only worked on\n Python 2. Note that ``providedBy`` returns unproxied objects for backwards\n compatibility.\n\n- Fix ``__length_hint__`` of proxied iterator objects. Previously it\n was ignored.\n\n- Drop support for Python 3.3.\n\n- Enable coveralls.io for coverage measurement and run doctests on all\n supported Python versions.\n\n- Fix `issue 9\n `_:\n iteration of ``itertools.groupby`` objects is now allowed by\n default. In addition, iteration of all the custom iterator types\n defined in itertools are also allowed by default.\n\n- Simplify the internal ``_compat.py`` module now that we only run on\n newer Python versions. See `PR 32 `_.\n\n- Respect ``PURE_PYTHON`` at runtime. At build time, always try to\n build the C extensions on supported platforms, ignoring\n ``PURE_PYTHON``. See `issue 33\n `_.\n\n- Fix watching checkers (``ZOPE_WATCH_CHECKERS=1``) in pure-Python\n mode. See `issue 8 `_.\n\n- Remove unused internal files from ``tests/``.\n\n- Remove ``zope.security.setup``. It was unused and did not work\n anyway.\n\n- Fix the pure-Python proxy on Python 2 letting ``__getslice__`` and\n ``__setslice__`` fall through to ``__getitem__`` or ``__setitem__``,\n respectively, if it raised an error.\n\n- Fix the pure-Python proxy calling a wrapped ``__getattr__`` or\n ``__getattribute__`` more than once in situations where the C\n implementation only called it one time (when it raised an\n AttributeError).\n\n- Reach 100% test coverage and maintain it via automated checks.\n\n4.1.1 (2017-05-17)\n==================\n\n- Fix `issue 23 `_:\n iteration of ``collections.OrderedDict`` and its various views is\n now allowed by default on all versions of Python.\n\n- As a further fix for issue 20, iteration of ``BTree`` itself is now\n allowed by default.\n\n4.1.0 (2017-04-24)\n==================\n\n- When testing ``PURE_PYTHON`` environments under ``tox``, avoid poisoning\n the user's global wheel cache.\n\n- Drop support for Python 2.6 and 3.2.\n\n- Add support for Python 3.5 and 3.6.\n\n- Fix `issue 20 `_:\n iteration of pure-Python ``BTrees.items()``, and also creating a list from\n ``BTrees.items()`` on Python 3. The same applies for ``keys()`` and ``values()``.\n\n4.0.3 (2015-06-02)\n==================\n\n- Fix iteration over security proxies in Python 3 using the pure-Python\n implementation.\n\n4.0.2 (2015-06-02)\n==================\n\n- Fix compatibility with ``zope.proxy`` 4.1.5 under PyPy.\n\n- Fix the very first call to ``removeSecurityProxy`` returning\n incorrect results if given a proxy under PyPy.\n\n4.0.1 (2014-03-19)\n==================\n\n- Add support for Python 3.4.\n\n4.0.0 (2013-07-09)\n==================\n\n- Update ``boostrap.py`` to version 2.2.\n\n- Bugfix: ZOPE_WATCH_CHECKERS=2 used to incorrectly suppress\n unauthorized/forbidden warnings.\n\n- Bugfix: ZOPE_WATCH_CHECKERS=1 used to miss most of the checks.\n\n\n4.0.0b1 (2013-03-11)\n====================\n\n- Add support for PyPy.\n\n- Fix extension compilation on windows python 3.x\n\n\n4.0.0a5 (2013-02-28)\n====================\n\n- Undo changes from 4.0.0a4. Instead, ``zope.untrustedpython`` is only\n included during Python 2 installs.\n\n\n4.0.0a4 (2013-02-28)\n====================\n\n- Remove ``untrustedpython`` extra again, since we do not want to support\n ``zope.untrustedpython`` in ZTK 2.0. If BBB is really needed, we will create\n a 3.10.0 release.\n\n4.0.0a3 (2013-02-15)\n====================\n\n- Fix test breakage in 4.0.0a2 due to deprecation strategy.\n\n4.0.0a2 (2013-02-15)\n====================\n\n- Add back the ``untrustedpython`` extra: now pulls in\n ``zope.untrustedpython``. Restored deprecated backward-compatible imports\n for ``zope.security.untrustedpython.{builtins,interpreter,rcompile}``\n (the extra and the imports are to be removed in version 4.1).\n\n\n4.0.0a1 (2013-02-14)\n====================\n\n- Add support for Python 3.2 and 3.3.\n\n- Bring unit test coverage to 100%.\n\n- ``zope.security.untrustedpython`` moved to separate project:\n ``zope.untrustedpython``\n\n- Convert use of ``assert`` in non-test code to apprpriate error types:\n\n - Non-dict's passed to ``Checker.__init__``.\n\n- Remove dprecattion of ``zope.security.adapter.TrustedAdapterFactory``.\n Although it has been marked as deprectaed since before Zope3 3.2, current\n versions of ``zope.compoent`` still rely on it.\n\n- Convert doctests to Sphinx documentation in 'docs'.\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- Make non-doctest tests fully independent of ``zope.testing``.\n\n Two modules, ``zope.security.checker`` and ``zope.security.management``,\n register cleanups with ``zope.testing`` IFF it is importable, but the\n tests no longer rely on it.\n\n- Enable building extensions without the ``svn:external`` of the ``zope.proxy``\n headers into our ``include`` dir.\n\n- Bump ``zope.proxy`` dependency to \">= 4.1.0\" to enable compilation\n on Py3k.\n\n- Replace deprecated ``zope.component.adapts`` usage with equivalent\n ``zope.component.adapter`` decorator.\n\n- Replace deprecated ``zope.interface.classProvides`` usage with equivalent\n ``zope.interface.provider`` decorator.\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 test convenience helper ``create_interaction`` and\n ``with interaction()``.\n\n3.9.0 (2012-12-21)\n==================\n\n- Pin ``zope.proxy >= 4.1.0``\n\n- Ship with an included ``proxy.h`` header which is compatible with the\n 4.1.x version ov ``zope.proxy``.\n\n3.8.5 (2012-12-21)\n==================\n\n- Ship with an included ``proxy.h`` header which is compatible with the\n supported versions of ``zope.proxy``.\n\n3.8.4 (2012-12-20)\n==================\n\n- Pin ``zope.proxy >= 3.4.2, <4.1dev``\n\n3.8.3 (2011-09-24)\n==================\n\n- Fix a regression introduced in 3.8.1: ``zope.location``\\'s LocationProxy\n did not get a security checker if ``zope.security.decorator`` was not\n imported manually. Now ``zope.security.decorator`` is imported in\n ``zope.security.proxy`` without re-introducing the circular import fixed in\n 3.8.1.\n\n3.8.2 (2011-05-24)\n==================\n\n- Fix a test that failed on Python 2.7.\n\n\n3.8.1 (2011-05-03)\n==================\n\n- Fix circular import beween ``zope.security.decorator`` and\n ``zope.security.proxy`` which led to an ``ImportError`` when only\n importing ``zope.security.decorator``.\n\n\n3.8.0 (2010-12-14)\n==================\n\n- Add tests for our own ``configure.zcml``.\n\n- Add ``zcml`` extra dependencies; run related tests only if\n ``zope.configuration`` is available.\n\n- Run tests related to the ``untrustedpython`` functionality only if\n ``RestrictedPython`` is available.\n\n\n3.7.3 (2010-04-30)\n==================\n\n- Prefer the standard library's ``doctest`` module to the one from\n ``zope.testing``.\n\n- Ensure ``PermissionIdsVocabulary`` directly provides ``IVocabularyFactory``,\n even though it might be unnecessary because ``IVocabularyFactory`` is\n provided in ZCML.\n\n- Remove the dependency on the zope.exceptions package: zope.security.checker\n now imports ``DuplicationError`` from zope.exceptions if available, otherwise\n it defines a package-specific ``DuplicationError`` class which inherits from\n Exception.\n\n\n3.7.2 (2009-11-10)\n==================\n\n- Add compatibility with Python 2.6 abstract base classes.\n\n\n3.7.1 (2009-08-13)\n==================\n\n- Fix for LP bug 181833 (from Gustavo Niemeyer). Before \"visiting\" a\n sub-object, a check should be made to ensure the object is still valid.\n Because garbage collection may involve loops, if you garbage collect an\n object, it is possible that the actions done on this object may modify the\n state of other objects. This may cause another round of garbage collection,\n eventually generating a segfault (see LP bug). The Py_VISIT macro does the\n necessary checks, so it is used instead of the previous code.\n\n\n3.7.0 (2009-05-13)\n==================\n\n- Make ``pytz`` a soft dependency: the checker for ``pytz.UTC`` is\n created / tested only if the package is already present. Run\n ``bin/test_pytz`` to run the tests with ``pytz`` on the path.\n\n\n3.6.3 (2009-03-23)\n==================\n\n- Ensure that simple zope.schema's ``VocabularyRegistry`` is used for\n ``PermissionVocabulary`` tests, because it's replaced implicitly in\n environments with ``zope.app.schema`` installed that makes that tests\n fail.\n\n- Fix a bug in ``DecoratedSecurityCheckerDescriptor`` which made\n security-wrapping location proxied exception instances throw\n exceptions on Python 2.5.\n See https://bugs.launchpad.net/zope3/+bug/251848\n\n\n3.6.2 (2009-03-14)\n==================\n\n- Add ``zope.i18nmessageid.Message`` to non-proxied basic types. It's okay,\n because messages are immutable. Done previously by ``zope.app.security``.\n\n- Add ``__name__`` and ``__parent__`` attributes to list of available by\n default. Done previously by ``zope.app.security``.\n\n- Move ``PermissionsVocabulary`` and ``PermissionIdsVocabulary`` vocabularies\n to the ``zope.security.permission`` module from the ``zope.app.security``\n package.\n\n- Add zcml permission definitions for most common and useful permissions,\n like ``zope.View`` and ``zope.ManageContent``, as well as for the special\n ``zope.Public`` permission. They are placed in a separate\n ``permissions.zcml`` file, so it can be easily excluded/redefined. They are\n selected part of permissions moved from ``zope.app.security`` and used by\n many ``zope.*`` packages.\n\n- Add ``addCheckerPublic`` helper function in ``zope.security.testing`` module\n that registers the \"zope.Public\" permission as an IPermission utility.\n\n- Add security declarations for the ``zope.security.permisson.Permission``\n class.\n\n- Improve test coverage.\n\n\n3.6.1 (2009-03-10)\n==================\n\n- Use ``from`` imports instead of ``zope.deferred`` to avoid circular\n import problems, thus drop dependency on ``zope.deferredimport``.\n\n- Raise ``NoInteraction`` when ``zope.security.checkPermission`` is called\n without interaction being active (LP #301565).\n\n- Don't define security checkers for deprecated set types from the\n \"sets\" module on Python 2.6. It's discouraged to use them and\n ``set`` and ``frozenset`` built-in types should be used instead.\n\n- Change package's mailng list address to zope-dev at zope.org as\n zope3-dev at zope.org is now retired.\n\n- Remove old zpkg-related files.\n\n\n3.6.0 (2009-01-31)\n==================\n\n- Install decorated security checker support on ``LocationProxy`` from the\n outside.\n\n- Add support to bootstrap on Jython.\n\n- Move the ``protectclass`` module from ``zope.app.security`` to this\n package to reduce the number of dependencies on ``zope.app.security``.\n\n- Move the ```` directive implementation from ``zope.app.security``\n to this package.\n\n- Move the ```` directive implementation from ``zope.app.component``\n to this package.\n\n\n3.5.2 (2008-07-27)\n==================\n\n- Make C code compatible with Python 2.5 on 64bit architectures.\n\n\n3.5.1 (2008-06-04)\n==================\n\n- Add ``frozenset``, ``set``, ``reversed``, and ``sorted`` to the list of\n safe builtins.\n\n\n3.5.0 (2008-03-05)\n==================\n\n- Changed title for ``zope.security.management.system_user`` to be more\n presentable.\n\n\n3.4.3 - (2009/11/26)\n====================\n\n- Backport a fix made by Gary Poster to the 3.4 branch:\n Fix for LP bug 181833 (from Gustavo Niemeyer). Before \"visiting\" a\n sub-object, a check should be made to ensure the object is still valid.\n Because garbage collection may involve loops, if you garbage collect an\n object, it is possible that the actions done on this object may modify the\n state of other objects. This may cause another round of garbage collection,\n eventually generating a segfault (see LP bug). The ``Py_VISIT`` macro does\n the necessary checks, so it is used instead of the previous code.\n\n\n3.4.2 - (2009/03/23)\n====================\n\n- Add dependency on ``zope.thread`` to setup.py; without it, the tests were\n failing.\n\n- Backport a fix made by Albertas Agejevas to the 3.4 branch. He\n fixed a bug in DecoratedSecurityCheckerDescriptor which made\n security-wrapping location proxied exception instances throw\n exceptions on Python 2.5. See\n https://bugs.launchpad.net/zope3/+bug/251848\n\n\n3.4.1 - 2008/07/27\n==================\n\n- Make C code compatible with Python 2.5 on 64bit architectures.\n\n\n3.4.0 (2007-10-02)\n==================\n\n- Update meta-data.\n\n\n3.4.0b5 (2007-08-15)\n====================\n\n- Fix a circular import in the C implementation.\n\n\n3.4.0b4 (2007-08-14)\n====================\n\n- Improve ugly/brittle ID of ``zope.security.management.system_user``.\n\n\n3.4.0b3 (2007-08-14)\n====================\n\n- Add support for Python 2.5.\n\n- Bug: ``zope.security.management.system_user`` wasn't a valid principal\n (didn't provide IPrincipal).\n\n- Bug: Fix inclusion of doctest to use the doctest module from\n ``zope.testing``. Now tests can be run multiple times without\n breaking. (#98250)\n\n\n3.4.0b2 (2007-06-15)\n====================\n\n- Bug: Remove stack extraction in ``newInteraction``. When using eggs this is\n an extremly expensive function. The publisher is now more than 10 times\n faster when using eggs and about twice as fast with a zope trunk checkout.\n\n\n3.4.0b1\n=======\n\n- Temporarily fixed the hidden (and accidental) dependency on zope.testing to\n become optional.\n\nNote: The releases between 3.2.0 and 3.4.0b1 where not tracked as an\nindividual package and have been documented in the Zope 3 changelog.\n\n\n3.2.0 (2006-01-05)\n==================\n\n- Corresponds to the verison of the ``zope.security`` package shipped as part\n of the Zope 3.2.0 release.\n\n- Remove deprecated helper functions, ``proxy.trustedRemoveSecurityProxy``\n and ``proxy.getProxiedObject``.\n\n- Make handling of ``management.{end,restore}Interaction`` more careful w.r.t.\n edge cases.\n\n- Make behavior of ``canWrite`` consistent with ``canAccess``:\n if ``canAccess`` does not raise ``ForbiddenAttribute``, then neither will\n ``canWrite``. See: http://www.zope.org/Collectors/Zope3-dev/506\n\n- Code style / documentation / test fixes.\n\n\n3.1.0 (2005-10-03)\n==================\n\n- Add support for use of the new Python 2.4 datatypes, ``set`` and\n ``frozenset``, within checked code.\n\n- Make the C security proxy depend on the ``proxy.h`` header from the\n ``zope.proxy`` package.\n\n- XXX: the spelling of the ``#include`` is bizarre! It seems to be related to\n ``zpkg``-based builds, and should likely be revisited. For the moment, I have\n linked in the ``zope.proxy`` package into our own ``include`` directory. See\n the subversion checkin: http://svn.zope.org/Zope3/?rev=37882&view=rev\n\n- Update checker to avoid re-proxying objects which have and explicit\n ``__Security_checker__`` assigned.\n\n- Corresponds to the verison of the ``zope.security`` package shipped as part of\n the Zope 3.1.0 release.\n\n- Clarify contract of ``IChecker`` to indicate that its ``check*`` methods may\n raise only ``Forbidden`` or ``Unauthorized`` exceptions.\n\n- Add interfaces, (``IPrincipal``, ``IGroupAwarePrincipal``, ``IGroup``, and\n ``IPermission``) specifying contracts of components in the security framework.\n\n- Code style / documentation / test fixes.\n\n\n3.0.0 (2004-11-07)\n==================\n\n- Corresponds to the version of the ``zope.security`` package shipped as part\n of the Zope X3.0.0 release.", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/zopefoundation/zope.security", "keywords": "zope security policy principal permission", "license": "ZPL 2.1", "maintainer": "", "maintainer_email": "", "name": "zope.security", "package_url": "https://pypi.org/project/zope.security/", "platform": "", "project_url": "https://pypi.org/project/zope.security/", "project_urls": { "Homepage": "http://github.com/zopefoundation/zope.security" }, "release_url": "https://pypi.org/project/zope.security/4.3.1/", "requires_dist": null, "requires_python": "", "summary": "Zope Security Framework", "version": "4.3.1" }, "last_serial": 4656589, "releases": { "3.4.0": [ { "comment_text": "built on Windows-XP", "digests": { "md5": "1cfed1ea4a890ed8e665ef5eb96c76d7", "sha256": "c0fb9c30f329423f7ed0703c629aa18735085556d484e78619992a6ec5748b6e" }, "downloads": -1, "filename": "zope.security-3.4.0-py2.4-win32.egg", "has_sig": false, "md5_digest": "1cfed1ea4a890ed8e665ef5eb96c76d7", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 158607, "upload_time": "2008-05-27T13:53:59", "url": "https://files.pythonhosted.org/packages/45/4e/c7af56ee09a7570846cd397b23764a779207341e91ec0b0fd65d314481b7/zope.security-3.4.0-py2.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "bd20773b4f405d68a061fbe283abab43", "sha256": "52a31019c35ec42f2a937b3967fd8217b7476c508fc28b286bf0eda78b458821" }, "downloads": -1, "filename": "zope.security-3.4.0-py2.5-win32.egg", "has_sig": false, "md5_digest": "bd20773b4f405d68a061fbe283abab43", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 157946, "upload_time": "2008-05-27T13:54:09", "url": "https://files.pythonhosted.org/packages/8a/b3/5ad3a079ec5de64ca32bb8b7ceecc4630e4c4c9102028aa3318b855e7139/zope.security-3.4.0-py2.5-win32.egg" }, { "comment_text": "", "digests": { "md5": "8470f8a60c8ddd1bddee7661fa8ed67e", "sha256": "e612151dad249a9bf5ff19a058866036133ff798bc5959eeacacc58f1b806fa6" }, "downloads": -1, "filename": "zope.security-3.4.0-py2.6-win32.egg", "has_sig": false, "md5_digest": "8470f8a60c8ddd1bddee7661fa8ed67e", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 162265, "upload_time": "2010-06-18T05:02:55", "url": "https://files.pythonhosted.org/packages/f4/7d/5b821f9b92f5c3d5b70ebb23382acb585362f63a1716c08fd30d18468f3b/zope.security-3.4.0-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "14127ccb4a2e1eee84819ceef2dfcd34", "sha256": "e1487f4e8c5822cfb0127e6bfc51ab50def702795c193fe84235c76958f361d5" }, "downloads": -1, "filename": "zope.security-3.4.0-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "14127ccb4a2e1eee84819ceef2dfcd34", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 162496, "upload_time": "2010-06-18T05:03:17", "url": "https://files.pythonhosted.org/packages/fa/ce/162bddef12a5a132dc90d8a7fdcb5cd1f2d1cee5a594d153995ebfbbfc48/zope.security-3.4.0-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "270e48ec9456022d3bb939b480190d8f", "sha256": "3d2f509317ef9674b88063cfb265ffafac05fd05b726eebcdfd6973d568753bb" }, "downloads": -1, "filename": "zope.security-3.4.0.tar.gz", "has_sig": false, "md5_digest": "270e48ec9456022d3bb939b480190d8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80351, "upload_time": "2007-10-03T03:51:50", "url": "https://files.pythonhosted.org/packages/f2/0c/1d3c0ac0155a465b710990e22e8758826fcfa125d03bdc417e395fba1034/zope.security-3.4.0.tar.gz" } ], "3.4.0b5": [ { "comment_text": "", "digests": { "md5": "62e6824741fd6db191c6352bf38eea47", "sha256": "af559be3f2b8e77bca88bc729368b38371163d796fc89ea4b74ce3480498a6e8" }, "downloads": -1, "filename": "zope.security-3.4.0b5-py2.4-win32.egg", "has_sig": false, "md5_digest": "62e6824741fd6db191c6352bf38eea47", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 153025, "upload_time": "2007-08-16T12:10:09", "url": "https://files.pythonhosted.org/packages/18/76/6935c32a06f27fc9af0f9bfac3bf0b6561eda0e810f8f0e982d6cc2a3852/zope.security-3.4.0b5-py2.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "620b27fd561888d231926f3d08c5fd91", "sha256": "3d9d1eb580a4d07e4cdcaa55f05ab907eb476dc26348a85c9cf95d88f66da124" }, "downloads": -1, "filename": "zope.security-3.4.0b5-py2.5-win32.egg", "has_sig": false, "md5_digest": "620b27fd561888d231926f3d08c5fd91", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 153001, "upload_time": "2010-06-18T05:03:51", "url": "https://files.pythonhosted.org/packages/0c/7c/b9e1c2179c775420f6b6b043020b1f3006e6db96a7083c589e8108ff5be2/zope.security-3.4.0b5-py2.5-win32.egg" }, { "comment_text": "", "digests": { "md5": "f53a163fb009439e1397ef2a6392f11a", "sha256": "1e1e024a04b474b5fa9436b6c38039f35c52f56091c79e25b9410d0650d02182" }, "downloads": -1, "filename": "zope.security-3.4.0b5-py2.6-win32.egg", "has_sig": false, "md5_digest": "f53a163fb009439e1397ef2a6392f11a", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 153849, "upload_time": "2010-06-18T05:04:11", "url": "https://files.pythonhosted.org/packages/fd/af/f314263808a2afc1753430b50345efd0e5c636151415faea9f66f57bec85/zope.security-3.4.0b5-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "feca1bff8820a982f1dcbb918df6b319", "sha256": "c411e323398f5d555f2e0dfe8220ac9cf63babc3933dfb92f2173112f5701af1" }, "downloads": -1, "filename": "zope.security-3.4.0b5-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "feca1bff8820a982f1dcbb918df6b319", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 154084, "upload_time": "2010-06-18T05:04:29", "url": "https://files.pythonhosted.org/packages/d2/f3/bade9b3d0ab975665300f3e96d081d7bb0c19536c9ba8b804109fec0db75/zope.security-3.4.0b5-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "a21227b3686ee3820f870090ad034de2", "sha256": "51a96aecd169c308d85fadbee2b4b170caabd7ad7762d9170449d130a3ae7ce4" }, "downloads": -1, "filename": "zope.security-3.4.0b5.tar.gz", "has_sig": false, "md5_digest": "a21227b3686ee3820f870090ad034de2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66755, "upload_time": "2007-08-16T11:57:11", "url": "https://files.pythonhosted.org/packages/62/ef/b9a43524ae6884cdb3a8ba524424a2c5bdf35ceea763f5dc213d03e4253c/zope.security-3.4.0b5.tar.gz" } ], "3.4.1": [ { "comment_text": "built on Windows-XP", "digests": { "md5": "35f6fec723d0093d325ef6c0d0fc5103", "sha256": "955b26fbb1297e761657291046145be850ca7ac1a0050dcff812bcf2d402ed1b" }, "downloads": -1, "filename": "zope.security-3.4.1-py2.4-win32.egg", "has_sig": false, "md5_digest": "35f6fec723d0093d325ef6c0d0fc5103", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 161423, "upload_time": "2008-07-28T23:53:03", "url": "https://files.pythonhosted.org/packages/4d/34/b235ea978876ab2937fc84ae71620bcf7c63bde5bad9c334ba0c4931c082/zope.security-3.4.1-py2.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "2d1230ff3c67daf342e725d56c689506", "sha256": "a00675c3aa6b97e0d4dacbbb8cce5d1a5adf413261f749a375b7dc562707794e" }, "downloads": -1, "filename": "zope.security-3.4.1-py2.5-win32.egg", "has_sig": false, "md5_digest": "2d1230ff3c67daf342e725d56c689506", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 160428, "upload_time": "2008-07-28T23:26:32", "url": "https://files.pythonhosted.org/packages/31/91/55fd99cdbfe1b066569e6d2447b18fe0d5bca858a4f6affde0c50346fa6a/zope.security-3.4.1-py2.5-win32.egg" }, { "comment_text": "", "digests": { "md5": "ab27189d4b17af18b8319452fa744a3f", "sha256": "e7bcf79e1a01a210b2992d1bc160c1c9d895595f5516828d6046c7fa27191027" }, "downloads": -1, "filename": "zope.security-3.4.1-py2.6-win32.egg", "has_sig": false, "md5_digest": "ab27189d4b17af18b8319452fa744a3f", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 158746, "upload_time": "2009-09-15T12:10:01", "url": "https://files.pythonhosted.org/packages/7d/4f/4f328e2a952f85dd7b6bd8ab67c94fe126de67213643477c91bae1f7a524/zope.security-3.4.1-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "c16410fd0325cce643e798bc70b5d57c", "sha256": "0127690152f10818c57b2be4f68197d3e5ff58839208c76f3ae8e4344405e6c1" }, "downloads": -1, "filename": "zope.security-3.4.1-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "c16410fd0325cce643e798bc70b5d57c", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 162520, "upload_time": "2010-06-18T05:04:49", "url": "https://files.pythonhosted.org/packages/77/91/ff47fb793ad53d7c8834d891cb7d0a9be9b4e99a829cea93d7d73ee2e6f8/zope.security-3.4.1-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "dd5f06f6a3c31b9cf4a0e1648699ead7", "sha256": "94ec46039430796c065ff1d3e6f502b7a1b1319739486fd25922d1f9caacfc88" }, "downloads": -1, "filename": "zope.security-3.4.1.tar.gz", "has_sig": false, "md5_digest": "dd5f06f6a3c31b9cf4a0e1648699ead7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 84795, "upload_time": "2008-08-08T20:54:10", "url": "https://files.pythonhosted.org/packages/9c/a2/a3f8473e6348b8617678c7ee0d590360cd1fc89d666d070b460fa3aa1d46/zope.security-3.4.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "0729b8fb4a59d39818f97cba1d353024", "sha256": "de148c1729b2f9f1242d3837e2d4a276d16d019ac8eb24fa37bc0c8e8f0525aa" }, "downloads": -1, "filename": "zope.security-3.4.1.win32-py2.6.exe", "has_sig": false, "md5_digest": "0729b8fb4a59d39818f97cba1d353024", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 321563, "upload_time": "2013-03-07T09:11:14", "url": "https://files.pythonhosted.org/packages/11/54/5de8d9e36004e429bb10f5375b06aad062d15e9d960eafff26aea499c835/zope.security-3.4.1.win32-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "28db2a6ef63cc122d0f27b8a73f83c7d", "sha256": "03a54611b8acd81a334afc167f24023b64c5546bbb00f3f2249398be4d1fd53d" }, "downloads": -1, "filename": "zope.security-3.4.1.win-amd64-py2.6.exe", "has_sig": false, "md5_digest": "28db2a6ef63cc122d0f27b8a73f83c7d", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 349282, "upload_time": "2013-03-07T09:11:30", "url": "https://files.pythonhosted.org/packages/77/32/a07df1cc635d381acc0b82c7c4fec45d48a44965b7a2378a2f7c3dcbe3c4/zope.security-3.4.1.win-amd64-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "2612dc0c75a372327af61558521dee64", "sha256": "1f3b091e807bf6f0be28fedbfccd882ded210dd894de4dcd7d95015b3a969ff2" }, "downloads": -1, "filename": "zope.security-3.4.1.zip", "has_sig": false, "md5_digest": "2612dc0c75a372327af61558521dee64", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 116807, "upload_time": "2008-08-15T12:37:47", "url": "https://files.pythonhosted.org/packages/f9/9e/347ab12ba37f472f4e3592326c9388c4c9431f49f63507011ed00dcfa58e/zope.security-3.4.1.zip" } ], "3.4.2": [ { "comment_text": "built on Windows-2003Server", "digests": { "md5": "1717829c8c3b9224d3d6b2a4e1486e3d", "sha256": "2072f78dd557270240b6995e17019dc3d2e9ef50d1b80518eb07d2de6670b50e" }, "downloads": -1, "filename": "zope.security-3.4.2-py2.4-win32.egg", "has_sig": false, "md5_digest": "1717829c8c3b9224d3d6b2a4e1486e3d", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 162635, "upload_time": "2010-06-18T05:05:09", "url": "https://files.pythonhosted.org/packages/3e/19/45330382e442e6726e32e0daa2ae90548c605574b3784e051a3c18dbc28f/zope.security-3.4.2-py2.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "d5446a636df33ec79cd8d3294c69f561", "sha256": "148757fef31c88afcb5280f87d73daf88f4f819689af7549aebd447ae8cb4ff4" }, "downloads": -1, "filename": "zope.security-3.4.2-py2.5-win32.egg", "has_sig": false, "md5_digest": "d5446a636df33ec79cd8d3294c69f561", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 161793, "upload_time": "2010-06-18T05:05:32", "url": "https://files.pythonhosted.org/packages/c3/82/fb934a2725fac1092d6badd58107823d9bd45a07d0cc1f1dc453f38e5989/zope.security-3.4.2-py2.5-win32.egg" }, { "comment_text": "", "digests": { "md5": "58aed000ab2363c71a8c648ba63c602d", "sha256": "707559a1c7acc1767379f9b3051440045cb230698df8d0153dff50178db14e2c" }, "downloads": -1, "filename": "zope.security-3.4.2-py2.6-win32.egg", "has_sig": false, "md5_digest": "58aed000ab2363c71a8c648ba63c602d", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 162722, "upload_time": "2010-06-18T05:05:56", "url": "https://files.pythonhosted.org/packages/48/18/8d5eb20334165c1e3617a3999b73c5bbe73af70be52f9917f2f92064ab79/zope.security-3.4.2-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "6d9f37d97c61eb4d2793460cf8d21dd7", "sha256": "b33432c17b5e8d930292bb8364668ccc7dd93a10c5483bac85fd5d67bd77d9df" }, "downloads": -1, "filename": "zope.security-3.4.2-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "6d9f37d97c61eb4d2793460cf8d21dd7", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 162949, "upload_time": "2010-06-18T05:06:17", "url": "https://files.pythonhosted.org/packages/2a/f2/76e9f2f52dc63ba2e458693c1806351e9e47363f28d9dc0f4b63d4fdf52f/zope.security-3.4.2-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "e08756ab1cc57c4779928cf4e3acb3ad", "sha256": "79db8d0239c90a4c9c3859d6e45c22a53ac4b4d007723d7926ed30bd843d42f6" }, "downloads": -1, "filename": "zope.security-3.4.2.tar.gz", "has_sig": false, "md5_digest": "e08756ab1cc57c4779928cf4e3acb3ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81566, "upload_time": "2009-03-23T14:06:57", "url": "https://files.pythonhosted.org/packages/a1/42/3a31544cfface0119ae914be322c15beac7d3daf43567a5cccd2ce0dd55b/zope.security-3.4.2.tar.gz" } ], "3.4.3": [ { "comment_text": "built on Windows-2003Server", "digests": { "md5": "a9f68c5a144e366210872a3a8bc4641a", "sha256": "45a0c2a678ca439dbcc5e77a95d78d2e36bd3bb38c9d6c43f864ddafff1a5a3c" }, "downloads": -1, "filename": "zope.security-3.4.3-py2.4-win32.egg", "has_sig": false, "md5_digest": "a9f68c5a144e366210872a3a8bc4641a", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 162962, "upload_time": "2010-06-18T05:06:33", "url": "https://files.pythonhosted.org/packages/b2/89/bce299b00cafe0744d3f86b41266583b6ed14a1873bde2963ed3402ea482/zope.security-3.4.3-py2.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "98e6c7caa2618c816c6642cbb6e8c53e", "sha256": "0a79cc1db75b04cf49bb796de19a5e90ccdf6a4659bc2eccc5b6f4a39798cbe6" }, "downloads": -1, "filename": "zope.security-3.4.3-py2.5-win32.egg", "has_sig": false, "md5_digest": "98e6c7caa2618c816c6642cbb6e8c53e", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 161249, "upload_time": "2010-04-24T16:29:54", "url": "https://files.pythonhosted.org/packages/55/98/61255d6f11c51a9c407fad83ef011fbfa7a9ee60eb0dc03ac012f343d0cc/zope.security-3.4.3-py2.5-win32.egg" }, { "comment_text": "", "digests": { "md5": "767ba3e2590fd94111010f6fbe6e5b9c", "sha256": "09240967f8b29b9bc1a1756cc7081452b689f2a03f1619fdab285e0a1f7381fd" }, "downloads": -1, "filename": "zope.security-3.4.3-py2.6-win32.egg", "has_sig": false, "md5_digest": "767ba3e2590fd94111010f6fbe6e5b9c", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 163018, "upload_time": "2010-06-18T05:07:00", "url": "https://files.pythonhosted.org/packages/95/b6/bec0c642775f84854bde483e212712dfaae010d647e647a80ef361dbce1d/zope.security-3.4.3-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "773aaf3b202672744b6829167facfa1b", "sha256": "1fec04951d7e9408ebb88cbaeb931d0b536cc8704373f28a514fc537295b50b1" }, "downloads": -1, "filename": "zope.security-3.4.3-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "773aaf3b202672744b6829167facfa1b", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 163238, "upload_time": "2010-06-18T05:07:17", "url": "https://files.pythonhosted.org/packages/14/96/3130fde1567b4d10a407d6a5a6a9317e75a02406479d7b3242a30ac547db/zope.security-3.4.3-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "b4ca5d95401d301de8428d7e317e05c6", "sha256": "1aecd28ddf332eb7dc9105367c4d4fa238a6cebd09345ca7fadeadcb13efeb86" }, "downloads": -1, "filename": "zope.security-3.4.3.tar.gz", "has_sig": false, "md5_digest": "b4ca5d95401d301de8428d7e317e05c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86409, "upload_time": "2009-11-26T15:28:23", "url": "https://files.pythonhosted.org/packages/95/df/e7e964b6b4d28e3c8797743cdf4d7f4810d1347e21e46c45aaf9444a65bf/zope.security-3.4.3.tar.gz" } ], "3.5.0": [ { "comment_text": "built on Windows-XP", "digests": { "md5": "f5cbed52692556b38cae442fd3030a8a", "sha256": "97dccb224e736b4c63aac5aa70d5c425bce833dd0527e7677c936f0153b318ea" }, "downloads": -1, "filename": "zope.security-3.5.0-py2.4-win32.egg", "has_sig": false, "md5_digest": "f5cbed52692556b38cae442fd3030a8a", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 158669, "upload_time": "2008-05-27T13:55:43", "url": "https://files.pythonhosted.org/packages/41/8a/73936de0df5f29905ed72f3aa9fc5cd0f2f023b64879de76b79120a47353/zope.security-3.5.0-py2.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "ba79d47b3792a24765df7bb0ef0d75da", "sha256": "ed532a7b06fd04c08d7e380a19b167ab1d9705624bab88c6d0aa417c325555f0" }, "downloads": -1, "filename": "zope.security-3.5.0-py2.5-win32.egg", "has_sig": false, "md5_digest": "ba79d47b3792a24765df7bb0ef0d75da", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 158033, "upload_time": "2008-05-27T13:55:51", "url": "https://files.pythonhosted.org/packages/13/fb/1344d0bdc879450164f74b10b9de1cd965817d9dabe9b64964a5a6804cd2/zope.security-3.5.0-py2.5-win32.egg" }, { "comment_text": "", "digests": { "md5": "7cc6a9800cc7e2d942448a707f740ffc", "sha256": "d62ae3229253054d146e01f50e9c0db32e031c996637e795c72769caaba1d901" }, "downloads": -1, "filename": "zope.security-3.5.0-py2.6-win32.egg", "has_sig": false, "md5_digest": "7cc6a9800cc7e2d942448a707f740ffc", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 162235, "upload_time": "2010-06-18T05:07:41", "url": "https://files.pythonhosted.org/packages/f1/56/c721ad59ccdc09d959cc6d1a930f7529f150e8e1c41ae4b372cf501a59a5/zope.security-3.5.0-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "0067e25f32d34146f13080b04b0e6bdc", "sha256": "48b2a511b9fb3ea382d019740ede2df6b20b607b963cd0aa0a8bff16c332f61b" }, "downloads": -1, "filename": "zope.security-3.5.0-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "0067e25f32d34146f13080b04b0e6bdc", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 162472, "upload_time": "2010-06-18T05:08:00", "url": "https://files.pythonhosted.org/packages/7f/09/4d6750827bc77031b851774d44c047afd229c3670a4c609222191f76cf42/zope.security-3.5.0-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "9de30f16b66dd6ae7e59b3c9f611617f", "sha256": "8ae4c6a3c422cf76066a4d9e4f5bb44695d70e3dc873b0c5fe1b97a58b77ae5c" }, "downloads": -1, "filename": "zope.security-3.5.0.tar.gz", "has_sig": false, "md5_digest": "9de30f16b66dd6ae7e59b3c9f611617f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80498, "upload_time": "2008-03-06T00:10:26", "url": "https://files.pythonhosted.org/packages/b6/92/b46a7fca91f83b114c21472eab04cdede997f33979967efa0c3c01171aee/zope.security-3.5.0.tar.gz" } ], "3.5.1": [ { "comment_text": "built on Windows-2003Server", "digests": { "md5": "0aee5014bb33059bd7f2ecbc6088c6bc", "sha256": "1d73e07d0cc17879f117bd2dd571b5077cca387457142f2b101d38323c17c0f2" }, "downloads": -1, "filename": "zope.security-3.5.1-py2.4-win32.egg", "has_sig": false, "md5_digest": "0aee5014bb33059bd7f2ecbc6088c6bc", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 162201, "upload_time": "2010-06-18T05:08:17", "url": "https://files.pythonhosted.org/packages/ab/5d/6219f57cc5a34c0603ae5ca58bbbe3997d99c123de3eb7ef84c199fa9d7b/zope.security-3.5.1-py2.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "39ed6fcea90dbf0e29b38b75c1432b0f", "sha256": "1cc0f047e90004e6e44aa93668a61256868e238a50ab83d6d575507a95c4fc23" }, "downloads": -1, "filename": "zope.security-3.5.1-py2.5-win32.egg", "has_sig": false, "md5_digest": "39ed6fcea90dbf0e29b38b75c1432b0f", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 160634, "upload_time": "2008-07-11T21:09:26", "url": "https://files.pythonhosted.org/packages/cd/a6/4dece57853ece485159148c2506c0b931032e2db81696700b276ea997b7b/zope.security-3.5.1-py2.5-win32.egg" }, { "comment_text": "", "digests": { "md5": "8140a8148314b427dce30761c2264db9", "sha256": "b3d5ed36b9fd1c423eeee7c6e2b6c7216f1efd157025e68b17b18ea27a25904d" }, "downloads": -1, "filename": "zope.security-3.5.1-py2.6-win32.egg", "has_sig": false, "md5_digest": "8140a8148314b427dce30761c2264db9", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 162287, "upload_time": "2010-06-18T05:08:38", "url": "https://files.pythonhosted.org/packages/2c/87/b191e7a63f84fbc28e00f68cee64704ca9586cc47e498f3ceaeb529af0a3/zope.security-3.5.1-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "9676394d98f673c8196ae00fb8aeba02", "sha256": "def9b85a3d367c49955c9a4bea507b7989e5acacb694e96d1fc7464c46f1251a" }, "downloads": -1, "filename": "zope.security-3.5.1-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "9676394d98f673c8196ae00fb8aeba02", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 162524, "upload_time": "2010-06-18T05:08:59", "url": "https://files.pythonhosted.org/packages/26/d4/0e0e942fa3349f9d39eff3c97f627fb45de34e76fe1a38d03d7e502443da/zope.security-3.5.1-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "61fd4d95b931377c1a7f8a8b32fdbc18", "sha256": "4625b1e315e230f5373773e2ef872574327e7c1181f4868c7366aee616b05d6b" }, "downloads": -1, "filename": "zope.security-3.5.1.tar.gz", "has_sig": false, "md5_digest": "61fd4d95b931377c1a7f8a8b32fdbc18", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80629, "upload_time": "2008-06-05T01:01:36", "url": "https://files.pythonhosted.org/packages/b4/47/62a64bb9ee6c434e6fcce9abadd7a5de6f3ef1fb3436cded865af6fbc7bb/zope.security-3.5.1.tar.gz" } ], "3.5.2": [ { "comment_text": "built on Windows-XP", "digests": { "md5": "046c194fd9b08f573dd9e06d6d2d5c0e", "sha256": "3d41b760039c9f516277c369bc400920db7ba9f6cfbea86c15aef749782816d0" }, "downloads": -1, "filename": "zope.security-3.5.2-py2.4-win32.egg", "has_sig": false, "md5_digest": "046c194fd9b08f573dd9e06d6d2d5c0e", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 161498, "upload_time": "2008-07-28T23:57:21", "url": "https://files.pythonhosted.org/packages/40/70/9e8cbc508de4065e5903634f5886ba64c799720db6775c335342a33188f2/zope.security-3.5.2-py2.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "cf7436704913715455d590460a852609", "sha256": "4592d2e7da8c563c23a26530d776a3d595f80f8fa6bb74c6997dfb0855f0f337" }, "downloads": -1, "filename": "zope.security-3.5.2-py2.5-win32.egg", "has_sig": false, "md5_digest": "cf7436704913715455d590460a852609", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 160508, "upload_time": "2008-07-28T23:43:19", "url": "https://files.pythonhosted.org/packages/0c/24/d3d0fb048c6dc842bd8a5e5c812a46600cfc79d268173c224b095ce0e77e/zope.security-3.5.2-py2.5-win32.egg" }, { "comment_text": "", "digests": { "md5": "fd0a8b295753046e1cf2f3aaea72b8a8", "sha256": "921e0db587a0ee5d21893813d94c71ae7f15f3cc3f012381d6e92169efb7d6bb" }, "downloads": -1, "filename": "zope.security-3.5.2-py2.6-win32.egg", "has_sig": false, "md5_digest": "fd0a8b295753046e1cf2f3aaea72b8a8", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 162363, "upload_time": "2010-06-18T05:09:20", "url": "https://files.pythonhosted.org/packages/52/65/48d38c6323b5effd02686bdab1884149ecad8de4dcb288900b63dbc49b56/zope.security-3.5.2-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "1b8cebbe2178233e60de33f61549f2f2", "sha256": "e1e07557f9e5459ec0b6bd022417b39a04af74337e4c3c2f7661a0e782778d6c" }, "downloads": -1, "filename": "zope.security-3.5.2-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "1b8cebbe2178233e60de33f61549f2f2", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 162590, "upload_time": "2010-06-18T05:09:41", "url": "https://files.pythonhosted.org/packages/67/88/ba080afa7827709eeea44673949dfe33e6d1729e2cad1a74b517ef0b9b15/zope.security-3.5.2-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "103a7d1a66018735d87a51fe0b645972", "sha256": "052d93e96eaae1bf7dabd8bd0248dfb216eb683a27f53d4a74ece34e6a12cbb5" }, "downloads": -1, "filename": "zope.security-3.5.2.win32-py2.6.exe", "has_sig": false, "md5_digest": "103a7d1a66018735d87a51fe0b645972", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 321909, "upload_time": "2013-03-07T09:11:53", "url": "https://files.pythonhosted.org/packages/f8/fa/5b974cc33be5683bb24875bf01081e5efbde84a5247ca13b0793a4f507f9/zope.security-3.5.2.win32-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "029c4392385032c32e0f1c755ebe743d", "sha256": "8c1870951aace11fdd518f4acf5869ff4bcb73a8c95aa3c3da8df212e7bc9d87" }, "downloads": -1, "filename": "zope.security-3.5.2.win-amd64-py2.6.exe", "has_sig": false, "md5_digest": "029c4392385032c32e0f1c755ebe743d", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 349626, "upload_time": "2013-03-07T09:12:11", "url": "https://files.pythonhosted.org/packages/47/db/96f827939927f56614e26ac4157613b550f0efbc17b5a7949928c9d08aff/zope.security-3.5.2.win-amd64-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "ced8d77b5863ff564ad2f6914fd118df", "sha256": "7acb944037633eb645c7ea87398bcc0e9e36f0521ab241a135d54bb72e644d22" }, "downloads": -1, "filename": "zope.security-3.5.2.zip", "has_sig": false, "md5_digest": "ced8d77b5863ff564ad2f6914fd118df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 117800, "upload_time": "2008-07-28T23:43:12", "url": "https://files.pythonhosted.org/packages/16/cd/5043caf5bab1fa77fe4a1c9414c80daf74ad33b00307cf25271313a0c629/zope.security-3.5.2.zip" } ], "3.6.0": [ { "comment_text": "built on Windows-XP", "digests": { "md5": "88c5b2d688d018d4ef38f58ef61b07fb", "sha256": "a98ef993db04094cf04c3fa664676dd00b7a733ae7e4b0f683e68dc5fbabe468" }, "downloads": -1, "filename": "zope.security-3.6.0-py2.4-win32.egg", "has_sig": false, "md5_digest": "88c5b2d688d018d4ef38f58ef61b07fb", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 209078, "upload_time": "2009-02-19T20:41:32", "url": "https://files.pythonhosted.org/packages/3a/d3/9322c616448a257749c5e6e2d4abcf639cebb5c51e8929b29368ffa9f945/zope.security-3.6.0-py2.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "3c57100c19a180a3e07d4f3e816a2c47", "sha256": "aceb9e5ded358cd441a2bf81adecac13ccee9770321989cc88b5eb6fb9f27f3b" }, "downloads": -1, "filename": "zope.security-3.6.0-py2.5-win32.egg", "has_sig": false, "md5_digest": "3c57100c19a180a3e07d4f3e816a2c47", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 207842, "upload_time": "2009-02-19T20:15:43", "url": "https://files.pythonhosted.org/packages/d2/15/f4b7b10ca67055d987a1a6a832eb6fcf6a840fdc430f5007493fef519811/zope.security-3.6.0-py2.5-win32.egg" }, { "comment_text": "", "digests": { "md5": "b68ab86f2d64a414a4ce9a57126fd073", "sha256": "43f3fc134329d85bf2d1092a6a7be0ed729c7e08cc7ca0fd6e78cd93c25b89f2" }, "downloads": -1, "filename": "zope.security-3.6.0-py2.6-win32.egg", "has_sig": false, "md5_digest": "b68ab86f2d64a414a4ce9a57126fd073", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 207662, "upload_time": "2009-02-19T20:16:55", "url": "https://files.pythonhosted.org/packages/c2/27/c639ad13df4483d342293ec67138dc5100675dbaffdbc3fc982c1a962f7c/zope.security-3.6.0-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "487501f7d1deb56c547f350ac1bf853c", "sha256": "8192a00ccc9062b3b2212dc0a22198b4cd3b5567a4b1552395889e462dd91ed5" }, "downloads": -1, "filename": "zope.security-3.6.0-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "487501f7d1deb56c547f350ac1bf853c", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 209751, "upload_time": "2010-06-18T05:10:04", "url": "https://files.pythonhosted.org/packages/0d/2c/e5d70f5371303796b9c9622b01a6e80c8e4473a08df5c7b4434100b5a9ce/zope.security-3.6.0-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "def079bfa3abfafd84d77a5addaf3611", "sha256": "9975c2aa9e2db5d370c7035cf53341767be22accce6eef099a1c3cda6d04fd24" }, "downloads": -1, "filename": "zope.security-3.6.0.tar.gz", "has_sig": false, "md5_digest": "def079bfa3abfafd84d77a5addaf3611", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95050, "upload_time": "2009-01-31T14:13:56", "url": "https://files.pythonhosted.org/packages/77/54/e9194d0a4a72b047116300f41fc318554a293aa1c9524714421513d10e88/zope.security-3.6.0.tar.gz" } ], "3.6.1": [ { "comment_text": "built on Windows-2003Server", "digests": { "md5": "0f35e4466f6610cd67a1d3f4b0afe076", "sha256": "dbd2bd94a18a46b0bd0b59a42b485e2201b9a2cd36a25db02929ed38c7e80462" }, "downloads": -1, "filename": "zope.security-3.6.1-py2.4-win32.egg", "has_sig": false, "md5_digest": "0f35e4466f6610cd67a1d3f4b0afe076", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 209727, "upload_time": "2010-06-18T05:10:31", "url": "https://files.pythonhosted.org/packages/21/66/14b026d410ca61fb8b4c776c7e842a0dad98da4fd251da8974454e613b15/zope.security-3.6.1-py2.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "29848ad6871a18bcb4e981d18dd483b4", "sha256": "61240bd2fca23c3baa963c9424dde1482d63dba8e68cbe280186b571256ce2f1" }, "downloads": -1, "filename": "zope.security-3.6.1-py2.5-win32.egg", "has_sig": false, "md5_digest": "29848ad6871a18bcb4e981d18dd483b4", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 208455, "upload_time": "2010-06-18T05:10:54", "url": "https://files.pythonhosted.org/packages/08/97/91b6225755c62f3c5cd4a044aeae20431b62c21fb7f89a53be918af3a3cf/zope.security-3.6.1-py2.5-win32.egg" }, { "comment_text": "", "digests": { "md5": "4e9e57b2bfc700ce795c363fa30508ac", "sha256": "5d7e6d2e28bb8193a47c787d89763f29a5f330156bcc8ffa2133ed250504b8f0" }, "downloads": -1, "filename": "zope.security-3.6.1-py2.6-win32.egg", "has_sig": false, "md5_digest": "4e9e57b2bfc700ce795c363fa30508ac", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 209394, "upload_time": "2010-06-18T05:11:18", "url": "https://files.pythonhosted.org/packages/d3/9d/1d01f83372cdf375f91b3b9f7b0a26aa9c63b1842efe917c26b1a25242d9/zope.security-3.6.1-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "73fe03aa5b7b7941b2432890df6860bd", "sha256": "9ac8639e19801db0d4622d1b886f00a8df586341f641223c9f8f04d3ab4294ce" }, "downloads": -1, "filename": "zope.security-3.6.1-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "73fe03aa5b7b7941b2432890df6860bd", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 209673, "upload_time": "2010-06-18T05:11:46", "url": "https://files.pythonhosted.org/packages/d0/e6/da1a3511358c620de17bc57193bd33c73484a5ef9fed8ea42921d012327a/zope.security-3.6.1-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "2c6ae66d1a72ece99c7f47f5dc955712", "sha256": "34d3c985c238d0c98565c809c36a859be058d4bc44f4a473c1ad19a650adb6f2" }, "downloads": -1, "filename": "zope.security-3.6.1.tar.gz", "has_sig": false, "md5_digest": "2c6ae66d1a72ece99c7f47f5dc955712", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95857, "upload_time": "2009-03-10T02:46:27", "url": "https://files.pythonhosted.org/packages/e6/6c/012740d8584301dfcc5eef8ee647512366610e1b681326176eded823e82e/zope.security-3.6.1.tar.gz" } ], "3.6.2": [ { "comment_text": "built on Windows-2003Server", "digests": { "md5": "19d5a72ea77f1bf20b21a98826260e9d", "sha256": "3609ec60f32d155a3a5b319687cf95ae2fa564de1187d0aa681f815226be4741" }, "downloads": -1, "filename": "zope.security-3.6.2-py2.4-win32.egg", "has_sig": false, "md5_digest": "19d5a72ea77f1bf20b21a98826260e9d", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 213390, "upload_time": "2010-06-18T05:12:11", "url": "https://files.pythonhosted.org/packages/05/0e/a3404def864fdd409261ead827b0794abe9a644d9a4f802e64a6edb0d4d8/zope.security-3.6.2-py2.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "407e9d24d7904711c60ff8d504dd26c7", "sha256": "2e10a462983d8ac235caa4890bc9e64612c7a8387615b64d085a5f4620f92f36" }, "downloads": -1, "filename": "zope.security-3.6.2-py2.5-win32.egg", "has_sig": false, "md5_digest": "407e9d24d7904711c60ff8d504dd26c7", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 212071, "upload_time": "2010-06-18T05:12:32", "url": "https://files.pythonhosted.org/packages/c0/79/38616c1bbf592b3830ecb4b21945cb72586dd307ef1fadafd69501115d8c/zope.security-3.6.2-py2.5-win32.egg" }, { "comment_text": "", "digests": { "md5": "b98c60c87076adfc42f5bdcd9a554852", "sha256": "75d55a23846a4537ff0bc24af3dad6654728ddb6ad14bf5046cb2e1a1a589141" }, "downloads": -1, "filename": "zope.security-3.6.2-py2.6-win32.egg", "has_sig": false, "md5_digest": "b98c60c87076adfc42f5bdcd9a554852", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 213012, "upload_time": "2010-06-18T05:12:55", "url": "https://files.pythonhosted.org/packages/42/09/cfcbccc634d62b480f4b595bba339556527fc8ad3b8bf167a011746cbdfb/zope.security-3.6.2-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "b2ae05f70bf9209ec3363959c14d25f7", "sha256": "3d10a1697c714c9520c05620364ceb31ea36bf4372a97cd8ae0544ac4122c652" }, "downloads": -1, "filename": "zope.security-3.6.2-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "b2ae05f70bf9209ec3363959c14d25f7", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 213296, "upload_time": "2010-06-18T05:13:14", "url": "https://files.pythonhosted.org/packages/07/71/0843bd60261a1940e464c82949b94e8999eab5eb4d171e487d622af59e69/zope.security-3.6.2-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "79eff1f87ea1ee70455a6fd7b6356e55", "sha256": "4bdcaafc3732b8203b7c46af1b04381d523503a4132d445c03537c983f179e52" }, "downloads": -1, "filename": "zope.security-3.6.2.tar.gz", "has_sig": false, "md5_digest": "79eff1f87ea1ee70455a6fd7b6356e55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 98515, "upload_time": "2009-03-14T01:06:34", "url": "https://files.pythonhosted.org/packages/88/43/f8f1103da94f30aeed6052162c24515f61dc8e5c6971cf0576120b2e46e2/zope.security-3.6.2.tar.gz" } ], "3.6.3": [ { "comment_text": "built on Windows-2003Server", "digests": { "md5": "44d8b61eb4d3f42a7b2311e9f3b46172", "sha256": "dc755d7d7f3f70bac15ec17ecfa5a16fa2a9d5d78cb34d749c71770f5b09d1eb" }, "downloads": -1, "filename": "zope.security-3.6.3-py2.4-win32.egg", "has_sig": false, "md5_digest": "44d8b61eb4d3f42a7b2311e9f3b46172", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 213807, "upload_time": "2010-06-18T05:13:39", "url": "https://files.pythonhosted.org/packages/64/8b/5a5a0e0108323b1178348a87dbe56844821c3da72c95c8bb5ca55c302a54/zope.security-3.6.3-py2.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "737b0d3d9d48d8a0e0235421bac85a27", "sha256": "2a23530f20d69227bb0ff24794e616f35449644696496a30b12cc2b1bb04977b" }, "downloads": -1, "filename": "zope.security-3.6.3-py2.5-win32.egg", "has_sig": false, "md5_digest": "737b0d3d9d48d8a0e0235421bac85a27", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 212500, "upload_time": "2010-06-18T05:14:00", "url": "https://files.pythonhosted.org/packages/6b/f3/65ec5e49dd7e8515c1ed5028e13f910fd8121c7431e435e97f7be653f902/zope.security-3.6.3-py2.5-win32.egg" }, { "comment_text": "", "digests": { "md5": "0ac0a65546a9e7d1623c2ecea1aafca7", "sha256": "a8f02e912add4fd3d5ce2c61a7def3ab20cf57d931abd68302f90162a5e4b6ee" }, "downloads": -1, "filename": "zope.security-3.6.3-py2.6-win32.egg", "has_sig": false, "md5_digest": "0ac0a65546a9e7d1623c2ecea1aafca7", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 213438, "upload_time": "2010-06-18T05:14:23", "url": "https://files.pythonhosted.org/packages/12/01/c4a545d9f4930f4a9020bd62e7d0ce74dcf80ed433b1cbf616679901ad78/zope.security-3.6.3-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "0f2951076f60611ef31ebe529ef983a6", "sha256": "3f6c932f7e673edf7de720ad2cb1f49184d3fc8953a9cc612997f08e0abfa5a0" }, "downloads": -1, "filename": "zope.security-3.6.3-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "0f2951076f60611ef31ebe529ef983a6", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 213726, "upload_time": "2010-06-18T05:14:48", "url": "https://files.pythonhosted.org/packages/23/78/eb81cf8f01d83a0749e210b555b52d7d5a3cf57bc66c197905fc70c7f4eb/zope.security-3.6.3-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "b1f52a1ba3961f253164587efcb150f3", "sha256": "e3d2f48bb349684f07481ed700978da2c2a2d7d06e3ec46b4085fd0c5b734f20" }, "downloads": -1, "filename": "zope.security-3.6.3.tar.gz", "has_sig": false, "md5_digest": "b1f52a1ba3961f253164587efcb150f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 98656, "upload_time": "2009-03-23T13:06:46", "url": "https://files.pythonhosted.org/packages/fc/b6/7cc0bc266d1c1b1f69739d2ca45c6df3027d8c51ae470fd0d4c1ad8811e6/zope.security-3.6.3.tar.gz" } ], "3.7.0": [ { "comment_text": "built on Microsoft-Windows", "digests": { "md5": "3df948081a70b1b98e94907904afe1b0", "sha256": "f0d6b64de6b726a94da317340129649fd51b0aff13f46283bcdda8e51e91167e" }, "downloads": -1, "filename": "zope.security-3.7.0-py2.4-win32.egg", "has_sig": false, "md5_digest": "3df948081a70b1b98e94907904afe1b0", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 211533, "upload_time": "2009-07-18T14:16:54", "url": "https://files.pythonhosted.org/packages/fa/86/5530fabd756bde1a3fb221169de809890791011a7becfa2c804fdd254941/zope.security-3.7.0-py2.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "d9448538f7d03d98b18b8e105e6a759a", "sha256": "dd92906eaff919d4966f860a16d214ed249050e5ae92b376dc0475c0d2f881d8" }, "downloads": -1, "filename": "zope.security-3.7.0-py2.5-win32.egg", "has_sig": false, "md5_digest": "d9448538f7d03d98b18b8e105e6a759a", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 210198, "upload_time": "2009-07-18T14:17:07", "url": "https://files.pythonhosted.org/packages/7b/e7/8570c62e33e8c180bfbd8e2aab629d8ec5e260fcacdb3afe7d6a320d414e/zope.security-3.7.0-py2.5-win32.egg" }, { "comment_text": "", "digests": { "md5": "6b3bd53a66d4fd31eba012ba61da3d35", "sha256": "518691cce6bd688485c90d725d3c5cb6d9785487617fa4254c318e077ad08d1e" }, "downloads": -1, "filename": "zope.security-3.7.0-py2.6-win32.egg", "has_sig": false, "md5_digest": "6b3bd53a66d4fd31eba012ba61da3d35", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 210113, "upload_time": "2009-07-18T14:17:17", "url": "https://files.pythonhosted.org/packages/f0/42/797a83af112edd529e53dc71d19383ee330260d25d05ec55df0e5de90f07/zope.security-3.7.0-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "25548a799e1a99bc9425817a38866ed3", "sha256": "44689262e022b15767526f27771da80a1e6fed53c2d8e6b9b1cc8e2e5ba4b5c9" }, "downloads": -1, "filename": "zope.security-3.7.0-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "25548a799e1a99bc9425817a38866ed3", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 214064, "upload_time": "2010-06-18T05:15:08", "url": "https://files.pythonhosted.org/packages/ab/4f/e868ad7db328269838b8c7586995952c980a979df174d8d8862f8bd96172/zope.security-3.7.0-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "76171a6c9a0ab8e428b32c5a6ba71e93", "sha256": "86f4f459923d97522f6f4642338b0a834f5fd804973b0f6ea98b1da527b0ed48" }, "downloads": -1, "filename": "zope.security-3.7.0.tar.gz", "has_sig": false, "md5_digest": "76171a6c9a0ab8e428b32c5a6ba71e93", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 101110, "upload_time": "2009-05-14T00:52:00", "url": "https://files.pythonhosted.org/packages/e2/df/960678a50beb5039181d6b39f33d7ccaa156d3f3222a3e5469922d3b3e1b/zope.security-3.7.0.tar.gz" } ], "3.7.1": [ { "comment_text": "built on Windows-XP", "digests": { "md5": "c5446de80902d46430c6028be5dbed06", "sha256": "afc4b2667fea3abe7bc83aedad4f48a9878e6472caffea8d105d73abe9733af9" }, "downloads": -1, "filename": "zope.security-3.7.1-py2.4-win32.egg", "has_sig": false, "md5_digest": "c5446de80902d46430c6028be5dbed06", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 213678, "upload_time": "2009-09-06T02:02:14", "url": "https://files.pythonhosted.org/packages/5f/eb/8266300105dcdfa315efe8df1fd248ba4e9e1d82b6fbe94d176b674515ce/zope.security-3.7.1-py2.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "abf8a18f2e4714d1270794bd2e8348aa", "sha256": "62c5858e0f14599841d0d21806fb9446d4adfbeb9e914e566bb4e0efce9d5bd2" }, "downloads": -1, "filename": "zope.security-3.7.1-py2.5-win32.egg", "has_sig": false, "md5_digest": "abf8a18f2e4714d1270794bd2e8348aa", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 212309, "upload_time": "2009-09-06T02:02:27", "url": "https://files.pythonhosted.org/packages/bf/15/22eefbec83092d58378e67f5957ccae4eb18579b01e7392d9e68c8a5c98c/zope.security-3.7.1-py2.5-win32.egg" }, { "comment_text": "", "digests": { "md5": "802b5dbbd10025d00fdfcc4a644dec76", "sha256": "bd8294873af04e77d5e7deecaeb49e795f1f4107008cc050bf7c4e81b422b5fa" }, "downloads": -1, "filename": "zope.security-3.7.1-py2.6-win32.egg", "has_sig": false, "md5_digest": "802b5dbbd10025d00fdfcc4a644dec76", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 210369, "upload_time": "2009-09-15T12:27:15", "url": "https://files.pythonhosted.org/packages/f6/00/8b4c9e7e57cda51a525425deb5a0ffe4092f3b27bb3ba1c96b1b71a9d884/zope.security-3.7.1-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "d0da08cfafc15e1d431f5f04bc313c69", "sha256": "164ea33141350c084d5a9c188fc741711a9a001fef6e4d2c51b4c2d56c268432" }, "downloads": -1, "filename": "zope.security-3.7.1-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "d0da08cfafc15e1d431f5f04bc313c69", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 214272, "upload_time": "2010-06-18T05:15:32", "url": "https://files.pythonhosted.org/packages/68/16/7b7ce7c6b5fcfa245b857ea2c608f4fa4426ea1bd0bfe949f5820a4f0e2b/zope.security-3.7.1-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "ba4d9925d3b8ff3af4c17dde479e2f3f", "sha256": "b1c7ed66f40c055d261c07858bce86b04e94bfb614d6b357d13243f611a3392e" }, "downloads": -1, "filename": "zope.security-3.7.1.tar.gz", "has_sig": false, "md5_digest": "ba4d9925d3b8ff3af4c17dde479e2f3f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 102096, "upload_time": "2009-08-13T22:41:19", "url": "https://files.pythonhosted.org/packages/f6/0b/0e771150b2a17bdbdb7bb6556a6cf4e62e7c518b20cd3a0fb18adee5457e/zope.security-3.7.1.tar.gz" } ], "3.7.2": [ { "comment_text": "built on Windows-XP", "digests": { "md5": "15dbf843c9c63a560de17500fdb97116", "sha256": "33af076694f462229138d8c34bf47a39d43f1dc6322bc2c35b6374cbbdbb72c3" }, "downloads": -1, "filename": "zope.security-3.7.2-py2.4-win32.egg", "has_sig": false, "md5_digest": "15dbf843c9c63a560de17500fdb97116", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 212522, "upload_time": "2009-11-10T22:06:10", "url": "https://files.pythonhosted.org/packages/0f/97/1f4d4bf7768de4106ffc8630af45c5d73bbe3c0e9ded333ca0ed138b876e/zope.security-3.7.2-py2.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "db53bcfa78563c87678b2e4b4b25f593", "sha256": "abeecbe1131e3cdb2a7f3f48e3a14e74af323dabe982990cc13af314a64203aa" }, "downloads": -1, "filename": "zope.security-3.7.2-py2.5-win32.egg", "has_sig": false, "md5_digest": "db53bcfa78563c87678b2e4b4b25f593", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 211198, "upload_time": "2009-11-10T22:05:53", "url": "https://files.pythonhosted.org/packages/36/9c/767570c7ce0d98a9c4bf1bba03688715cec2f545274c4b22eeb6f5c7e4cf/zope.security-3.7.2-py2.5-win32.egg" }, { "comment_text": "", "digests": { "md5": "56c95aca5caf49cc91fc3420b23853f7", "sha256": "cb0b7f363b83f72c0bc0268bc98cf5c0b44b1c089b72b0519a0966be905a93d5" }, "downloads": -1, "filename": "zope.security-3.7.2-py2.6-win32.egg", "has_sig": false, "md5_digest": "56c95aca5caf49cc91fc3420b23853f7", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 214745, "upload_time": "2009-11-10T22:04:15", "url": "https://files.pythonhosted.org/packages/7e/fe/ebeb78a94eb53fe8393f0b5d3de9cb681d453e2ba625450f94bc6e5e3452/zope.security-3.7.2-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "1dee2a08444bf3d01a58d373917a0308", "sha256": "fe126bedfa1bf2a46155dd2835ef3435ac905415fcb5552faf08b7d7071c07fd" }, "downloads": -1, "filename": "zope.security-3.7.2-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "1dee2a08444bf3d01a58d373917a0308", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 214837, "upload_time": "2009-12-31T03:45:03", "url": "https://files.pythonhosted.org/packages/f0/04/c6fb044d7b81da4b0b2e38d598a1c0f4e92b101407ed4258cf0d14d82e5e/zope.security-3.7.2-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "0cc622d4ac22f34c88c4d79bc10f74e2", "sha256": "032b81087c01132c8610adae5feb6f0ffcec15f90b4c30b29f8d7576670ae860" }, "downloads": -1, "filename": "zope.security-3.7.2.tar.gz", "has_sig": false, "md5_digest": "0cc622d4ac22f34c88c4d79bc10f74e2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 100475, "upload_time": "2009-11-10T22:05:24", "url": "https://files.pythonhosted.org/packages/bd/7d/fc8696708e01200a34afb73eb74f8253c5068794115f0e597cb21d704b57/zope.security-3.7.2.tar.gz" } ], "3.7.3": [ { "comment_text": "built on Windows-2003Server", "digests": { "md5": "0a91044399eab08799d23cf2a35e0087", "sha256": "8fd1d1b30985aa67fabe4e5f563ccefbb1461dc67f419267cb1c81551251799c" }, "downloads": -1, "filename": "zope.security-3.7.3-py2.4-win32.egg", "has_sig": false, "md5_digest": "0a91044399eab08799d23cf2a35e0087", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 214540, "upload_time": "2010-06-18T05:15:49", "url": "https://files.pythonhosted.org/packages/33/dc/3751418b14d0b4bf5d7dd0279c7d93933396b880233329a61d39f1eec775/zope.security-3.7.3-py2.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "da7d9264be43690875ada7d0204afe7e", "sha256": "2a64f862a6f490201bf694ab33bfa770cab0a0ebb100933d8ca87204d7882957" }, "downloads": -1, "filename": "zope.security-3.7.3-py2.5-win32.egg", "has_sig": false, "md5_digest": "da7d9264be43690875ada7d0204afe7e", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 213238, "upload_time": "2010-06-18T05:16:06", "url": "https://files.pythonhosted.org/packages/82/6c/08a8d9206ddfdd2b2659f9ff3ff693f508f78407e4b195f7debc6c8af093/zope.security-3.7.3-py2.5-win32.egg" }, { "comment_text": "", "digests": { "md5": "0b7df0f4d64cd97f19a1b66ba8879641", "sha256": "e1f31328fe211a308dfd1ef33271ffe99c98bdd5a497b6796ea9fa7a943d798a" }, "downloads": -1, "filename": "zope.security-3.7.3-py2.6-win32.egg", "has_sig": false, "md5_digest": "0b7df0f4d64cd97f19a1b66ba8879641", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 214098, "upload_time": "2010-05-03T15:48:27", "url": "https://files.pythonhosted.org/packages/9b/03/975065a21f0ecab8b76817c72cd5f8898ad74a6fa7d52b2c430ad69fc9e0/zope.security-3.7.3-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "e18f6a4b8b67fb03538c259c49986893", "sha256": "0d071cbbe90496da870c6da0c957d52e30be946a113c1ec29e818e15c76d1383" }, "downloads": -1, "filename": "zope.security-3.7.3-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "e18f6a4b8b67fb03538c259c49986893", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 214401, "upload_time": "2010-05-03T16:12:12", "url": "https://files.pythonhosted.org/packages/8c/9e/8a584366dab7f8cb30a5ed4dcde67a9ac6eafefe00582932d4bc334582d4/zope.security-3.7.3-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "d7f9175423e0bce2d021e76a7e6eaf8d", "sha256": "4c2dd67fdb819b62c70f5c5064708f4b6195af6db2f7950eb83b806b3ce1cc0a" }, "downloads": -1, "filename": "zope.security-3.7.3.zip", "has_sig": false, "md5_digest": "d7f9175423e0bce2d021e76a7e6eaf8d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 146034, "upload_time": "2010-04-30T23:54:17", "url": "https://files.pythonhosted.org/packages/54/ac/ada307f7c9c317a60d1020db6d0a46d7ecb5685665bf8131cb2244536ce2/zope.security-3.7.3.zip" } ], "3.7.4": [ { "comment_text": "built on Windows-2003Server", "digests": { "md5": "1c70fadfb15caf77c3da451ce0bde936", "sha256": "8126ec3365bef481163c7e7a21243178216609bc852c78f872055318a2bd790d" }, "downloads": -1, "filename": "zope.security-3.7.4-py2.4-win32.egg", "has_sig": false, "md5_digest": "1c70fadfb15caf77c3da451ce0bde936", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 214598, "upload_time": "2010-09-25T13:37:31", "url": "https://files.pythonhosted.org/packages/2e/10/ca4b88211b6751864c709332ca245d47710d675e3a85fee182b0863b5f09/zope.security-3.7.4-py2.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "35bbb39453c148df1b15881a11dd6484", "sha256": "d9b4a8f95a918fbade3c6f59c9a297edcd68e6c662cec011f15d6d7741279683" }, "downloads": -1, "filename": "zope.security-3.7.4-py2.5-win32.egg", "has_sig": false, "md5_digest": "35bbb39453c148df1b15881a11dd6484", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 213302, "upload_time": "2010-09-25T13:37:55", "url": "https://files.pythonhosted.org/packages/ec/6d/1eaa2a672f6f3bd2ee146e6b2b0a8b6afaea30d06f7559f0c6cc03fe1797/zope.security-3.7.4-py2.5-win32.egg" }, { "comment_text": "", "digests": { "md5": "579e7ad78a5176f9876e87fc98e0740a", "sha256": "cc1a353d94878e16f60e35cc5270c975fdc1192ad72d2a41963716f8ea456d79" }, "downloads": -1, "filename": "zope.security-3.7.4-py2.6-win32.egg", "has_sig": false, "md5_digest": "579e7ad78a5176f9876e87fc98e0740a", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 214207, "upload_time": "2010-09-25T13:38:22", "url": "https://files.pythonhosted.org/packages/3a/b2/4a2d7a441697ecf940c362e128cffe85cac723cb5390f15d1694bdc24778/zope.security-3.7.4-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "38eebae3c7dc4fa1d33f9882c70ad8aa", "sha256": "ee3db6e923e9a13a8bea155e47413dc64c6a9a609c9146640f36084ceeaa0aef" }, "downloads": -1, "filename": "zope.security-3.7.4-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "38eebae3c7dc4fa1d33f9882c70ad8aa", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 214490, "upload_time": "2010-09-25T13:38:45", "url": "https://files.pythonhosted.org/packages/db/43/1fe85f8f9a657f69789631cea1748b51c0e8a7240062d16be036aac83acc/zope.security-3.7.4-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "7c7194de82b837e1e52f8829fbfc5e02", "sha256": "331374fae3d2a0f8af734a4841a7df37c05d1bb499a0973411ceb5d34348e63e" }, "downloads": -1, "filename": "zope.security-3.7.4-py2.7-win32.egg", "has_sig": false, "md5_digest": "7c7194de82b837e1e52f8829fbfc5e02", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 213943, "upload_time": "2010-10-08T17:47:11", "url": "https://files.pythonhosted.org/packages/46/3d/90e77f3fc584e76d95f1e38caaa98bff99bdf3ec5380c8e61f105211f827/zope.security-3.7.4-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "60f155f838583bac31af3fe7d0a0f0b9", "sha256": "449172377d4385c7e1b0cd2e6e21528db4a968354974057d69fe1301eb8c758f" }, "downloads": -1, "filename": "zope.security-3.7.4-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "60f155f838583bac31af3fe7d0a0f0b9", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 214214, "upload_time": "2010-10-08T17:47:16", "url": "https://files.pythonhosted.org/packages/2e/f2/1fe007b0a46c3326854cfc078803ca43c07dc44124577e86b8b271d4b96e/zope.security-3.7.4-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "072ab8d11adc083eace11262da08630c", "sha256": "b645dbca52320270f51343b86339e6c20d0474ea5e1834063bafcc433f8a2810" }, "downloads": -1, "filename": "zope.security-3.7.4.tar.gz", "has_sig": false, "md5_digest": "072ab8d11adc083eace11262da08630c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 100675, "upload_time": "2010-09-25T13:21:17", "url": "https://files.pythonhosted.org/packages/33/31/cec2173af37cce82968dfefdfc7e69a1c42320054b0b901f5e0bcc0d621b/zope.security-3.7.4.tar.gz" } ], "3.8.0": [ { "comment_text": "built on Windows-2003Server", "digests": { "md5": "62a8e04143b5ec4beb71725e04b391ae", "sha256": "7fc9300550b638508dfc259750188e0f1ea0ea513ddf335f29ef4d7fba7b4925" }, "downloads": -1, "filename": "zope.security-3.8.0-py2.4-win32.egg", "has_sig": false, "md5_digest": "62a8e04143b5ec4beb71725e04b391ae", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 212415, "upload_time": "2010-12-14T20:11:29", "url": "https://files.pythonhosted.org/packages/3c/83/fcb5b877327439edd97b4eade76686c29af82330e4f6f61d4354faf890a3/zope.security-3.8.0-py2.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "f7ddc2bcd3ff170a8ab3053c69e78b69", "sha256": "72e0a40f4d3fb9d48d594737697e3e46a8f887180e1c0d44060182904cba35bc" }, "downloads": -1, "filename": "zope.security-3.8.0-py2.5-win32.egg", "has_sig": false, "md5_digest": "f7ddc2bcd3ff170a8ab3053c69e78b69", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 211107, "upload_time": "2010-12-14T20:11:56", "url": "https://files.pythonhosted.org/packages/06/5e/02aa0877180adf11fa157cb4999829ca8e090923c3b245a08a11ca6b1fe9/zope.security-3.8.0-py2.5-win32.egg" }, { "comment_text": "", "digests": { "md5": "ce66f340919ac8e4dece258df3e976c4", "sha256": "5ed63235b23e8189c3093c2fb01c78b0c27cb807e5d967d53d22464620f3c108" }, "downloads": -1, "filename": "zope.security-3.8.0-py2.6-win32.egg", "has_sig": false, "md5_digest": "ce66f340919ac8e4dece258df3e976c4", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 211996, "upload_time": "2010-12-14T20:12:20", "url": "https://files.pythonhosted.org/packages/93/93/f3320a16c871c618181a30598d37235a713aff35204d173e7e2633f05db0/zope.security-3.8.0-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "20bed92836d3b8b9254ceb118acc1920", "sha256": "436e00e124d2f4a60cd9079d3d203003d77868b9123ed0771f8c1419810167ee" }, "downloads": -1, "filename": "zope.security-3.8.0-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "20bed92836d3b8b9254ceb118acc1920", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 212300, "upload_time": "2010-12-14T20:12:54", "url": "https://files.pythonhosted.org/packages/34/ef/c5fdd9cd1b236ab8ffb0287133a852fc1a3af3a8a3f85d46302a31a9aad3/zope.security-3.8.0-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "264961430c85a3c5b890fdccbbde2d78", "sha256": "e10dcf3e4d5b644e6b582ccba94e6d5d3aae2091fb6a3ccf26aa257eb4ab6a9b" }, "downloads": -1, "filename": "zope.security-3.8.0-py2.7-win32.egg", "has_sig": false, "md5_digest": "264961430c85a3c5b890fdccbbde2d78", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 211872, "upload_time": "2010-12-14T20:13:05", "url": "https://files.pythonhosted.org/packages/d4/d9/acdebbe0fcebb356fabe7a04a6d6d962233fb7d2da1c017b835951e5dbb1/zope.security-3.8.0-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "c912c034fb3a7fcbfc646a13be04f97b", "sha256": "5cda634e1038b5ccbdd434d8a1aa6ca296c6e96b2063b962af5cc8ad364a36d4" }, "downloads": -1, "filename": "zope.security-3.8.0-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "c912c034fb3a7fcbfc646a13be04f97b", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 212165, "upload_time": "2010-12-14T20:13:13", "url": "https://files.pythonhosted.org/packages/99/1f/a3fa17bd7a7150c053fd6554d430b21ecc8a61209e1dfb1fbed757de42b2/zope.security-3.8.0-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "9aec3d64ac3b207af7cb0fe7559ba914", "sha256": "c94996e6c5bd1cafb4a8024386baad1c384bcc3fc1fb3d83d027d7f3acd20ab8" }, "downloads": -1, "filename": "zope.security-3.8.0.zip", "has_sig": false, "md5_digest": "9aec3d64ac3b207af7cb0fe7559ba914", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 146889, "upload_time": "2010-12-14T20:06:11", "url": "https://files.pythonhosted.org/packages/81/23/8b98c9f8bb60a3dcdedb869fd885b03603a424267e1c0a3b2eeedfc6365e/zope.security-3.8.0.zip" } ], "3.8.1": [ { "comment_text": "built on Windows-2003Server", "digests": { "md5": "cf2bc452bc289fa2e659f76ed5532c71", "sha256": "e1155bfacd92d577643ab4f47bcae1b0512a36084dcb00dfec13585e6af1745a" }, "downloads": -1, "filename": "zope.security-3.8.1-py2.4-win32.egg", "has_sig": false, "md5_digest": "cf2bc452bc289fa2e659f76ed5532c71", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 212466, "upload_time": "2011-05-03T08:52:59", "url": "https://files.pythonhosted.org/packages/26/f5/b2565887bc4edd55f1efc5c56173bf937cc20b62cba915cab8d41362e07d/zope.security-3.8.1-py2.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "e83ebf4dd9576a5fd830aa796ce4be25", "sha256": "2b1232e06956416464873c833f49dbd19df53d987eb1e19a6a7f697a9d6a4c0f" }, "downloads": -1, "filename": "zope.security-3.8.1-py2.5-win32.egg", "has_sig": false, "md5_digest": "e83ebf4dd9576a5fd830aa796ce4be25", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 211168, "upload_time": "2011-05-03T08:53:19", "url": "https://files.pythonhosted.org/packages/a2/94/4853dfe36cd047e2950dbb50bd9b442a8ae564dbf49d97861c6f6504526c/zope.security-3.8.1-py2.5-win32.egg" }, { "comment_text": "", "digests": { "md5": "e3840fea9b646913d7ab65a55d27ece2", "sha256": "3d75449db79f6dbfe5b982649de465c7f53a96039df7c2252937a25940b99d40" }, "downloads": -1, "filename": "zope.security-3.8.1-py2.6-win32.egg", "has_sig": false, "md5_digest": "e3840fea9b646913d7ab65a55d27ece2", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 212054, "upload_time": "2011-05-03T08:53:43", "url": "https://files.pythonhosted.org/packages/3a/cf/a037d64f9cd7eecb7ff716ad0d89e537b3c2a659edd8844651919715e1e1/zope.security-3.8.1-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "865f50cfdd4175875fbf8f78ddd55511", "sha256": "da9338f958067ad3966328a49d0078079b1885b1be922b5ff295f30987cb4549" }, "downloads": -1, "filename": "zope.security-3.8.1-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "865f50cfdd4175875fbf8f78ddd55511", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 212358, "upload_time": "2011-05-03T08:54:07", "url": "https://files.pythonhosted.org/packages/78/f0/09ac7ac0d128760b3ca75cf69d1511a1f77867a4782f21efe1ba43cfb3b9/zope.security-3.8.1-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "6b86546213319b572494690feb2560b1", "sha256": "8ced40aed5e66aabbb2c530dcc8e0d141e28e36846a45d217d316efc08540b8c" }, "downloads": -1, "filename": "zope.security-3.8.1-py2.7-win32.egg", "has_sig": false, "md5_digest": "6b86546213319b572494690feb2560b1", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 211855, "upload_time": "2011-05-03T08:54:14", "url": "https://files.pythonhosted.org/packages/be/2c/56c2136f86fc94d17d452b74fff7ab86bf2d2b929c14e090651a70d1541d/zope.security-3.8.1-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "b64fe6c8f242a7f0383660428330edb0", "sha256": "a45c96e6d39e320ecfcd521486044f85e23fd7865ac7dae17791bc9173e59af0" }, "downloads": -1, "filename": "zope.security-3.8.1-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "b64fe6c8f242a7f0383660428330edb0", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 212153, "upload_time": "2011-05-03T08:54:18", "url": "https://files.pythonhosted.org/packages/2d/39/02d2ae9ef2fc84f3303022fec550ece502c655c3f5ed944a1b62c7c61cee/zope.security-3.8.1-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "cde06e820ddcf50898751509964b6806", "sha256": "c520039207aef05326fee8c01545cae96e39051067bdd1b040873b60c7678edb" }, "downloads": -1, "filename": "zope.security-3.8.1.tar.gz", "has_sig": false, "md5_digest": "cde06e820ddcf50898751509964b6806", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 103062, "upload_time": "2011-05-03T08:27:49", "url": "https://files.pythonhosted.org/packages/7f/ea/c90ae1ad18020b65b419653b95e99e1e26ea89215144ca50f8bb121cff6c/zope.security-3.8.1.tar.gz" } ], "3.8.2": [ { "comment_text": "built on Windows-2003Server", "digests": { "md5": "8b99c49b99211a5ca93dff87e8f01f1c", "sha256": "e4f093d7e8cb8ae5a02ee7e24b5da6889176d3d2f4787582ed0c4f294bdfbcaa" }, "downloads": -1, "filename": "zope.security-3.8.2-py2.4-win32.egg", "has_sig": false, "md5_digest": "8b99c49b99211a5ca93dff87e8f01f1c", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 212353, "upload_time": "2011-05-24T11:06:39", "url": "https://files.pythonhosted.org/packages/0d/48/69e5f4e7d9b352aadbe2588a405b1f4537c07a26e59b65550740e6505824/zope.security-3.8.2-py2.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "901abf966c3d3d0f9adecfb4043b08b9", "sha256": "4abf222a784b8164613c90ae912dde9a5febfdab8c2429208706ed44c6136ad1" }, "downloads": -1, "filename": "zope.security-3.8.2-py2.5-win32.egg", "has_sig": false, "md5_digest": "901abf966c3d3d0f9adecfb4043b08b9", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 211050, "upload_time": "2011-05-24T11:06:58", "url": "https://files.pythonhosted.org/packages/be/99/20e24ec03a9e304aba56a3bda0a440064393461adfe1ca18e60576c7f8bf/zope.security-3.8.2-py2.5-win32.egg" }, { "comment_text": "", "digests": { "md5": "253835f307ac4f0fe6ffc85009b468c0", "sha256": "16e3bb0b0604d1179bdfba58338f64cbd61a4cabb873bd981c3cb7cdc7e6df5f" }, "downloads": -1, "filename": "zope.security-3.8.2-py2.6-win32.egg", "has_sig": false, "md5_digest": "253835f307ac4f0fe6ffc85009b468c0", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 211904, "upload_time": "2011-05-24T11:07:18", "url": "https://files.pythonhosted.org/packages/30/a7/6979f10d536e06bdb471245962c0a9bfff9d83b36eaf23fdc9c0b1ab87fd/zope.security-3.8.2-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "cf0ceb120c65367e1feb99d7ec11ebb6", "sha256": "e8e6e98827fe87d1bb083e8b5e57cc31669287a8ab4865c58c8d01f937ff46f0" }, "downloads": -1, "filename": "zope.security-3.8.2-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "cf0ceb120c65367e1feb99d7ec11ebb6", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 212216, "upload_time": "2011-05-24T11:07:43", "url": "https://files.pythonhosted.org/packages/9c/71/d977dd21472d117866283cda9f719aa01428b11fe2eb173ee8648220688b/zope.security-3.8.2-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "b4da925e1a47a048871d64a78359e114", "sha256": "de8f3b79e1771e173278bab179bdbaf7d1757cf5deae197805e32addf123bb10" }, "downloads": -1, "filename": "zope.security-3.8.2-py2.7-win32.egg", "has_sig": false, "md5_digest": "b4da925e1a47a048871d64a78359e114", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 211726, "upload_time": "2011-05-24T11:07:50", "url": "https://files.pythonhosted.org/packages/23/ed/82b3fa896b07f0ec40ff6d562c549d4a17b1a16e7bae2666764d52b8e66c/zope.security-3.8.2-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "d3d74939f23bca9ad61499bdd8e53f0f", "sha256": "06479a3207fb5c5fe3bf212e0f72a75785dd1db95a0e809e7f550c0eba106ce3" }, "downloads": -1, "filename": "zope.security-3.8.2-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "d3d74939f23bca9ad61499bdd8e53f0f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 212030, "upload_time": "2011-05-24T11:07:53", "url": "https://files.pythonhosted.org/packages/bc/26/74b95d0eb1dbba644c9aa0979fa647d5cb366d477f8610fa1bc47787461b/zope.security-3.8.2-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "1500af0e9b89ec4f7ee169128db7f361", "sha256": "53c3b90782c94ae749a57a21f61eea2fbd4fe2e2477d48b1d8269bbdd13d569e" }, "downloads": -1, "filename": "zope.security-3.8.2.zip", "has_sig": false, "md5_digest": "1500af0e9b89ec4f7ee169128db7f361", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 147802, "upload_time": "2011-05-24T10:50:50", "url": "https://files.pythonhosted.org/packages/0a/5e/721e931808a37e1c4b869e897133892f0939498b92d983bfb98b31bfd309/zope.security-3.8.2.zip" } ], "3.8.3": [ { "comment_text": "built on Windows-2003Server", "digests": { "md5": "dbef0e7136190e5a6b15919c22f3befc", "sha256": "c0ddbc506e5c7c97d33abcc15ce3f55cc881330bf04dd16a9af9069d138f9a10" }, "downloads": -1, "filename": "zope.security-3.8.3-py2.4-win32.egg", "has_sig": false, "md5_digest": "dbef0e7136190e5a6b15919c22f3befc", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 212606, "upload_time": "2011-09-24T17:45:35", "url": "https://files.pythonhosted.org/packages/61/61/5b3e30385cf1b0453e534cdff6b288b437d1b94e17d3ad19a61bcba28479/zope.security-3.8.3-py2.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "83c76cc23ce95f3fb9e841bac52df97a", "sha256": "f041180dbc80f0b44eef865409148c50d567546367fee75bddebb7364b897570" }, "downloads": -1, "filename": "zope.security-3.8.3-py2.5-win32.egg", "has_sig": false, "md5_digest": "83c76cc23ce95f3fb9e841bac52df97a", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 211307, "upload_time": "2011-09-24T17:45:53", "url": "https://files.pythonhosted.org/packages/0a/1d/c8d73e65f8540d39e9baf2798c6c7bf8184cd7f8a3c080d95239fe0ef01d/zope.security-3.8.3-py2.5-win32.egg" }, { "comment_text": "", "digests": { "md5": "4eafab1673e730b6f1cfddff4baf06c3", "sha256": "2faefc1dcf099c73f9533e50297d6719c76a8eb9abb8f2af03b806757dea4861" }, "downloads": -1, "filename": "zope.security-3.8.3-py2.6-win32.egg", "has_sig": false, "md5_digest": "4eafab1673e730b6f1cfddff4baf06c3", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 212194, "upload_time": "2011-09-24T17:46:10", "url": "https://files.pythonhosted.org/packages/b1/e3/758a4eb8f6ab6662968d7d747247c2ca6e67463dc1670412f703ca695e0b/zope.security-3.8.3-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "e725658d09a346a4dad1e2d9eae44125", "sha256": "3c7fde35cdb81f4d599aa210eed679511acf225968975dfb39a39291ead84edd" }, "downloads": -1, "filename": "zope.security-3.8.3-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "e725658d09a346a4dad1e2d9eae44125", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 212493, "upload_time": "2011-09-24T17:46:37", "url": "https://files.pythonhosted.org/packages/21/fd/7fd2c535bb2450c473822774dd6ec3aadd571b6c1d2ba7f4880017797a16/zope.security-3.8.3-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "2c8b868b9e3bdb603f241522dcf8e772", "sha256": "08bae0a16c263ec97a4879b94fe2e0bfade4e1d3afcde8954107257b0ccca29d" }, "downloads": -1, "filename": "zope.security-3.8.3-py2.7-win32.egg", "has_sig": false, "md5_digest": "2c8b868b9e3bdb603f241522dcf8e772", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 211923, "upload_time": "2011-09-24T17:46:48", "url": "https://files.pythonhosted.org/packages/0c/72/8e648655cf77b0a936fe0c70a1fbb657fae5a882b4c9097337985cc2e318/zope.security-3.8.3-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "b635758dfb80d91375d224ba295701e1", "sha256": "595017269d07746d3c1784dbe63f082968b2164dc730eba1cab7fd02c1b12cf2" }, "downloads": -1, "filename": "zope.security-3.8.3-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "b635758dfb80d91375d224ba295701e1", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 212223, "upload_time": "2011-09-24T17:46:52", "url": "https://files.pythonhosted.org/packages/77/b8/57eb3a95b6b394e4476aef8cf2d2e315ed31c881f483784bbdb71976f629/zope.security-3.8.3-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "0b4f0bec812ddd84e9e4ef427dadb889", "sha256": "1023a4f261538bc7acfaff51c49771e448e50bc3fcb5c3c107d229803ea67db8" }, "downloads": -1, "filename": "zope.security-3.8.3.tar.gz", "has_sig": false, "md5_digest": "0b4f0bec812ddd84e9e4ef427dadb889", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 103833, "upload_time": "2011-09-24T07:40:39", "url": "https://files.pythonhosted.org/packages/b9/06/fbda9e4e58b898c04995267b5d1aac4500015d335f5175c3d1fb7ffce404/zope.security-3.8.3.tar.gz" } ], "3.8.4": [ { "comment_text": "", "digests": { "md5": "5a71915aa2bc986f5e7f3d7e843a9847", "sha256": "34e2509bafaacc3a629b047cd84824ef3b75a02e66cf5e994d1984a17d557a5f" }, "downloads": -1, "filename": "zope.security-3.8.4.tar.gz", "has_sig": false, "md5_digest": "5a71915aa2bc986f5e7f3d7e843a9847", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 109072, "upload_time": "2012-12-20T20:09:05", "url": "https://files.pythonhosted.org/packages/ba/d7/e41365ba40d989e43d9fa3b5c9cd3ac4bb06ccce2ada753930990ac1441e/zope.security-3.8.4.tar.gz" } ], "3.8.5": [ { "comment_text": "built on Windows-2003Server", "digests": { "md5": "013c83b10a3f0a4be5424646335f03c6", "sha256": "c61e1ba79a008c6f0a0dc5a5fa8697c6aad6c247f658fd09f7f995b4f4f5cce6" }, "downloads": -1, "filename": "zope.security-3.8.5-py2.4-win32.egg", "has_sig": false, "md5_digest": "013c83b10a3f0a4be5424646335f03c6", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 212727, "upload_time": "2012-12-22T01:23:45", "url": "https://files.pythonhosted.org/packages/34/b3/d54d2925b4960ef6bbd2be73573e45450c3537945941f2a3011a461387ac/zope.security-3.8.5-py2.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "f53ab0d0ab3874b77c497796728321b8", "sha256": "f6726a5cc4f839a4333e9ac5e8247518a7acd04ca6a29015320fce052732ea01" }, "downloads": -1, "filename": "zope.security-3.8.5-py2.5-win32.egg", "has_sig": false, "md5_digest": "f53ab0d0ab3874b77c497796728321b8", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 211425, "upload_time": "2012-12-22T01:23:52", "url": "https://files.pythonhosted.org/packages/b5/a1/fc91230abbd97391067efe1b9f988ba7f1d1b593779504f49a5590cfb0ce/zope.security-3.8.5-py2.5-win32.egg" }, { "comment_text": "", "digests": { "md5": "7a86ca22119a5070be305f89dde8189c", "sha256": "f4d800f6276a23235ab784aa8ff5fcda6a94a6e87fb1d07666d0ebee519e68d3" }, "downloads": -1, "filename": "zope.security-3.8.5-py2.6-win32.egg", "has_sig": false, "md5_digest": "7a86ca22119a5070be305f89dde8189c", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 212290, "upload_time": "2012-12-22T01:24:01", "url": "https://files.pythonhosted.org/packages/c2/e6/9b86018deb5216aec3ce15ab5c6fb6956e4aa6336d409e4340230d92e427/zope.security-3.8.5-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "7b01afb6590ecbe035f63f5f09cddeb1", "sha256": "c3ad8a83398fd002b179d8251a4ff74915326bddc1588ab1be08eb587926c206" }, "downloads": -1, "filename": "zope.security-3.8.5-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "7b01afb6590ecbe035f63f5f09cddeb1", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 212600, "upload_time": "2012-12-22T01:24:11", "url": "https://files.pythonhosted.org/packages/4e/0e/e798fa969b0f65df110234abdea1393f1dbfdfd06d98abc5c1ba5dd28129/zope.security-3.8.5-py2.6-win-amd64.egg" }, { "comment_text": "built on Windows-2003Server", "digests": { "md5": "e07d22a9e6b70a43343094d776819946", "sha256": "1bf617afdc45510b871234ecea2061d33e6c9e90a839d263522355587656f837" }, "downloads": -1, "filename": "zope.security-3.8.5-py2.7-win32.egg", "has_sig": false, "md5_digest": "e07d22a9e6b70a43343094d776819946", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 212094, "upload_time": "2012-12-22T01:24:22", "url": "https://files.pythonhosted.org/packages/b5/e2/e1a7120f633dadaa51f7fe84749644ef4e880583e4509d6b7c788f0d3234/zope.security-3.8.5-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "8c723806c36eb7b06006408d99811b0f", "sha256": "8a1712de571e1bacf74c6eb07ec580cfa1b8880cdbc7c3888fe4b24b82f94075" }, "downloads": -1, "filename": "zope.security-3.8.5-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "8c723806c36eb7b06006408d99811b0f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 212396, "upload_time": "2012-12-22T01:24:26", "url": "https://files.pythonhosted.org/packages/32/4d/5a162f101925f673a463b0ce3c0a7a9eefcb4d7dd224004b264ad8c91d66/zope.security-3.8.5-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "197f8c65297a654148f45c6bac613a6f", "sha256": "8ded686fb4db53dc2161dfb27b5f311204c89539c02fd63efda8cfcac37cc093" }, "downloads": -1, "filename": "zope.security-3.8.5.tar.gz", "has_sig": false, "md5_digest": "197f8c65297a654148f45c6bac613a6f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 105218, "upload_time": "2012-12-22T01:19:47", "url": "https://files.pythonhosted.org/packages/99/cf/d0f9aa2071ace59cae56a3c45511ba34340e35e3de426d0200b845a8c6e2/zope.security-3.8.5.tar.gz" }, { "comment_text": "", "digests": { "md5": "7668498925e4bf0ee0ef267abf89166c", "sha256": "20d0da2b4f088e032b268763a3ab8799cb9c71bd96bafcfbeb739d6ba1922675" }, "downloads": -1, "filename": "zope.security-3.8.5.win32-py2.6.exe", "has_sig": false, "md5_digest": "7668498925e4bf0ee0ef267abf89166c", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 353217, "upload_time": "2013-03-07T09:13:07", "url": "https://files.pythonhosted.org/packages/9b/f0/530b902f2b8ae11f2d896699c64495baed12a811baaccd0821bd27e617ad/zope.security-3.8.5.win32-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "2a17d85891ed1a381926c62e0483b78f", "sha256": "513e98aac0d5047415e3f704871746ba174affb8842edd7a9b21b6fda787e133" }, "downloads": -1, "filename": "zope.security-3.8.5.win32-py2.7.exe", "has_sig": false, "md5_digest": "2a17d85891ed1a381926c62e0483b78f", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 353212, "upload_time": "2013-03-07T09:13:48", "url": "https://files.pythonhosted.org/packages/d3/38/587e6159ad871d645705ebaeb92e7e8a5bc7f4b364bf09b4bf70f9226293/zope.security-3.8.5.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "4e2dd0abd7994f965f6da38805776d2a", "sha256": "1bcd5ae859a67690e83198875ea1bfaa6a70e784ade15c6b74f044deb41355a5" }, "downloads": -1, "filename": "zope.security-3.8.5.win-amd64-py2.6.exe", "has_sig": false, "md5_digest": "4e2dd0abd7994f965f6da38805776d2a", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 380934, "upload_time": "2013-03-07T09:13:20", "url": "https://files.pythonhosted.org/packages/0d/c0/dd173bbae060bec1a69351aec5b743f4fc2eb46eb30ea1837efd28090286/zope.security-3.8.5.win-amd64-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "c65f272d0fb165711ec27b15819e1823", "sha256": "dc35ebb4ed30fe0ac5cb86ab519b5d40c4851880bf062cbb6e45797023396d78" }, "downloads": -1, "filename": "zope.security-3.8.5.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "c65f272d0fb165711ec27b15819e1823", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 380924, "upload_time": "2013-03-07T09:13:55", "url": "https://files.pythonhosted.org/packages/df/a3/823e6b914d606c211ea5329ec1604cf4200b52a474d78eb491cca792dc89/zope.security-3.8.5.win-amd64-py2.7.exe" } ], "3.9.0": [ { "comment_text": "", "digests": { "md5": "aaef804b52002ab228a422916b2dc0c6", "sha256": "ed22edf28da83c93e127df0c72faf9cb430db046ea8de3aebd2ae279238b5ced" }, "downloads": -1, "filename": "zope.security-3.9.0-py2.5-win32.egg", "has_sig": false, "md5_digest": "aaef804b52002ab228a422916b2dc0c6", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 211413, "upload_time": "2012-12-22T01:53:49", "url": "https://files.pythonhosted.org/packages/37/2a/3ddc17db5a920d0e2bbf8745ad6d0c39c20e24d743a8f680edd6ccc8f3a3/zope.security-3.9.0-py2.5-win32.egg" }, { "comment_text": "", "digests": { "md5": "00c5eb7a5c8a52364426b0d603398112", "sha256": "f5baa067de145491f15635328f4163dbe8bf332e2a03511d5819897704c2e30b" }, "downloads": -1, "filename": "zope.security-3.9.0-py2.6-win32.egg", "has_sig": false, "md5_digest": "00c5eb7a5c8a52364426b0d603398112", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 212304, "upload_time": "2012-12-22T01:53:59", "url": "https://files.pythonhosted.org/packages/b7/3d/4a6306dab9381d3a3656466a6f4d7e8f09d4633e0c2e785c85e90d3bf68d/zope.security-3.9.0-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "121b5570be38efe0d8e61fbb0078de46", "sha256": "e7bc41408839495cd2f3b000505ab7cbdbd51b61ec9fe69fe8385da784908f40" }, "downloads": -1, "filename": "zope.security-3.9.0-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "121b5570be38efe0d8e61fbb0078de46", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 212613, "upload_time": "2012-12-22T01:54:08", "url": "https://files.pythonhosted.org/packages/72/88/34d5c3b1b087d60b1197cf7c3057791108a56ea99b4cafd579ad8895b6f3/zope.security-3.9.0-py2.6-win-amd64.egg" }, { "comment_text": "built on Windows-2003Server", "digests": { "md5": "eafc8f5de66e87300b5cf7932f5cf7b4", "sha256": "184914a8f899deec88aa8e3fab40e541e5a6d315d22ce0fa1dfe1fdfe09415bc" }, "downloads": -1, "filename": "zope.security-3.9.0-py2.7-win32.egg", "has_sig": false, "md5_digest": "eafc8f5de66e87300b5cf7932f5cf7b4", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 212118, "upload_time": "2012-12-22T01:54:19", "url": "https://files.pythonhosted.org/packages/a9/23/d2f65dd50709e8d974d2ab7282844ffc0190a573a8e55178bc2657d9001a/zope.security-3.9.0-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "e5537c2e0876ec903a30ea19ce13f94d", "sha256": "91d34e9e6636a2e3875f887e4a0a9ae6e9ca77aa398d312c375199bc9855f493" }, "downloads": -1, "filename": "zope.security-3.9.0-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "e5537c2e0876ec903a30ea19ce13f94d", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 212414, "upload_time": "2012-12-22T01:54:23", "url": "https://files.pythonhosted.org/packages/b4/9c/315bb20ceec9be2090e7fa8a93008a396145699c362fcfc082db21c1d6c2/zope.security-3.9.0-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "a50cfe3bf63acc3c4c6f1fe3a744c48a", "sha256": "e571d41cd3f16bf234b26e1300efe3abbff67a692bbaf9b255fd89295d35c8cb" }, "downloads": -1, "filename": "zope.security-3.9.0.tar.gz", "has_sig": false, "md5_digest": "a50cfe3bf63acc3c4c6f1fe3a744c48a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 109264, "upload_time": "2012-12-22T01:26:25", "url": "https://files.pythonhosted.org/packages/6f/2b/40cddf18d9463c71bd3276a591d89bebe76cbdf3c841bf72978e9094e21e/zope.security-3.9.0.tar.gz" } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "7c4fbe07147f4f8f37ecab19cd637604", "sha256": "b3fddc714bcc1167b4c16392203246061f018bbf980b5315181ef056bf3b9a5b" }, "downloads": -1, "filename": "zope.security-4.0.0-py2.6-win32.egg", "has_sig": false, "md5_digest": "7c4fbe07147f4f8f37ecab19cd637604", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 230949, "upload_time": "2013-07-11T09:15:39", "url": "https://files.pythonhosted.org/packages/21/cb/ee7966cb144b9c590acac94c82bdeb3ee5120f0a07b70daa276337107a77/zope.security-4.0.0-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "f515cc22c29e1af62400a43454e6440a", "sha256": "79fe8a816dc8b3ef91e1f100a7724d66896a785244eb84505a6a774b53928c9b" }, "downloads": -1, "filename": "zope.security-4.0.0-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "f515cc22c29e1af62400a43454e6440a", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 231340, "upload_time": "2013-07-11T09:16:05", "url": "https://files.pythonhosted.org/packages/3a/6c/c983119f344946c16164857ec62f7ef08d8b4c97a22a52279fa70af28ba3/zope.security-4.0.0-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "904891b153050ebbe6bcacd7d5a10079", "sha256": "54488315cca50c251873ebe6faff44effc9c69bd3d6b09de1c1e4cbde0551d95" }, "downloads": -1, "filename": "zope.security-4.0.0-py2.7-win32.egg", "has_sig": false, "md5_digest": "904891b153050ebbe6bcacd7d5a10079", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 230482, "upload_time": "2013-07-11T09:16:43", "url": "https://files.pythonhosted.org/packages/b5/f4/20ab72133e84d8109a35c4f270ca1d4fa3af17d169fee0f22328a92240cb/zope.security-4.0.0-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "3c91417db213fbf5f056e1a1c48bdeb9", "sha256": "613bfa891eadc35485a47c53e6e9557c42ca68076e7360895e4aed9046bb611c" }, "downloads": -1, "filename": "zope.security-4.0.0-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "3c91417db213fbf5f056e1a1c48bdeb9", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 230848, "upload_time": "2013-07-11T09:17:19", "url": "https://files.pythonhosted.org/packages/ec/ce/fe2a8cb8a80a1982b0817067686a8d9edbc95567d05c1893ec5c7b883f30/zope.security-4.0.0-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "91b313e697ee25bc5a88032d13e1ae4e", "sha256": "d28169380ff175262cba2990d9bebb603084381aa8b7832322569ed4261589ea" }, "downloads": -1, "filename": "zope.security-4.0.0-py3.2-win32.egg", "has_sig": false, "md5_digest": "91b313e697ee25bc5a88032d13e1ae4e", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 233167, "upload_time": "2013-07-11T09:17:57", "url": "https://files.pythonhosted.org/packages/a1/7e/6724da4abd519d19e863e95fae019f0949d407ee744d37d3ea9cafa9972b/zope.security-4.0.0-py3.2-win32.egg" }, { "comment_text": "", "digests": { "md5": "98efe864eb6157672fab4f6c9a3aff7b", "sha256": "82f1df5138977fd9675f2c696ddf65be972049b4d01bda716878feea9e89d169" }, "downloads": -1, "filename": "zope.security-4.0.0-py3.2-win-amd64.egg", "has_sig": false, "md5_digest": "98efe864eb6157672fab4f6c9a3aff7b", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 233342, "upload_time": "2013-07-11T09:18:31", "url": "https://files.pythonhosted.org/packages/a7/6d/f937c97f877b91df6de2239e0eedbc37f09747a99fc2243bbb30f7b6b31b/zope.security-4.0.0-py3.2-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "a0aadc4470846f80d656090ac1d81e3d", "sha256": "fda7651c9cb3ba4704daabcfcdd7a248fc9f1423afd5ade6a46554a4ccbc990e" }, "downloads": -1, "filename": "zope.security-4.0.0-py3.3-win32.egg", "has_sig": false, "md5_digest": "a0aadc4470846f80d656090ac1d81e3d", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 243606, "upload_time": "2015-09-10T11:29:23", "url": "https://files.pythonhosted.org/packages/e6/13/fe85c6ee5466f71ddf931235f355b3bb9d3c01d4f0a399c08cfac79d1a2d/zope.security-4.0.0-py3.3-win32.egg" }, { "comment_text": "", "digests": { "md5": "06349780e6370a12318fa768aec2ebab", "sha256": "8bdb6c4ab9e4dc9053a77feb2a3c59022aa42bdf21992c41b4174a58faade28c" }, "downloads": -1, "filename": "zope.security-4.0.0-py3.3-win-amd64.egg", "has_sig": false, "md5_digest": "06349780e6370a12318fa768aec2ebab", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 243878, "upload_time": "2015-09-10T11:29:43", "url": "https://files.pythonhosted.org/packages/de/95/38d48a72085e2dbcf33bfc5614d6194bc8493f053b90dd3b9f85c650bdcc/zope.security-4.0.0-py3.3-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "56a248430015ad0f42417aaedbe6c50b", "sha256": "1b016e5c063d7b17e9955e9e7b7db5d0f2300f384629be6df86fc429a13339ed" }, "downloads": -1, "filename": "zope.security-4.0.0.tar.gz", "has_sig": false, "md5_digest": "56a248430015ad0f42417aaedbe6c50b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 729891, "upload_time": "2013-07-10T01:04:20", "url": "https://files.pythonhosted.org/packages/e4/78/cc43b63fff257e24beaac9736e843ec86110bf2e062947b64a976591c54d/zope.security-4.0.0.tar.gz" }, { "comment_text": "", "digests": { "md5": "dfc5926e39614c41c9a4386368ddc589", "sha256": "a3f52d81c6bc84d17cbf25dc93586fb8ef117d170297e3c710fb41c20f062708" }, "downloads": -1, "filename": "zope.security-4.0.0.win32-py2.6.exe", "has_sig": false, "md5_digest": "dfc5926e39614c41c9a4386368ddc589", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 324446, "upload_time": "2013-07-11T09:15:46", "url": "https://files.pythonhosted.org/packages/36/e8/45aea962321d1c0db776474059e9f4b4e2e8e9a64c9ef349e89f44d844e3/zope.security-4.0.0.win32-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "aefd6cb3e2d920395edfcf7c86f4eadb", "sha256": "bbf6018ce4f9549ab599781ac9530b8b451dcac5bc1034a31afd85bb27d63f19" }, "downloads": -1, "filename": "zope.security-4.0.0.win32-py2.7.exe", "has_sig": false, "md5_digest": "aefd6cb3e2d920395edfcf7c86f4eadb", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 324541, "upload_time": "2013-07-11T09:16:54", "url": "https://files.pythonhosted.org/packages/32/dd/6d020483133c208dd48e2a927a6039902f9c9b8ad75f3e0d89a1d0417f72/zope.security-4.0.0.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "fa5ca39500a4ff9081a0442f1109aba9", "sha256": "443b772b28cbe6153b44b26f58dc868d1ff77c8d968f6b46733b8251ae5a7da6" }, "downloads": -1, "filename": "zope.security-4.0.0.win32-py3.2.exe", "has_sig": false, "md5_digest": "fa5ca39500a4ff9081a0442f1109aba9", "packagetype": "bdist_wininst", "python_version": "3.2", "requires_python": null, "size": 323719, "upload_time": "2013-07-11T09:18:07", "url": "https://files.pythonhosted.org/packages/f2/e2/244fce3c05fdcbdffb3b90084cac96fb98ecbceb00139de8b7fdde0a5bb8/zope.security-4.0.0.win32-py3.2.exe" }, { "comment_text": "", "digests": { "md5": "d440a79cd2b336563423fdc3b1ee5ced", "sha256": "283aee011dc325956ad6eb225cd4c55e936b6f4b51aac1f8365569a3a9d0cf71" }, "downloads": -1, "filename": "zope.security-4.0.0.win32-py3.3.exe", "has_sig": false, "md5_digest": "d440a79cd2b336563423fdc3b1ee5ced", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 318277, "upload_time": "2015-09-10T11:29:32", "url": "https://files.pythonhosted.org/packages/ae/7d/918ee2ac0049b10e1ca17fc8adf71cf0e4766dcb10f8d82a741334bef6df/zope.security-4.0.0.win32-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "b01ab2c60ad07cd8d8d90d252ecb83a4", "sha256": "cc100fb175df3ff700046a1d99f26a831e7e1d01f098d93210d51d73b47fe2a7" }, "downloads": -1, "filename": "zope.security-4.0.0.win-amd64-py2.6.exe", "has_sig": false, "md5_digest": "b01ab2c60ad07cd8d8d90d252ecb83a4", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 352235, "upload_time": "2013-07-11T09:16:28", "url": "https://files.pythonhosted.org/packages/19/ad/b736098a02b8b29fb975f224f805eed044f874f77c833032f8457c03e9ec/zope.security-4.0.0.win-amd64-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "cd3f8423d95bcc30f9736da843a9e71c", "sha256": "12710ce85c9021abcbc375f3fc91a2a31d020fc9cd6b67806f9286047b8b7c93" }, "downloads": -1, "filename": "zope.security-4.0.0.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "cd3f8423d95bcc30f9736da843a9e71c", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 352304, "upload_time": "2013-07-11T09:17:36", "url": "https://files.pythonhosted.org/packages/cc/93/24e205b046a70c4717ac9a83cd2516449a9f30db0cf48351e58496731d09/zope.security-4.0.0.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "ff3eefd124daa245485f14d161bc264e", "sha256": "0494958c49d45b7fef5c1b5fcdfd5601f16f7575ee2c401dd2647302f5b486b9" }, "downloads": -1, "filename": "zope.security-4.0.0.win-amd64-py3.2.exe", "has_sig": false, "md5_digest": "ff3eefd124daa245485f14d161bc264e", "packagetype": "bdist_wininst", "python_version": "3.2", "requires_python": null, "size": 351824, "upload_time": "2013-07-11T09:18:47", "url": "https://files.pythonhosted.org/packages/1b/07/bd1eaaec38e97e051ed88ad2071d154e5721d9bbd0e50f133ecae963e73d/zope.security-4.0.0.win-amd64-py3.2.exe" }, { "comment_text": "", "digests": { "md5": "efeb8026357987fe46ad04123425c459", "sha256": "586d23ca71be7aa6816c74587e5c9347fba86a90314ca7653c95ec772efdb79d" }, "downloads": -1, "filename": "zope.security-4.0.0.win-amd64-py3.3.exe", "has_sig": false, "md5_digest": "efeb8026357987fe46ad04123425c459", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 349494, "upload_time": "2015-09-10T11:29:50", "url": "https://files.pythonhosted.org/packages/66/9a/d4f5893230a118c97790cc4283b83cb647613d8239930bcb8c3271bcc2aa/zope.security-4.0.0.win-amd64-py3.3.exe" } ], "4.0.0a1": [ { "comment_text": "", "digests": { "md5": "2c292107049657dc1234869b4adbb682", "sha256": "42000d71818acf22d5b9eb095a4da3ff53d35a836321fc71aed63483988855c6" }, "downloads": -1, "filename": "zope.security-4.0.0a1-py2.6-win32.egg", "has_sig": false, "md5_digest": "2c292107049657dc1234869b4adbb682", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 212845, "upload_time": "2013-03-07T11:15:59", "url": "https://files.pythonhosted.org/packages/59/02/a476a0286cf53b6c7813c0d71614e3d06a18d27d67da7b8a6c59fba8f058/zope.security-4.0.0a1-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "e8160cf7d2c3d654c1f41155e8304f07", "sha256": "9e18f2d390af276aeaaa00ba73a406fcf44b8a97a1cde75f9b86cda9a9cdb0ac" }, "downloads": -1, "filename": "zope.security-4.0.0a1-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "e8160cf7d2c3d654c1f41155e8304f07", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 213197, "upload_time": "2013-03-07T11:16:27", "url": "https://files.pythonhosted.org/packages/5b/4e/b52d73dcd9304e87566041b0536feefffdaabbf63d21bd51d26b91ef9813/zope.security-4.0.0a1-py2.6-win-amd64.egg" }, { "comment_text": "built on Windows-2003Server", "digests": { "md5": "471bfe91383b06d5fd5778df5b823322", "sha256": "4eb28fd28c056a17e934030f54812d1d45fd79208840634449d29bad97519cc4" }, "downloads": -1, "filename": "zope.security-4.0.0a1-py2.7-win32.egg", "has_sig": false, "md5_digest": "471bfe91383b06d5fd5778df5b823322", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 212410, "upload_time": "2013-03-07T11:16:55", "url": "https://files.pythonhosted.org/packages/30/90/03517a90f877aecda280a034f2417ec893890d85ce88d124909670e515c5/zope.security-4.0.0a1-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "060b76dca0be83e2be12853dd64cfcb7", "sha256": "504fbea9f543d79e478e3d6d94c7ad265af2d5f3d33c7172a0378906991d30dd" }, "downloads": -1, "filename": "zope.security-4.0.0a1-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "060b76dca0be83e2be12853dd64cfcb7", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 212741, "upload_time": "2013-03-07T11:17:16", "url": "https://files.pythonhosted.org/packages/41/e1/3bfcfb1821c2f49e5c71ad37bd0051d6160c0831aa8272b655834c7642a9/zope.security-4.0.0a1-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "68a6c61a3744248393413f62ead144eb", "sha256": "4e5677a9d976d384a4d8c9f6135e818509beed84f93ff2edd2b605f419881035" }, "downloads": -1, "filename": "zope.security-4.0.0a1.tar.gz", "has_sig": false, "md5_digest": "68a6c61a3744248393413f62ead144eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 700063, "upload_time": "2013-02-14T14:47:56", "url": "https://files.pythonhosted.org/packages/4c/93/c73d8167d778bf5d0b150bd6c6420901128beb22ba1bc0154e9637b0e855/zope.security-4.0.0a1.tar.gz" }, { "comment_text": "", "digests": { "md5": "0f3062f1e90c1589cc2fe4d63345485c", "sha256": "0a8dddf9a0f940a6afd4b0be4d29d0179c4508fa75699e6df9cfd1b78d09c4ac" }, "downloads": -1, "filename": "zope.security-4.0.0a1.win32-py2.6.exe", "has_sig": false, "md5_digest": "0f3062f1e90c1589cc2fe4d63345485c", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 316546, "upload_time": "2013-03-07T11:16:18", "url": "https://files.pythonhosted.org/packages/f5/ed/3e1026948a4b6fd7d52afef5bebc30ae74ed6263d7f161b54b75e01b2cfa/zope.security-4.0.0a1.win32-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "e880e146fd8b1fa4d7b8403a7067c04a", "sha256": "d0f1126367975c1fafa27f2102b35976a95f382bd2059b895cdf212fd78cf8fd" }, "downloads": -1, "filename": "zope.security-4.0.0a1.win32-py2.7.exe", "has_sig": false, "md5_digest": "e880e146fd8b1fa4d7b8403a7067c04a", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 316638, "upload_time": "2013-03-07T11:17:08", "url": "https://files.pythonhosted.org/packages/13/28/f235f97ee2822f3ddc588ae5de9a3520082cb4faff2c23d1175af0109a3c/zope.security-4.0.0a1.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "c7237fb4528cdc5b7da6003b98b661f3", "sha256": "265032b593b38f231c6d8d812d4c3aab58176032b93d91cf788dee4b5680bdea" }, "downloads": -1, "filename": "zope.security-4.0.0a1.win-amd64-py2.6.exe", "has_sig": false, "md5_digest": "c7237fb4528cdc5b7da6003b98b661f3", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 344330, "upload_time": "2013-03-07T11:16:41", "url": "https://files.pythonhosted.org/packages/39/04/f9d1459370ef06c3e672553b9865ee58e41afdfb962f38bc953603ecef80/zope.security-4.0.0a1.win-amd64-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "34eeddea9bfe7914a21333da85c061c9", "sha256": "a83497de2a64636a32387b76ca2ac79dcd00a46708947eb6ea38aee7e18bb4fd" }, "downloads": -1, "filename": "zope.security-4.0.0a1.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "34eeddea9bfe7914a21333da85c061c9", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 344405, "upload_time": "2013-03-07T11:17:27", "url": "https://files.pythonhosted.org/packages/8d/20/3879ebb240e169c54307334af1ac767c63962931731132e49b46e5e69805/zope.security-4.0.0a1.win-amd64-py2.7.exe" } ], "4.0.0a2": [ { "comment_text": "", "digests": { "md5": "44b02d72c43c03d822925ed5601ba9d0", "sha256": "7600a706e1a4433fcef674081df06b4f2ebcc8921d23651e7691cbdd3c289896" }, "downloads": -1, "filename": "zope.security-4.0.0a2-py2.6-win32.egg", "has_sig": false, "md5_digest": "44b02d72c43c03d822925ed5601ba9d0", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 226842, "upload_time": "2013-03-07T11:17:58", "url": "https://files.pythonhosted.org/packages/55/5d/83e3ce38c90e3468e1278674dde8f064910948077dbea188563e79a3219f/zope.security-4.0.0a2-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "7f3a173f2f17324b245ed793faa3d879", "sha256": "3102a0ad2c446ee39d888bedbc78778c719959756f3e3ca332155ce10ca84a9c" }, "downloads": -1, "filename": "zope.security-4.0.0a2-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "7f3a173f2f17324b245ed793faa3d879", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 227226, "upload_time": "2013-03-07T11:18:27", "url": "https://files.pythonhosted.org/packages/ef/c9/094e2fe21ecd4525cee17d3c873e931ad7a494766a396dd1090e51554046/zope.security-4.0.0a2-py2.6-win-amd64.egg" }, { "comment_text": "built on Windows-2003Server", "digests": { "md5": "3100464d0fab0f1d9dffc73691af3b78", "sha256": "4e1b43f2c25f2743367d0a57545b53a8de941bfc4ed85813604ddb5654cc24cf" }, "downloads": -1, "filename": "zope.security-4.0.0a2-py2.7-win32.egg", "has_sig": false, "md5_digest": "3100464d0fab0f1d9dffc73691af3b78", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 226375, "upload_time": "2013-03-07T11:19:05", "url": "https://files.pythonhosted.org/packages/15/b1/02527a4a8b557ebc5f029600f7c27cbfb745562491db8a7326d92bb12977/zope.security-4.0.0a2-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "779eb398146bddfe2fe215a844c33e66", "sha256": "86be179a97fa63aad789fd1de40e4b4c953a817bebf826759d2e3aa4de2698e5" }, "downloads": -1, "filename": "zope.security-4.0.0a2-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "779eb398146bddfe2fe215a844c33e66", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 226725, "upload_time": "2013-03-07T11:19:48", "url": "https://files.pythonhosted.org/packages/72/8e/6150e4f0735f2aeecb515a2b2a45d216b5634809bb84f9c03fb7cc619b97/zope.security-4.0.0a2-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "fa5cc7d467cd16466e5a34d70cf6ea2e", "sha256": "ae84d5f77b0ce38ae97be4029b3b93589e05977ec0635590a0fae217d04a1160" }, "downloads": -1, "filename": "zope.security-4.0.0a2.tar.gz", "has_sig": false, "md5_digest": "fa5cc7d467cd16466e5a34d70cf6ea2e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 704805, "upload_time": "2013-02-15T16:44:57", "url": "https://files.pythonhosted.org/packages/67/4d/bdc071f2d4e78d746ea33cb4188aa11eb31895eff4d262e3cf72f17ffa9c/zope.security-4.0.0a2.tar.gz" }, { "comment_text": "", "digests": { "md5": "dcd124684ba074b50b84bbe18a79cf75", "sha256": "15a6f18e73b9b55bcccb6a038ade0f40238f74b3b219e9558e2e6d82c87409c1" }, "downloads": -1, "filename": "zope.security-4.0.0a2.win32-py2.6.exe", "has_sig": false, "md5_digest": "dcd124684ba074b50b84bbe18a79cf75", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 322247, "upload_time": "2013-03-07T11:18:09", "url": "https://files.pythonhosted.org/packages/5d/22/3234c88984976ec5a7bacf00a3a8d6929faf83778a9e35ec0140a1f3dc42/zope.security-4.0.0a2.win32-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "708e03a4407eb1109ac604da2f546b6a", "sha256": "9e31c10ad6ac0a09906dea7c86548d31cc9ca52578aeee73b8e47eee4042a0ef" }, "downloads": -1, "filename": "zope.security-4.0.0a2.win32-py2.7.exe", "has_sig": false, "md5_digest": "708e03a4407eb1109ac604da2f546b6a", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 322343, "upload_time": "2013-03-07T11:19:38", "url": "https://files.pythonhosted.org/packages/b4/de/32f61986ea6f5d30eeeb0426830d801379e968b4096bae032a59186661af/zope.security-4.0.0a2.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "46740388c9be287f23c546606b11fec3", "sha256": "81f35d87c85d0714f4b0fea9d8dff65335a4f53997e39fee4b2468c79fe63ce3" }, "downloads": -1, "filename": "zope.security-4.0.0a2.win-amd64-py2.6.exe", "has_sig": false, "md5_digest": "46740388c9be287f23c546606b11fec3", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 350034, "upload_time": "2013-03-07T11:18:40", "url": "https://files.pythonhosted.org/packages/44/db/1c7715b155989e43b5aa588d36564a3fa3f52fac6b039ccb89874e4415d1/zope.security-4.0.0a2.win-amd64-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "e0e52b8909b4869f2b8d94ebcbfe776c", "sha256": "1e5ee7ee9058d7ac550e94f98274f31bcd72ffc7827b95a729552eebc2f4942b" }, "downloads": -1, "filename": "zope.security-4.0.0a2.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "e0e52b8909b4869f2b8d94ebcbfe776c", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 350109, "upload_time": "2013-03-07T11:19:55", "url": "https://files.pythonhosted.org/packages/f7/60/e9896292baa00815a4b086ecf40af0cdbb43a6c721bbb382ec5c35faee59/zope.security-4.0.0a2.win-amd64-py2.7.exe" } ], "4.0.0a3": [ { "comment_text": "", "digests": { "md5": "6a4d0a1ceea13db53c659c574bec05ba", "sha256": "eab3718b798c2678fa0163f27dfef126a104a4b73849551608c4e10ca4c3e541" }, "downloads": -1, "filename": "zope.security-4.0.0a3-py2.6-win32.egg", "has_sig": false, "md5_digest": "6a4d0a1ceea13db53c659c574bec05ba", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 227437, "upload_time": "2013-03-07T11:20:22", "url": "https://files.pythonhosted.org/packages/6c/9d/0c993a6aa60d92f214ae777972f1eec9e499c69f0b394c753df9553820d9/zope.security-4.0.0a3-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "9cc276a87732ba45d481313bb1b22fe9", "sha256": "008b6f32330538080d58e603506de53678952e110db8915547c2e8750c213109" }, "downloads": -1, "filename": "zope.security-4.0.0a3-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "9cc276a87732ba45d481313bb1b22fe9", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 227815, "upload_time": "2013-03-07T11:20:40", "url": "https://files.pythonhosted.org/packages/c3/6d/c0b6dd309d7b2338765269375930f18e985a628d3c65c7080c230bd9e7d8/zope.security-4.0.0a3-py2.6-win-amd64.egg" }, { "comment_text": "built on Windows-2003Server", "digests": { "md5": "3e2bfcab52fed6833e4e15e4865a7272", "sha256": "974e22cc563cf1d3858381aa9147083ddc1eb4a748edc27cf9fd522c20870f3e" }, "downloads": -1, "filename": "zope.security-4.0.0a3-py2.7-win32.egg", "has_sig": false, "md5_digest": "3e2bfcab52fed6833e4e15e4865a7272", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 226986, "upload_time": "2013-03-07T11:21:28", "url": "https://files.pythonhosted.org/packages/3a/5d/6ae32d97c9ead60c2c2bb9975efd2a789d0470e818a60f1e501f3c898181/zope.security-4.0.0a3-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "18399cca6538a864c68c7a280f03d2a5", "sha256": "f3ee1dbce4799340ee7dfd205fdffcdf3016ae6dce071aba0e16efe0e685556d" }, "downloads": -1, "filename": "zope.security-4.0.0a3-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "18399cca6538a864c68c7a280f03d2a5", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 227334, "upload_time": "2013-03-07T11:22:07", "url": "https://files.pythonhosted.org/packages/70/d7/92b7707928ce5dceea420ec216e70ea83ad50fe0351ee9cefd608c6386d3/zope.security-4.0.0a3-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "e7cc41a2ead59372aecd9e12d0511406", "sha256": "319a8c91dd284a93d11a369ddb30bc00d1f6cac453a0f047b5d07dc44bf34ed9" }, "downloads": -1, "filename": "zope.security-4.0.0a3.tar.gz", "has_sig": false, "md5_digest": "e7cc41a2ead59372aecd9e12d0511406", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 705349, "upload_time": "2013-02-15T17:27:59", "url": "https://files.pythonhosted.org/packages/5d/4c/227e9aef90c715cd962fcd8fc6ee06b2b6088e264366f0333576c60e892c/zope.security-4.0.0a3.tar.gz" }, { "comment_text": "", "digests": { "md5": "ecec080e7fb7d35efee901f3b3458108", "sha256": "9184ca709d8767d0bec2fd1fe1d4bcc48e18a270f13aab574fed199d3b56680b" }, "downloads": -1, "filename": "zope.security-4.0.0a3.win32-py2.6.exe", "has_sig": false, "md5_digest": "ecec080e7fb7d35efee901f3b3458108", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 322638, "upload_time": "2013-03-07T11:20:30", "url": "https://files.pythonhosted.org/packages/c3/0c/201580820a668c846faeae66caacef55ddb4bc842c38b1eb7110a490f9be/zope.security-4.0.0a3.win32-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "79ad20679360275b8c5553553edfea71", "sha256": "5778951900424ac6abe7f2e350df43d4b1489f085cf5cc7568c4ced257137120" }, "downloads": -1, "filename": "zope.security-4.0.0a3.win32-py2.7.exe", "has_sig": false, "md5_digest": "79ad20679360275b8c5553553edfea71", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 322731, "upload_time": "2013-03-07T11:21:46", "url": "https://files.pythonhosted.org/packages/d3/9f/d2045373676a36d16dc6c7a7d0bcc29682c83e28fd644e79e90688b55ff5/zope.security-4.0.0a3.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "c4b273a7c2deeadfc1f20f61cc60ed23", "sha256": "e5311595a9ad436071ba2fe6b6ec83ea53dd4e32c9460d67096d0d4b1a6ef956" }, "downloads": -1, "filename": "zope.security-4.0.0a3.win-amd64-py2.6.exe", "has_sig": false, "md5_digest": "c4b273a7c2deeadfc1f20f61cc60ed23", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 350422, "upload_time": "2013-03-07T11:20:56", "url": "https://files.pythonhosted.org/packages/45/3e/3c7a4d3fb9df1fa21e0a210faa163a9222d9957c7ad795469654eaf0a2ed/zope.security-4.0.0a3.win-amd64-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "6f37581b4f525250980a22f7a49282b0", "sha256": "f4e51347e63a91ba6d5902e3f19832bf84b0ec410b28e21a4022a9a31570ed67" }, "downloads": -1, "filename": "zope.security-4.0.0a3.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "6f37581b4f525250980a22f7a49282b0", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 350497, "upload_time": "2013-03-07T11:22:11", "url": "https://files.pythonhosted.org/packages/85/7b/fa7910978c105d10c7344b6cadda53f3315a1fd46631fad26fc3770488a8/zope.security-4.0.0a3.win-amd64-py2.7.exe" } ], "4.0.0a4": [ { "comment_text": "", "digests": { "md5": "f7844b998e200cda773f6728ad8f7c25", "sha256": "41d9f39545f144491ee806c8578518321b6e8c83bae217b3605fef36b06bc481" }, "downloads": -1, "filename": "zope.security-4.0.0a4-py2.6-win32.egg", "has_sig": false, "md5_digest": "f7844b998e200cda773f6728ad8f7c25", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 223933, "upload_time": "2013-03-07T11:22:37", "url": "https://files.pythonhosted.org/packages/08/04/b8d33d7ec28d14fe98299b87f5cc2ea284b358c71392b0d0349afe72a064/zope.security-4.0.0a4-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "a1b2c14fdbe30674e4c271194a251470", "sha256": "21b68e354c0d06dee73406081642aa543f56ad881831e8864d16a2375e3c7264" }, "downloads": -1, "filename": "zope.security-4.0.0a4-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "a1b2c14fdbe30674e4c271194a251470", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 224309, "upload_time": "2013-03-07T11:23:11", "url": "https://files.pythonhosted.org/packages/de/e3/6718757e8a15e74d40fcf68cb25f10447157e2a950f038ed8a65d62a837d/zope.security-4.0.0a4-py2.6-win-amd64.egg" }, { "comment_text": "built on Windows-2003Server", "digests": { "md5": "fe9608f46ea2340762c03b9aa0c2f3bb", "sha256": "88ce0711fd8bae973c2841866d5d258327af53f4ae351d87ceee20330d485fb5" }, "downloads": -1, "filename": "zope.security-4.0.0a4-py2.7-win32.egg", "has_sig": false, "md5_digest": "fe9608f46ea2340762c03b9aa0c2f3bb", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 223474, "upload_time": "2013-03-07T11:23:35", "url": "https://files.pythonhosted.org/packages/c8/85/cf9b4d36474a05eb458ae92a3c1760160d05aab25d6d5a2ca2bff69e3dc3/zope.security-4.0.0a4-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "840314fac1f7fd68fa8f79ba5e185cde", "sha256": "a35fd14e7134a02ce8f18d90f773afde350b09d3a56e84816e3ef3ac640dd8fd" }, "downloads": -1, "filename": "zope.security-4.0.0a4-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "840314fac1f7fd68fa8f79ba5e185cde", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 223821, "upload_time": "2013-03-07T11:23:51", "url": "https://files.pythonhosted.org/packages/85/51/04bdb9c0c7f44be6935c461e5344df50095e49c44ad841b7ea55a48a7217/zope.security-4.0.0a4-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "a5f2f98cf15f7832cf220dfbd55c62ca", "sha256": "04ae1dfd2458780599a85d73a5ce6d5537148a8e4039cf0ee04d6e1c09b248c0" }, "downloads": -1, "filename": "zope.security-4.0.0a4.tar.gz", "has_sig": false, "md5_digest": "a5f2f98cf15f7832cf220dfbd55c62ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 737809, "upload_time": "2013-02-19T17:10:49", "url": "https://files.pythonhosted.org/packages/10/5d/ec3483fdc89d9ff87ead4b70c233c52b2f201aeccd5422f624df1c3d1d26/zope.security-4.0.0a4.tar.gz" }, { "comment_text": "", "digests": { "md5": "5d1aec5201902818208a82fb6d784e0e", "sha256": "df62f80c4c4bec32aa9beff1a3ff471bec25824dbf37a3a5ed3ece76aa20fab0" }, "downloads": -1, "filename": "zope.security-4.0.0a4.win32-py2.6.exe", "has_sig": false, "md5_digest": "5d1aec5201902818208a82fb6d784e0e", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 321171, "upload_time": "2013-03-07T11:22:50", "url": "https://files.pythonhosted.org/packages/80/af/546adb5564047b488a505c6cdadc936ef66989674b37bbebdcb04e42f2a8/zope.security-4.0.0a4.win32-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "f3adeaf0cd2e79e31a601cfc936f46fc", "sha256": "c137f01d5b92ecbcb91eddae2477f4c7db8b2ad5e61adb8b412c0e0414ef699b" }, "downloads": -1, "filename": "zope.security-4.0.0a4.win32-py2.7.exe", "has_sig": false, "md5_digest": "f3adeaf0cd2e79e31a601cfc936f46fc", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 321263, "upload_time": "2013-03-07T11:23:44", "url": "https://files.pythonhosted.org/packages/5c/e7/ffb974374adaa86edebc22a6957ffa0e28005646bb0436add787642ecf7a/zope.security-4.0.0a4.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "20e5a4bd119d61663d02040c4e9491de", "sha256": "278739972bbccece4d7070a64063661bc81967a5d92fd34fe6099ce1da87b07a" }, "downloads": -1, "filename": "zope.security-4.0.0a4.win-amd64-py2.6.exe", "has_sig": false, "md5_digest": "20e5a4bd119d61663d02040c4e9491de", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 348958, "upload_time": "2013-03-07T11:23:24", "url": "https://files.pythonhosted.org/packages/b3/4a/3aa3de45ad2b9c37fb7380dfcca2ff475e1700ea7a25e23428d17a65c9b6/zope.security-4.0.0a4.win-amd64-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "132ad1dbcf1cf2ae35a4ad79a125afa3", "sha256": "972546086f6b915290d140efd9858b50b119d6f5bbf1d3f7da7a2b71bc0f3db6" }, "downloads": -1, "filename": "zope.security-4.0.0a4.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "132ad1dbcf1cf2ae35a4ad79a125afa3", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 349033, "upload_time": "2013-03-07T11:24:08", "url": "https://files.pythonhosted.org/packages/57/12/f4ce3a2cecb8aa9896fb2206da728d4dd4ddbe8448a9c0b2477a2a28b4fd/zope.security-4.0.0a4.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "1097df4aec2a70bfd102051bb7020114", "sha256": "61124b23349c48774b8cbd0df639250348e07c255fb7b94f1c0cd69c8438c143" }, "downloads": -1, "filename": "zope.security-4.0.0a4.zip", "has_sig": false, "md5_digest": "1097df4aec2a70bfd102051bb7020114", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 134980, "upload_time": "2013-02-28T17:00:23", "url": "https://files.pythonhosted.org/packages/54/63/63b766c747ccc8bacf36c2b9595001d5a432af3e502f3a2727e029303751/zope.security-4.0.0a4.zip" } ], "4.0.0a5": [ { "comment_text": "", "digests": { "md5": "052194653ce7c26fdaccdb893f4ee146", "sha256": "093b74715c989e34744a3b21aa5d66ba0c22fa3bd32611908b7a13121710749c" }, "downloads": -1, "filename": "zope.security-4.0.0a5-py2.6-win32.egg", "has_sig": false, "md5_digest": "052194653ce7c26fdaccdb893f4ee146", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 224050, "upload_time": "2013-03-07T11:24:37", "url": "https://files.pythonhosted.org/packages/e9/78/cb2740a16acf61886b85e696e163245085c4c251bf2b8869c936ca0b9a7c/zope.security-4.0.0a5-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "f1f7c5a7c831652e6a417bf69be0b4a8", "sha256": "c79f4683f5c7bbc1d21e1b58ca4d5aeb8bd2474f9db7a10e1b4a3c7b8cca1e4d" }, "downloads": -1, "filename": "zope.security-4.0.0a5-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "f1f7c5a7c831652e6a417bf69be0b4a8", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 224407, "upload_time": "2013-03-07T11:25:00", "url": "https://files.pythonhosted.org/packages/9e/09/fbc3794ebac0c7479476cee23f4bc985f8d891f5ea4a3c0c5919734db49c/zope.security-4.0.0a5-py2.6-win-amd64.egg" }, { "comment_text": "built on Windows-2003Server", "digests": { "md5": "c81e7bafee7c73f36693558305973d78", "sha256": "c422fef110f9492fe6f53e4ca67a2df3d89f5c90c0cf037bf9a29567fa70c978" }, "downloads": -1, "filename": "zope.security-4.0.0a5-py2.7-win32.egg", "has_sig": false, "md5_digest": "c81e7bafee7c73f36693558305973d78", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 223576, "upload_time": "2013-03-07T11:25:43", "url": "https://files.pythonhosted.org/packages/15/f0/1f72460642da8538bb7988705dacc684cfb05b2763f74231bc134af5c22d/zope.security-4.0.0a5-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "0315d06fdcc86ea0b77258fdedd0864d", "sha256": "f64b7ca151e9901c99cdf3b7afaf0a166b775e6e24476bf3248461b5d9e49bf4" }, "downloads": -1, "filename": "zope.security-4.0.0a5-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "0315d06fdcc86ea0b77258fdedd0864d", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 223922, "upload_time": "2013-03-07T11:25:57", "url": "https://files.pythonhosted.org/packages/c4/b4/fb0ff91ddc881094adb58489bb391f10a1847f46c67046caa3ff33e84910/zope.security-4.0.0a5-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "1d7be8c71f78000e41f711afea36bb37", "sha256": "23bf23ed34f199b4c78b210770a0331925372a17dfa12fe4db824e71a0d55dca" }, "downloads": -1, "filename": "zope.security-4.0.0a5.win32-py2.6.exe", "has_sig": false, "md5_digest": "1d7be8c71f78000e41f711afea36bb37", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 321385, "upload_time": "2013-03-07T11:24:46", "url": "https://files.pythonhosted.org/packages/e3/d8/6ce434b1ac0d55b6aa8f153c8160407c2fdae0f98df02dc41497e00e38fd/zope.security-4.0.0a5.win32-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "65ee209aae3436aa996a04841f405cf2", "sha256": "1f326e53b8181033994fb23ee9f3fba1bc246f4af9d10bbfcaa1b6e012863f7b" }, "downloads": -1, "filename": "zope.security-4.0.0a5.win32-py2.7.exe", "has_sig": false, "md5_digest": "65ee209aae3436aa996a04841f405cf2", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 321477, "upload_time": "2013-03-07T11:25:51", "url": "https://files.pythonhosted.org/packages/ea/06/6b23c7b9281b8366e204ad25921b9020a1445832f02de6056749d0d78519/zope.security-4.0.0a5.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "6017e45e66cf065a58b5e9050fc4684f", "sha256": "f0196b0931dcd63a041c6357210f75bf0c4d84a29017f587cb8e107c5970dc19" }, "downloads": -1, "filename": "zope.security-4.0.0a5.win-amd64-py2.6.exe", "has_sig": false, "md5_digest": "6017e45e66cf065a58b5e9050fc4684f", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 349170, "upload_time": "2013-03-07T11:25:18", "url": "https://files.pythonhosted.org/packages/99/65/8c2110d4626c9f298095b86b2199ea22127a6c9ce457644931d857baa41d/zope.security-4.0.0a5.win-amd64-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "750e8e783b1eaf0231aa77c4bcd41d10", "sha256": "5deba66f53e4d86d1f4f332a1f700d22ae69c28403c2f47358e7ffa25da27c55" }, "downloads": -1, "filename": "zope.security-4.0.0a5.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "750e8e783b1eaf0231aa77c4bcd41d10", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 349245, "upload_time": "2013-03-07T11:26:01", "url": "https://files.pythonhosted.org/packages/51/9d/0c10202e1c9d7ac4d069c07f7bcfcb228a1d918698b4e293b25260ceb77b/zope.security-4.0.0a5.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "d098de25d66494a10e1dad7f2e2cc8d0", "sha256": "6b0d11a30d0c5074c8b784ab26d3fd6e93b83e0366752e394832b07c2b53363a" }, "downloads": -1, "filename": "zope.security-4.0.0a5.zip", "has_sig": false, "md5_digest": "d098de25d66494a10e1dad7f2e2cc8d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 135155, "upload_time": "2013-02-28T18:47:47", "url": "https://files.pythonhosted.org/packages/7a/a5/81666bf68100d97e1b0085fd44d88d932b98c309ed9d342f115a5cbd6b6c/zope.security-4.0.0a5.zip" } ], "4.0.0b1": [ { "comment_text": "", "digests": { "md5": "e943424ab4219ea41590b1be941e999b", "sha256": "7a202886b93add70eca45266cb975ef3695000d71fe957e1edd829df9552273f" }, "downloads": -1, "filename": "zope.security-4.0.0b1-py2.6-win32.egg", "has_sig": false, "md5_digest": "e943424ab4219ea41590b1be941e999b", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 230549, "upload_time": "2013-03-11T17:30:26", "url": "https://files.pythonhosted.org/packages/8a/b3/05e6afbfe6b959124d50fd6cd3082ee138923350f9cd181dcabb28f01dc5/zope.security-4.0.0b1-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "306b2a07bf53c1aa50a9d13950a9c8fe", "sha256": "8b32ac992889c8a6e80e511dd52c3faab2c50567c7590a173f61c2696e0c4d19" }, "downloads": -1, "filename": "zope.security-4.0.0b1-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "306b2a07bf53c1aa50a9d13950a9c8fe", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 230941, "upload_time": "2013-03-11T17:31:01", "url": "https://files.pythonhosted.org/packages/6d/93/54bdc799e071cea4aa7a20a499e48356236b7a79daff33281ff1cc2768b1/zope.security-4.0.0b1-py2.6-win-amd64.egg" }, { "comment_text": "built on Windows-2003Server", "digests": { "md5": "a4ec4fecb7fc1fe93a3232e1e9fcc2b6", "sha256": "a12761c174d55e671d1ff737c0729b93fcfdd3a68872ebc9c5bd02ae4c79d43a" }, "downloads": -1, "filename": "zope.security-4.0.0b1-py2.7-win32.egg", "has_sig": false, "md5_digest": "a4ec4fecb7fc1fe93a3232e1e9fcc2b6", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 230084, "upload_time": "2013-03-11T17:31:30", "url": "https://files.pythonhosted.org/packages/4a/13/6adf461ce6e14e152e8a3292c13b0d730388853d22281e6df8e74bf32719/zope.security-4.0.0b1-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "356d074d5d8fe15edda5219f63c9d02c", "sha256": "c1fb995323038f516661797b6db38265bd7a7d9806944a676a2e51398f3b100f" }, "downloads": -1, "filename": "zope.security-4.0.0b1-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "356d074d5d8fe15edda5219f63c9d02c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 230444, "upload_time": "2013-03-11T17:32:02", "url": "https://files.pythonhosted.org/packages/99/77/77c8a7e37c68bbe97b67c3a748b7c602d494e65249ba0a7740c1ee733f98/zope.security-4.0.0b1-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "609e091f2578e6506ef6ec4ceb0d1fe7", "sha256": "874e108a674d49f6a6f2e2df3de8d723b966e2ff93e63678e11a7015a9da20b3" }, "downloads": -1, "filename": "zope.security-4.0.0b1-py3.2-win32.egg", "has_sig": false, "md5_digest": "609e091f2578e6506ef6ec4ceb0d1fe7", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 232779, "upload_time": "2013-03-11T17:32:31", "url": "https://files.pythonhosted.org/packages/9d/40/c1478984bac600fd941c1d97541f49c0c2baad9490a944cc59f30f659686/zope.security-4.0.0b1-py3.2-win32.egg" }, { "comment_text": "", "digests": { "md5": "8c48222107f796bf8cdd03f5d7c12d3c", "sha256": "02fb2879e9eab358bdfd743b590176ec537b004f0af9253fa04ac1591221388a" }, "downloads": -1, "filename": "zope.security-4.0.0b1-py3.2-win-amd64.egg", "has_sig": false, "md5_digest": "8c48222107f796bf8cdd03f5d7c12d3c", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 232958, "upload_time": "2013-03-11T17:33:20", "url": "https://files.pythonhosted.org/packages/3b/86/9b58e59fe6c3803b56e84d1eb0da301dd0bd4b520052e95d242cd0b715d9/zope.security-4.0.0b1-py3.2-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "d314288000c7a1fc3a27dc9f6dc4fc85", "sha256": "e5e9af01c2c84ed861c4639feed0cded0f2e0a0d65759707cc6a1c065855aeb4" }, "downloads": -1, "filename": "zope.security-4.0.0b1-py3.3-win32.egg", "has_sig": false, "md5_digest": "d314288000c7a1fc3a27dc9f6dc4fc85", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 243281, "upload_time": "2015-09-10T11:30:03", "url": "https://files.pythonhosted.org/packages/4b/1c/aab7148feb730510709310929e6855b69fa4c31420d3c951381d7ae38cfa/zope.security-4.0.0b1-py3.3-win32.egg" }, { "comment_text": "", "digests": { "md5": "a057d4165443b637c84abf98655aa642", "sha256": "135a9246990b70d9bf8255e4473a97c103fa2639a3d52c5f605d3e6187c7889c" }, "downloads": -1, "filename": "zope.security-4.0.0b1-py3.3-win-amd64.egg", "has_sig": false, "md5_digest": "a057d4165443b637c84abf98655aa642", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 243558, "upload_time": "2015-09-10T11:30:31", "url": "https://files.pythonhosted.org/packages/b9/a0/ffc25b63f1fb984c2bfb38af4367a0b1f95f4693770d9aee3a54907f54d9/zope.security-4.0.0b1-py3.3-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "5215fb9275164e860abc0c30985294d7", "sha256": "d2f27db4f82b3de6d85b91d87277f338de4ef3940ded0e31df9878a7d5c8db53" }, "downloads": -1, "filename": "zope.security-4.0.0b1.tar.gz", "has_sig": false, "md5_digest": "5215fb9275164e860abc0c30985294d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 729599, "upload_time": "2013-03-11T17:19:07", "url": "https://files.pythonhosted.org/packages/bb/57/0528eeab0caad3428dc9210652dda0d869090354339a1dd4401a17e88fe3/zope.security-4.0.0b1.tar.gz" }, { "comment_text": "", "digests": { "md5": "3dfaafa33bc8d09411ac7555d565f03b", "sha256": "423cc6857b7aaa1e935eaaccb29644d27d54badd54a5595b1aff99be474b996c" }, "downloads": -1, "filename": "zope.security-4.0.0b1.win32-py2.6.exe", "has_sig": false, "md5_digest": "3dfaafa33bc8d09411ac7555d565f03b", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 324002, "upload_time": "2013-03-11T17:30:41", "url": "https://files.pythonhosted.org/packages/f6/e0/19e739998adf3990b3832dec24f7ac1473f12432b99ceb29aecfc92d4853/zope.security-4.0.0b1.win32-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "0741c2f6eccdbe93afd0369c13cdb158", "sha256": "68ca3c6a50a9ab369344eb5fabf4b698fa7506400dd6238f1dec2346fddbf6f0" }, "downloads": -1, "filename": "zope.security-4.0.0b1.win32-py2.7.exe", "has_sig": false, "md5_digest": "0741c2f6eccdbe93afd0369c13cdb158", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 324096, "upload_time": "2013-03-11T17:31:46", "url": "https://files.pythonhosted.org/packages/7b/70/4afbc9282c4cf1f129120cf53e7fb232db8b377784a825eecea2f161ac70/zope.security-4.0.0b1.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "d462f7f64a008bb2c4e623774af4e257", "sha256": "a01fcda1c609439bf22e55cfbc7ae5c3877141f2026283a830bfc4b7137bd8e7" }, "downloads": -1, "filename": "zope.security-4.0.0b1.win32-py3.2.exe", "has_sig": false, "md5_digest": "d462f7f64a008bb2c4e623774af4e257", "packagetype": "bdist_wininst", "python_version": "3.2", "requires_python": null, "size": 323284, "upload_time": "2013-03-11T17:32:39", "url": "https://files.pythonhosted.org/packages/e1/a8/3e7de942d5e1cff5dd62681a16d7532bf5854a8db30675bc24e07d202b6b/zope.security-4.0.0b1.win32-py3.2.exe" }, { "comment_text": "", "digests": { "md5": "1c7a83e6447bcd5502c9fae90182fdd8", "sha256": "a00a1f94c77c832a097af7c579ad0aa3b6bf3f008860da290472553ffe287811" }, "downloads": -1, "filename": "zope.security-4.0.0b1.win32-py3.3.exe", "has_sig": false, "md5_digest": "1c7a83e6447bcd5502c9fae90182fdd8", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 317841, "upload_time": "2015-09-10T11:30:19", "url": "https://files.pythonhosted.org/packages/a5/57/d767d52c53c8b4a164c5cdbcedea672acf6e5daf520c1d2a1b72915e097b/zope.security-4.0.0b1.win32-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "cf0e30f2b7439173b716caf0918f4b6f", "sha256": "47dd91a729a9fd97b27bab39a563d6092648fa29a3234470b42096425aa0d157" }, "downloads": -1, "filename": "zope.security-4.0.0b1.win-amd64-py2.6.exe", "has_sig": false, "md5_digest": "cf0e30f2b7439173b716caf0918f4b6f", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 351791, "upload_time": "2013-03-11T17:31:14", "url": "https://files.pythonhosted.org/packages/e8/fa/e3d4506a04690c8ddb9d07ac94c0e4ae671f3f2e9c3c5b67a8927ce81306/zope.security-4.0.0b1.win-amd64-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "b60a6aa2037025b31f32eeee058a56dc", "sha256": "3ca204bc1935cc5ce0174719f9149db85f09eff29beb800c6c28e8585b248355" }, "downloads": -1, "filename": "zope.security-4.0.0b1.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "b60a6aa2037025b31f32eeee058a56dc", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 351862, "upload_time": "2013-03-11T17:32:07", "url": "https://files.pythonhosted.org/packages/f3/b6/95b47fd2f64432582b1ad3980a9584acbeec2359050689e7104bbfe70b73/zope.security-4.0.0b1.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "d024324945020399f952ecbe32e95deb", "sha256": "01144d8376db8803eea96892b8b66fcafe616e49b6961151b78da106c3c9fc20" }, "downloads": -1, "filename": "zope.security-4.0.0b1.win-amd64-py3.2.exe", "has_sig": false, "md5_digest": "d024324945020399f952ecbe32e95deb", "packagetype": "bdist_wininst", "python_version": "3.2", "requires_python": null, "size": 351387, "upload_time": "2013-03-11T17:33:44", "url": "https://files.pythonhosted.org/packages/55/d3/0c60ea309cf66d7e414eaf362285a3d19d1f8839a442e318ffd97062e7af/zope.security-4.0.0b1.win-amd64-py3.2.exe" }, { "comment_text": "", "digests": { "md5": "b83a77221e8c47d76ae90bbb69e6a0a0", "sha256": "0e6b2a5b47741a1d4220fd97ae7fda1b237463b50b169ba768c1811f2be94e37" }, "downloads": -1, "filename": "zope.security-4.0.0b1.win-amd64-py3.3.exe", "has_sig": false, "md5_digest": "b83a77221e8c47d76ae90bbb69e6a0a0", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 349063, "upload_time": "2015-09-10T11:30:39", "url": "https://files.pythonhosted.org/packages/12/17/bc29aa28a2310880027904f7ad72449b7e93f6ee9a06a4b9472e83ff2540/zope.security-4.0.0b1.win-amd64-py3.3.exe" } ], "4.0.1": [ { "comment_text": "", "digests": { "md5": "2249eae369433fcb5488360f2b5677a2", "sha256": "367d5aa86280824221d505d1b924ffee5f5baa9ce4e1fe2cf0fdfbe873d177e4" }, "downloads": -1, "filename": "zope.security-4.0.1-py2.6-win32.egg", "has_sig": false, "md5_digest": "2249eae369433fcb5488360f2b5677a2", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 230757, "upload_time": "2014-03-19T19:23:13", "url": "https://files.pythonhosted.org/packages/2b/01/092801c75ee58b77e81f395ca1ea58c1ef8da3b9cbfeb13b4a57811e0ead/zope.security-4.0.1-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "a49e587e210bd17351ce60036db2c629", "sha256": "3e895d727d548782360f1fdc672928f2e484f1d6aa0ba9b31d64d9be0aa63c25" }, "downloads": -1, "filename": "zope.security-4.0.1-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "a49e587e210bd17351ce60036db2c629", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 231134, "upload_time": "2014-03-19T19:23:25", "url": "https://files.pythonhosted.org/packages/c8/ac/1816c14d1a2e6d1886eb61c9e528120b2f01eb72262eff411a28ee7d6343/zope.security-4.0.1-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "6f058e10fd602b59ac11f74f6293ea10", "sha256": "62c51be5de70a24610529bdec88358082c0239a2200cdbfac5d5c79eb1f647ec" }, "downloads": -1, "filename": "zope.security-4.0.1-py2.7-win32.egg", "has_sig": false, "md5_digest": "6f058e10fd602b59ac11f74f6293ea10", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 230295, "upload_time": "2014-03-19T19:23:35", "url": "https://files.pythonhosted.org/packages/4e/b9/b44d650e10af9108fc82b708797e568849216d681de09aafef1cd6cd86f3/zope.security-4.0.1-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "522a1d1e8c80f4d900097c7711babfac", "sha256": "fb1db40f3500d60758f74c4ffa12e8a3ed9f56e49cda94904b193debb6d334a2" }, "downloads": -1, "filename": "zope.security-4.0.1-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "522a1d1e8c80f4d900097c7711babfac", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 230656, "upload_time": "2014-03-19T19:23:42", "url": "https://files.pythonhosted.org/packages/4f/3a/c3e9cc86f2d4749b66c2f884cd2e909841acd2a6d76466afef70fe438437/zope.security-4.0.1-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "66bd5774b1018ffe4772c97db5c8300d", "sha256": "0cb1aec27f0f7a256601281affae3a03d1185903df62ba6bced73e9b126b20cd" }, "downloads": -1, "filename": "zope.security-4.0.1-py3.2-win32.egg", "has_sig": false, "md5_digest": "66bd5774b1018ffe4772c97db5c8300d", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 232972, "upload_time": "2014-03-19T19:23:50", "url": "https://files.pythonhosted.org/packages/08/2e/1ef1183817565baf38a280d21aa79ce3521ec8f178e63b9d293eb23846ad/zope.security-4.0.1-py3.2-win32.egg" }, { "comment_text": "", "digests": { "md5": "d5c55ec6b46fae4c53b93e36a3d96889", "sha256": "9081c7573e4f6e112c0051833ad17ae10ccc0fcaa85a9610942b1d8d4a70fd03" }, "downloads": -1, "filename": "zope.security-4.0.1-py3.2-win-amd64.egg", "has_sig": false, "md5_digest": "d5c55ec6b46fae4c53b93e36a3d96889", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 233146, "upload_time": "2014-03-19T19:23:59", "url": "https://files.pythonhosted.org/packages/cb/7d/3bd2d8ffe5b13767bf587df6302db571f49b7573c81620a53e61479c193e/zope.security-4.0.1-py3.2-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "5a07110b8d7cf8c9e61464b60da202b0", "sha256": "60cfc6d9de08c3d80e5d2f753517a038cd8662d650a014ec9ffcbe64be9d4e7c" }, "downloads": -1, "filename": "zope.security-4.0.1-py3.3-win32.egg", "has_sig": false, "md5_digest": "5a07110b8d7cf8c9e61464b60da202b0", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 243415, "upload_time": "2015-09-10T11:30:53", "url": "https://files.pythonhosted.org/packages/10/c8/5cd4420986edf48b9c81310d1ef8e1d5da0e6a85b28fbd6d85299f703e88/zope.security-4.0.1-py3.3-win32.egg" }, { "comment_text": "", "digests": { "md5": "7ab16dd909ee837d10a1916b1404af4c", "sha256": "18b1af06ba2d8000909ecfdc74a0429052d11f218180088103be8fa5f7ad4f51" }, "downloads": -1, "filename": "zope.security-4.0.1-py3.3-win-amd64.egg", "has_sig": false, "md5_digest": "7ab16dd909ee837d10a1916b1404af4c", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 243668, "upload_time": "2015-09-10T11:31:19", "url": "https://files.pythonhosted.org/packages/37/3e/18c45273a423fc08ba441767c053be68e989c4184a2a6eaeb594f999d5f5/zope.security-4.0.1-py3.3-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "4dcc220ce19979605203416b1dd499cd", "sha256": "a590faaa27aedfda6f5638b29866ee9057ef045ef72d0b2f960f688c92fc8fec" }, "downloads": -1, "filename": "zope.security-4.0.1-py3.4-win32.egg", "has_sig": false, "md5_digest": "4dcc220ce19979605203416b1dd499cd", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 237939, "upload_time": "2016-05-28T12:33:21", "url": "https://files.pythonhosted.org/packages/47/a6/f505889c3136d4bb59e8606d384f45aa530171b73ec3545a330bdc5344e7/zope.security-4.0.1-py3.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "668b5f1b28a3cf5b8ec9cf5e7c4cdf3f", "sha256": "ed69e9bf4e701a9dbf3fae6a862ab934f5e2d1e8ba956f6efa03532f3f93a675" }, "downloads": -1, "filename": "zope.security-4.0.1-py3.4-win-amd64.egg", "has_sig": false, "md5_digest": "668b5f1b28a3cf5b8ec9cf5e7c4cdf3f", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 238116, "upload_time": "2016-05-28T12:33:37", "url": "https://files.pythonhosted.org/packages/72/9e/489d4621235f41cc93448987968268bfd3d3995d15e5537c08240f2dedff/zope.security-4.0.1-py3.4-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "27d1f2873a0ee9c1f485f7b8f22d8e1c", "sha256": "8da30b03d5491464d59397e03b88192f31f587325ee6c6eb1ca596a1e487e2ec" }, "downloads": -1, "filename": "zope.security-4.0.1.tar.gz", "has_sig": false, "md5_digest": "27d1f2873a0ee9c1f485f7b8f22d8e1c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 729866, "upload_time": "2014-03-19T19:08:03", "url": "https://files.pythonhosted.org/packages/cd/78/7f9f35b9caace290a5220ff05a9dcb67d00408a2d2408178b67b50aad825/zope.security-4.0.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "fabf8779a0ec6d0f1e08667a8fdd1a0a", "sha256": "a322887631b3f50dd9735bc1bd21e779fadc49132a3a395381206f17fa182fff" }, "downloads": -1, "filename": "zope.security-4.0.1.win32-py2.6.exe", "has_sig": false, "md5_digest": "fabf8779a0ec6d0f1e08667a8fdd1a0a", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 324387, "upload_time": "2014-03-19T19:23:19", "url": "https://files.pythonhosted.org/packages/b0/a3/229295cc1003c4e4297255d5d912271312cd8d3f405c118b1877f538c3e7/zope.security-4.0.1.win32-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "0be58b4b1929f80ee5bc9a1f039319c8", "sha256": "d44057f8b2d293e7363408e098947879fbecf0021951a7e48410b764993d9cf4" }, "downloads": -1, "filename": "zope.security-4.0.1.win32-py2.7.exe", "has_sig": false, "md5_digest": "0be58b4b1929f80ee5bc9a1f039319c8", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 324483, "upload_time": "2014-03-19T19:23:38", "url": "https://files.pythonhosted.org/packages/d6/f3/1dbe5d22b1926ec00d79c66d7ae4a2f58c309764aec13c51b57546ce0a6a/zope.security-4.0.1.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "027fa64fee045b2b1707b1b84b530ef3", "sha256": "baa9a4a24ca9301706f895cbdb057d347b98e6b59bb79cdc6908582c071a17cc" }, "downloads": -1, "filename": "zope.security-4.0.1.win32-py3.2.exe", "has_sig": false, "md5_digest": "027fa64fee045b2b1707b1b84b530ef3", "packagetype": "bdist_wininst", "python_version": "3.2", "requires_python": null, "size": 323660, "upload_time": "2014-03-19T19:23:53", "url": "https://files.pythonhosted.org/packages/01/ca/697ec091dbe995d5f047c44f8485639da83c8c4777eebd886a6b2ae4f935/zope.security-4.0.1.win32-py3.2.exe" }, { "comment_text": "", "digests": { "md5": "4df2b76d798ab278a970f79b7c42db14", "sha256": "a230aa8eecfa2a2abc2000c0cd123ff4da7fc570e293efa3125273e678c2a555" }, "downloads": -1, "filename": "zope.security-4.0.1.win32-py3.3.exe", "has_sig": false, "md5_digest": "4df2b76d798ab278a970f79b7c42db14", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 318217, "upload_time": "2015-09-10T11:31:05", "url": "https://files.pythonhosted.org/packages/51/53/58211703165f399b128d4897ceccbb2534b284f38fd0e3dfd63540046495/zope.security-4.0.1.win32-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "32577e23a5d30f3afb7d709c9b908698", "sha256": "815249396591f415ea7bade45f1914a01ca6f75730a4fd4e01379517b984af1f" }, "downloads": -1, "filename": "zope.security-4.0.1.win32-py3.4.exe", "has_sig": false, "md5_digest": "32577e23a5d30f3afb7d709c9b908698", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 318201, "upload_time": "2016-05-28T12:33:27", "url": "https://files.pythonhosted.org/packages/f1/ed/85715721c1776de1c796dfe30e5777cd148fd95e8630a16de07df0cda6e0/zope.security-4.0.1.win32-py3.4.exe" }, { "comment_text": "", "digests": { "md5": "42bab4180d8d919b95324fe930fbc02f", "sha256": "8bf09d13c7fd6f7a7ed8e42c2812f6dd00e9804bd4b934a5e0bce6264e121c35" }, "downloads": -1, "filename": "zope.security-4.0.1.win-amd64-py2.6.exe", "has_sig": false, "md5_digest": "42bab4180d8d919b95324fe930fbc02f", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 352172, "upload_time": "2014-03-19T19:23:29", "url": "https://files.pythonhosted.org/packages/60/c1/526e2566ad6088dbfe6096e951cf0ea1ffc534938c94af4402f774659de4/zope.security-4.0.1.win-amd64-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "7356c5beda16b710cbe8bfbe8cf48bfc", "sha256": "3234492442c99ce9199e8d7f2aeeac8bdf8d04d47ac90425ede5f0499641c9c2" }, "downloads": -1, "filename": "zope.security-4.0.1.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "7356c5beda16b710cbe8bfbe8cf48bfc", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 352247, "upload_time": "2014-03-19T19:23:45", "url": "https://files.pythonhosted.org/packages/e0/2b/6473b0eeba52623116109ef285d18145b98acd6b60e8cf4788bd87dd028d/zope.security-4.0.1.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "f39bd00207dc8983db6dbfb3c4fd1800", "sha256": "2d1a627469bb98852954bfb088fa9fc673caff4e4474d79144f9ab7c0ebc9e8b" }, "downloads": -1, "filename": "zope.security-4.0.1.win-amd64-py3.2.exe", "has_sig": false, "md5_digest": "f39bd00207dc8983db6dbfb3c4fd1800", "packagetype": "bdist_wininst", "python_version": "3.2", "requires_python": null, "size": 351765, "upload_time": "2014-03-19T19:24:03", "url": "https://files.pythonhosted.org/packages/ec/21/e1b354affcec4656678509db0f5d458772ef8d47b0636a7b3a8ebbc971e9/zope.security-4.0.1.win-amd64-py3.2.exe" }, { "comment_text": "", "digests": { "md5": "c63d3f307204515d3a81aab2863a02e7", "sha256": "75546c641f694f630abbed4a2da6efb18b028c76642d7cec98e36b98b919f771" }, "downloads": -1, "filename": "zope.security-4.0.1.win-amd64-py3.3.exe", "has_sig": false, "md5_digest": "c63d3f307204515d3a81aab2863a02e7", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 349434, "upload_time": "2015-09-10T11:31:31", "url": "https://files.pythonhosted.org/packages/93/20/2be880c4bb565bb760128dad814084e4ccf31ee6ef03a29340ec46def4fc/zope.security-4.0.1.win-amd64-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "f2671786c6698819b3ccc001784d5ce9", "sha256": "5457060334948968adb05153101d3b341e1bac58757d0f561b027c56a9952a93" }, "downloads": -1, "filename": "zope.security-4.0.1.win-amd64-py3.4.exe", "has_sig": false, "md5_digest": "f2671786c6698819b3ccc001784d5ce9", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 349435, "upload_time": "2016-05-28T12:33:43", "url": "https://files.pythonhosted.org/packages/44/0b/1838a644ba20f7f9d3ee5cd6096d6ca92680a3554cc98b5453dd72db4e85/zope.security-4.0.1.win-amd64-py3.4.exe" } ], "4.0.2": [ { "comment_text": "", "digests": { "md5": "ee90333ba71e0609b1aab8601c620640", "sha256": "625eea94d75ddced9e2ec987950f4a0826435c8cf0a7fac6f7075ec621910ef0" }, "downloads": -1, "filename": "zope.security-4.0.2-py2.6-win32.egg", "has_sig": false, "md5_digest": "ee90333ba71e0609b1aab8601c620640", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 231979, "upload_time": "2015-06-02T15:43:06", "url": "https://files.pythonhosted.org/packages/a0/67/9a28afa713a3ea91d9c72517d054ed5ef904a6b61276f7617cba1bf4c678/zope.security-4.0.2-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "f343091e2cd54db8dae99a816437a29d", "sha256": "4c74b45bedf7af62fdf6525f5faa02bbc70a2c9fdd64d74c513ee135868c5e75" }, "downloads": -1, "filename": "zope.security-4.0.2-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "f343091e2cd54db8dae99a816437a29d", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 232354, "upload_time": "2015-06-02T15:43:20", "url": "https://files.pythonhosted.org/packages/a0/be/c2014c64d0d55c0f44e3759951d6d8fc6069a4aba708aa2daeabb953ea79/zope.security-4.0.2-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "110a706d007c82fe0f36a51dd264b73a", "sha256": "079d87de5a7fa14a6afa16e25f4df342c9fe06a942fba101d7f0c23be2e674f5" }, "downloads": -1, "filename": "zope.security-4.0.2-py2.7-win32.egg", "has_sig": false, "md5_digest": "110a706d007c82fe0f36a51dd264b73a", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 231530, "upload_time": "2015-06-02T15:43:36", "url": "https://files.pythonhosted.org/packages/f3/ea/1a6b0509b6cd9eda83e46a2a28b805a7744dc7e14268175d479a49910b17/zope.security-4.0.2-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "33270987e35b0d5497dcd29b7e5d8a2b", "sha256": "f0e3e094d9ebfa4983087d0797b47dfdc99899990766d9e593c4fedd2a5604f2" }, "downloads": -1, "filename": "zope.security-4.0.2-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "33270987e35b0d5497dcd29b7e5d8a2b", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 231883, "upload_time": "2015-06-02T15:43:48", "url": "https://files.pythonhosted.org/packages/7f/a0/a51b7e018a46526dab08a528756e03c2cddd589b06bacf4b22b4ae42b1ab/zope.security-4.0.2-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "39a9b2b5498b33e349e3b76ddd7a5ac2", "sha256": "2e205d5ed4b1f0fab0634c1499e52c833e10b1476a1c23d9d9bf968984517303" }, "downloads": -1, "filename": "zope.security-4.0.2-py3.2-win32.egg", "has_sig": false, "md5_digest": "39a9b2b5498b33e349e3b76ddd7a5ac2", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 234272, "upload_time": "2015-06-02T15:44:02", "url": "https://files.pythonhosted.org/packages/49/ab/d779dcd28a5eac39f74572551322c6dae0d8d2d4a095098f11b62799c26a/zope.security-4.0.2-py3.2-win32.egg" }, { "comment_text": "", "digests": { "md5": "6269879ec322d8d4d94b6307abfc9424", "sha256": "6ddbe42bfa0109b1ed3b13b2a1457d291066f7f003e8eeeb902b0486a8287612" }, "downloads": -1, "filename": "zope.security-4.0.2-py3.2-win-amd64.egg", "has_sig": false, "md5_digest": "6269879ec322d8d4d94b6307abfc9424", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 234441, "upload_time": "2015-06-02T15:44:21", "url": "https://files.pythonhosted.org/packages/f2/6f/31a9a22cb99afb60bafda2cd798ce94c8e1b3724eb56e75c9d53cd5efa24/zope.security-4.0.2-py3.2-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "3e4073e08416df51c3bb005cb4515b53", "sha256": "9a652db094fe6a70af7773bdb8a21082ba7678ffedbe322ee0e11081a45a2ee3" }, "downloads": -1, "filename": "zope.security-4.0.2-py3.3-win32.egg", "has_sig": false, "md5_digest": "3e4073e08416df51c3bb005cb4515b53", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 244654, "upload_time": "2015-09-10T11:31:48", "url": "https://files.pythonhosted.org/packages/fd/41/4c0d57fa14cbe1eeafe282cb5fd4b182b64ce7c6a0151bc14b402f356e54/zope.security-4.0.2-py3.3-win32.egg" }, { "comment_text": "", "digests": { "md5": "2f21e236305b107569d322bc200af6bd", "sha256": "dfe0dc42d37f650cdaefa035760b862c1b4a42d615bb1c418a45646c648d5721" }, "downloads": -1, "filename": "zope.security-4.0.2-py3.3-win-amd64.egg", "has_sig": false, "md5_digest": "2f21e236305b107569d322bc200af6bd", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 244918, "upload_time": "2015-09-10T11:32:16", "url": "https://files.pythonhosted.org/packages/93/b9/5e38670f55e1a17c5958ad3985f3f6bcf31496ba6f8139537da69ca2d19b/zope.security-4.0.2-py3.3-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "499fd5e1cc1b0c47838b0e97b8f426fd", "sha256": "23457c3e7a91540241a83a648c4b3bcaf11dd34c965726d3db83c5f5737cd12f" }, "downloads": -1, "filename": "zope.security-4.0.2-py3.4-win32.egg", "has_sig": false, "md5_digest": "499fd5e1cc1b0c47838b0e97b8f426fd", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 239220, "upload_time": "2016-05-28T12:33:56", "url": "https://files.pythonhosted.org/packages/49/c0/ce95f0bf3ae2a62d73af345453535dc5b1b275728b323a197e209122835d/zope.security-4.0.2-py3.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "f95976dbd4f581490cb7c0e1cba0fdd3", "sha256": "30f88ee142cac6074caf96dbb05d1a1c7922cd1284fb4b2889e1389bd84dd027" }, "downloads": -1, "filename": "zope.security-4.0.2-py3.4-win-amd64.egg", "has_sig": false, "md5_digest": "f95976dbd4f581490cb7c0e1cba0fdd3", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 239400, "upload_time": "2016-05-28T12:34:19", "url": "https://files.pythonhosted.org/packages/a1/03/c9e20f943ea20abc08171f1b8b7518e1570bc91de1b551044e54381d50d3/zope.security-4.0.2-py3.4-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "cde9ec1b642e7da5136326abc124ffd6", "sha256": "852a77d431e41018cd871879ea11b08457d61bb2bd5ad31c9174d04ce3ce94f2" }, "downloads": -1, "filename": "zope.security-4.0.2.tar.gz", "has_sig": true, "md5_digest": "cde9ec1b642e7da5136326abc124ffd6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 872966, "upload_time": "2015-06-02T15:36:29", "url": "https://files.pythonhosted.org/packages/61/5a/4c326547a61d99729abda342d73ce212ea6fd06afc756ee6b668e61227a9/zope.security-4.0.2.tar.gz" }, { "comment_text": "", "digests": { "md5": "7fb9fa1025b9c9bd0ca4a891f6436516", "sha256": "639eafd7225078043bb459a210e3befef70f638c1dc86cb171f021d55d97a775" }, "downloads": -1, "filename": "zope.security-4.0.2.win32-py2.6.exe", "has_sig": false, "md5_digest": "7fb9fa1025b9c9bd0ca4a891f6436516", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 326235, "upload_time": "2015-06-02T15:43:13", "url": "https://files.pythonhosted.org/packages/58/eb/4141dc234eda9fc309c43dbce21e03d7c640da4d8a330a355c0179f48fe9/zope.security-4.0.2.win32-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "5821fd7290ca5dcf1d0c803164bc3bcd", "sha256": "c4f44022e69609e24baac4921317e68047522c003c4a07eb0efdd2570b36d881" }, "downloads": -1, "filename": "zope.security-4.0.2.win32-py2.7.exe", "has_sig": false, "md5_digest": "5821fd7290ca5dcf1d0c803164bc3bcd", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 326329, "upload_time": "2015-06-02T15:43:41", "url": "https://files.pythonhosted.org/packages/a8/f3/37f2573bfe1447aadc082efb080bc041f766aa4741b3627330ea5e6719bd/zope.security-4.0.2.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "4c0dad781cb997d3eb91120ef9005625", "sha256": "b9fc52fead3fa2040eebc6418e8dc2c3695331e0d44e96efde151ec0cf14087b" }, "downloads": -1, "filename": "zope.security-4.0.2.win32-py3.2.exe", "has_sig": false, "md5_digest": "4c0dad781cb997d3eb91120ef9005625", "packagetype": "bdist_wininst", "python_version": "3.2", "requires_python": null, "size": 325506, "upload_time": "2015-06-02T15:44:10", "url": "https://files.pythonhosted.org/packages/7c/36/85c411f870f67325c6a15a2f104fecd138d805aea6834dde785929b6e27d/zope.security-4.0.2.win32-py3.2.exe" }, { "comment_text": "", "digests": { "md5": "9ae046b05b37a942dd330939064f9a21", "sha256": "def32915f97c3e2f3f8a79924343c2d4d2a88008cf3fb0ff9b789661114b4e38" }, "downloads": -1, "filename": "zope.security-4.0.2.win32-py3.3.exe", "has_sig": false, "md5_digest": "9ae046b05b37a942dd330939064f9a21", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 320063, "upload_time": "2015-09-10T11:31:59", "url": "https://files.pythonhosted.org/packages/f6/bf/f10ac888e86501eac9b6e125869cb5dc8851f33579123230150182ee7793/zope.security-4.0.2.win32-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "2f10bca2c336ee504068363d6907bbf4", "sha256": "12ea36fd264cb6c6e0fe1ad2ae61a50eadd2e89b49b284a807e49b9bcd46aa2b" }, "downloads": -1, "filename": "zope.security-4.0.2.win32-py3.4.exe", "has_sig": false, "md5_digest": "2f10bca2c336ee504068363d6907bbf4", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 320051, "upload_time": "2016-05-28T12:34:03", "url": "https://files.pythonhosted.org/packages/01/4a/7752261d668d840e3396c06995522a6135bd39ba43f5591e50eea37c02cb/zope.security-4.0.2.win32-py3.4.exe" }, { "comment_text": "", "digests": { "md5": "5ca65f279fcd0045577672a6b00b9728", "sha256": "e1bc0092273910790c2fa5720d207de8d2a38630e53402bf0bc3df7c86d3047e" }, "downloads": -1, "filename": "zope.security-4.0.2.win-amd64-py2.6.exe", "has_sig": false, "md5_digest": "5ca65f279fcd0045577672a6b00b9728", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 354020, "upload_time": "2015-06-02T15:43:25", "url": "https://files.pythonhosted.org/packages/b3/7e/736ab80b9417131dff54fd6669682b64becad0f6bbf40c26cf15be6e1538/zope.security-4.0.2.win-amd64-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "e3e59ccabe4b0b515bfa52e4bd78e3ba", "sha256": "0b7439fa28db87b373d3243e32481ffd1f651dd99143e3ef05d0bbc4ec7a62d4" }, "downloads": -1, "filename": "zope.security-4.0.2.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "e3e59ccabe4b0b515bfa52e4bd78e3ba", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 354093, "upload_time": "2015-06-02T15:43:53", "url": "https://files.pythonhosted.org/packages/44/97/107a19c48e3137f03fd431e83dd70d0d3c79fb666b4c1ebf781da5525d10/zope.security-4.0.2.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "130a54632f0d5e3392ad3c74e101da3f", "sha256": "ee7388968e10333c757bad92cae163a4e6fa1912f85c36910cf5ce31d3ba5406" }, "downloads": -1, "filename": "zope.security-4.0.2.win-amd64-py3.2.exe", "has_sig": false, "md5_digest": "130a54632f0d5e3392ad3c74e101da3f", "packagetype": "bdist_wininst", "python_version": "3.2", "requires_python": null, "size": 353611, "upload_time": "2015-06-02T15:44:33", "url": "https://files.pythonhosted.org/packages/0e/a2/d810e2e5f09bd0d740aba4f5a5824425c8d277325538288c44ec929fbf24/zope.security-4.0.2.win-amd64-py3.2.exe" }, { "comment_text": "", "digests": { "md5": "95ea401cb96029f6810aa446a1cd363d", "sha256": "d780ea1f68c09efa3344454d0228048481fa9a58d6785b99888b5ff984dd75dc" }, "downloads": -1, "filename": "zope.security-4.0.2.win-amd64-py3.3.exe", "has_sig": false, "md5_digest": "95ea401cb96029f6810aa446a1cd363d", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 351281, "upload_time": "2015-09-10T11:32:27", "url": "https://files.pythonhosted.org/packages/84/5f/236505f3d6d0a78ea2dacfc6a0bca8db5ca99799dc138b5ce5bca7440175/zope.security-4.0.2.win-amd64-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "dda361fd1f9e2fbe4eac714cbcac16cc", "sha256": "5c961536df9c42135357a7841baa9ee2c0cf130a1f60f1386aca27ff9cbce744" }, "downloads": -1, "filename": "zope.security-4.0.2.win-amd64-py3.4.exe", "has_sig": false, "md5_digest": "dda361fd1f9e2fbe4eac714cbcac16cc", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 351281, "upload_time": "2016-05-28T12:34:26", "url": "https://files.pythonhosted.org/packages/18/c6/8f00be7470753b5db86bdb0dc5b6d8d19976dc337cf3ab5b970cd77014b7/zope.security-4.0.2.win-amd64-py3.4.exe" } ], "4.0.3": [ { "comment_text": "", "digests": { "md5": "4df7211b62071b03ea7d9821d004d37a", "sha256": "4450a43d638395640c9a20abdd46099ceb7f25866c6e0eaf79fe14208a27ef03" }, "downloads": -1, "filename": "zope.security-4.0.3-py2.6-win32.egg", "has_sig": false, "md5_digest": "4df7211b62071b03ea7d9821d004d37a", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 232465, "upload_time": "2015-06-03T01:13:49", "url": "https://files.pythonhosted.org/packages/88/ca/1e39867dbdb80a81d57e7cf213ffe8262108550f8996eaf3d1b690a785c0/zope.security-4.0.3-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "fbdd9fa409cef81b1dda7e9cd2893eeb", "sha256": "7f509d15663bedf9b5b0ea173003313600497045c998c72aaa72364b1a871903" }, "downloads": -1, "filename": "zope.security-4.0.3-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "fbdd9fa409cef81b1dda7e9cd2893eeb", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 232845, "upload_time": "2015-06-03T01:14:23", "url": "https://files.pythonhosted.org/packages/ec/fc/4f67d53b71c958957b943bb19bc1bc46049748dccd1324de8c933923e2ae/zope.security-4.0.3-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "ae4ac1f73551ece3f4a51747db585bd0", "sha256": "eb9e88033fd4baaa934198190191b24b2090ae217b6cf180bdf6658cdcaa8d7d" }, "downloads": -1, "filename": "zope.security-4.0.3-py2.7-win32.egg", "has_sig": false, "md5_digest": "ae4ac1f73551ece3f4a51747db585bd0", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 232007, "upload_time": "2015-06-03T01:14:46", "url": "https://files.pythonhosted.org/packages/0f/82/75a4e3e00d751d6f46c0d82557c704a7c0b64360ae5a0d56016f5b3a7a20/zope.security-4.0.3-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "a135f245de2a257008f6f5d2a6667cbb", "sha256": "1df62c6cd935ab34ce3d2088069fec148e925ea343904f8c357ca896c1936e9b" }, "downloads": -1, "filename": "zope.security-4.0.3-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "a135f245de2a257008f6f5d2a6667cbb", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 232359, "upload_time": "2015-06-03T01:15:12", "url": "https://files.pythonhosted.org/packages/c8/6c/15fbd1d185cf6ec41bdcc9262a9df2e05624ed6d589ff78708f3b8d17675/zope.security-4.0.3-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "d774cd2b73aabfee9eb247d5a4782e4b", "sha256": "c50bf0f17d4503edcb1e037734edc214d3bb0479842a4caae87fe5f1fc47fac2" }, "downloads": -1, "filename": "zope.security-4.0.3-py3.2-win32.egg", "has_sig": false, "md5_digest": "d774cd2b73aabfee9eb247d5a4782e4b", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 234690, "upload_time": "2015-06-03T01:15:33", "url": "https://files.pythonhosted.org/packages/5c/c3/db626e069e5aec6faea246839cf55e7cb8e9edccb970faef82840e1b9c7c/zope.security-4.0.3-py3.2-win32.egg" }, { "comment_text": "", "digests": { "md5": "ace93b08bdc749be46832abb603ca7b7", "sha256": "cdc4aa137a429faea221feaaaf63e95a80bf6fe76bcbe54698eddc4af49c7cc8" }, "downloads": -1, "filename": "zope.security-4.0.3-py3.2-win-amd64.egg", "has_sig": false, "md5_digest": "ace93b08bdc749be46832abb603ca7b7", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 234870, "upload_time": "2015-06-03T01:16:00", "url": "https://files.pythonhosted.org/packages/23/a7/7d103066e016df80991fc5ee4baf2f0cff733328f2d2777c564b89e75fd1/zope.security-4.0.3-py3.2-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "500b17520ee49fbfd5081fa3c9ffaebf", "sha256": "72e731e4f1f1a1198b65e89c1b42febdb5f9255d70312f22abc848497af74beb" }, "downloads": -1, "filename": "zope.security-4.0.3-py3.3-win32.egg", "has_sig": false, "md5_digest": "500b17520ee49fbfd5081fa3c9ffaebf", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 245183, "upload_time": "2015-09-10T11:32:41", "url": "https://files.pythonhosted.org/packages/d8/19/7b6ac81dda3e5014a11301c571a10673ca1562746306be2d2e136d7f5206/zope.security-4.0.3-py3.3-win32.egg" }, { "comment_text": "", "digests": { "md5": "15b2ea4e76e4da38db184b2e505a73c8", "sha256": "1088d2b0b05c25cac5f2cd1b40c790f00a5b9028341b7d094a189380f63d4eb4" }, "downloads": -1, "filename": "zope.security-4.0.3-py3.3-win-amd64.egg", "has_sig": false, "md5_digest": "15b2ea4e76e4da38db184b2e505a73c8", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 245458, "upload_time": "2015-09-10T11:33:06", "url": "https://files.pythonhosted.org/packages/6f/33/298a12bd0c7a694729b9f9c6ef59c15ce66d7240e12ace7477e8ee2a835c/zope.security-4.0.3-py3.3-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "858786ad8931bbe9221f0aee14f59a8f", "sha256": "17e73aaecb4b89386cf8f25c9edca7f99bc0837f64c10f7985e9bec0eb6f127e" }, "downloads": -1, "filename": "zope.security-4.0.3-py3.4-win32.egg", "has_sig": false, "md5_digest": "858786ad8931bbe9221f0aee14f59a8f", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 239756, "upload_time": "2016-05-28T12:34:39", "url": "https://files.pythonhosted.org/packages/9e/b7/c88c895ef3d9f649a66e732f73fbcea7fc3f39a589dc1a94d196773d3f99/zope.security-4.0.3-py3.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "c2f169e75f671955d587f8f681c5376c", "sha256": "9a8612d917a393b44dbb1be95b215a2c0e68804c4a80da90b0b7f77af4badc4a" }, "downloads": -1, "filename": "zope.security-4.0.3-py3.4-win-amd64.egg", "has_sig": false, "md5_digest": "c2f169e75f671955d587f8f681c5376c", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 239930, "upload_time": "2016-05-28T12:34:53", "url": "https://files.pythonhosted.org/packages/7f/94/3940c27763951c652568934ccc140a7359c4ff468bda1ba05b14a084f8b4/zope.security-4.0.3-py3.4-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "41d576a1c87da1e78f77739ea0c597e1", "sha256": "5e6bb3e507c9e680ec2b804fa7a0af2c34eca0edbe003cc5e88055459071f593" }, "downloads": -1, "filename": "zope.security-4.0.3.tar.gz", "has_sig": true, "md5_digest": "41d576a1c87da1e78f77739ea0c597e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 869682, "upload_time": "2015-06-02T23:39:32", "url": "https://files.pythonhosted.org/packages/fa/48/d4d207f993359fdc8bbeda17f71f882de9d0a1974dfff423c0bda7f615f1/zope.security-4.0.3.tar.gz" }, { "comment_text": "", "digests": { "md5": "2b9a52fb942cbec072796cf043d82f83", "sha256": "369f80f65a0b202933941a02fc3ade1d24dc934bb5f4e4419cf1e88b38325c0f" }, "downloads": -1, "filename": "zope.security-4.0.3.win32-py2.6.exe", "has_sig": false, "md5_digest": "2b9a52fb942cbec072796cf043d82f83", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 326722, "upload_time": "2015-06-03T01:13:57", "url": "https://files.pythonhosted.org/packages/5b/13/78fb3fee822755b60a52525aef673a2bdee5ab02ad82c86ebf3cfe7f60f4/zope.security-4.0.3.win32-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "c21fe0b7508820c08b931fb95708a3f6", "sha256": "c3796488a3428b3b5c6a1815513d3cee6cdfdd218d570aaba63f3aa0e3a8368d" }, "downloads": -1, "filename": "zope.security-4.0.3.win32-py2.7.exe", "has_sig": false, "md5_digest": "c21fe0b7508820c08b931fb95708a3f6", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 326817, "upload_time": "2015-06-03T01:14:52", "url": "https://files.pythonhosted.org/packages/3c/7a/f082b4817b6610308c481527a9a71f7ef2ae902bb5be3ac7e39d0d782db1/zope.security-4.0.3.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "d9bb06d30ab309dcfade3bccf536f78d", "sha256": "8815052935bf259ac7e76dabc4c77495bf4c170b8de2e669437ca676dcfeacd5" }, "downloads": -1, "filename": "zope.security-4.0.3.win32-py3.2.exe", "has_sig": false, "md5_digest": "d9bb06d30ab309dcfade3bccf536f78d", "packagetype": "bdist_wininst", "python_version": "3.2", "requires_python": null, "size": 325992, "upload_time": "2015-06-03T01:15:44", "url": "https://files.pythonhosted.org/packages/f5/e5/1a818bc33dd2f13f52bbb732d018cd00cc52d1ff46c8373942d20c441995/zope.security-4.0.3.win32-py3.2.exe" }, { "comment_text": "", "digests": { "md5": "d0bafac0e326c09c516bc8b5ddfbf4e0", "sha256": "b1b9d7c3b35d38786cd7a025c64438af0c9abdc2c0a8a60090ae036de848df28" }, "downloads": -1, "filename": "zope.security-4.0.3.win32-py3.3.exe", "has_sig": false, "md5_digest": "d0bafac0e326c09c516bc8b5ddfbf4e0", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 320550, "upload_time": "2015-09-10T11:32:51", "url": "https://files.pythonhosted.org/packages/03/d0/38f45ed8e7254e98818255634b36d7b2d8dd276c0be01cf9f5e279cb0bb2/zope.security-4.0.3.win32-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "866d0292051eda72b9c11c3684aff1b8", "sha256": "cf275ec366c1abe3415dbd763360eedb1c7837fabfd1fd01097cdda6877208fa" }, "downloads": -1, "filename": "zope.security-4.0.3.win32-py3.4.exe", "has_sig": false, "md5_digest": "866d0292051eda72b9c11c3684aff1b8", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 320537, "upload_time": "2016-05-28T12:34:44", "url": "https://files.pythonhosted.org/packages/b7/d8/c8d703553866c56745e5cbbc4cd2a196dff32b2722c42c0d518c1225a909/zope.security-4.0.3.win32-py3.4.exe" }, { "comment_text": "", "digests": { "md5": "f5561c327dfd334dbd522bc700921116", "sha256": "767d72baa21bceb9d6a3e2316a50eae322c9fb84b7f82f85564a931165015804" }, "downloads": -1, "filename": "zope.security-4.0.3.win-amd64-py2.6.exe", "has_sig": false, "md5_digest": "f5561c327dfd334dbd522bc700921116", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 354506, "upload_time": "2015-06-03T01:14:29", "url": "https://files.pythonhosted.org/packages/98/e2/6407a9b265d0bb0c89c36e2b4edf3255c64b3d35324ac28ecd3cae62679c/zope.security-4.0.3.win-amd64-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "399d3b0b993cb46a2b23c6bfa9ecd8d1", "sha256": "65005a9ebc4d955788d5d5734819e9ef8bc2af805a57e3db5b553136b64673d3" }, "downloads": -1, "filename": "zope.security-4.0.3.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "399d3b0b993cb46a2b23c6bfa9ecd8d1", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 354580, "upload_time": "2015-06-03T01:15:17", "url": "https://files.pythonhosted.org/packages/45/eb/8b8882b31c5ab472e99947849bea05dcf89f70974352e08bfaf8f8d60752/zope.security-4.0.3.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "8d05418837b3c60d24627cb9fd7ac22f", "sha256": "642fb8751ca72ca28d6ca6fff43f6505bf88fa72010f42d8a23e749a6339f63f" }, "downloads": -1, "filename": "zope.security-4.0.3.win-amd64-py3.2.exe", "has_sig": false, "md5_digest": "8d05418837b3c60d24627cb9fd7ac22f", "packagetype": "bdist_wininst", "python_version": "3.2", "requires_python": null, "size": 354097, "upload_time": "2015-06-03T01:16:09", "url": "https://files.pythonhosted.org/packages/f0/3b/ab08d05ad9deaf4ee98a7137467fe3cbd3d816dde104ee87e198bc6b3a05/zope.security-4.0.3.win-amd64-py3.2.exe" }, { "comment_text": "", "digests": { "md5": "a720942299b96820faa71e55b55a66ac", "sha256": "7d2e891f290713390202d7034f3fa2435cd7cf5fb41fba949b1170727f6bc8ea" }, "downloads": -1, "filename": "zope.security-4.0.3.win-amd64-py3.3.exe", "has_sig": false, "md5_digest": "a720942299b96820faa71e55b55a66ac", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 351770, "upload_time": "2015-09-10T11:33:18", "url": "https://files.pythonhosted.org/packages/f4/bd/6674b86e3feb5d8cafdf95438dd4a6936b06aa0ee593d7aa7605990a2696/zope.security-4.0.3.win-amd64-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "5e268fe789742a7d82cd646b206b7e17", "sha256": "df2092cde5fb5feb4b838b9315a09ec8b0718386852ca20a047479c8f33992ae" }, "downloads": -1, "filename": "zope.security-4.0.3.win-amd64-py3.4.exe", "has_sig": false, "md5_digest": "5e268fe789742a7d82cd646b206b7e17", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 351768, "upload_time": "2016-05-28T12:35:00", "url": "https://files.pythonhosted.org/packages/e3/56/37d5c365c33dc70b5da969b2875e785960b6204c2056809f8829ed8e688d/zope.security-4.0.3.win-amd64-py3.4.exe" } ], "4.1.0": [ { "comment_text": "", "digests": { "md5": "578799d764394211f030d21a7052f317", "sha256": "f4de5c2e330d4a160b74e2ce20fc65e446662235f704e38fda896aa2315d6580" }, "downloads": -1, "filename": "zope.security-4.1.0-py2.7-win32.egg", "has_sig": false, "md5_digest": "578799d764394211f030d21a7052f317", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 233019, "upload_time": "2017-04-24T15:45:28", "url": "https://files.pythonhosted.org/packages/7a/bc/48b354dba3f0d60aa60460d3db6bab64c3be26f39d7a3c1b81e3d23018b1/zope.security-4.1.0-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "5a8339d6f454e3607ebdc8b1be9e860c", "sha256": "d78e9e85b635db6ff6c6c3741d7f73fcaa724be47f483d7063aa9803999f9716" }, "downloads": -1, "filename": "zope.security-4.1.0-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "5a8339d6f454e3607ebdc8b1be9e860c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 233340, "upload_time": "2017-04-24T15:45:37", "url": "https://files.pythonhosted.org/packages/d5/44/048629c67ff4d363d4a6f5980ee3f1856325a55c8f01de88294569a68123/zope.security-4.1.0-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "2abead9b350e5cc8c0102d9d839263c4", "sha256": "369758471509cc5b47b3c9a2a61e70760597436294cb1057bb292e730d823ec7" }, "downloads": -1, "filename": "zope.security-4.1.0-py3.3-win32.egg", "has_sig": false, "md5_digest": "2abead9b350e5cc8c0102d9d839263c4", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 246883, "upload_time": "2017-04-24T15:45:48", "url": "https://files.pythonhosted.org/packages/d5/9e/f63d37c1c213e4922d6d37a460fd7c2d065bd6eaaf2e2a28a5754f7fbc4a/zope.security-4.1.0-py3.3-win32.egg" }, { "comment_text": "", "digests": { "md5": "9c35c277d27582bca0e7440ae4fd8503", "sha256": "2d31a29e61d83f43b82839a0a5b0f781417aa607cb6579ef4d5cf43735ce0d2a" }, "downloads": -1, "filename": "zope.security-4.1.0-py3.3-win-amd64.egg", "has_sig": false, "md5_digest": "9c35c277d27582bca0e7440ae4fd8503", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 247149, "upload_time": "2017-04-24T15:45:58", "url": "https://files.pythonhosted.org/packages/1d/b2/a4cfeb1834fed1fc034826158b49654e439493f89566d1e766af6e1fe64b/zope.security-4.1.0-py3.3-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "100410f54f57d5ec726fec5f647aa4b3", "sha256": "8d7b74b31f134bcfa80d61e1a8e56d4d29a97e0561cd1096c10f93e2c3c55514" }, "downloads": -1, "filename": "zope.security-4.1.0-py3.4-win32.egg", "has_sig": false, "md5_digest": "100410f54f57d5ec726fec5f647aa4b3", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 241428, "upload_time": "2017-04-24T15:46:08", "url": "https://files.pythonhosted.org/packages/5a/0b/b055050710e6b70bea23dc74630d6f535de89e0708dd9abe4d1535f55f6e/zope.security-4.1.0-py3.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "11ded451ec8663361c9e9db693670421", "sha256": "977c584fca2998836ce2ddd2d7152408094ac577ee9029e40a67480b2b96ffe7" }, "downloads": -1, "filename": "zope.security-4.1.0-py3.4-win-amd64.egg", "has_sig": false, "md5_digest": "11ded451ec8663361c9e9db693670421", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 241610, "upload_time": "2017-04-24T15:46:20", "url": "https://files.pythonhosted.org/packages/56/df/6e96c379505980a2beae9e2605ced20779dac48a05f90c1658ff4c37a6cd/zope.security-4.1.0-py3.4-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "84e8792deb8fa948c71770b01492db77", "sha256": "3d04832cc927d2b3ffec164f32dcefd5faa771cb1500912b999bb34da13aa635" }, "downloads": -1, "filename": "zope.security-4.1.0.tar.gz", "has_sig": true, "md5_digest": "84e8792deb8fa948c71770b01492db77", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 697112, "upload_time": "2017-04-24T15:42:31", "url": "https://files.pythonhosted.org/packages/c1/1c/ab7398706fbb26400fb5d32dbf24b0d0602d17429d0be06ff7dceacd067b/zope.security-4.1.0.tar.gz" }, { "comment_text": "", "digests": { "md5": "f7c8421ba4d54c75ba88559cde55f52d", "sha256": "d70292c3735fa5b614d25133d50de9124f5346a19bf939c373bf801d75d91dae" }, "downloads": -1, "filename": "zope.security-4.1.0.win32-py2.7.exe", "has_sig": false, "md5_digest": "f7c8421ba4d54c75ba88559cde55f52d", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 327414, "upload_time": "2017-04-24T15:45:31", "url": "https://files.pythonhosted.org/packages/fa/8f/2bf9b32847df6b7f0d112ec92c3a39b28a0a55379075826d9d39679ea6a5/zope.security-4.1.0.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "54c480d5f91cad249d2f88cc34bc8d74", "sha256": "4fd28486ae43fd0e4c77767f6aae49deabe90ca3a945e1e92af8545e7aceefe9" }, "downloads": -1, "filename": "zope.security-4.1.0.win32-py3.3.exe", "has_sig": false, "md5_digest": "54c480d5f91cad249d2f88cc34bc8d74", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 321935, "upload_time": "2017-04-24T15:45:52", "url": "https://files.pythonhosted.org/packages/47/d9/c43f141f836a916d511d0d73dae8fddd8d3adabb9841bafea2b8651cc491/zope.security-4.1.0.win32-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "25a886b83d32a7330bd6e1d0e7957fbb", "sha256": "f7fda38d3e32ce5c8b5c2b4ba47040c69e24e75621cc37fd0f6b2e6b7271574e" }, "downloads": -1, "filename": "zope.security-4.1.0.win32-py3.4.exe", "has_sig": false, "md5_digest": "25a886b83d32a7330bd6e1d0e7957fbb", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 321838, "upload_time": "2017-04-24T15:46:13", "url": "https://files.pythonhosted.org/packages/f5/3d/fd754b243e8a583b7e76ee28b3058cf9d8d78465c3dc8fd5087b12dad6bd/zope.security-4.1.0.win32-py3.4.exe" }, { "comment_text": "", "digests": { "md5": "db5063e4992f6eea1262f115b3f540e5", "sha256": "862b674bca0f43c749e249929aa07bc96f7a201cd68b6711c805db20c354eeec" }, "downloads": -1, "filename": "zope.security-4.1.0.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "db5063e4992f6eea1262f115b3f540e5", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 355140, "upload_time": "2017-04-24T15:45:41", "url": "https://files.pythonhosted.org/packages/06/87/3264fd4dab6c82a970a0f468b70f3d09673601a375d84f7ca89586e07383/zope.security-4.1.0.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "bcf24cdcb9c4aac89d597fd5153e55d4", "sha256": "9d041792922aaf45a55c2877edcec4020fe7eef45c5044431350a4e31ad7c5fd" }, "downloads": -1, "filename": "zope.security-4.1.0.win-amd64-py3.3.exe", "has_sig": false, "md5_digest": "bcf24cdcb9c4aac89d597fd5153e55d4", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 353154, "upload_time": "2017-04-24T15:46:02", "url": "https://files.pythonhosted.org/packages/69/f3/50f0940e887158a07b58b3753f13808ccb4de93726331132826ff5b66732/zope.security-4.1.0.win-amd64-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "e9b3bd21081e31aba196eb5a13521909", "sha256": "5b202a73ce8a7ecb633635fd28afee9ce57b0738026fd399aa48f4ecbb20c82e" }, "downloads": -1, "filename": "zope.security-4.1.0.win-amd64-py3.4.exe", "has_sig": false, "md5_digest": "e9b3bd21081e31aba196eb5a13521909", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 353072, "upload_time": "2017-04-24T15:46:24", "url": "https://files.pythonhosted.org/packages/33/48/4612407fc1a5f43fcd3d33448bb92c84fbb3539cabc195ded81ab5f69386/zope.security-4.1.0.win-amd64-py3.4.exe" } ], "4.1.1": [ { "comment_text": "", "digests": { "md5": "d662a60192223e258261d51885d22718", "sha256": "4f25e35170d7ead609a911987986631468612518125ea4565f2fb6070ce2e682" }, "downloads": -1, "filename": "zope.security-4.1.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "d662a60192223e258261d51885d22718", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 179060, "upload_time": "2017-06-13T19:59:29", "url": "https://files.pythonhosted.org/packages/aa/3e/e923fb7ea3a0b2d3af7763f9199bde7c4aa87440ef21f0307e409895dd8c/zope.security-4.1.1-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f595f88a5603d772fde2844eb4d1a7dd", "sha256": "585147072d8a9486c8ad4ce77a168d692515b9f912fa5bf406ea46d0fe43c6ed" }, "downloads": -1, "filename": "zope.security-4.1.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "f595f88a5603d772fde2844eb4d1a7dd", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 179456, "upload_time": "2017-06-13T19:59:33", "url": "https://files.pythonhosted.org/packages/f5/5d/15d5bb098faaa155a4840da13826cb5fd81662ef702d224e306114145761/zope.security-4.1.1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2d0634c52a604a005cf297a54c970f34", "sha256": "e14804038bae5a911d10037c2604a102f15cd3f57c6c97548e169613fb8aca51" }, "downloads": -1, "filename": "zope.security-4.1.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "2d0634c52a604a005cf297a54c970f34", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 179452, "upload_time": "2017-06-13T19:59:37", "url": "https://files.pythonhosted.org/packages/48/7e/2ef474f23e3953fa4b2b1d5801560bba9dd62b236d51afa1d5c223494d5d/zope.security-4.1.1-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "de53b708bf2a85cd10938b9ee733d6c9", "sha256": "124c0322096e62b81c49cb706b37c87a1f67fca4a0ed2ae938104d9c80da6a8f" }, "downloads": -1, "filename": "zope.security-4.1.1-py2.7-win32.egg", "has_sig": false, "md5_digest": "de53b708bf2a85cd10938b9ee733d6c9", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 233910, "upload_time": "2017-05-17T15:23:39", "url": "https://files.pythonhosted.org/packages/f9/b2/379e28c7aa0e034f938bea584ac9ef4b9f8033abc4fba9058a90bfab272f/zope.security-4.1.1-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "1ea33b78b467be473025efe9096908e4", "sha256": "5203f51a655f5c420325d0e4586db37e6a339da99405ce01e3ac9c57646185de" }, "downloads": -1, "filename": "zope.security-4.1.1-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "1ea33b78b467be473025efe9096908e4", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 234229, "upload_time": "2017-05-17T15:23:48", "url": "https://files.pythonhosted.org/packages/11/46/95ddb883e4325b14e343c8dbfee6fa615f0f6ebc78ed367d9a48e2f27a55/zope.security-4.1.1-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "2433562ae6ee3b2c78344798664e866f", "sha256": "bed97754d96c22c23a864d152cb5414f6f9974c01f32fd8132593d6484fb3b71" }, "downloads": -1, "filename": "zope.security-4.1.1-py3.3-win32.egg", "has_sig": false, "md5_digest": "2433562ae6ee3b2c78344798664e866f", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 247843, "upload_time": "2017-05-17T15:24:02", "url": "https://files.pythonhosted.org/packages/6a/a4/c151b7eb1ef70221911700eaf23ba8529abbd153179cee1e7a5d4f594420/zope.security-4.1.1-py3.3-win32.egg" }, { "comment_text": "", "digests": { "md5": "fe080ddcc140389366b7e5323665319e", "sha256": "594ac0b2aa3ed4710ea321094917cb619026f9283234fe374adbed9023a7084d" }, "downloads": -1, "filename": "zope.security-4.1.1-py3.3-win-amd64.egg", "has_sig": false, "md5_digest": "fe080ddcc140389366b7e5323665319e", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 248117, "upload_time": "2017-05-17T15:24:18", "url": "https://files.pythonhosted.org/packages/a8/6d/24e0ef690c1560ba6f23e622a2aa67373de068fd61eb46f3fe6549a11de6/zope.security-4.1.1-py3.3-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "b90ddf1728bf50b0086ac8cb1a80b113", "sha256": "7eb132f1670d8aaefec5f70bb3941b51bb9ec2d908f21d1140dde873d3c753b4" }, "downloads": -1, "filename": "zope.security-4.1.1-py3.4-win32.egg", "has_sig": false, "md5_digest": "b90ddf1728bf50b0086ac8cb1a80b113", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 242342, "upload_time": "2017-05-17T15:24:31", "url": "https://files.pythonhosted.org/packages/1b/d7/fa9762dad618a4277932aa8b7175bc24457133ccbda72e534c08e2607b87/zope.security-4.1.1-py3.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "018f35a3d5a7984b98e137e588274af4", "sha256": "50f568276fca95292aa6326e5915bdec5debadf76dc89698dd72310c0d802569" }, "downloads": -1, "filename": "zope.security-4.1.1-py3.4-win-amd64.egg", "has_sig": false, "md5_digest": "018f35a3d5a7984b98e137e588274af4", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 242513, "upload_time": "2017-05-17T15:24:42", "url": "https://files.pythonhosted.org/packages/e9/95/a3f95de7c56eb879d489c370891712ec35021da68ae1a13712cb0c5ff871/zope.security-4.1.1-py3.4-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "93866b222d99220a6bdedca17fcbcc31", "sha256": "60d4533202e51d1ec7da763ee29eea95d7e184d9c25c849e69421a905089fb40" }, "downloads": -1, "filename": "zope.security-4.1.1.tar.gz", "has_sig": true, "md5_digest": "93866b222d99220a6bdedca17fcbcc31", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 111845, "upload_time": "2017-05-17T15:07:55", "url": "https://files.pythonhosted.org/packages/0f/e2/6871883f67d24301bbf269ddb7f2ffcf3abf79ee88b283396de285897c55/zope.security-4.1.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "0e87327c00576f417359bc9b4fc66349", "sha256": "03755f12c3c593b89429b28c81ebf7f3c7f51b3f22f96cedad7a44a96f563d94" }, "downloads": -1, "filename": "zope.security-4.1.1.win32-py2.7.exe", "has_sig": false, "md5_digest": "0e87327c00576f417359bc9b4fc66349", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 328323, "upload_time": "2017-05-17T15:23:43", "url": "https://files.pythonhosted.org/packages/ff/84/f1fd07ce453aefe2485d681f63c6334639d497cca7adbe0059ce28dbc464/zope.security-4.1.1.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "cd52cec45b8fe338756d27045aa155c8", "sha256": "89d658121b7e8fd3add640a1a1091d775ec5e3650edd79785d8e37ce487e5655" }, "downloads": -1, "filename": "zope.security-4.1.1.win32-py3.3.exe", "has_sig": false, "md5_digest": "cd52cec45b8fe338756d27045aa155c8", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 322847, "upload_time": "2017-05-17T15:24:08", "url": "https://files.pythonhosted.org/packages/10/67/74673ee86d82913e9ee9c5a7946b346b0a0d0cc0e29d891f668c7ebc1dd5/zope.security-4.1.1.win32-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "6eb58f81c790490438f1a13c51c33816", "sha256": "a44f051d728d5f5df98085db7960d8e66fc1334b9ffe96c3f1c717cf46400905" }, "downloads": -1, "filename": "zope.security-4.1.1.win32-py3.4.exe", "has_sig": false, "md5_digest": "6eb58f81c790490438f1a13c51c33816", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 322750, "upload_time": "2017-05-17T15:24:36", "url": "https://files.pythonhosted.org/packages/c4/3c/3b5827dcba699c134886e0a66ace6ca91ab7fee895092bd81b7c7eee56e2/zope.security-4.1.1.win32-py3.4.exe" }, { "comment_text": "", "digests": { "md5": "8f7259baf1d2ab1e96f2373d2502ace6", "sha256": "bc71c9c8a0800c4d8b0ef178339259423765d5613a46b3f4afad4b9989b2d5f6" }, "downloads": -1, "filename": "zope.security-4.1.1.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "8f7259baf1d2ab1e96f2373d2502ace6", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 356050, "upload_time": "2017-05-17T15:23:51", "url": "https://files.pythonhosted.org/packages/37/49/3f9f1b8be904a784e57398f4cdcc3f79fb9845b6d5b3a5b617a72408e983/zope.security-4.1.1.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "b87ebcfc259e141eadf65be875cc46d4", "sha256": "d1393e34b39d1a6db977d70b36f31e956bcf5b6998a43ab73f76fc41c4408249" }, "downloads": -1, "filename": "zope.security-4.1.1.win-amd64-py3.3.exe", "has_sig": false, "md5_digest": "b87ebcfc259e141eadf65be875cc46d4", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 354066, "upload_time": "2017-05-17T15:24:23", "url": "https://files.pythonhosted.org/packages/6f/3a/63fc55200d9a9eb90b38c25c873d6150b33d247d36bdaf41ea0ed35500a1/zope.security-4.1.1.win-amd64-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "9e42bb0f9ed44eef163caa7ceab6ea62", "sha256": "4fbb9aca4088d2edae14a6470978cfbc13e7bb69da7076cb810e61b66e9cad51" }, "downloads": -1, "filename": "zope.security-4.1.1.win-amd64-py3.4.exe", "has_sig": false, "md5_digest": "9e42bb0f9ed44eef163caa7ceab6ea62", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 353981, "upload_time": "2017-05-17T15:24:45", "url": "https://files.pythonhosted.org/packages/59/d7/53220153d3b5cc4c41bfc200334dfd8c6025fbb880b16ddc0f5e39929b63/zope.security-4.1.1.win-amd64-py3.4.exe" } ], "4.2.0": [ { "comment_text": "", "digests": { "md5": "0e70f914506b486060e9df578a79e5e4", "sha256": "fff65c9d44c4c7ece7544cc2f8330a4877a574b1a336fe8826e8302f2f6b3d78" }, "downloads": -1, "filename": "zope.security-4.2.0-cp27-cp27m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "0e70f914506b486060e9df578a79e5e4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 130129, "upload_time": "2017-09-20T15:51:16", "url": "https://files.pythonhosted.org/packages/31/7c/ccb88c9924d72d92446c38817c7c178f5b086f60eb69813053d20614ce20/zope.security-4.2.0-cp27-cp27m-macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "86cbaa6f9e98d9dd8c9f7a35493f93e9", "sha256": "386a35f3ab5c7c78f137d531c7ebe7d7cdfecf05ff01f0b735fb0808cbc33f2c" }, "downloads": -1, "filename": "zope.security-4.2.0-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "86cbaa6f9e98d9dd8c9f7a35493f93e9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 127250, "upload_time": "2017-09-21T09:23:57", "url": "https://files.pythonhosted.org/packages/c3/3f/87665855e437a7e278fee14774918b0800988aee41955a4506fa61279dc4/zope.security-4.2.0-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "cb5868b8535f878a422f54230ca8cdd1", "sha256": "0f05e4b7880d6ddc72bae02e4dc026cb02ecab2bdf5ffd5352426cec25b2398a" }, "downloads": -1, "filename": "zope.security-4.2.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "cb5868b8535f878a422f54230ca8cdd1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 127374, "upload_time": "2017-09-21T09:24:43", "url": "https://files.pythonhosted.org/packages/b6/e4/ccfa1eeaf58d117a25cf77c0f945951050f8a49ec9ab900cc6cfdb7ff2b7/zope.security-4.2.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b05410e329d7b51b85bf2f0d18926bdb", "sha256": "a07fd9ea4e43c96556cfc31f5401237ddf20ff5f288f86d015d5c5864a0b292a" }, "downloads": -1, "filename": "zope.security-4.2.0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "b05410e329d7b51b85bf2f0d18926bdb", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 126818, "upload_time": "2017-09-21T09:25:44", "url": "https://files.pythonhosted.org/packages/39/87/5515251aa91ec8ddb7f6a371ad37e03e91654da46c50a71a0ffe72bc00a4/zope.security-4.2.0-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "37887584f9419e1aed7c9f6e204ca717", "sha256": "c71ed72898b65f973080e5548e5646f92d18b6cdd07ac5521e666d3ab9c8e026" }, "downloads": -1, "filename": "zope.security-4.2.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "37887584f9419e1aed7c9f6e204ca717", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 126802, "upload_time": "2017-09-21T09:26:38", "url": "https://files.pythonhosted.org/packages/4f/f7/aa3d9f25146b71b2570a96d5e18408332a627d7028a07cd219d8e260da24/zope.security-4.2.0-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "8c5e6382670af61cdaa6c4849c14f9ea", "sha256": "5ce03f1bdb59decc0e4cbe62e63e983d77a0e9c18ad97429f4947dfb46d39a17" }, "downloads": -1, "filename": "zope.security-4.2.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "8c5e6382670af61cdaa6c4849c14f9ea", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 129587, "upload_time": "2017-09-21T09:27:36", "url": "https://files.pythonhosted.org/packages/07/3b/084d4508107e513136dca6af5ec0aacd60194a23e198e9af85dbca45d84e/zope.security-4.2.0-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "d2df1dd8ecf0625dc965c14b034e883e", "sha256": "90ee233855b0ff988e5f3e6ff051f5c3b674f53d78e55e0d1948201fd1fe519c" }, "downloads": -1, "filename": "zope.security-4.2.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "d2df1dd8ecf0625dc965c14b034e883e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 131627, "upload_time": "2017-09-21T09:28:32", "url": "https://files.pythonhosted.org/packages/99/8d/08985c3799efba46dc5da044df7889c31a2c44aa93a9b5e20c230af392a0/zope.security-4.2.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "cfa1e11731e2e5dbea5379785c8aa51b", "sha256": "9c7a9320e12992c1e72539a3f6398a5dc65ddf7c246f9e845ca52168c7c26d95" }, "downloads": -1, "filename": "zope.security-4.2.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "cfa1e11731e2e5dbea5379785c8aa51b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 129587, "upload_time": "2017-09-21T09:29:14", "url": "https://files.pythonhosted.org/packages/1c/ea/147abbaf69fd3fe4f72b8b592f76f891324ce51963b15dfbbad9ede2adb7/zope.security-4.2.0-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "719bf8868e1edde636e08194779768b7", "sha256": "8d42a1e65608221480a23302094712accc844bc66d71ea55dd3f49c1639320f7" }, "downloads": -1, "filename": "zope.security-4.2.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "719bf8868e1edde636e08194779768b7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 131626, "upload_time": "2017-09-21T09:29:57", "url": "https://files.pythonhosted.org/packages/82/96/6b6cb19ed1639c5a6b5d8d1800e9bde88135c5bf7ccc23f896e4a2d48baa/zope.security-4.2.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "0ab9ca692998022c28e7b8eb27506cb1", "sha256": "ec01be49a51cda590a5e0df2c01ba15d3ae23c9da07f296f82357b51cbc9d571" }, "downloads": -1, "filename": "zope.security-4.2.0.tar.gz", "has_sig": false, "md5_digest": "0ab9ca692998022c28e7b8eb27506cb1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 118212, "upload_time": "2017-09-20T15:51:06", "url": "https://files.pythonhosted.org/packages/7f/c4/747d9c33fc846518a78f544b157088f1cdb4ffea5f4a55f4581ced09a201/zope.security-4.2.0.tar.gz" } ], "4.2.1": [ { "comment_text": "", "digests": { "md5": "324230e5e557276fb98a442e8cb03bcf", "sha256": "c4fd4a2c85f1d2fee5eddac6a96fd8d456a0501cb4bc2921ef1e70d25f3a370e" }, "downloads": -1, "filename": "zope.security-4.2.1-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "324230e5e557276fb98a442e8cb03bcf", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 127834, "upload_time": "2017-11-30T18:40:38", "url": "https://files.pythonhosted.org/packages/62/05/5fb811fc382ba4897e0678eb4f7a8f90b5e6a4612f13686e49b6277437a3/zope.security-4.2.1-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "ce368981e675801dc4383f8dd7810b4b", "sha256": "5a6254c2bc5c5eee19c3240cbc32a3189b337144414ca6f12b3a0979724b6928" }, "downloads": -1, "filename": "zope.security-4.2.1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "ce368981e675801dc4383f8dd7810b4b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 127957, "upload_time": "2017-11-30T18:41:44", "url": "https://files.pythonhosted.org/packages/f0/42/c69c24a2a6aa497ed006514aa99651930bea41b0556000fd48c59fdbc058/zope.security-4.2.1-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "83cfd9370f885d99826cdb99ccae0250", "sha256": "042aa68bce0e998774b0bed9bddd7573242380c2c114f712adb9b5b0b89d843d" }, "downloads": -1, "filename": "zope.security-4.2.1-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "83cfd9370f885d99826cdb99ccae0250", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 127395, "upload_time": "2017-11-30T18:43:35", "url": "https://files.pythonhosted.org/packages/f5/ee/5e699fb631946dc9fab1c9c50aece6283c7df8c322ef9580e4ca019184e8/zope.security-4.2.1-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "b76f0b6d1e920feaeba0ec8010a129c7", "sha256": "67e3726a5f356bdb9eb87a89951e783d265aba047778938cd8f56537483f3793" }, "downloads": -1, "filename": "zope.security-4.2.1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "b76f0b6d1e920feaeba0ec8010a129c7", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 127385, "upload_time": "2017-11-30T18:44:45", "url": "https://files.pythonhosted.org/packages/ad/f7/2cc42ecbf6ef4214460aa5f90895f14d73f8c18a1330a16fddde1e463053/zope.security-4.2.1-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a3fce59c3010d55b59f28810cec87501", "sha256": "288e010b522d788f6869a834222f522e96eb4375026a077c221a6a48af3f8f99" }, "downloads": -1, "filename": "zope.security-4.2.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "a3fce59c3010d55b59f28810cec87501", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 130165, "upload_time": "2017-11-30T18:45:48", "url": "https://files.pythonhosted.org/packages/1a/16/d8170e36e7aee081d26e6e1f0ad21146783c558b10977ade2efdc718ca13/zope.security-4.2.1-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "b36450ae7d5015d88386598bff63102c", "sha256": "095567d5389e33bb26a0241e5a3edba3bacb7ea8b17c12c856d32e19959b5c3a" }, "downloads": -1, "filename": "zope.security-4.2.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "b36450ae7d5015d88386598bff63102c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 132205, "upload_time": "2017-11-30T18:46:36", "url": "https://files.pythonhosted.org/packages/4a/d0/63c5d291a1362d291fc3f38e0901412dc6507ba8397b13cdae5b506853cf/zope.security-4.2.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "8abf90f4bbbbf8dd620836adcd8143b7", "sha256": "eef8fdb1e36db95e2cfe265e47c8d0145b59a9480ee217240934af986a4a5c06" }, "downloads": -1, "filename": "zope.security-4.2.1-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "8abf90f4bbbbf8dd620836adcd8143b7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 130081, "upload_time": "2017-11-30T18:07:58", "url": "https://files.pythonhosted.org/packages/a0/35/7bed54865b0d7f7ab9241360ba7f4dc3550b32e9f38e5892faff1f3807d4/zope.security-4.2.1-cp36-cp36m-macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f86065f4915741a31876f9d3357e2262", "sha256": "6c9e7d143850679dcc5d95aadd438a6a3afbfbffd3dafffad1283bae9bddbbed" }, "downloads": -1, "filename": "zope.security-4.2.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "f86065f4915741a31876f9d3357e2262", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 130170, "upload_time": "2017-11-30T18:48:02", "url": "https://files.pythonhosted.org/packages/82/1e/f754c493afe9c30bf3f7877781b158cfeeafbbc16a702c81a9d06af66951/zope.security-4.2.1-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "776fcdaf638fd92eaef39f2c7401bd08", "sha256": "1bc2e0bff1fb04bff0cbfd5eb8e949a4500f7c61959db759cd8105c443fa228a" }, "downloads": -1, "filename": "zope.security-4.2.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "776fcdaf638fd92eaef39f2c7401bd08", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 132203, "upload_time": "2017-11-30T18:48:51", "url": "https://files.pythonhosted.org/packages/53/de/8bb233266baaf068e74e8042ccea754d395c8731d96c46d1c32367b9c4e3/zope.security-4.2.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "e203893d702b2bedc5dee154263d3d29", "sha256": "44d5831cce82c161b8684a6ccbb00e6afbc41544065acb88770dbd1911451312" }, "downloads": -1, "filename": "zope.security-4.2.1.tar.gz", "has_sig": false, "md5_digest": "e203893d702b2bedc5dee154263d3d29", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 118969, "upload_time": "2017-11-30T18:07:59", "url": "https://files.pythonhosted.org/packages/98/30/face9152e9c7774b4e279a66f6edf8d9d51833f9d792476d8d925acc7ca6/zope.security-4.2.1.tar.gz" } ], "4.2.2": [ { "comment_text": "", "digests": { "md5": "7f695f872b893d7b9b9f800a4f6ce913", "sha256": "d59baf147c47cbbe513db1ec2a0a39d290dd8e47bf67dc6bd6b6df81994abe6e" }, "downloads": -1, "filename": "zope.security-4.2.2-cp27-cp27m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "7f695f872b893d7b9b9f800a4f6ce913", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 131298, "upload_time": "2018-01-11T17:58:10", "url": "https://files.pythonhosted.org/packages/ba/d7/3886e90fad65353f0b085575a59d391087ed2d513bbcc711d4cf0c70d34b/zope.security-4.2.2-cp27-cp27m-macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b5a3ba3f0b559b483ed8b25136a8926d", "sha256": "08ea23409f118fc9940414f3679d58005fb6597954a70f542924dc319b897247" }, "downloads": -1, "filename": "zope.security-4.2.2-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "b5a3ba3f0b559b483ed8b25136a8926d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 128446, "upload_time": "2018-01-11T18:12:08", "url": "https://files.pythonhosted.org/packages/0a/41/e06bfedab0d0c06c8af95d0f1a4573122630253ee0b94f79d115f69acac2/zope.security-4.2.2-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "31376ea2eb317ec7b649f40bbe5382fe", "sha256": "88c89d6627497cb13daee5e6167a69e11bc3db2b7c2fd7c625683f36af6c018b" }, "downloads": -1, "filename": "zope.security-4.2.2-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "31376ea2eb317ec7b649f40bbe5382fe", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 128568, "upload_time": "2018-01-11T18:12:53", "url": "https://files.pythonhosted.org/packages/73/64/8c71c443ce89656201467e31971424ece81368499715d4e0f7e42ac7225b/zope.security-4.2.2-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "fb7ba5ce9c90e04d27c689db46830451", "sha256": "710876dce5c368c8f3539cacb7b4c8380fdc0ff779afecfce3a26368f3612818" }, "downloads": -1, "filename": "zope.security-4.2.2-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "fb7ba5ce9c90e04d27c689db46830451", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 128002, "upload_time": "2018-01-11T18:13:46", "url": "https://files.pythonhosted.org/packages/c0/38/f48117d2197aba0ac86093b23632cf9c990fc63a3c8113976994bfb8fb07/zope.security-4.2.2-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "dfcd7e84a46415c40d0bd4177ecd512c", "sha256": "324697d572e2b97b9bc0a6e60b047af1b869a90a5ae30d1a4ce6b537fa3e25c4" }, "downloads": -1, "filename": "zope.security-4.2.2-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "dfcd7e84a46415c40d0bd4177ecd512c", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 127993, "upload_time": "2018-01-11T18:14:48", "url": "https://files.pythonhosted.org/packages/0e/1c/f907fd3439cee0408a80c4fa9488b769be253ed5b19bf0571870188efc3e/zope.security-4.2.2-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "4a573c9984e232775b4eabce4fa11d37", "sha256": "55ca4409e935fae2e53284ce0396fab2ee798116ac81d5566977dfccf33cb72b" }, "downloads": -1, "filename": "zope.security-4.2.2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "4a573c9984e232775b4eabce4fa11d37", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 130770, "upload_time": "2018-01-11T18:15:42", "url": "https://files.pythonhosted.org/packages/3d/d4/5393dd1a18a51ff26233b3d8c98d0c3eab3a6c746d347f9a0483d1483a7e/zope.security-4.2.2-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "f44b3e054c6a725910a2aa24c15465c1", "sha256": "e6e3f72495deeabd50cea53f1f77cb794f6b0814f590b50f77f67820388cb6fe" }, "downloads": -1, "filename": "zope.security-4.2.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "f44b3e054c6a725910a2aa24c15465c1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 132810, "upload_time": "2018-01-11T18:16:41", "url": "https://files.pythonhosted.org/packages/90/65/d6c4eab699fe5fcf0ce562deda806fc7bbb16c3506941e895ce44f1d1370/zope.security-4.2.2-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f1f7df0002351b2bbbf6905d4306f5a8", "sha256": "5059813e5cef8e3b27073885f8de83423be36e4ad60fc55217385ee994f2a29c" }, "downloads": -1, "filename": "zope.security-4.2.2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "f1f7df0002351b2bbbf6905d4306f5a8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 130776, "upload_time": "2018-01-11T18:17:23", "url": "https://files.pythonhosted.org/packages/e4/06/6fe5039771a3858de2d50997cce67e0f10b4b7d5b657f5e964bcfe12d92f/zope.security-4.2.2-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "bf21c98f0fee2a1235043a6227100489", "sha256": "c6b20c46f4190f4b076ba65b10bcf9796d13c9ab468a3f3595585e7cfdb5582d" }, "downloads": -1, "filename": "zope.security-4.2.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "bf21c98f0fee2a1235043a6227100489", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 132806, "upload_time": "2018-01-11T18:18:11", "url": "https://files.pythonhosted.org/packages/66/70/15cc81362c5649f81a6e605be6b47eb3e0cd707f280cf8a241df36be094c/zope.security-4.2.2-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "8197498deb55aa09003674103210b8f5", "sha256": "0e3381e7000eed3672c52806bd7e666d3f2fe86df230c60707f399c26ada5368" }, "downloads": -1, "filename": "zope.security-4.2.2.tar.gz", "has_sig": false, "md5_digest": "8197498deb55aa09003674103210b8f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 119605, "upload_time": "2018-01-11T17:58:11", "url": "https://files.pythonhosted.org/packages/86/73/c144f210fc9757bc90e193fe0f760cd87b6fd9712cfe2e29de7b66034980/zope.security-4.2.2.tar.gz" } ], "4.2.3": [ { "comment_text": "", "digests": { "md5": "efe3397353c38f06e0fee611cc3cca0e", "sha256": "b15da0de738f42d263a0f1a568115910d0d7b251dc83a0697e2030b9713b7ec9" }, "downloads": -1, "filename": "zope.security-4.2.3-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "efe3397353c38f06e0fee611cc3cca0e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 121015, "upload_time": "2018-08-09T11:21:21", "url": "https://files.pythonhosted.org/packages/6a/8e/6ffcd19bf82943707baca53daf20687c752e74ebf756bd107093c689b471/zope.security-4.2.3-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "1cc535e5fa228447ac95a5239152103c", "sha256": "5dacdc074468f063bb956a7d9e60c99b241b1b581c2f4e9a74f056a04816bacd" }, "downloads": -1, "filename": "zope.security-4.2.3-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "1cc535e5fa228447ac95a5239152103c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 121136, "upload_time": "2018-08-09T11:22:06", "url": "https://files.pythonhosted.org/packages/da/da/7bcde5bde11591c46a11800449a3812934bfc066c032393404fcff35d500/zope.security-4.2.3-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b95b15f5b1d91014bc8421745fbe3816", "sha256": "5dbfac3bd626b6322394555a34cdf68eaa2601b67da0288419905a2a3a46eacf" }, "downloads": -1, "filename": "zope.security-4.2.3-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "b95b15f5b1d91014bc8421745fbe3816", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 120578, "upload_time": "2018-08-09T11:23:24", "url": "https://files.pythonhosted.org/packages/ac/a1/77cef1c94e78886b0d179cc4433a3fd6d8785648dde8bded8483b1470a8c/zope.security-4.2.3-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "000fb72c7ea371c03606ee653b1b9e80", "sha256": "e7d79d32feff2fba76237b2dc42076e5cd0564e614d13e010e39eedfe16640e3" }, "downloads": -1, "filename": "zope.security-4.2.3-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "000fb72c7ea371c03606ee653b1b9e80", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 120563, "upload_time": "2018-08-09T11:24:20", "url": "https://files.pythonhosted.org/packages/39/69/6144e1f43597295954959acbbc497dd2baf64bf3555097b0cd683d26b633/zope.security-4.2.3-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "bb136c4e0ae622eceed0b19d2d6e5d92", "sha256": "808aef51c2375d43464e3eba2533ef7f7bbfc7cb8a3224b09b46eefc7a0b62c6" }, "downloads": -1, "filename": "zope.security-4.2.3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "bb136c4e0ae622eceed0b19d2d6e5d92", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 123343, "upload_time": "2018-08-09T11:25:11", "url": "https://files.pythonhosted.org/packages/7a/57/d3ec2d58cea1bc511279034e19900919515c0364506d08e641f96390a4fc/zope.security-4.2.3-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "9d35bd3ee0ac50503bfa9cd3f2c2fe20", "sha256": "60bea14a961ee131d7a82dddc10bc4e11fb3018574291c9f8f375c74ac3e835f" }, "downloads": -1, "filename": "zope.security-4.2.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "9d35bd3ee0ac50503bfa9cd3f2c2fe20", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 125385, "upload_time": "2018-08-09T11:25:57", "url": "https://files.pythonhosted.org/packages/df/06/5b8a0de575a845e40264365655e8d0217b9c9566e026e200f58325aa6e5b/zope.security-4.2.3-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c3810d3318f1eb034790113b0a66a435", "sha256": "d70c9805f31d12f31d0f3ab9bb1a212df44e78aaece90ad0af11055c46bb5c65" }, "downloads": -1, "filename": "zope.security-4.2.3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "c3810d3318f1eb034790113b0a66a435", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 123350, "upload_time": "2018-08-09T11:26:41", "url": "https://files.pythonhosted.org/packages/ac/89/563441e7e71014941683cb46f3c1953e092dd3c08970943a1a1f2c992ed4/zope.security-4.2.3-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "9db3f14b73e4fa1c40d1be019e2cebf4", "sha256": "b14bdbdf99fb09e0862aab1754700aa3eef79f59eb2bf49f07ffb2f6b782e3ce" }, "downloads": -1, "filename": "zope.security-4.2.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "9db3f14b73e4fa1c40d1be019e2cebf4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 125385, "upload_time": "2018-08-09T11:27:35", "url": "https://files.pythonhosted.org/packages/f9/a8/e76b40cf5a9705e738d437353c13add9eb0e267d16e431f1843dca36f72c/zope.security-4.2.3-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "79496c7d1b5829ff11bd06018f22a6d5", "sha256": "4ee73dffcab31065fba9287e84b60714810fd37b66189c4ce0434d4474e23df1" }, "downloads": -1, "filename": "zope.security-4.2.3-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "79496c7d1b5829ff11bd06018f22a6d5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 123353, "upload_time": "2018-08-09T11:28:48", "url": "https://files.pythonhosted.org/packages/48/89/1e1004e633a719bb560c4ace9b895b7cba805267c5c9b2960c3f8d23949d/zope.security-4.2.3-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "f413ea3234fd69281bc3b3c25251ed14", "sha256": "b6a5db80f4caf524fdeeb2669081022f7f9346ca6b0e8f5ce85c4bc937d6a566" }, "downloads": -1, "filename": "zope.security-4.2.3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "f413ea3234fd69281bc3b3c25251ed14", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 125389, "upload_time": "2018-08-09T11:29:48", "url": "https://files.pythonhosted.org/packages/a2/5c/b1a8f5f49f770a2157a7705e562e5e58b3d8f319e6bb5626ce9322fdea2b/zope.security-4.2.3-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1b7ee4f24f30ad068feca6273d0f1aa8", "sha256": "f4e8b55214b36b7e551369cc36e602cbf4e91e1a179a52464b44a699fc2cf8ad" }, "downloads": -1, "filename": "zope.security-4.2.3.tar.gz", "has_sig": false, "md5_digest": "1b7ee4f24f30ad068feca6273d0f1aa8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 119495, "upload_time": "2018-08-09T11:10:05", "url": "https://files.pythonhosted.org/packages/c9/05/e864497709849be419a53ef0ded780424f463d0c1ad3a8d5b6bf14a31d32/zope.security-4.2.3.tar.gz" } ], "4.3.0": [ { "comment_text": "", "digests": { "md5": "a9b5347cd1744d4e840a671b1cbb02f1", "sha256": "1454d8af26bf940d90b705924df2fbc9e03a2869c29447116e24e7e1dafcee1e" }, "downloads": -1, "filename": "zope.security-4.3.0-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "a9b5347cd1744d4e840a671b1cbb02f1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 121378, "upload_time": "2018-08-24T16:25:26", "url": "https://files.pythonhosted.org/packages/15/b0/d5788113cfb80cf4caa044e680f0b16725cc82f8eb5bbde6ef6396624597/zope.security-4.3.0-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "1068d5d1e92cd4571878a28dfaebbc4a", "sha256": "07ca1f5840526924cd66ea75564eb9752b8224e3444f5234ae6dab9e277d5703" }, "downloads": -1, "filename": "zope.security-4.3.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "1068d5d1e92cd4571878a28dfaebbc4a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 121505, "upload_time": "2018-08-24T16:26:27", "url": "https://files.pythonhosted.org/packages/df/f6/87248ec58db0b22a05d893a32c359c295f85114ad8a941f78d78f0386e28/zope.security-4.3.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "4e81d322daf08ffe288bda26ac9ce2fc", "sha256": "b82079515ade63ed62ca95b70a904731fa0fb01bb65d2634905d9594797dd8d0" }, "downloads": -1, "filename": "zope.security-4.3.0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "4e81d322daf08ffe288bda26ac9ce2fc", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 120945, "upload_time": "2018-08-24T16:27:23", "url": "https://files.pythonhosted.org/packages/9b/47/3e2fdbcd5be398e40cb766be95a54b828437970a6684b673914957906cb8/zope.security-4.3.0-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "c70f0a9aaaf6435eebc8e7353ff04dc4", "sha256": "1d8f34dc8855fedb01ea5f3d9f826937a71866e62f42d5ce80fe09f48176a389" }, "downloads": -1, "filename": "zope.security-4.3.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "c70f0a9aaaf6435eebc8e7353ff04dc4", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 120929, "upload_time": "2018-08-24T16:28:13", "url": "https://files.pythonhosted.org/packages/74/1e/d1018aaaf3bc8f1cf941990d0ad44dfca674376a6eb9c4cc4a3fa7b0d99e/zope.security-4.3.0-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "98aa0ad2656b8b0b338c14fc87203e93", "sha256": "067ed42064ebfbd3dbabff61e670f9f0c4f9955bbb7f9fb79e342b9e4b82b0be" }, "downloads": -1, "filename": "zope.security-4.3.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "98aa0ad2656b8b0b338c14fc87203e93", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 123715, "upload_time": "2018-08-24T16:29:03", "url": "https://files.pythonhosted.org/packages/3e/4d/1c311dd235953d4f67a1a265d97b46be07ec2a27d70d8f32c79bbf419c53/zope.security-4.3.0-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "7d8438a6a39a4f2ec9b80bac84e4db01", "sha256": "7d866639d7e8e31a18ebe61257db0643bda169ffab2ff7782a7b52f6ada8ee26" }, "downloads": -1, "filename": "zope.security-4.3.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "7d8438a6a39a4f2ec9b80bac84e4db01", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 125754, "upload_time": "2018-08-24T16:29:58", "url": "https://files.pythonhosted.org/packages/1d/6e/c3e80a0e233bd93a0fe484ebf071ad9008cb9d7f5a4a310259f428dd20c5/zope.security-4.3.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "649d8e2a392e69af24fcaa32818232f8", "sha256": "b23bec81cc679f40fb266c95cadf712f77bd7e335ebde3f36ac34efa61d60bd8" }, "downloads": -1, "filename": "zope.security-4.3.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "649d8e2a392e69af24fcaa32818232f8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 123716, "upload_time": "2018-08-24T16:30:55", "url": "https://files.pythonhosted.org/packages/ce/93/2ee21e37196f4fa9687b1e9779a9fe0a7803013829e4ab80e61820de8a6f/zope.security-4.3.0-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "a4d598107302e0d0111d37deb83e0172", "sha256": "dd996a1a3f259002edf5c8e89fbe2ac5737c58c37b05271e636cbdbd6e515bd2" }, "downloads": -1, "filename": "zope.security-4.3.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "a4d598107302e0d0111d37deb83e0172", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 125752, "upload_time": "2018-08-24T16:31:41", "url": "https://files.pythonhosted.org/packages/a0/2e/f38712f6051c84949306522118418814a351edc5b2a23877088d1bc54aaa/zope.security-4.3.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "64368a16f89dcc31c0469c9625d5e31a", "sha256": "cb959e470c411763e3bcaac21ddf0385ddd9609bb38d70d93a9890d09221f257" }, "downloads": -1, "filename": "zope.security-4.3.0-cp37-cp37m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "64368a16f89dcc31c0469c9625d5e31a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 123662, "upload_time": "2018-08-24T16:03:47", "url": "https://files.pythonhosted.org/packages/a5/d2/48ca976a9fee6bb8c5857788b0dc52864983b31fd6d65d8fd6046e5ed541/zope.security-4.3.0-cp37-cp37m-macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a26f8ff52042d3c027f28b8250a32fb9", "sha256": "ede44823a4a4e28fa8e26c5c79cbe2b58da674e717b0339aff749d9f9be69f8b" }, "downloads": -1, "filename": "zope.security-4.3.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "a26f8ff52042d3c027f28b8250a32fb9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 123724, "upload_time": "2018-08-24T16:32:41", "url": "https://files.pythonhosted.org/packages/18/d7/026b41947fb7de41753d1f1d7d7e74900cdcf22a4ab0565d48d9bdc6e6a6/zope.security-4.3.0-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "da750ad49fa39d231525f81f45878d8e", "sha256": "eeea35bfcb9061b73225436881b651c278519a3e5ac1f1eb86945e5fda44e8dd" }, "downloads": -1, "filename": "zope.security-4.3.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "da750ad49fa39d231525f81f45878d8e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 125758, "upload_time": "2018-08-24T16:33:41", "url": "https://files.pythonhosted.org/packages/22/5e/68590300bc6feac6950af005d65eacb8bde3a9b82fb3367162ed74bbece2/zope.security-4.3.0-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ac382dfc97792a23583f8e55c05db890", "sha256": "ab4a6ab7e0be627c5bbee3afa848c3013b64c5054b1f7a2d73370f82220c15a3" }, "downloads": -1, "filename": "zope.security-4.3.0.tar.gz", "has_sig": false, "md5_digest": "ac382dfc97792a23583f8e55c05db890", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 118834, "upload_time": "2018-08-24T16:03:49", "url": "https://files.pythonhosted.org/packages/6b/8a/6e5ab725cebd3b1db870c9745516873c2002f944e1e2bd275156ac92ac75/zope.security-4.3.0.tar.gz" } ], "4.3.1": [ { "comment_text": "", "digests": { "md5": "9a5d26d0f167451e56418ada5e3d74dc", "sha256": "7a2c5ec9f477b7d09604d31d32817c401e20c828671aa810395531742d095be2" }, "downloads": -1, "filename": "zope.security-4.3.1-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "9a5d26d0f167451e56418ada5e3d74dc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 123079, "upload_time": "2019-01-03T14:13:31", "url": "https://files.pythonhosted.org/packages/71/12/61a18c9ce1ab9dbbcb113516b267630d869c694cff46159980ddc99915ce/zope.security-4.3.1-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "e5cc761ee04eacf32a9c8a9908a8ddf4", "sha256": "3e5b680e747b0bb3bb0886619c8267390f15d336b4e0fcaabeb81acc50b63de6" }, "downloads": -1, "filename": "zope.security-4.3.1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "e5cc761ee04eacf32a9c8a9908a8ddf4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 123205, "upload_time": "2019-01-03T14:14:05", "url": "https://files.pythonhosted.org/packages/f4/57/93f2b70b9d098315b95db7b695d5884c168664fb9e2526b843f9bfc55225/zope.security-4.3.1-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "dab4d722d1cee763066bf21907d6620f", "sha256": "05e5f5b59e2ab5ca895eed1d6bf6dbeb5701e4d1b04110633954306ca1128d55" }, "downloads": -1, "filename": "zope.security-4.3.1-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "dab4d722d1cee763066bf21907d6620f", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 122649, "upload_time": "2019-01-03T14:15:22", "url": "https://files.pythonhosted.org/packages/92/72/3ad174c120c741531c2941d70e49d5acb00c1c541d3ef9c1190c63fd221d/zope.security-4.3.1-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "d0c6b514d6d416fdb69e80fa44e530b7", "sha256": "24fd7c1912f7ca7ff7b8b8de56fe5b591ffcc4742ac7858518b367057da9c45b" }, "downloads": -1, "filename": "zope.security-4.3.1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "d0c6b514d6d416fdb69e80fa44e530b7", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 122633, "upload_time": "2019-01-03T14:16:13", "url": "https://files.pythonhosted.org/packages/6a/55/7f1f3fd89d7986fdbab672935fba8d699fdbab189f23fb1f7bb365d1a1de/zope.security-4.3.1-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ccc659e688e9bf502085c4459cc72bff", "sha256": "8469a7ee9b3591b1c460590bfdea4d5f491b5ed14806d95967f490205d539caf" }, "downloads": -1, "filename": "zope.security-4.3.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "ccc659e688e9bf502085c4459cc72bff", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 125416, "upload_time": "2019-01-03T14:17:32", "url": "https://files.pythonhosted.org/packages/6c/8e/3ccae4a7b2833bc06d4bde3685c8bfd6a260c512936a72b15dca7881c0ff/zope.security-4.3.1-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "d1463171f1b52e345557ce37ac4247d4", "sha256": "61a075eefcc9d896f639c9facc4ebffa05e6e330abbad658cd30ceef72f4a16d" }, "downloads": -1, "filename": "zope.security-4.3.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "d1463171f1b52e345557ce37ac4247d4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 127458, "upload_time": "2019-01-03T14:18:16", "url": "https://files.pythonhosted.org/packages/8e/5a/e8a623bc1dd02153f2ef27c7861d63c700a1a17e666e90fe043fe3c724f8/zope.security-4.3.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "0514cf9faca74e9796eeceef92f9131f", "sha256": "02ecacf2b6c3ec3c0ee56c22e7d58d27379726827c8957f9cf0e0393d98acb47" }, "downloads": -1, "filename": "zope.security-4.3.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "0514cf9faca74e9796eeceef92f9131f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 125416, "upload_time": "2019-01-03T14:19:02", "url": "https://files.pythonhosted.org/packages/2b/25/9e8c72b71130b54bc8fea2858d1bded01b48de824b2fb02d68d8a1500bf2/zope.security-4.3.1-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "5714e597f50a0cfdd12aca3454c891cb", "sha256": "b224d65652fe605db3c62fc3a6d8c8ba0aef3416dcb22cfa5fe5aeb3b036674c" }, "downloads": -1, "filename": "zope.security-4.3.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "5714e597f50a0cfdd12aca3454c891cb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 127453, "upload_time": "2019-01-03T14:19:45", "url": "https://files.pythonhosted.org/packages/1f/ea/3dc22ebcf1335fdaa8f353c5c2e9aa1d3fab977fd70150753f777e6e6f0d/zope.security-4.3.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "3da1079a5ea1c09bf41c92fee40fbc9a", "sha256": "c2bfed3bfb4b4dfcecb2275153a76c0fdb5dbae5613a748ddcc331285a086851" }, "downloads": -1, "filename": "zope.security-4.3.1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "3da1079a5ea1c09bf41c92fee40fbc9a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 125427, "upload_time": "2019-01-03T14:20:45", "url": "https://files.pythonhosted.org/packages/4a/01/c78b5ba44ba1d206ad44d2a0dcb985dcdede99094e5d1e7e55a41ce9f600/zope.security-4.3.1-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "a529e006e1d4d9b6b3f8ac94caa24d57", "sha256": "334de2c3bef25a0e3e3d57ea25ff4e9e1efe86ed21bb8ad56834f32065657dc8" }, "downloads": -1, "filename": "zope.security-4.3.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "a529e006e1d4d9b6b3f8ac94caa24d57", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 127453, "upload_time": "2019-01-03T14:21:31", "url": "https://files.pythonhosted.org/packages/a9/4e/13cae68dcdbcfbf5772944f7007e9c510ca08e6c6460ac0dfb298db2decb/zope.security-4.3.1-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "4dcd159e1cdc9e9824a793468264b9b0", "sha256": "9448e57bcc856ff05b881ffb1852cdd367fd234e31c0003fd5373582f57beaff" }, "downloads": -1, "filename": "zope.security-4.3.1.tar.gz", "has_sig": false, "md5_digest": "4dcd159e1cdc9e9824a793468264b9b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 121684, "upload_time": "2019-01-03T14:00:34", "url": "https://files.pythonhosted.org/packages/51/8e/e3406c7ecdf0e07d4122007e9984a83d1af2aa203b87f757d0f7c535245e/zope.security-4.3.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "9a5d26d0f167451e56418ada5e3d74dc", "sha256": "7a2c5ec9f477b7d09604d31d32817c401e20c828671aa810395531742d095be2" }, "downloads": -1, "filename": "zope.security-4.3.1-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "9a5d26d0f167451e56418ada5e3d74dc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 123079, "upload_time": "2019-01-03T14:13:31", "url": "https://files.pythonhosted.org/packages/71/12/61a18c9ce1ab9dbbcb113516b267630d869c694cff46159980ddc99915ce/zope.security-4.3.1-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "e5cc761ee04eacf32a9c8a9908a8ddf4", "sha256": "3e5b680e747b0bb3bb0886619c8267390f15d336b4e0fcaabeb81acc50b63de6" }, "downloads": -1, "filename": "zope.security-4.3.1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "e5cc761ee04eacf32a9c8a9908a8ddf4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 123205, "upload_time": "2019-01-03T14:14:05", "url": "https://files.pythonhosted.org/packages/f4/57/93f2b70b9d098315b95db7b695d5884c168664fb9e2526b843f9bfc55225/zope.security-4.3.1-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "dab4d722d1cee763066bf21907d6620f", "sha256": "05e5f5b59e2ab5ca895eed1d6bf6dbeb5701e4d1b04110633954306ca1128d55" }, "downloads": -1, "filename": "zope.security-4.3.1-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "dab4d722d1cee763066bf21907d6620f", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 122649, "upload_time": "2019-01-03T14:15:22", "url": "https://files.pythonhosted.org/packages/92/72/3ad174c120c741531c2941d70e49d5acb00c1c541d3ef9c1190c63fd221d/zope.security-4.3.1-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "d0c6b514d6d416fdb69e80fa44e530b7", "sha256": "24fd7c1912f7ca7ff7b8b8de56fe5b591ffcc4742ac7858518b367057da9c45b" }, "downloads": -1, "filename": "zope.security-4.3.1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "d0c6b514d6d416fdb69e80fa44e530b7", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 122633, "upload_time": "2019-01-03T14:16:13", "url": "https://files.pythonhosted.org/packages/6a/55/7f1f3fd89d7986fdbab672935fba8d699fdbab189f23fb1f7bb365d1a1de/zope.security-4.3.1-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ccc659e688e9bf502085c4459cc72bff", "sha256": "8469a7ee9b3591b1c460590bfdea4d5f491b5ed14806d95967f490205d539caf" }, "downloads": -1, "filename": "zope.security-4.3.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "ccc659e688e9bf502085c4459cc72bff", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 125416, "upload_time": "2019-01-03T14:17:32", "url": "https://files.pythonhosted.org/packages/6c/8e/3ccae4a7b2833bc06d4bde3685c8bfd6a260c512936a72b15dca7881c0ff/zope.security-4.3.1-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "d1463171f1b52e345557ce37ac4247d4", "sha256": "61a075eefcc9d896f639c9facc4ebffa05e6e330abbad658cd30ceef72f4a16d" }, "downloads": -1, "filename": "zope.security-4.3.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "d1463171f1b52e345557ce37ac4247d4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 127458, "upload_time": "2019-01-03T14:18:16", "url": "https://files.pythonhosted.org/packages/8e/5a/e8a623bc1dd02153f2ef27c7861d63c700a1a17e666e90fe043fe3c724f8/zope.security-4.3.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "0514cf9faca74e9796eeceef92f9131f", "sha256": "02ecacf2b6c3ec3c0ee56c22e7d58d27379726827c8957f9cf0e0393d98acb47" }, "downloads": -1, "filename": "zope.security-4.3.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "0514cf9faca74e9796eeceef92f9131f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 125416, "upload_time": "2019-01-03T14:19:02", "url": "https://files.pythonhosted.org/packages/2b/25/9e8c72b71130b54bc8fea2858d1bded01b48de824b2fb02d68d8a1500bf2/zope.security-4.3.1-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "5714e597f50a0cfdd12aca3454c891cb", "sha256": "b224d65652fe605db3c62fc3a6d8c8ba0aef3416dcb22cfa5fe5aeb3b036674c" }, "downloads": -1, "filename": "zope.security-4.3.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "5714e597f50a0cfdd12aca3454c891cb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 127453, "upload_time": "2019-01-03T14:19:45", "url": "https://files.pythonhosted.org/packages/1f/ea/3dc22ebcf1335fdaa8f353c5c2e9aa1d3fab977fd70150753f777e6e6f0d/zope.security-4.3.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "3da1079a5ea1c09bf41c92fee40fbc9a", "sha256": "c2bfed3bfb4b4dfcecb2275153a76c0fdb5dbae5613a748ddcc331285a086851" }, "downloads": -1, "filename": "zope.security-4.3.1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "3da1079a5ea1c09bf41c92fee40fbc9a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 125427, "upload_time": "2019-01-03T14:20:45", "url": "https://files.pythonhosted.org/packages/4a/01/c78b5ba44ba1d206ad44d2a0dcb985dcdede99094e5d1e7e55a41ce9f600/zope.security-4.3.1-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "a529e006e1d4d9b6b3f8ac94caa24d57", "sha256": "334de2c3bef25a0e3e3d57ea25ff4e9e1efe86ed21bb8ad56834f32065657dc8" }, "downloads": -1, "filename": "zope.security-4.3.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "a529e006e1d4d9b6b3f8ac94caa24d57", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 127453, "upload_time": "2019-01-03T14:21:31", "url": "https://files.pythonhosted.org/packages/a9/4e/13cae68dcdbcfbf5772944f7007e9c510ca08e6c6460ac0dfb298db2decb/zope.security-4.3.1-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "4dcd159e1cdc9e9824a793468264b9b0", "sha256": "9448e57bcc856ff05b881ffb1852cdd367fd234e31c0003fd5373582f57beaff" }, "downloads": -1, "filename": "zope.security-4.3.1.tar.gz", "has_sig": false, "md5_digest": "4dcd159e1cdc9e9824a793468264b9b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 121684, "upload_time": "2019-01-03T14:00:34", "url": "https://files.pythonhosted.org/packages/51/8e/e3406c7ecdf0e07d4122007e9984a83d1af2aa203b87f757d0f7c535245e/zope.security-4.3.1.tar.gz" } ] }