{ "info": { "author": "Zope Foundation and Contributors", "author_email": "zope-dev@zope.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 6 - Mature", "Environment :: Web Environment", "Framework :: Zope2", "License :: OSI Approved :: Zope Public License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy" ], "description": "Environmental Acquisiton\n========================\n\nThis package implements \"environmental acquisiton\" for Python, as\nproposed in the OOPSLA96_ paper by Joseph Gil and David H. Lorenz:\n\n We propose a new programming paradigm, environmental acquisition in\n the context of object aggregation, in which objects acquire\n behaviour from their current containers at runtime. The key idea is\n that the behaviour of a component may depend upon its enclosing\n composite(s). In particular, we propose a form of feature sharing in\n which an object \"inherits\" features from the classes of objects in\n its environment. By examining the declaration of classes, it is\n possible to determine which kinds of classes may contain a\n component, and which components must be contained in a given kind of\n composite. These relationships are the basis for language constructs\n that supports acquisition.\n\n.. _OOPSLA96: http://www.cs.virginia.edu/~lorenz/papers/oopsla96/>`_:\n\n.. contents::\n\nIntroductory Example\n--------------------\n\nZope implements acquisition with \"Extension Class\" mix-in classes. To\nuse acquisition your classes must inherit from an acquisition base\nclass. For example::\n\n >>> import ExtensionClass, Acquisition\n\n >>> class C(ExtensionClass.Base):\n ... color = 'red'\n\n >>> class A(Acquisition.Implicit):\n ... def report(self):\n ... print(self.color)\n ...\n >>> a = A()\n >>> c = C()\n >>> c.a = a\n\n >>> c.a.report()\n red\n\n >>> d = C()\n >>> d.color = 'green'\n >>> d.a = a\n\n >>> d.a.report()\n green\n\n >>> try:\n ... a.report()\n ... except AttributeError:\n ... pass\n ... else:\n ... raise AssertionError('AttributeError not raised.')\n\nThe class ``A`` inherits acquisition behavior from\n``Acquisition.Implicit``. The object, ``a``, \"has\" the color of\nobjects ``c`` and d when it is accessed through them, but it has no\ncolor by itself. The object ``a`` obtains attributes from its\nenvironment, where its environment is defined by the access path used\nto reach ``a``.\n\nAcquisition Wrappers\n--------------------\n\nWhen an object that supports acquisition is accessed through an\nextension class instance, a special object, called an acquisition\nwrapper, is returned. In the example above, the expression ``c.a``\nreturns an acquisition wrapper that contains references to both ``c``\nand ``a``. It is this wrapper that performs attribute lookup in ``c``\nwhen an attribute cannot be found in ``a``.\n\nAcquisition wrappers provide access to the wrapped objects through the\nattributes ``aq_parent``, ``aq_self``, ``aq_base``. Continue the\nexample from above::\n\n >>> c.a.aq_parent is c\n True\n >>> c.a.aq_self is a\n True\n\nExplicit and Implicit Acquisition\n---------------------------------\n\nTwo styles of acquisition are supported: implicit and explicit\nacquisition.\n\nImplicit acquisition\n--------------------\n\nImplicit acquisition is so named because it searches for attributes\nfrom the environment automatically whenever an attribute cannot be\nobtained directly from an object or through inheritance.\n\nAn attribute can be implicitly acquired if its name does not begin\nwith an underscore.\n\nTo support implicit acquisition, your class should inherit from the\nmix-in class ``Acquisition.Implicit``.\n\nExplicit Acquisition\n--------------------\n\nWhen explicit acquisition is used, attributes are not automatically\nobtained from the environment. Instead, the method aq_acquire must be\nused. For example::\n\n >>> print(c.a.aq_acquire('color'))\n red\n\nTo support explicit acquisition, your class should inherit from the\nmix-in class ``Acquisition.Explicit``.\n\nControlling Acquisition\n-----------------------\n\nA class (or instance) can provide attribute by attribute control over\nacquisition. You should subclass from ``Acquisition.Explicit``, and set\nall attributes that should be acquired to the special value\n``Acquisition.Acquired``. Setting an attribute to this value also allows\ninherited attributes to be overridden with acquired ones. For example::\n\n >>> class C(Acquisition.Explicit):\n ... id = 1\n ... secret = 2\n ... color = Acquisition.Acquired\n ... __roles__ = Acquisition.Acquired\n\nThe only attributes that are automatically acquired from containing\nobjects are color, and ``__roles__``. Note that the ``__roles__``\nattribute is acquired even though its name begins with an\nunderscore. In fact, the special ``Acquisition.Acquired`` value can be\nused in ``Acquisition.Implicit`` objects to implicitly acquire\nselected objects that smell like private objects.\n\nSometimes, you want to dynamically make an implicitly acquiring object\nacquire explicitly. You can do this by getting the object's\naq_explicit attribute. This attribute provides the object with an\nexplicit wrapper that replaces the original implicit wrapper.\n\nFiltered Acquisition\n--------------------\n\nThe acquisition method, ``aq_acquire``, accepts two optional\narguments. The first of the additional arguments is a \"filtering\"\nfunction that is used when considering whether to acquire an\nobject. The second of the additional arguments is an object that is\npassed as extra data when calling the filtering function and which\ndefaults to ``None``. The filter function is called with five\narguments:\n\n* The object that the aq_acquire method was called on,\n\n* The object where an object was found,\n\n* The name of the object, as passed to aq_acquire,\n\n* The object found, and\n\n* The extra data passed to aq_acquire.\n\nIf the filter returns a true object that the object found is returned,\notherwise, the acquisition search continues.\n\nHere's an example::\n\n >>> from Acquisition import Explicit\n\n >>> class HandyForTesting(object):\n ... def __init__(self, name):\n ... self.name = name\n ... def __str__(self):\n ... return \"%s(%s)\" % (self.name, self.__class__.__name__)\n ... __repr__=__str__\n ...\n >>> class E(Explicit, HandyForTesting): pass\n ...\n >>> class Nice(HandyForTesting):\n ... isNice = 1\n ... def __str__(self):\n ... return HandyForTesting.__str__(self)+' and I am nice!'\n ... __repr__ = __str__\n ...\n >>> a = E('a')\n >>> a.b = E('b')\n >>> a.b.c = E('c')\n >>> a.p = Nice('spam')\n >>> a.b.p = E('p')\n\n >>> def find_nice(self, ancestor, name, object, extra):\n ... return hasattr(object,'isNice') and object.isNice\n\n >>> print(a.b.c.aq_acquire('p', find_nice))\n spam(Nice) and I am nice!\n\nThe filtered acquisition in the last line skips over the first\nattribute it finds with the name ``p``, because the attribute doesn't\nsatisfy the condition given in the filter.\n\nFiltered acquisition is rarely used in Zope.\n\nAcquiring from Context\n----------------------\n\nNormally acquisition allows objects to acquire data from their\ncontainers. However an object can acquire from objects that aren't its\ncontainers.\n\nMost of the examples we've seen so far show establishing of an\nacquisition context using getattr semantics. For example, ``a.b`` is a\nreference to ``b`` in the context of ``a``.\n\nYou can also manually set acquisition context using the ``__of__``\nmethod. For example::\n\n >>> from Acquisition import Implicit\n >>> class C(Implicit): pass\n ...\n >>> a = C()\n >>> b = C()\n >>> a.color = \"red\"\n >>> print(b.__of__(a).color)\n red\n\nIn this case, ``a`` does not contain ``b``, but it is put in ``b``'s\ncontext using the ``__of__`` method.\n\nHere's another subtler example that shows how you can construct an\nacquisition context that includes non-container objects::\n\n >>> from Acquisition import Implicit\n\n >>> class C(Implicit):\n ... def __init__(self, name):\n ... self.name = name\n\n >>> a = C(\"a\")\n >>> a.b = C(\"b\")\n >>> a.b.color = \"red\"\n >>> a.x = C(\"x\")\n\n >>> print(a.b.x.color)\n red\n\nEven though ``b`` does not contain ``x``, ``x`` can acquire the color\nattribute from ``b``. This works because in this case, ``x`` is accessed\nin the context of ``b`` even though it is not contained by ``b``.\n\nHere acquisition context is defined by the objects used to access\nanother object.\n\nContainment Before Context\n--------------------------\n\nIf in the example above suppose both a and b have an color attribute::\n\n >>> a = C(\"a\")\n >>> a.color = \"green\"\n >>> a.b = C(\"b\")\n >>> a.b.color = \"red\"\n >>> a.x = C(\"x\")\n\n >>> print(a.b.x.color)\n green\n\nWhy does ``a.b.x.color`` acquire color from ``a`` and not from ``b``?\nThe answer is that an object acquires from its containers before\nnon-containers in its context.\n\nTo see why consider this example in terms of expressions using the\n``__of__`` method::\n\n a.x -> x.__of__(a)\n\n a.b -> b.__of__(a)\n\n a.b.x -> x.__of__(a).__of__(b.__of__(a))\n\nKeep in mind that attribute lookup in a wrapper is done by trying to\nlook up the attribute in the wrapped object first and then in the\nparent object. So in the expressions above proceeds from left to\nright.\n\nThe upshot of these rules is that attributes are looked up by\ncontainment before context.\n\nThis rule holds true also for more complex examples. For example,\n``a.b.c.d.e.f.g.attribute`` would search for attribute in ``g`` and\nall its containers first. (Containers are searched in order from the\ninnermost parent to the outermost container.) If the attribute is not\nfound in ``g`` or any of its containers, then the search moves to\n``f`` and all its containers, and so on.\n\nAdditional Attributes and Methods\n---------------------------------\n\nYou can use the special method ``aq_inner`` to access an object\nwrapped only by containment. So in the example above,\n``a.b.x.aq_inner`` is equivalent to ``a.x``.\n\nYou can find out the acquisition context of an object using the\naq_chain method like so:\n\n >>> [obj.name for obj in a.b.x.aq_chain]\n ['x', 'b', 'a']\n\nYou can find out if an object is in the containment context of another\nobject using the ``aq_inContextOf`` method. For example:\n\n >>> a.b.aq_inContextOf(a)\n True\n\n.. Note: as of this writing the aq_inContextOf examples don't work the\n way they should be working. According to Jim, this is because\n aq_inContextOf works by comparing object pointer addresses, which\n (because they are actually different wrapper objects) doesn't give\n you the expected results. He acknowledges that this behavior is\n controversial, and says that there is a collector entry to change\n it so that you would get the answer you expect in the above. (We\n just need to get to it).\n\nAcquisition Module Functions\n----------------------------\n\nIn addition to using acquisition attributes and methods directly on\nobjects you can use similar functions defined in the ``Acquisition``\nmodule. These functions have the advantage that you don't need to\ncheck to make sure that the object has the method or attribute before\ncalling it.\n\n``aq_acquire(object, name [, filter, extra, explicit, default, containment])``\n Acquires an object with the given name.\n\n This function can be used to explictly acquire when using explicit\n acquisition and to acquire names that wouldn't normally be\n acquired.\n\n The function accepts a number of optional arguments:\n\n ``filter``\n A callable filter object that is used to decide if an object\n should be acquired.\n\n The filter is called with five arguments:\n\n * The object that the aq_acquire method was called on,\n\n * The object where an object was found,\n\n * The name of the object, as passed to aq_acquire,\n\n * The object found, and\n\n * The extra argument passed to aq_acquire.\n\n If the filter returns a true object that the object found is\n returned, otherwise, the acquisition search continues.\n\n ``extra``\n Extra data to be passed as the last argument to the filter.\n\n ``explicit``\n A flag (boolean value) indicating whether explicit acquisition\n should be used. The default value is true. If the flag is\n true, then acquisition will proceed regardless of whether\n wrappers encountered in the search of the acquisition\n hierarchy are explicit or implicit wrappers. If the flag is\n false, then parents of explicit wrappers are not searched.\n\n This argument is useful if you want to apply a filter without\n overriding explicit wrappers.\n\n ``default``\n A default value to return if no value can be acquired.\n\n ``containment``\n A flag indicating whether the search should be limited to the\n containment hierarchy.\n\n In addition, arguments can be provided as keywords.\n\n``aq_base(object)``\n Return the object with all wrapping removed.\n\n``aq_chain(object [, containment])``\n Return a list containing the object and it's acquisition\n parents. The optional argument, containment, controls whether the\n containment or access hierarchy is used.\n\n``aq_get(object, name [, default, containment])``\n Acquire an attribute, name. A default value can be provided, as\n can a flag that limits search to the containment hierarchy.\n\n``aq_inner(object)``\n Return the object with all but the innermost layer of wrapping\n removed.\n\n``aq_parent(object)``\n Return the acquisition parent of the object or None if the object\n is unwrapped.\n\n``aq_self(object)``\n Return the object with one layer of wrapping removed, unless the\n object is unwrapped, in which case the object is returned.\n\nIn most cases it is more convenient to use these module functions\ninstead of the acquisition attributes and methods directly.\n\nAcquisition and Methods\n-----------------------\n\nPython methods of objects that support acquisition can use acquired\nattributes. When a Python method is called on an object that is\nwrapped by an acquisition wrapper, the wrapper is passed to the method\nas the first argument. This rule also applies to user-defined method\ntypes and to C methods defined in pure mix-in classes.\n\nUnfortunately, C methods defined in extension base classes that define\ntheir own data structures, cannot use aquired attributes at this\ntime. This is because wrapper objects do not conform to the data\nstructures expected by these methods. In practice, you will seldom\nfind this a problem.\n\nConclusion\n----------\n\nAcquisition provides a powerful way to dynamically share information\nbetween objects. Zope uses acquisition for a number of its key\nfeatures including security, object publishing, and DTML variable\nlookup. Acquisition also provides an elegant solution to the problem\nof circular references for many classes of problems. While acquisition\nis powerful, you should take care when using acquisition in your\napplications. The details can get complex, especially with the\ndifferences between acquiring from context and acquiring from\ncontainment.\n\n\nChangelog\n=========\n\n4.6 (2019-04-24)\n----------------\n\n- Drop support for Python 3.4.\n\n- Add support for Python 3.8a3.\n\n- Add support to call ``bytes()`` on an object wrapped by an\n ``ImplicitAcquisitionWrapper``.\n (`#38 `_)\n\n\n4.5 (2018-10-05)\n----------------\n\n- Avoid deprecation warnings by using current API.\n\n- Add support for Python 3.7.\n\n4.4.4 (2017-11-24)\n------------------\n\n- Add Appveyor configuration to automate building Windows eggs.\n\n4.4.3 (2017-11-23)\n------------------\n\n- Fix the extremely rare potential for a crash when the C extensions\n are in use. See `issue 21 `_.\n\n4.4.2 (2017-05-12)\n------------------\n\n- Fix C capsule name to fix import errors.\n\n- Ensure our dependencies match our expactations about C extensions.\n\n4.4.1 (2017-05-04)\n------------------\n\n- Fix C code under Python 3.4, with missing Py_XSETREF.\n\n4.4.0 (2017-05-04)\n------------------\n\n- Enable the C extension under Python 3.\n\n- Drop support for Python 3.3.\n\n4.3.0 (2017-01-20)\n------------------\n\n- Make tests compatible with ExtensionClass 4.2.0.\n\n- Drop support for Python 2.6 and 3.2.\n\n- Add support for Python 3.5 and 3.6.\n\n4.2.2 (2015-05-19)\n------------------\n\n- Make the pure-Python Acquirer objects cooperatively use the\n superclass ``__getattribute__`` method, like the C implementation.\n See https://github.com/zopefoundation/Acquisition/issues/7.\n\n- The pure-Python implicit acquisition wrapper allows wrapped objects\n to use ``object.__getattribute__(self, name)``. This differs from\n the C implementation, but is important for compatibility with the\n pure-Python versions of libraries like ``persistent``. See\n https://github.com/zopefoundation/Acquisition/issues/9.\n\n4.2.1 (2015-04-23)\n------------------\n\n- Correct several dangling pointer uses in the C extension,\n potentially fixing a few interpreter crashes. See\n https://github.com/zopefoundation/Acquisition/issues/5.\n\n4.2 (2015-04-04)\n----------------\n\n- Add support for PyPy, PyPy3, and Python 3.2, 3.3, and 3.4.\n\n4.1 (2014-12-18)\n----------------\n\n- Bump dependency on ``ExtensionClass`` to match current release.\n\n4.0.3 (2014-11-02)\n------------------\n\n- Skip readme.rst tests when tests are run outside a source checkout.\n\n4.0.2 (2014-11-02)\n------------------\n\n- Include ``*.rst`` files in the release.\n\n4.0.1 (2014-10-30)\n------------------\n\n- Tolerate Unicode attribute names (ASCII only). LP #143358.\n\n- Make module-level ``aq_acquire`` API respect the ``default`` parameter.\n LP #1387363.\n\n- Don't raise an attribute error for ``__iter__`` if the fallback to\n ``__getitem__`` succeeds. LP #1155760.\n\n\n4.0 (2013-02-24)\n----------------\n\n- Added trove classifiers to project metadata.\n\n4.0a1 (2011-12-13)\n------------------\n\n- Raise `RuntimeError: Recursion detected in acquisition wrapper` if an object\n with a `__parent__` pointer points to a wrapper that in turn points to the\n original object.\n\n- Prevent wrappers to be created while accessing `__parent__` on types derived\n from Explicit or Implicit base classes.\n\n2.13.9 (2015-02-17)\n-------------------\n\n- Tolerate Unicode attribute names (ASCII only). LP #143358.\n\n- Make module-level ``aq_acquire`` API respect the ``default`` parameter.\n LP #1387363.\n\n- Don't raise an attribute error for ``__iter__`` if the fallback to\n ``__getitem__`` succeeds. LP #1155760.\n\n2.13.8 (2011-06-11)\n-------------------\n\n- Fixed a segfault on 64bit platforms when providing the `explicit` argument to\n the aq_acquire method of an Acquisition wrapper. Thx to LP #675064 for the\n hint to the solution. The code passed an int instead of a pointer into a\n function.\n\n2.13.7 (2011-03-02)\n-------------------\n\n- Fixed bug: When an object did not implement ``__unicode__``, calling\n ``unicode(wrapped)`` was calling ``__str__`` with an unwrapped ``self``.\n\n2.13.6 (2011-02-19)\n-------------------\n\n- Add ``aq_explicit`` to ``IAcquisitionWrapper``.\n\n- Fixed bug: ``unicode(wrapped)`` was not calling a ``__unicode__``\n method on wrapped objects.\n\n2.13.5 (2010-09-29)\n-------------------\n\n- Fixed unit tests that failed on 64bit Python on Windows machines.\n\n2.13.4 (2010-08-31)\n-------------------\n\n- LP 623665: Fixed typo in Acquisition.h.\n\n2.13.3 (2010-04-19)\n-------------------\n\n- Use the doctest module from the standard library and no longer depend on\n zope.testing.\n\n2.13.2 (2010-04-04)\n-------------------\n\n- Give both wrapper classes a ``__getnewargs__`` method, which causes the ZODB\n optimization to fail and create persistent references using the ``_p_oid``\n alone. This happens to be the persistent oid of the wrapped object. This lets\n these objects to be persisted correctly, even though they are passed to the\n ZODB in a wrapped state.\n\n- Added failing tests for http://dev.plone.org/plone/ticket/10318. This shows\n an edge-case where AQ wrappers can be pickled using the specific combination\n of cPickle, pickle protocol one and a custom Pickler class with an\n ``inst_persistent_id`` hook. Unfortunately this is the exact combination used\n by ZODB3.\n\n2.13.1 (2010-02-23)\n-------------------\n\n- Update to include ExtensionClass 2.13.0.\n\n- Fix the ``tp_name`` of the ImplicitAcquisitionWrapper and\n ExplicitAcquisitionWrapper to match their Python visible names and thus have\n a correct ``__name__``.\n\n- Expand the ``tp_name`` of our extension types to hold the fully qualified\n name. This ensures classes have their ``__module__`` set correctly.\n\n2.13.0 (2010-02-14)\n-------------------\n\n- Added support for method cache in Acquisition. Patch contributed by\n Yoshinori K. Okuji. See https://bugs.launchpad.net/zope2/+bug/486182.\n\n2.12.4 (2009-10-29)\n-------------------\n\n- Fix iteration proxying to pass `self` acquisition-wrapped into both\n `__iter__` as well as `__getitem__` (this fixes\n https://bugs.launchpad.net/zope2/+bug/360761).\n\n- Add tests for the __getslice__ proxying, including open-ended slicing.\n\n2.12.3 (2009-08-08)\n-------------------\n\n- More 64-bit fixes in Py_BuildValue calls.\n\n- More 64-bit issues fixed: Use correct integer size for slice operations.\n\n2.12.2 (2009-08-02)\n-------------------\n\n- Fixed 64-bit compatibility issues for Python 2.5.x / 2.6.x. See\n http://www.python.org/dev/peps/pep-0353/ for details.\n\n2.12.1 (2009-04-15)\n-------------------\n\n- Update for iteration proxying: The proxy for `__iter__` must not rely on the\n object to have an `__iter__` itself, but also support fall-back iteration via\n `__getitem__` (this fixes https://bugs.launchpad.net/zope2/+bug/360761).\n\n2.12 (2009-01-25)\n-----------------\n\n- Release as separate package.", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/zopefoundation/Acquisition", "keywords": "", "license": "ZPL 2.1", "maintainer": "", "maintainer_email": "", "name": "Acquisition", "package_url": "https://pypi.org/project/Acquisition/", "platform": "", "project_url": "https://pypi.org/project/Acquisition/", "project_urls": { "Homepage": "https://github.com/zopefoundation/Acquisition" }, "release_url": "https://pypi.org/project/Acquisition/4.6/", "requires_dist": null, "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "summary": "Acquisition is a mechanism that allows objects to obtain attributes from the containment hierarchy they're in.", "version": "4.6" }, "last_serial": 5183135, "releases": { "2.11.0b1": [ { "comment_text": "", "digests": { "md5": "19a116858d8bf1db9829355d9258de1a", "sha256": "03613d0fe59e66487f8e975727935ddf447219174b8918170f1f1b5074324093" }, "downloads": -1, "filename": "Acquisition-2.11.0b1-py2.6-win32.egg", "has_sig": false, "md5_digest": "19a116858d8bf1db9829355d9258de1a", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 51460, "upload_time": "2010-06-18T05:38:12", "url": "https://files.pythonhosted.org/packages/a5/9b/1f56fc05d6736acca72a59a7f131fabcb4f85145b1b3771cc82464dce28c/Acquisition-2.11.0b1-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "bd6c70e6fc8947c6293f783bca09349e", "sha256": "8930fb020d2260f414e8cbb846cf2d8b9f9fd273fa542f25da927b87f75bcdbd" }, "downloads": -1, "filename": "Acquisition-2.11.0b1-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "bd6c70e6fc8947c6293f783bca09349e", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 52375, "upload_time": "2010-06-18T05:38:20", "url": "https://files.pythonhosted.org/packages/82/d1/5b6204b8edce0abd05bdfc3bbde73a5c3a71f3d36787bde8b2980edcbabb/Acquisition-2.11.0b1-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "c1e2a5c671c04068bc12966381cd82b7", "sha256": "af02d3683aec7afb2033c1e193d0ec90716cfce92c6ececabf097f8c25570fe3" }, "downloads": -1, "filename": "Acquisition-2.11.0b1.tar.gz", "has_sig": false, "md5_digest": "c1e2a5c671c04068bc12966381cd82b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48151, "upload_time": "2008-01-06T19:02:06", "url": "https://files.pythonhosted.org/packages/e2/e3/e31b8dd1459513808a49016b752e0b2cdbf45f33f9b2c467fef90d5390c8/Acquisition-2.11.0b1.tar.gz" } ], "2.11.1": [ { "comment_text": "", "digests": { "md5": "4cb38b81dce01e74ff9da0aa65749b61", "sha256": "eaa0809a5e4449b51131e67593584c019d6f3f6ac7a1812d2f35b497401ac758" }, "downloads": -1, "filename": "Acquisition-2.11.1-py2.6-win32.egg", "has_sig": false, "md5_digest": "4cb38b81dce01e74ff9da0aa65749b61", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 51458, "upload_time": "2010-06-18T05:38:32", "url": "https://files.pythonhosted.org/packages/e5/4c/66ea984433b596d04a584f432042f5b3d64dd3ac26e720da4b4742e48579/Acquisition-2.11.1-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "76558c3a49db20195b9e20e915dd6433", "sha256": "a18d151a77b8f4c2a7fa8099bd8ca06b215f5de6af2580ad0926defc343f9c88" }, "downloads": -1, "filename": "Acquisition-2.11.1-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "76558c3a49db20195b9e20e915dd6433", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 52376, "upload_time": "2010-06-18T05:38:43", "url": "https://files.pythonhosted.org/packages/29/81/451ac9d20d34df8279df510c735cf99066c8a1f810d174f1ebf349c9658d/Acquisition-2.11.1-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "709519f86a297d1d9e11ac56474e491e", "sha256": "6adb4dce104efd8a638c154ecb0f5aeb17787b0c9e2bcc3dcd2cf76edd679956" }, "downloads": -1, "filename": "Acquisition-2.11.1-py2.7-win32.egg", "has_sig": false, "md5_digest": "709519f86a297d1d9e11ac56474e491e", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 51464, "upload_time": "2010-10-17T13:54:04", "url": "https://files.pythonhosted.org/packages/26/97/dc3b90b135552156f62bd87eaa467b4b350a1451b02a2c7dc2f73bd550ee/Acquisition-2.11.1-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "57f840fd642af662301accbe71a0d8e0", "sha256": "338a5904b7aaada28b6b746f90dbf18a39bc3b71620ed4c60508c142875c5581" }, "downloads": -1, "filename": "Acquisition-2.11.1-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "57f840fd642af662301accbe71a0d8e0", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 52397, "upload_time": "2010-10-17T13:54:06", "url": "https://files.pythonhosted.org/packages/19/82/3b007012f142b7b5931e6e93de700446863aff57913eab9b4d4128fe6db8/Acquisition-2.11.1-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "a9bdbc5bac2726099b3174b9c7590b7e", "sha256": "0888acf3221a32c2f529ea10f708d79db0bec906cb4f02e3a209614a37154eaf" }, "downloads": -1, "filename": "Acquisition-2.11.1.tar.gz", "has_sig": false, "md5_digest": "a9bdbc5bac2726099b3174b9c7590b7e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49797, "upload_time": "2008-08-05T14:14:14", "url": "https://files.pythonhosted.org/packages/22/35/3c0c96b084f5ec18c3f65a96ec6ae9010554134e6319ddaf98897981e8dd/Acquisition-2.11.1.tar.gz" } ], "2.11.2": [ { "comment_text": "", "digests": { "md5": "506b41a8952fe87946a295cb51bfb50f", "sha256": "514cbabd0eca27d0b3ed926197b16eecd21720086997124154ec234c628148d1" }, "downloads": -1, "filename": "Acquisition-2.11.2-py2.6-win32.egg", "has_sig": false, "md5_digest": "506b41a8952fe87946a295cb51bfb50f", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 53412, "upload_time": "2010-06-18T05:38:57", "url": "https://files.pythonhosted.org/packages/a4/32/3b36fe231632647cd0ad68211660081c4236d137a4e5a39020317d89b3a0/Acquisition-2.11.2-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "adca6fd49025a6bf697d2bda0cf58fc0", "sha256": "0ef1728374dff0a6a5c2f3d33ff48aadf628dc717315b82964a718a5f644d803" }, "downloads": -1, "filename": "Acquisition-2.11.2-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "adca6fd49025a6bf697d2bda0cf58fc0", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 54378, "upload_time": "2010-06-18T05:39:05", "url": "https://files.pythonhosted.org/packages/2a/37/bb4ffc2ab3e1e46a827d86e1eac9a91ed1dacb75e09c6c5b321bd3f812c6/Acquisition-2.11.2-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "aac848bd032071dfaa10b99baa18fb5f", "sha256": "ef067e2264573f22bdb9f2b0c9b484e5a1c81ee57ea766e08c94c82704c84054" }, "downloads": -1, "filename": "Acquisition-2.11.2-py2.7-win32.egg", "has_sig": false, "md5_digest": "aac848bd032071dfaa10b99baa18fb5f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 53451, "upload_time": "2010-10-17T13:54:10", "url": "https://files.pythonhosted.org/packages/5d/09/903b8505160249f9030edbc2d770d02fc1d39044a05a1958b444268683e1/Acquisition-2.11.2-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "ed1ea4c473e29d40b4143c1235b4f5bd", "sha256": "9fdf5c42c2102eedd5ff685c3a3b1cdd1794dee1995d816087ae7906981fae63" }, "downloads": -1, "filename": "Acquisition-2.11.2-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "ed1ea4c473e29d40b4143c1235b4f5bd", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 54409, "upload_time": "2010-10-17T13:54:12", "url": "https://files.pythonhosted.org/packages/6e/8b/a4da0bc18cd46a5066ad6ec0559176a67e296f711ff35970c5efbfbd3088/Acquisition-2.11.2-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "0262767b927ae8cfec634539ffd0a377", "sha256": "92959a18b821c8a06ea0e8f49c0288c9ab0a7daaf07a5b88423fc17ce6ec3e2b" }, "downloads": -1, "filename": "Acquisition-2.11.2.zip", "has_sig": false, "md5_digest": "0262767b927ae8cfec634539ffd0a377", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 60854, "upload_time": "2010-02-25T19:09:59", "url": "https://files.pythonhosted.org/packages/25/a2/6de37198d60ad16b4dbcd5ec8f5771757add699d3d903679b7d594c44cb2/Acquisition-2.11.2.zip" } ], "2.11.3": [ { "comment_text": "", "digests": { "md5": "635dc366885f8bd90cae181c9432d710", "sha256": "87854e8fdfa787b61dbc09f6c7ab01b9f8f87225b5b1438a34dc5a0532d53912" }, "downloads": -1, "filename": "Acquisition-2.11.3-py2.6-win32.egg", "has_sig": false, "md5_digest": "635dc366885f8bd90cae181c9432d710", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 54488, "upload_time": "2010-06-18T05:39:14", "url": "https://files.pythonhosted.org/packages/fe/6b/a928d996c81686032d8eef6d054266f54ecb44f0dd60536006b0b2b36dbf/Acquisition-2.11.3-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "0afa28e8ae8a00278c0aa278e430cd6d", "sha256": "4b53c109adf513bb00e9152d30cd3ac1748afa8330cbe8f794ced27ab4620db5" }, "downloads": -1, "filename": "Acquisition-2.11.3-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "0afa28e8ae8a00278c0aa278e430cd6d", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 55450, "upload_time": "2010-06-18T05:39:29", "url": "https://files.pythonhosted.org/packages/27/a3/78a379d2536725853f8a15d76248c0e27a146223eb100dc0e327d383b54c/Acquisition-2.11.3-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "760ca6712fec064173d09e6240428fe7", "sha256": "0bc227f96b6bb650937fb350d365bf4ab03b5323861f3488ff5d2e989e6c1dfc" }, "downloads": -1, "filename": "Acquisition-2.11.3-py2.7-win32.egg", "has_sig": false, "md5_digest": "760ca6712fec064173d09e6240428fe7", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 54532, "upload_time": "2010-10-17T13:54:17", "url": "https://files.pythonhosted.org/packages/81/f0/985caf20a62b037976392bbba150ff984fd53c801afbfd88762b1d4e1557/Acquisition-2.11.3-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "57baa594a0dd1a97fd3d565d0030e6c1", "sha256": "cd07d3d414f3c0b849a04a42819e1d024de66b144e33e7a1e952ab3211982216" }, "downloads": -1, "filename": "Acquisition-2.11.3-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "57baa594a0dd1a97fd3d565d0030e6c1", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 55474, "upload_time": "2010-10-17T13:54:19", "url": "https://files.pythonhosted.org/packages/71/e0/8c73ee9edae299ebf03eb9a3b688c94d3bf1152903187dee735709458a44/Acquisition-2.11.3-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "82836dbf667b85332d80488780dbbaaa", "sha256": "555e8e3bb99645577fb95ab7e81cb05c77ddf58f4dbad521675679a21392c2be" }, "downloads": -1, "filename": "Acquisition-2.11.3.zip", "has_sig": false, "md5_digest": "82836dbf667b85332d80488780dbbaaa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62289, "upload_time": "2010-04-04T02:00:26", "url": "https://files.pythonhosted.org/packages/91/ae/6252fd4b9e37f4a5569cee7d828da8b9591f11e8cdcbd6894664b6d4e255/Acquisition-2.11.3.zip" } ], "2.12.0a1": [ { "comment_text": "built on Windows-XP", "digests": { "md5": "3fb3f56fb7a7d60b90ce8c6ebff27224", "sha256": "77f0fe03ac530e0e5bb19f696474ea41bac764ff1bcd76ce1d41236c51cc9795" }, "downloads": -1, "filename": "Acquisition-2.12.0a1-py2.4-win32.egg", "has_sig": false, "md5_digest": "3fb3f56fb7a7d60b90ce8c6ebff27224", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 55335, "upload_time": "2009-02-19T20:40:39", "url": "https://files.pythonhosted.org/packages/dd/5e/f49a12fffe9e19f12ec795a4b3d4c405d5e7504b98873e5e749f87de8ddb/Acquisition-2.12.0a1-py2.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "71d4152128853220071025cba7ef45b3", "sha256": "d7efebf0753384f6d8e5c2adfdb96513a921fbe3aba93884ac7491c3259e33ce" }, "downloads": -1, "filename": "Acquisition-2.12.0a1-py2.5-win32.egg", "has_sig": false, "md5_digest": "71d4152128853220071025cba7ef45b3", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 55259, "upload_time": "2009-02-19T20:24:12", "url": "https://files.pythonhosted.org/packages/36/29/af53b3afc102a82d65d70af296f17bdd8a8ae3b91354cc4f38ef3dc0e23a/Acquisition-2.12.0a1-py2.5-win32.egg" }, { "comment_text": "", "digests": { "md5": "708eac557c4eea905a20397df788848e", "sha256": "ab07522c7c596ffc81a5958de6afc7d7652f43380ec8f5f5a40f8253aad3e2c0" }, "downloads": -1, "filename": "Acquisition-2.12.0a1-py2.6-win32.egg", "has_sig": false, "md5_digest": "708eac557c4eea905a20397df788848e", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 55245, "upload_time": "2009-02-19T20:24:20", "url": "https://files.pythonhosted.org/packages/42/44/491b0bd045ede880d02e7c53a00a93c62c4d6ec4b1c8b4436126d4eead37/Acquisition-2.12.0a1-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "02d318f4f97c8a8f25e15ea5c9a4fc2c", "sha256": "669308c5e40f15ee8044335c964496aeb3f856053ee19f8c6eccb570ae80c22e" }, "downloads": -1, "filename": "Acquisition-2.12.0a1-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "02d318f4f97c8a8f25e15ea5c9a4fc2c", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 57586, "upload_time": "2010-06-18T05:39:53", "url": "https://files.pythonhosted.org/packages/bf/34/9a676f97b4c35e656eae165183c082e66857bcfa796a28cf2e8705bd3e0f/Acquisition-2.12.0a1-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "a5845a6075485c0e93b16494c9502b8a", "sha256": "ad51267cbd375b429e8d2e8f711ac0f0dfb2d519158d1bb09baee71d1d5466e4" }, "downloads": -1, "filename": "Acquisition-2.12.0a1.zip", "has_sig": true, "md5_digest": "a5845a6075485c0e93b16494c9502b8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61390, "upload_time": "2009-01-24T23:51:53", "url": "https://files.pythonhosted.org/packages/64/1f/2258269c3aba6463cb8b34fd4dbce43ff0ed967bfa1b38b07bb8467a8825/Acquisition-2.12.0a1.zip" } ], "2.12.1": [ { "comment_text": "built on Windows-XP", "digests": { "md5": "d138cb9607271f560ad29d6f1ebd3516", "sha256": "ffeed27bd0b3d0f06f3962cc9dc9e9b4bc51467c946f6ca6e5e61fb6632f882a" }, "downloads": -1, "filename": "Acquisition-2.12.1-py2.4-win32.egg", "has_sig": false, "md5_digest": "d138cb9607271f560ad29d6f1ebd3516", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 55825, "upload_time": "2009-04-15T22:51:23", "url": "https://files.pythonhosted.org/packages/7a/3b/1a2d08ac2639b79b8ac0873ed7baf4a4b9e05db7a95dba789b2bc9714f61/Acquisition-2.12.1-py2.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "79bcedd771369a6693d8d78db4fb0d02", "sha256": "f14b1b9b31c572d639c524fa11c1fbbfa0b28941c0448b4c1a047ba4bff745f8" }, "downloads": -1, "filename": "Acquisition-2.12.1-py2.5-win32.egg", "has_sig": false, "md5_digest": "79bcedd771369a6693d8d78db4fb0d02", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 55749, "upload_time": "2009-04-15T22:51:51", "url": "https://files.pythonhosted.org/packages/37/f6/4f32502595b42a97de83aec5c09a21e387b307edd1dfe1d19421a2252022/Acquisition-2.12.1-py2.5-win32.egg" }, { "comment_text": "", "digests": { "md5": "bfd42804bfdd466a0928c49aee8fd6a0", "sha256": "a6dd39f498169e6ef886d8293012004dbd57c5d8dcfdd33d59240d69868d438e" }, "downloads": -1, "filename": "Acquisition-2.12.1-py2.6-win32.egg", "has_sig": false, "md5_digest": "bfd42804bfdd466a0928c49aee8fd6a0", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 55739, "upload_time": "2009-04-15T22:52:13", "url": "https://files.pythonhosted.org/packages/ae/3e/d242cf09abcb4f11fedbbb897a08df2248db7e55dfadeeb7478582b0f2bd/Acquisition-2.12.1-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "4cdf89fb3af5327699b980f27367f08e", "sha256": "4906dd2b315cc42cae4020dab5d0a67c473000aec578b62a8f816ffda792406d" }, "downloads": -1, "filename": "Acquisition-2.12.1-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "4cdf89fb3af5327699b980f27367f08e", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 58057, "upload_time": "2010-06-18T05:40:02", "url": "https://files.pythonhosted.org/packages/9a/ac/8c733b4658b1ea0344abbed61ed4a623cb1440bd17e774ed2549afef889c/Acquisition-2.12.1-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "e0982736a5a7505930ccb6fb7b7f91b8", "sha256": "a27e89b2a226b56174a1759ae3d97ad172bbe54d7f73aba9e9fbea0336b89ae1" }, "downloads": -1, "filename": "Acquisition-2.12.1-py2.7-win32.egg", "has_sig": false, "md5_digest": "e0982736a5a7505930ccb6fb7b7f91b8", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 57054, "upload_time": "2010-10-17T13:54:23", "url": "https://files.pythonhosted.org/packages/8b/ed/53a9761c09cccf697c21f4e343e3aa647efbc1c61d6cf74e65d86dc3e5fe/Acquisition-2.12.1-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "3466e3a92672457ae591bec1257b8466", "sha256": "3e7d8052bc81ea9ee3c3aa586fafde8657b16d91e35d54c2b2c6bfcd6e67e317" }, "downloads": -1, "filename": "Acquisition-2.12.1-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "3466e3a92672457ae591bec1257b8466", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 58053, "upload_time": "2010-10-17T13:54:25", "url": "https://files.pythonhosted.org/packages/b6/25/62ff91e63f54a41219d91e41d6d41534b3ffb5f1583728bbf3049c9b9659/Acquisition-2.12.1-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "3e014e0852b76b2f0cf2c454b88893f1", "sha256": "f15e696b466e6770f32b2a3f6f875ac435d85c98ed90727dd6e572fd6cf580e1" }, "downloads": -1, "filename": "Acquisition-2.12.1.zip", "has_sig": true, "md5_digest": "3e014e0852b76b2f0cf2c454b88893f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62216, "upload_time": "2009-04-15T21:49:35", "url": "https://files.pythonhosted.org/packages/52/ed/23c1002612a80eee32d3121e76527138c26dbcce9e3ce51de5bd51f4eba8/Acquisition-2.12.1.zip" } ], "2.12.2": [ { "comment_text": "", "digests": { "md5": "482955ff72272f728c64b50551a36251", "sha256": "89197a54905088c5f0f3745f7e4b914f16a3f01c57da665a776c6d5cc23fd3da" }, "downloads": -1, "filename": "Acquisition-2.12.2-py2.6-win32.egg", "has_sig": false, "md5_digest": "482955ff72272f728c64b50551a36251", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 57293, "upload_time": "2010-06-18T05:40:17", "url": "https://files.pythonhosted.org/packages/b0/49/75b0244b19cd3a90fc3b4c447e0408cc617c6fa97341b08a4c9174a04c9c/Acquisition-2.12.2-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "9dfeac30c6ef2b387ad6de4eb735596a", "sha256": "6b114e5d74f08490d29832ba115dd1055caedf720b9b016b06f90dd4c8fdab9e" }, "downloads": -1, "filename": "Acquisition-2.12.2-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "9dfeac30c6ef2b387ad6de4eb735596a", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 58305, "upload_time": "2010-06-18T05:40:25", "url": "https://files.pythonhosted.org/packages/05/f2/eed4d9622706e6d5e2630fc1e181d97df4a56fb3a2ada72085fe09103ca2/Acquisition-2.12.2-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "e966c4a05c117a6aab938c3e4c57b37a", "sha256": "761e8f4cb13c64e0177c263da933a877d359a23c99fbf17e678c81fe3b52ceaa" }, "downloads": -1, "filename": "Acquisition-2.12.2-py2.7-win32.egg", "has_sig": false, "md5_digest": "e966c4a05c117a6aab938c3e4c57b37a", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 57293, "upload_time": "2010-10-17T13:54:29", "url": "https://files.pythonhosted.org/packages/70/50/4b65fd42abb335fc7dbb0ccc899a826bc7a1cab010407ba13866c06e1444/Acquisition-2.12.2-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "c04d96e9707a080db5ce3a73b4e1bd72", "sha256": "6f6a5f8d4d822ce054a65f3db24d4c2e36b5f0ab0b89be5b89c14285ae63c536" }, "downloads": -1, "filename": "Acquisition-2.12.2-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "c04d96e9707a080db5ce3a73b4e1bd72", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 58296, "upload_time": "2010-10-17T13:54:31", "url": "https://files.pythonhosted.org/packages/73/6e/e66953db4e030c0a98e00a87c2512fb643e5e5b0513c653b180dfeab4fd0/Acquisition-2.12.2-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "0a0311e66b68f3838ee73c0836db98b1", "sha256": "ccde4619e70724ba6160b093a2b24cede915bca7d6b1dceedb7bf43a4fc596b5" }, "downloads": -1, "filename": "Acquisition-2.12.2.tar.gz", "has_sig": false, "md5_digest": "0a0311e66b68f3838ee73c0836db98b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53913, "upload_time": "2009-08-02T20:28:32", "url": "https://files.pythonhosted.org/packages/e3/31/a0a96ce10797d4441b50f059da527aa79c72c36c1e5f440a612b0a37e354/Acquisition-2.12.2.tar.gz" } ], "2.12.3": [ { "comment_text": "built on Microsoft-Windows", "digests": { "md5": "383289ebef4be06a3cf7ef8193ac553e", "sha256": "ed60e1d37d738026eb7c04087e3db991c121b5ba12a320492156cd7ff21237d3" }, "downloads": -1, "filename": "Acquisition-2.12.3-py2.4-win32.egg", "has_sig": false, "md5_digest": "383289ebef4be06a3cf7ef8193ac553e", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 55264, "upload_time": "2009-08-09T15:55:07", "url": "https://files.pythonhosted.org/packages/4e/02/6f96f627a8e52bba179981d140af67363188474f5042a8777230c549f53e/Acquisition-2.12.3-py2.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "ce311a14bbdd76dfbef58d2b1bd1b041", "sha256": "ac70c2ec95d6c3d3cd8012a16eb0c4d0e67c3ebd5837d391c52fb33b4f8d2fc4" }, "downloads": -1, "filename": "Acquisition-2.12.3-py2.5-win32.egg", "has_sig": false, "md5_digest": "ce311a14bbdd76dfbef58d2b1bd1b041", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 55177, "upload_time": "2009-08-09T15:55:24", "url": "https://files.pythonhosted.org/packages/55/da/f48a5e72e3af098c7b8585a87c92355dcd6f2745b7a3694256f418ed4391/Acquisition-2.12.3-py2.5-win32.egg" }, { "comment_text": "", "digests": { "md5": "bacb8ca4f6bf97a5d150a958b414cd4e", "sha256": "aa260e0b042518c7e772640b2cd216bf1d12b99a6ced2aa74336f8753994fde5" }, "downloads": -1, "filename": "Acquisition-2.12.3-py2.6-win32.egg", "has_sig": false, "md5_digest": "bacb8ca4f6bf97a5d150a958b414cd4e", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 55087, "upload_time": "2009-08-09T15:55:38", "url": "https://files.pythonhosted.org/packages/6b/71/efb429fc44e5a592e795e239953c05240ccd4620d675f8c133b983758d34/Acquisition-2.12.3-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "3f28df449c8115af13f110a7477a9a3f", "sha256": "5cd9f42cb7efdb11636f4afc6004b279fb28523b34db04d9383d6f4e1169f2a3" }, "downloads": -1, "filename": "Acquisition-2.12.3-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "3f28df449c8115af13f110a7477a9a3f", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 58381, "upload_time": "2010-06-18T05:40:42", "url": "https://files.pythonhosted.org/packages/76/ed/bb0b95374bd2c674167dd1d61014f311f7fc23792cd846e7ad91a7c55204/Acquisition-2.12.3-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "3a7323d308fac64f1a07bcd8adf8aff4", "sha256": "4bf542d0a27b4d3f149871ff979c587d13b3ca75a9531499086bba2ed69b1528" }, "downloads": -1, "filename": "Acquisition-2.12.3-py2.7-win32.egg", "has_sig": false, "md5_digest": "3a7323d308fac64f1a07bcd8adf8aff4", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 57368, "upload_time": "2010-10-17T13:54:36", "url": "https://files.pythonhosted.org/packages/3b/af/b5510c8d4c220e315f6d9ab938fb2306ab281080ff20f82dfb877d4d1db5/Acquisition-2.12.3-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "c6a1e7e0d5fb2f6ef9709772578ae3e9", "sha256": "40a61ef704280907a7d16ac19c00da8cf441dbd19f6048006f9ea5ad4e8f63c0" }, "downloads": -1, "filename": "Acquisition-2.12.3-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "c6a1e7e0d5fb2f6ef9709772578ae3e9", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 58374, "upload_time": "2010-10-17T13:54:38", "url": "https://files.pythonhosted.org/packages/05/ca/25106c2ad3c368dcc8a7629a3f3a0dc9d1b7963ce1bcf9ecb991a8675915/Acquisition-2.12.3-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "b3a8d5c13113ca4456c36aa42b137f69", "sha256": "5f4ea5e8672de1503431e49053a8b92ef5c0bf3a76d2d9b843c888d879042ede" }, "downloads": -1, "filename": "Acquisition-2.12.3.zip", "has_sig": true, "md5_digest": "b3a8d5c13113ca4456c36aa42b137f69", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62984, "upload_time": "2009-08-09T15:41:28", "url": "https://files.pythonhosted.org/packages/9d/f4/9d8b960ae1d7323e22a2c377621e0b8ff283f86137ec0b566ffbbb74ec56/Acquisition-2.12.3.zip" } ], "2.12.4": [ { "comment_text": "built on Microsoft-Windows", "digests": { "md5": "7ae89d15cc384d9020fd4fa41f04704f", "sha256": "5035c6180308db94b889b0848e1a8ef462ff8a34fcfb5e41df84d5a12a50f1a7" }, "downloads": -1, "filename": "Acquisition-2.12.4-py2.4-win32.egg", "has_sig": false, "md5_digest": "7ae89d15cc384d9020fd4fa41f04704f", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 56792, "upload_time": "2009-10-30T15:22:47", "url": "https://files.pythonhosted.org/packages/54/78/e678d3bf00ff3c2624ee233bebc9337e2208daf6b80119bbf862c18c9a63/Acquisition-2.12.4-py2.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "1dedaaf5483de6cc9452e7cb755f65c0", "sha256": "a24758572a597e4f33807af58d7bd27f5e9273d9d27cd3230b0860682a1e3938" }, "downloads": -1, "filename": "Acquisition-2.12.4-py2.5-win32.egg", "has_sig": false, "md5_digest": "1dedaaf5483de6cc9452e7cb755f65c0", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 56711, "upload_time": "2009-10-30T15:22:42", "url": "https://files.pythonhosted.org/packages/99/86/5bdf09cdd4705ea0b7fe2f9caacb212f98dfd40e9999904f135879a5227f/Acquisition-2.12.4-py2.5-win32.egg" }, { "comment_text": "", "digests": { "md5": "a066b6b92c4df12d57c46a407184beb7", "sha256": "93cf34d26524ffd78c8055378f60f2e6dd9d08e0d6ae053295d4cc2b107cc653" }, "downloads": -1, "filename": "Acquisition-2.12.4-py2.6-win32.egg", "has_sig": false, "md5_digest": "a066b6b92c4df12d57c46a407184beb7", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 56642, "upload_time": "2009-10-30T15:22:36", "url": "https://files.pythonhosted.org/packages/d6/ff/40f591207ada1d0939a71a396826119ea889aa34eef4bcbe0b65ca66e003/Acquisition-2.12.4-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "22b56b8e6d00361f618ddc10f34febdf", "sha256": "f60b132cec8be38f7700c4cfaf76058aaf3a974c2e72cbaf9287788b3bb3a3a7" }, "downloads": -1, "filename": "Acquisition-2.12.4-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "22b56b8e6d00361f618ddc10f34febdf", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 59919, "upload_time": "2009-12-31T03:10:28", "url": "https://files.pythonhosted.org/packages/59/98/58590c0b0153d5a755ac81d4ae4fb7a9c94ffdafc0642b60ddbf1b209ad7/Acquisition-2.12.4-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "d83de2221e947004ac4fcdc45ada1552", "sha256": "6cd6f6dfd90f04664dd3e6e4362fc91de57313aff240cc1833d0a7c60ec3521e" }, "downloads": -1, "filename": "Acquisition-2.12.4-py2.7-win32.egg", "has_sig": false, "md5_digest": "d83de2221e947004ac4fcdc45ada1552", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 58926, "upload_time": "2010-10-17T13:54:42", "url": "https://files.pythonhosted.org/packages/dc/4c/5a0b9878463ba3f2a27a5ca892bee3123e0606ff32fd079f1a88f15b5286/Acquisition-2.12.4-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "02913a9c62d3a79adbd941242310ccff", "sha256": "dee21b74720aff0885f67c5677032be5f9251436f4c92c62118ee003dfde2646" }, "downloads": -1, "filename": "Acquisition-2.12.4-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "02913a9c62d3a79adbd941242310ccff", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 59971, "upload_time": "2010-10-17T13:54:44", "url": "https://files.pythonhosted.org/packages/37/34/ea1d2e820a921dab7dfc19d8fecb8958cd964db6e44c2285501080770f6f/Acquisition-2.12.4-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "b0c31576dd7dc19bb34554388b7726e8", "sha256": "2d88493810ceecfe8bacf06ea154546c5f52f02dd0c9911274e935265543cdcd" }, "downloads": -1, "filename": "Acquisition-2.12.4.zip", "has_sig": false, "md5_digest": "b0c31576dd7dc19bb34554388b7726e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64351, "upload_time": "2009-10-29T11:17:06", "url": "https://files.pythonhosted.org/packages/0b/03/e067e3774c39fe109249cac26ede37e7fff209b4518f6a8056fea7afeffa/Acquisition-2.12.4.zip" } ], "2.13.0": [ { "comment_text": "", "digests": { "md5": "c31f389926eab8888602f5616d4e99a2", "sha256": "cf12ee6f6d0fb735d2ceb97e81851be6eef2252b9137205179834e061524d663" }, "downloads": -1, "filename": "Acquisition-2.13.0-py2.6-win32.egg", "has_sig": false, "md5_digest": "c31f389926eab8888602f5616d4e99a2", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 58973, "upload_time": "2010-02-19T19:11:45", "url": "https://files.pythonhosted.org/packages/a5/9f/1b227ea84924f4c7b42f11b4f6f3119432bba81ddf83e8ae14ac92cebd85/Acquisition-2.13.0-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "3b198672fe8d4aadebb0a863557071da", "sha256": "6cbb0250caa4eed8eee7dddb351d7129af00769c9713c6ac6fc1274c39ddf5ca" }, "downloads": -1, "filename": "Acquisition-2.13.0-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "3b198672fe8d4aadebb0a863557071da", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 60013, "upload_time": "2010-02-19T19:14:11", "url": "https://files.pythonhosted.org/packages/da/7b/3d7dda4c1b0fbfa3bb3b862ee97ef1e527eb5a9aa06713e903d06b92da0b/Acquisition-2.13.0-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "efa6cf84ef476b646019709de75cd5c3", "sha256": "795682c248e8617ecc1363a2da020a5dccffadbaa46e99ff0cb175a4d8c09cdf" }, "downloads": -1, "filename": "Acquisition-2.13.0-py2.7-win32.egg", "has_sig": false, "md5_digest": "efa6cf84ef476b646019709de75cd5c3", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 59009, "upload_time": "2010-10-17T13:54:49", "url": "https://files.pythonhosted.org/packages/60/92/173fe5b098c59a2280b628121471f2ef97f53235b17d6b19b693ac17399b/Acquisition-2.13.0-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "141776f28323bbae22f4df0c8b3729cb", "sha256": "440ad40ae8080c096fc1533d659b5ed473b946d97c54dcd9e4b481622b9b4bd4" }, "downloads": -1, "filename": "Acquisition-2.13.0-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "141776f28323bbae22f4df0c8b3729cb", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 60053, "upload_time": "2010-10-17T13:54:51", "url": "https://files.pythonhosted.org/packages/ae/53/e7151d36f73163800f0442e3b7b0867ae1b9fb7cd0ef9695420a12f5bf0c/Acquisition-2.13.0-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "7d8f15703434f1562f9f76bfe6d98884", "sha256": "fc6a57a348cdaf522aef39c6371035a468b5d134d92af38afd5d28d543a1d96d" }, "downloads": -1, "filename": "Acquisition-2.13.0.zip", "has_sig": false, "md5_digest": "7d8f15703434f1562f9f76bfe6d98884", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64292, "upload_time": "2010-02-14T23:10:38", "url": "https://files.pythonhosted.org/packages/33/59/3c41991c383ea78b23694cefc3ecbf61be80c0a7ed1e3237e061f5e8e510/Acquisition-2.13.0.zip" } ], "2.13.1": [ { "comment_text": "", "digests": { "md5": "90fcf6049a38538ac82ea10fc8efdcfd", "sha256": "f0b4719e59a80c2f4f12e4e561330a4d1bfcca10f2436bf417bfa21a78254fed" }, "downloads": -1, "filename": "Acquisition-2.13.1-py2.6-win32.egg", "has_sig": false, "md5_digest": "90fcf6049a38538ac82ea10fc8efdcfd", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 59119, "upload_time": "2010-02-24T19:45:48", "url": "https://files.pythonhosted.org/packages/62/07/a1c82e2e5458cecfb4e03a70a382d4fdf14e726e826ffd578db70ce95045/Acquisition-2.13.1-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "2d1727b75c2f3cd2f1ef396fe060bec3", "sha256": "096b865dbdee759db7b9396cbce798574aee7d4daf2cb33572268a4a71fc39a0" }, "downloads": -1, "filename": "Acquisition-2.13.1-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "2d1727b75c2f3cd2f1ef396fe060bec3", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 60163, "upload_time": "2010-02-24T19:46:26", "url": "https://files.pythonhosted.org/packages/db/c8/6d49bd9f6ac20050c672f9992d88547ead4e787d65dbf02fdefa4909647e/Acquisition-2.13.1-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "2fa0ac4dca0169cbc22039bf4bfee6db", "sha256": "4ac0f3e4980de022b1ca89a332a1d2cfad859dbde501e521624c61d4bbacdc79" }, "downloads": -1, "filename": "Acquisition-2.13.1-py2.7-win32.egg", "has_sig": false, "md5_digest": "2fa0ac4dca0169cbc22039bf4bfee6db", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 59159, "upload_time": "2010-10-17T13:54:55", "url": "https://files.pythonhosted.org/packages/7c/5e/aae54f9e012644b864ac9b407dbb908e9eccef383c6128d885cfc835a0cf/Acquisition-2.13.1-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "becefd906ce2a645228ada6e3af2fb37", "sha256": "4c632fcce6362d8543d18b9954273d8e93a5d96e9c931d7f2caebd4369620bf6" }, "downloads": -1, "filename": "Acquisition-2.13.1-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "becefd906ce2a645228ada6e3af2fb37", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 60207, "upload_time": "2010-10-17T13:54:57", "url": "https://files.pythonhosted.org/packages/2a/5e/8f0e0a00d9ca7010bfeb17205f60e81362c4210f09593ae45aafd8bf5fc6/Acquisition-2.13.1-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "b7d5a1a6b0cafc23d3e97a606d6cbb65", "sha256": "562165e3b5f1c0500ee5844415d814292b6b8066ed0e8fd6f79c2db343ca3626" }, "downloads": -1, "filename": "Acquisition-2.13.1.zip", "has_sig": false, "md5_digest": "b7d5a1a6b0cafc23d3e97a606d6cbb65", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64811, "upload_time": "2010-02-23T23:18:22", "url": "https://files.pythonhosted.org/packages/4b/3d/720ddf3a7ee86b8d779842bd2b0a7f4c558f3457cd52432f9d6f96abd16a/Acquisition-2.13.1.zip" } ], "2.13.10": [ { "comment_text": "", "digests": { "md5": "dbf99e0854db318ebd746bb27eb83be3", "sha256": "0d18f6a177cbe9bea3a6e7990d570c5006c69fdb49a45d67e0337629c4b36eb7" }, "downloads": -1, "filename": "Acquisition-2.13.10.tar.gz", "has_sig": false, "md5_digest": "dbf99e0854db318ebd746bb27eb83be3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39999, "upload_time": "2016-09-05T12:54:28", "url": "https://files.pythonhosted.org/packages/cb/a3/16c36dd4d901596f1d93b2da80fe7baa359e4f999e32bd10b5d50071237b/Acquisition-2.13.10.tar.gz" } ], "2.13.11": [ { "comment_text": "", "digests": { "md5": "fceecda3e8d42d2d0cd623f30132e0cd", "sha256": "85e0248234d757db5cc32b81e73fad5de6a25386692d0d50112ab673469fcd3a" }, "downloads": -1, "filename": "Acquisition-2.13.11.tar.gz", "has_sig": false, "md5_digest": "fceecda3e8d42d2d0cd623f30132e0cd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45027, "upload_time": "2016-09-05T18:29:26", "url": "https://files.pythonhosted.org/packages/73/d9/5c3c8b88243ab84fb48648aae20f2c2c611891ed1a1f434615d3bfcf3583/Acquisition-2.13.11.tar.gz" } ], "2.13.12": [ { "comment_text": "", "digests": { "md5": "290f28ed8a5c817c9cbaf1e13b0050b9", "sha256": "40b242ea6603f7ca0f3cecea1baaa23f7db9bc39046efe7bb0ac1b64c27c7763" }, "downloads": -1, "filename": "Acquisition-2.13.12.tar.gz", "has_sig": true, "md5_digest": "290f28ed8a5c817c9cbaf1e13b0050b9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44131, "upload_time": "2017-12-01T11:08:30", "url": "https://files.pythonhosted.org/packages/9d/b1/0f825304a21e4be7b83de9139f0098a177190b1eba202bf98aa731c142ba/Acquisition-2.13.12.tar.gz" } ], "2.13.2": [ { "comment_text": "", "digests": { "md5": "5f05a43d1c63bc4780ac8f6039a2fa00", "sha256": "320ac6a1faf191e2f60d551f263714c6b0695c36424df1b27f56fe3192744c1e" }, "downloads": -1, "filename": "Acquisition-2.13.2-py2.6-win32.egg", "has_sig": false, "md5_digest": "5f05a43d1c63bc4780ac8f6039a2fa00", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 60066, "upload_time": "2010-04-04T02:14:20", "url": "https://files.pythonhosted.org/packages/cf/ae/447b2fe937ebf156fb8121de4c7d627a2ced72d1bc8ccb533922a07bd4fe/Acquisition-2.13.2-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "9b35ae4dead7c21d7d037e2fbabbf3a3", "sha256": "0be5479bd9420be599490f86fef8a97daa36f817cbe63069a70e6be175d2783f" }, "downloads": -1, "filename": "Acquisition-2.13.2-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "9b35ae4dead7c21d7d037e2fbabbf3a3", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 61117, "upload_time": "2010-04-04T02:17:00", "url": "https://files.pythonhosted.org/packages/d5/f9/c3caa45536b6b3f24f184a5dc258657bf47f61a3783e0659ef232aba9ca9/Acquisition-2.13.2-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "6a0537a026c3b69ae291116dbcb46aaa", "sha256": "8649c933e20f392526c6cb8a2663951e2664da998e727d815c8581085c577a0a" }, "downloads": -1, "filename": "Acquisition-2.13.2-py2.7-win32.egg", "has_sig": false, "md5_digest": "6a0537a026c3b69ae291116dbcb46aaa", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 60097, "upload_time": "2010-10-17T13:55:01", "url": "https://files.pythonhosted.org/packages/86/d8/27175116cc68247ec1ca16e208a4d88aae97cc4919cf3de019f5c6370f40/Acquisition-2.13.2-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "3d628453fe9349cf5b852d9477e8dd96", "sha256": "30726232df02a8cfd54e3465e5277a4e6e4b9e9925630b0cdab1122cba6d31cb" }, "downloads": -1, "filename": "Acquisition-2.13.2-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "3d628453fe9349cf5b852d9477e8dd96", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 61145, "upload_time": "2010-10-17T13:55:03", "url": "https://files.pythonhosted.org/packages/8d/f5/032c07593b48140dd588f8280e332fe19934b3656dadcb78004069f64684/Acquisition-2.13.2-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "260ef0c204f5cb80201c02a7946437e3", "sha256": "01aa04ae6c0b87417b6bb8c60b61d5f3ee0000a4516f07fbf70b165f976c6604" }, "downloads": -1, "filename": "Acquisition-2.13.2.zip", "has_sig": false, "md5_digest": "260ef0c204f5cb80201c02a7946437e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66136, "upload_time": "2010-04-04T01:11:26", "url": "https://files.pythonhosted.org/packages/3c/44/6f07b7f7c8b200c3ae3debbacb79b7f8fae3ab454ec701727d06da245927/Acquisition-2.13.2.zip" } ], "2.13.3": [ { "comment_text": "", "digests": { "md5": "9d6d7055cad8d568681444b5cb3a8714", "sha256": "22a4852fc82f88dae976fc9309720674e4b03f983a525438629fd2307cd7718a" }, "downloads": -1, "filename": "Acquisition-2.13.3-py2.6-win32.egg", "has_sig": false, "md5_digest": "9d6d7055cad8d568681444b5cb3a8714", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 60111, "upload_time": "2010-04-19T02:08:07", "url": "https://files.pythonhosted.org/packages/49/cb/5dbd36c4f5b7ab027a8d19fc53aff49d13fab68a9986bcd9309ae24fdfe1/Acquisition-2.13.3-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "06cd9c6a52a04a37d4aa37b96c6c5f37", "sha256": "efda353671cebb4639d2049c100d02e929d051ca2e01cac7d312079abda0b60e" }, "downloads": -1, "filename": "Acquisition-2.13.3-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "06cd9c6a52a04a37d4aa37b96c6c5f37", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 61161, "upload_time": "2010-04-19T02:09:52", "url": "https://files.pythonhosted.org/packages/df/fb/018a0ca9e8c8bf647b8fb9d4cf6521dc31412890cf1c75dc6eceb9b0cc69/Acquisition-2.13.3-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "5d2758dae7fda62122590fc7851fd7c9", "sha256": "3a70baec8d0f2495bbcc422651e2f22e85f3d0398986f9085e308b5f0160d052" }, "downloads": -1, "filename": "Acquisition-2.13.3-py2.7-win32.egg", "has_sig": false, "md5_digest": "5d2758dae7fda62122590fc7851fd7c9", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 60140, "upload_time": "2010-10-17T13:55:08", "url": "https://files.pythonhosted.org/packages/9b/15/43edd732ea083bed9b228a95bc5857d694583a352ab199f5dcd52bc3d650/Acquisition-2.13.3-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "253310d6745428e9ade8454f755182b5", "sha256": "3222ced2aa6890562b0fa47c11fac6bab2eb3366b7522d6996fa2bb2786380e9" }, "downloads": -1, "filename": "Acquisition-2.13.3-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "253310d6745428e9ade8454f755182b5", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 61187, "upload_time": "2010-10-17T13:55:10", "url": "https://files.pythonhosted.org/packages/a4/8f/da09697a603117a2a6044a1ac9ef05e917da1ab611c8226ef73f67d4f1db/Acquisition-2.13.3-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "3a546bf80890095df7195cf9e0d1e1ce", "sha256": "78ac5b9ae7bd42dc3485436476e95ce6c4a4e79062397b511f7154ff6017f426" }, "downloads": -1, "filename": "Acquisition-2.13.3.zip", "has_sig": false, "md5_digest": "3a546bf80890095df7195cf9e0d1e1ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67627, "upload_time": "2010-04-19T01:55:42", "url": "https://files.pythonhosted.org/packages/5a/80/6dc58c97d4946885e5015d3cba1befa1af26fd01c0a821029aa7e47ac061/Acquisition-2.13.3.zip" } ], "2.13.4": [ { "comment_text": "", "digests": { "md5": "4711c44df5b66bb918e6fe847ff041c2", "sha256": "79d8453b0e2eb4057dbab01dceb9460d7bb0b97b8820df59cdac0fa5ec20f415" }, "downloads": -1, "filename": "Acquisition-2.13.4-py2.6-win32.egg", "has_sig": false, "md5_digest": "4711c44df5b66bb918e6fe847ff041c2", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 60144, "upload_time": "2010-08-31T09:46:54", "url": "https://files.pythonhosted.org/packages/69/12/8dab36afb9110842a7c2691e3c2808cd205e4cd2f96c40765d9b4fac836f/Acquisition-2.13.4-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "809e551e9367391ddf9a2c8b8174426a", "sha256": "157fc02375563cafaa0cd6c3359c93cab4e1f9325662d651e426195647eb5f96" }, "downloads": -1, "filename": "Acquisition-2.13.4-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "809e551e9367391ddf9a2c8b8174426a", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 61190, "upload_time": "2010-08-31T09:47:08", "url": "https://files.pythonhosted.org/packages/29/94/48f492cd7807c5622e90c2a4cf5aa6cf907a92ebe3fe7ef1494c89ec67eb/Acquisition-2.13.4-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "8a61fe2a19073128b58e1488a53acfab", "sha256": "cfe5aff5a6fb453e3fb5acf9c6313ebbc6cc705f8c1227fbeb4ea1d401fa7cbb" }, "downloads": -1, "filename": "Acquisition-2.13.4-py2.7-win32.egg", "has_sig": false, "md5_digest": "8a61fe2a19073128b58e1488a53acfab", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 60176, "upload_time": "2010-10-17T13:55:14", "url": "https://files.pythonhosted.org/packages/d8/eb/64ed09024113cb9a13b54718b928bf6c953322476726a8f4e166bc8d195f/Acquisition-2.13.4-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "1d06ceb1bd0282020e7ed31d208cd9fb", "sha256": "107c369fd7dbf8ec778e1861187c53b5770d4b22bd21c99d5daf4876016282d1" }, "downloads": -1, "filename": "Acquisition-2.13.4-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "1d06ceb1bd0282020e7ed31d208cd9fb", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 61222, "upload_time": "2010-10-17T13:55:16", "url": "https://files.pythonhosted.org/packages/36/8a/fe5606ddc53ccc7fa0d5030cd8ee3396e9bde6dec911bed3b00adaa54038/Acquisition-2.13.4-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "267f9d7714338ffbe89259a4fdf53803", "sha256": "91d47147cd821dac08d7bf2868759d8c50b83ce11522cd7569f59200babd8922" }, "downloads": -1, "filename": "Acquisition-2.13.4.zip", "has_sig": false, "md5_digest": "267f9d7714338ffbe89259a4fdf53803", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69809, "upload_time": "2010-08-31T09:21:17", "url": "https://files.pythonhosted.org/packages/75/d9/69f8ff9bd5489d195d46a48f3fcd15e8d8535b01c4814d4707290051315f/Acquisition-2.13.4.zip" } ], "2.13.5": [ { "comment_text": "", "digests": { "md5": "b2815ae39cfff656e46869fe5b4a2a55", "sha256": "7f484ec7b1cb6400579e54917493d3db38be54a4fd950e49b5bc3e87b824ffbb" }, "downloads": -1, "filename": "Acquisition-2.13.5-py2.6-win32.egg", "has_sig": false, "md5_digest": "b2815ae39cfff656e46869fe5b4a2a55", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 60188, "upload_time": "2010-09-29T16:39:04", "url": "https://files.pythonhosted.org/packages/d8/b5/00b141469e39337ab90a4797079cc99953ab23a1e50009f3bb9543ffe144/Acquisition-2.13.5-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "a5322cd5fc7f49e2c6eb67aed61039f8", "sha256": "2e68f1117e15fc8d0061bda78d7a3fc5c02fb1992c1758df544622dc3e5c2a5f" }, "downloads": -1, "filename": "Acquisition-2.13.5-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "a5322cd5fc7f49e2c6eb67aed61039f8", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 61233, "upload_time": "2010-09-29T16:39:17", "url": "https://files.pythonhosted.org/packages/da/35/75b2f97574735a5cbf71bada4394acb1d27b99bc45a132d8d96e0616c3a9/Acquisition-2.13.5-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "fba1343938862bcd06dd81d371b5ae62", "sha256": "6a449bfe5a83b53c6321fbe0d0e14dd6bc7519020acbd42d722cf565f98b1cdf" }, "downloads": -1, "filename": "Acquisition-2.13.5-py2.7-win32.egg", "has_sig": false, "md5_digest": "fba1343938862bcd06dd81d371b5ae62", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 60219, "upload_time": "2010-10-17T13:55:21", "url": "https://files.pythonhosted.org/packages/ae/95/619d0bb982b168947d14bb479f472d3b7ecbde72e67627ae81b7f2d18896/Acquisition-2.13.5-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "2d1bc3455feb29300cbad4e3e8bec031", "sha256": "241ffc842090817de38ed562e739aa3de42b35a8e9d41405ca87c255641f9b71" }, "downloads": -1, "filename": "Acquisition-2.13.5-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "2d1bc3455feb29300cbad4e3e8bec031", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 61266, "upload_time": "2010-10-17T13:55:24", "url": "https://files.pythonhosted.org/packages/80/3e/13220cafc2dbdb54bc5fd806625bba716e9063a2a2c0847d10a7bf183d8e/Acquisition-2.13.5-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "b04c9747b93362ef88a3f448a803a3a4", "sha256": "b297560c298c3eb37c96dae1a790c4c000ea58ae5ea24d269db25056eb845cf2" }, "downloads": -1, "filename": "Acquisition-2.13.5.zip", "has_sig": false, "md5_digest": "b04c9747b93362ef88a3f448a803a3a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69945, "upload_time": "2010-09-29T16:27:42", "url": "https://files.pythonhosted.org/packages/ec/5a/51e82a40f8578c353cb6911954edc61865efb857e97609acbd6a2fe34c95/Acquisition-2.13.5.zip" } ], "2.13.6": [ { "comment_text": "", "digests": { "md5": "9facaa6a598e6b1ffef23109338da19f", "sha256": "be7ad82f68677c772da44870dfdfec85a38d535c205d3bcea99d03506b53851d" }, "downloads": -1, "filename": "Acquisition-2.13.6-py2.6-win32.egg", "has_sig": false, "md5_digest": "9facaa6a598e6b1ffef23109338da19f", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 61764, "upload_time": "2011-02-19T17:24:02", "url": "https://files.pythonhosted.org/packages/32/4e/66f56fb55a2ef1b31b78b5c33dbc73f42323b73edc6534034eefa719b09e/Acquisition-2.13.6-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "dce301421a116580d1c9bf125a42baca", "sha256": "370b6920938cd213ae73270b8600a11de634ca530cbbb5cf3eed39d05b9c2f27" }, "downloads": -1, "filename": "Acquisition-2.13.6-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "dce301421a116580d1c9bf125a42baca", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 62802, "upload_time": "2011-02-19T17:24:24", "url": "https://files.pythonhosted.org/packages/f5/61/a58351fc5fbdcb9f04ea22788e2f430ab7700011f18fcf70efd51fcd57d2/Acquisition-2.13.6-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "784ac4853d4234dc37eb8ec482723dee", "sha256": "5a03ed0bb1b4428c5edbc0412f7973dfc4e780d2989d5d7116abdd50f1718761" }, "downloads": -1, "filename": "Acquisition-2.13.6-py2.7-win32.egg", "has_sig": false, "md5_digest": "784ac4853d4234dc37eb8ec482723dee", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 61784, "upload_time": "2011-02-19T17:24:29", "url": "https://files.pythonhosted.org/packages/b1/e2/8de6933a535fd1e5f8d87f4f28887f0ceab905a45150c2224f26d5e3b956/Acquisition-2.13.6-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "de4e8656a55cfd61c8abbff4ef21f0c7", "sha256": "ccfd0a80a4443cb2bb744d6c3b8eb2c63e2d2dcbad37bc52909ee7a77b502dc4" }, "downloads": -1, "filename": "Acquisition-2.13.6-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "de4e8656a55cfd61c8abbff4ef21f0c7", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 62805, "upload_time": "2011-02-19T17:24:35", "url": "https://files.pythonhosted.org/packages/3b/a9/23329dca2cf1f0778333631e3e4b70a2626ee3733e797fb93078b528a685/Acquisition-2.13.6-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "abe5360bfdab6073da0e653564c22d90", "sha256": "05b06a8d74e855e1910ded44e3b4cd971f29ee8a1c8d5ac39797bf1e2eedb144" }, "downloads": -1, "filename": "Acquisition-2.13.6.zip", "has_sig": false, "md5_digest": "abe5360bfdab6073da0e653564c22d90", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 70607, "upload_time": "2011-02-19T17:15:17", "url": "https://files.pythonhosted.org/packages/0e/73/c96699048d6c0d514ac0fffa3d0a0ee86656e44dfcb7942d88d156443959/Acquisition-2.13.6.zip" } ], "2.13.7": [ { "comment_text": "", "digests": { "md5": "4773093e9d61da8d36274f2ca8f4389d", "sha256": "1a0ec3fd122747edd22276f1aba5cacd9c04537cf061d17069f3dd61b9eeb077" }, "downloads": -1, "filename": "Acquisition-2.13.7-py2.6-win32.egg", "has_sig": false, "md5_digest": "4773093e9d61da8d36274f2ca8f4389d", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 62067, "upload_time": "2011-03-03T15:43:56", "url": "https://files.pythonhosted.org/packages/b0/6e/a59aa56ba75f6d565d5b50b6bd974a306950b387d9c32b158c4f20ad4f5d/Acquisition-2.13.7-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "941a20d7d5d057cadcd5161df1330f43", "sha256": "414e4502e7392881f02d04ac9a54cb8e976e175eaa9f76dacf56e5b80f01f1d1" }, "downloads": -1, "filename": "Acquisition-2.13.7-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "941a20d7d5d057cadcd5161df1330f43", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 63103, "upload_time": "2011-03-03T15:44:04", "url": "https://files.pythonhosted.org/packages/e4/5a/c80ffb614fd595b2b94b42ee855e0f2ba43be8390969c84b1a69a82b7392/Acquisition-2.13.7-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "abd8199518eadad5ee4b4a2279027c51", "sha256": "9bb98657c65892e8e9df480f8e3e8c9568dd5e13795c71d6a7cea21a571a3375" }, "downloads": -1, "filename": "Acquisition-2.13.7-py2.7-win32.egg", "has_sig": false, "md5_digest": "abd8199518eadad5ee4b4a2279027c51", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 62092, "upload_time": "2011-03-03T15:44:07", "url": "https://files.pythonhosted.org/packages/e6/8e/43567c79bd633d118a8a7c2cd9f8f1aa417ea2955b556ab94ce2c26895b8/Acquisition-2.13.7-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "3ada6a7337aa27624d0e25d9651ddec5", "sha256": "5c46e22bdcb6d06ff5ee8c5d99145031b4cc9d50e0e79775598eaf849bf2fa96" }, "downloads": -1, "filename": "Acquisition-2.13.7-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "3ada6a7337aa27624d0e25d9651ddec5", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 63115, "upload_time": "2011-03-03T15:44:10", "url": "https://files.pythonhosted.org/packages/18/c1/9afbedc49c7b8947c7e878d5c5b6ace3c67db944a770c47812249b5b3224/Acquisition-2.13.7-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "f5c6d7009314a01e740679b824c195c0", "sha256": "54b298cf588e7c98d9c46c474977612d7ae116ed5864567aef63f47eaf47c554" }, "downloads": -1, "filename": "Acquisition-2.13.7.zip", "has_sig": false, "md5_digest": "f5c6d7009314a01e740679b824c195c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 70816, "upload_time": "2011-03-02T22:23:16", "url": "https://files.pythonhosted.org/packages/cd/22/b852b6c1c04e41a8e6ddd5b8ee725d777fdca1feb198b7439586d5a68bf0/Acquisition-2.13.7.zip" } ], "2.13.8": [ { "comment_text": "", "digests": { "md5": "d639506e4a13d6f182545733fa9a0ec0", "sha256": "bf69c195f17ed83c217b28d19a635171e39dc391b4f778b8c12c3bfd72170ee0" }, "downloads": -1, "filename": "Acquisition-2.13.8-py2.6-win32.egg", "has_sig": false, "md5_digest": "d639506e4a13d6f182545733fa9a0ec0", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 62769, "upload_time": "2011-06-11T17:30:20", "url": "https://files.pythonhosted.org/packages/2a/6a/3ffd373eb5f3d194a1e6a07cf3f417151c6f15da3a5b8af407f3054c8a7a/Acquisition-2.13.8-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "0cc9864098145edfd58b8a84c08be43d", "sha256": "c21f8f0d53f3f8ce4fbf404ab3e5aca314d4367b85d41361bb1a45ce082b9b04" }, "downloads": -1, "filename": "Acquisition-2.13.8-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "0cc9864098145edfd58b8a84c08be43d", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 63831, "upload_time": "2011-06-11T17:30:32", "url": "https://files.pythonhosted.org/packages/f2/ca/18f05f316029e5541f909915f304bea7388010a1af00c6e3b6fa526c6898/Acquisition-2.13.8-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "6855d99ccc2c78c14aa361952bd906b8", "sha256": "815a69ddce587429506b7d731047eea2d21dcc3a77581cf4874f2cef9e301635" }, "downloads": -1, "filename": "Acquisition-2.13.8-py2.7-win32.egg", "has_sig": false, "md5_digest": "6855d99ccc2c78c14aa361952bd906b8", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 62787, "upload_time": "2011-06-11T17:30:35", "url": "https://files.pythonhosted.org/packages/b4/f2/0525f7fa154baa77d4a42ecd8c05775a48a14740c7473afa15c580add22d/Acquisition-2.13.8-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "24e53c67b0ea5842c87d4fc270af37e0", "sha256": "02b4537ed7844c3d9d783c145df04b7d7fa5cceb27b4997c0dc26d2b274d1bc1" }, "downloads": -1, "filename": "Acquisition-2.13.8-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "24e53c67b0ea5842c87d4fc270af37e0", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 63834, "upload_time": "2011-06-11T17:30:38", "url": "https://files.pythonhosted.org/packages/39/5e/812fc4c50d0e4fa4187eff68434fc92c8289fc31cdb66e390117b1e2f40a/Acquisition-2.13.8-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "8c33160c157b50649e2b2b3224622579", "sha256": "bcce77b871ac0dd9f09c17a76e5352344666908063e11341231455c923af32d5" }, "downloads": -1, "filename": "Acquisition-2.13.8.zip", "has_sig": false, "md5_digest": "8c33160c157b50649e2b2b3224622579", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71260, "upload_time": "2011-06-11T17:21:21", "url": "https://files.pythonhosted.org/packages/73/c5/e14f8ecbbfaec20df7e3fe57653179df1fb3f7f83c4eb0666435c61ee6e6/Acquisition-2.13.8.zip" } ], "2.13.9": [ { "comment_text": "", "digests": { "md5": "b974dd5de6e5d6848e26f868bb750d8b", "sha256": "5b9cecf8ebd5f16ce70602167257b2095bb5b441d6eed98f775e9531c9de0efb" }, "downloads": -1, "filename": "Acquisition-2.13.9.tar.gz", "has_sig": true, "md5_digest": "b974dd5de6e5d6848e26f868bb750d8b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46565, "upload_time": "2015-02-17T17:37:06", "url": "https://files.pythonhosted.org/packages/c2/29/017b1982fc66cccff290e1038c4da891503ddabf4553f060e45ffdc38528/Acquisition-2.13.9.tar.gz" } ], "4.0": [ { "comment_text": "", "digests": { "md5": "48ef04a1101c064b272472888d0ec8c1", "sha256": "b3178bb59554026c323d0c9db11d84d650c3982b07b20f5a3e4b80edd0b058de" }, "downloads": -1, "filename": "Acquisition-4.0.zip", "has_sig": true, "md5_digest": "48ef04a1101c064b272472888d0ec8c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72442, "upload_time": "2013-02-24T13:42:04", "url": "https://files.pythonhosted.org/packages/cf/fd/99655d7252a2660dff1db343e081d7b4452a2fbd993cb953e4bf57800467/Acquisition-4.0.zip" } ], "4.0.1": [ { "comment_text": "", "digests": { "md5": "1b1381fb62af7aa94c5d6786ed1ac3ca", "sha256": "0b8c1a400966bc37fe618f1e711346a89d0d39050d5071f1e1b8cdfdf8d8ae81" }, "downloads": -1, "filename": "Acquisition-4.0.1-py2.6-win32.egg", "has_sig": false, "md5_digest": "1b1381fb62af7aa94c5d6786ed1ac3ca", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 59863, "upload_time": "2014-11-01T20:59:12", "url": "https://files.pythonhosted.org/packages/cc/e6/7256cd3da8e2d1295ca77888da20ab21b0177a8be127b0717d70193628c8/Acquisition-4.0.1-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "4b3036c365c4d77853119cbc3ab21a57", "sha256": "e1dc2242c5707e46a0bfaeb909399bf1c7399babb5edb5196d7985f23babb759" }, "downloads": -1, "filename": "Acquisition-4.0.1-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "4b3036c365c4d77853119cbc3ab21a57", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 60973, "upload_time": "2014-11-01T20:59:19", "url": "https://files.pythonhosted.org/packages/a9/32/094211a88ab81a3ca924ad84857e34c5c3432d4667c1f39db9571f96a8c2/Acquisition-4.0.1-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "4a23553ddc95037e2aa0b86ef91eadda", "sha256": "dffcab483440aa673c0e89ea2a3f430563598f8885ffa98d3f426c31fb9e794f" }, "downloads": -1, "filename": "Acquisition-4.0.1-py2.7-win32.egg", "has_sig": false, "md5_digest": "4a23553ddc95037e2aa0b86ef91eadda", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 59898, "upload_time": "2014-11-01T20:59:46", "url": "https://files.pythonhosted.org/packages/ba/27/0081353df283961e461f62423466ec06388b546836fbe55626dcc556b026/Acquisition-4.0.1-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "76425a66e1f1e410ecba883560a3d021", "sha256": "5febc42707bc9c1bcdd2d5c69a5e19a38244a02fa0147129a9b9f03a0755594a" }, "downloads": -1, "filename": "Acquisition-4.0.1-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "76425a66e1f1e410ecba883560a3d021", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 60984, "upload_time": "2014-11-01T20:59:59", "url": "https://files.pythonhosted.org/packages/17/bb/dc21ba235249c467a28e7ec5f83492a4ae8bdbb48e5401f576839c933d9e/Acquisition-4.0.1-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "244af4125cc4001b0e500a1c8b255e75", "sha256": "6eac89174a5836a5d8e594b04657459028fba4ddbec0f9f0407c1cdae0bcf587" }, "downloads": -1, "filename": "Acquisition-4.0.1.tar.gz", "has_sig": false, "md5_digest": "244af4125cc4001b0e500a1c8b255e75", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51229, "upload_time": "2014-11-01T17:09:49", "url": "https://files.pythonhosted.org/packages/a2/ac/c9f1a020567bda097a4bc92348e9fbab96958c04f707d8b872e9bbd025c4/Acquisition-4.0.1.tar.gz" } ], "4.0.2": [ { "comment_text": "", "digests": { "md5": "d752af7ebf11b9f31d7686def2ca9353", "sha256": "5a8688d08beece753e2cdbedbba2e9a51c7ff2961d90db73bf1b2e34508d82f6" }, "downloads": -1, "filename": "Acquisition-4.0.2-py2.6-win32.egg", "has_sig": false, "md5_digest": "d752af7ebf11b9f31d7686def2ca9353", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 59909, "upload_time": "2014-11-03T00:30:24", "url": "https://files.pythonhosted.org/packages/9e/4a/36292920592f83c1339cab68f84ddfa184c36f4620c69d4b30b989c92c08/Acquisition-4.0.2-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "9d7a3e6e0610c9f639e284fee8dcb354", "sha256": "ac545b9baef577ddf04c0acfc4e00bfb8553c23e8b481630aa0625a2e5482b97" }, "downloads": -1, "filename": "Acquisition-4.0.2-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "9d7a3e6e0610c9f639e284fee8dcb354", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 61017, "upload_time": "2014-11-03T00:30:30", "url": "https://files.pythonhosted.org/packages/c0/ab/b8972a983924f1f6b3c56ccc4e00543275486022be9329bf436843ea7ebb/Acquisition-4.0.2-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "fac77196b4a6dd9ecd11ba5a30176acc", "sha256": "b5ef741ab314419407ae456d65015dc1a091eface6446f1050e70203300ba323" }, "downloads": -1, "filename": "Acquisition-4.0.2-py2.7-win32.egg", "has_sig": false, "md5_digest": "fac77196b4a6dd9ecd11ba5a30176acc", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 59944, "upload_time": "2014-11-03T00:30:34", "url": "https://files.pythonhosted.org/packages/10/82/50fdfd6542cd217f143149f848cf80f556ec55b2f6f2af78a7b8c5c8e003/Acquisition-4.0.2-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "37480df9e46620ce4fd2bda0303ff6cb", "sha256": "6607337ea5d4a4fbe288ebf79f23fab455af6b0ee763e95da2f55ca4b3e32e62" }, "downloads": -1, "filename": "Acquisition-4.0.2-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "37480df9e46620ce4fd2bda0303ff6cb", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 61032, "upload_time": "2014-11-03T00:30:38", "url": "https://files.pythonhosted.org/packages/db/ec/d4e99ebeac3698fea486ef838e61c1320f5109c210e437334ece42095cea/Acquisition-4.0.2-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "bd2057a43fe0bd46248ac3f5187476c9", "sha256": "62e2a96188e7c93bf47bba42e277a548bb406e6600a13300a3b5825e437e7168" }, "downloads": -1, "filename": "Acquisition-4.0.2.zip", "has_sig": true, "md5_digest": "bd2057a43fe0bd46248ac3f5187476c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53258, "upload_time": "2014-11-02T11:08:53", "url": "https://files.pythonhosted.org/packages/0f/db/d6d64543cce4166f6feea34d67f39ffaaaecec0e8bac016b7ded7cb70856/Acquisition-4.0.2.zip" } ], "4.0.3": [ { "comment_text": "", "digests": { "md5": "8bc7072346edd39adacedd455ca07807", "sha256": "afb9910c9fa53e0644e7243ffcdcd6482e660aec2b3bf2ec59193be6eb027913" }, "downloads": -1, "filename": "Acquisition-4.0.3-py2.6-win32.egg", "has_sig": false, "md5_digest": "8bc7072346edd39adacedd455ca07807", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 60244, "upload_time": "2014-11-03T00:30:44", "url": "https://files.pythonhosted.org/packages/50/3f/8662045fd4dd8fd33ee3be6de87b949556aabc66dc0879767b7c0ffeb399/Acquisition-4.0.3-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "ebaf91d44604d7c27e49429e4a0ec537", "sha256": "97629b151d48bbc845da52ae6b93a2b340215f6a0a35bceee87a25dd8b6a150a" }, "downloads": -1, "filename": "Acquisition-4.0.3-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "ebaf91d44604d7c27e49429e4a0ec537", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 61347, "upload_time": "2014-11-03T00:30:47", "url": "https://files.pythonhosted.org/packages/76/75/9f104975d64288b5ade923f060667c6723d32ef99c86f05996898824f1d3/Acquisition-4.0.3-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "e3983984e1633ed39a678ad40a922273", "sha256": "3fb410e271afa6e5d0fe069409b2d1ef27a5cee99bc0b29544a066d9a78dd12e" }, "downloads": -1, "filename": "Acquisition-4.0.3-py2.7-win32.egg", "has_sig": false, "md5_digest": "e3983984e1633ed39a678ad40a922273", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 60271, "upload_time": "2014-11-03T00:30:50", "url": "https://files.pythonhosted.org/packages/3f/7d/7f2d2b6dfe50bd7842c6960dddc5d08542ed6541d5f74027bc3f7a0f0780/Acquisition-4.0.3-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "ddd268f75286b906e2e434471d41b9c7", "sha256": "08ea2ec8dacd73cbc65d08c53b5c05c666e080e54f38bb9a04bb446db20f20f4" }, "downloads": -1, "filename": "Acquisition-4.0.3-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "ddd268f75286b906e2e434471d41b9c7", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 61357, "upload_time": "2014-11-03T00:30:55", "url": "https://files.pythonhosted.org/packages/22/70/379078aa7d4469945a95488c7be2d36e8bf4ea980d54e0a08cd88a1ffbd4/Acquisition-4.0.3-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "6e69b174d3121d280d0736acec845252", "sha256": "1ddd1c18c2dc990d83edf30e6e08657c4580bd26597fc78281f287063e36af5f" }, "downloads": -1, "filename": "Acquisition-4.0.3.zip", "has_sig": true, "md5_digest": "6e69b174d3121d280d0736acec845252", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53533, "upload_time": "2014-11-02T11:34:01", "url": "https://files.pythonhosted.org/packages/6c/f1/673b6e238fac2691b2ef3c024b2aa0b2255ed8af0a333f8029e4bc5932b1/Acquisition-4.0.3.zip" } ], "4.0a1": [ { "comment_text": "", "digests": { "md5": "b482e2b5eec0a31134cb4716423185e4", "sha256": "7f8efb06e5c3a2dc1c1758f90411b1343814a6ca1e6efb1a677b8235ae14275b" }, "downloads": -1, "filename": "Acquisition-4.0a1-py2.6-win32.egg", "has_sig": false, "md5_digest": "b482e2b5eec0a31134cb4716423185e4", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 63298, "upload_time": "2011-12-13T16:30:26", "url": "https://files.pythonhosted.org/packages/49/bf/3c79cd5dd9777180578b135b9bd92bef9f8ecd38fcfa87d8a016bc2fe4d8/Acquisition-4.0a1-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "800c60b51ba74aed499207c2e5465250", "sha256": "ffdebfce5d908aa1487e8d4e8896e7df31b4fbcfd22f957ce1361c9e57b93529" }, "downloads": -1, "filename": "Acquisition-4.0a1-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "800c60b51ba74aed499207c2e5465250", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 64326, "upload_time": "2011-12-13T16:30:32", "url": "https://files.pythonhosted.org/packages/63/06/424d0f15d7959abd635069838dc172c25e86d48287f24b27d28dc4bd88f7/Acquisition-4.0a1-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "eebae71a852fb45f7efe4de0c4bd704b", "sha256": "8223d3caa8a7972679bc1addf1abfb8e1a932f328db0d42971deac949710dc98" }, "downloads": -1, "filename": "Acquisition-4.0a1-py2.7-win32.egg", "has_sig": false, "md5_digest": "eebae71a852fb45f7efe4de0c4bd704b", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 63323, "upload_time": "2011-12-13T16:30:35", "url": "https://files.pythonhosted.org/packages/46/7f/56496039bd556933580dbf77b65ed6b86d0c02592a2d84310216117bdc62/Acquisition-4.0a1-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "35ebf258e0d9f59de240fed54d6d3815", "sha256": "99df3da01746b46326ba3931579e35fd6666e60d03177157ee9d0e024f5a279e" }, "downloads": -1, "filename": "Acquisition-4.0a1-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "35ebf258e0d9f59de240fed54d6d3815", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 64334, "upload_time": "2011-12-13T16:30:37", "url": "https://files.pythonhosted.org/packages/b7/74/d7d81940a46b57653752e3b3aed359e37e0f52398dd09bf56e028cf0f1f0/Acquisition-4.0a1-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "8f235a8ac85f205a8a1ee4bb3de78b26", "sha256": "ec2035e9db9785256d49599ff594616e5331653b0d49557fd54ea984b7d67d10" }, "downloads": -1, "filename": "Acquisition-4.0a1.zip", "has_sig": false, "md5_digest": "8f235a8ac85f205a8a1ee4bb3de78b26", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71986, "upload_time": "2011-12-13T16:24:34", "url": "https://files.pythonhosted.org/packages/03/a0/84f25c63fc3bba2d85e498d0b165d5b2af07e37246023539686ab8f4d733/Acquisition-4.0a1.zip" } ], "4.1": [ { "comment_text": "", "digests": { "md5": "a4c7ed4ad9f160b5664eaf42de1baa2f", "sha256": "4801073058118ea88c3a965f06046d214460a77a0bcf5090830fc34af7ed66e5" }, "downloads": -1, "filename": "Acquisition-4.1-py2.6-win32.egg", "has_sig": false, "md5_digest": "a4c7ed4ad9f160b5664eaf42de1baa2f", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 60274, "upload_time": "2014-12-19T00:14:05", "url": "https://files.pythonhosted.org/packages/4d/41/3977f2704dcfcf3509b543f3ee38f1c9ceede76b6f3856734633496ac732/Acquisition-4.1-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "835ffcf13fbe869b9d60d4234ef38a5c", "sha256": "fd5a6e4902dbf0f971c6f4d9e80aaad51b194601aa5f2ac40650850e0e6d4d1b" }, "downloads": -1, "filename": "Acquisition-4.1-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "835ffcf13fbe869b9d60d4234ef38a5c", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 61378, "upload_time": "2014-12-19T00:14:13", "url": "https://files.pythonhosted.org/packages/b1/97/8797b735aba9cc440f993b6fc9ed8b39575735b09772d4d0c59c3ab9896c/Acquisition-4.1-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "b523a918b6635030a440b8503096a97c", "sha256": "04b18d2732eaaf6511f310c0ed1ec4cb523d5e6afb6ea5ad0e7cda2bbcb5a681" }, "downloads": -1, "filename": "Acquisition-4.1-py2.7-win32.egg", "has_sig": false, "md5_digest": "b523a918b6635030a440b8503096a97c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 60304, "upload_time": "2014-12-19T00:14:18", "url": "https://files.pythonhosted.org/packages/4c/b7/fad3d6afccff386cac5b1b1c8a2e8e6b10e5e19ddba52595e4e946cc7b6c/Acquisition-4.1-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "3232639097a28c3e0767d4a143e3a63c", "sha256": "4aabf83309781b9b491003c5cbe9993cf1cf13f51c525b93451857fedd465cd7" }, "downloads": -1, "filename": "Acquisition-4.1-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "3232639097a28c3e0767d4a143e3a63c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 61392, "upload_time": "2014-12-19T00:14:23", "url": "https://files.pythonhosted.org/packages/d5/af/d132aeedd33054f1350997dedae8728ebc0f7d7c0f79ff26536145c73f9f/Acquisition-4.1-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "fe5c175ece1c5c1d8d1cb57031751529", "sha256": "9210d80d7cfabf9c62fdc87d7a97c7a9d3d3cfff4483a0d976a8e89e629ea2fe" }, "downloads": -1, "filename": "Acquisition-4.1.tar.gz", "has_sig": false, "md5_digest": "fe5c175ece1c5c1d8d1cb57031751529", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50225, "upload_time": "2014-12-18T19:16:47", "url": "https://files.pythonhosted.org/packages/62/21/e8c8a6f6d76d97b318015099eea28e7709775c1b2ab438283617ea299e0c/Acquisition-4.1.tar.gz" } ], "4.2": [ { "comment_text": "", "digests": { "md5": "6b72356026eb46702c8fa4ad2dcb960f", "sha256": "3bd52b5d10bfaeaa87aea0baab635e70ccd25d668b57bf639637235135142066" }, "downloads": -1, "filename": "Acquisition-4.2-py2.6-win32.egg", "has_sig": false, "md5_digest": "6b72356026eb46702c8fa4ad2dcb960f", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 88013, "upload_time": "2015-04-08T06:07:42", "url": "https://files.pythonhosted.org/packages/61/26/0cc2f3c1ff5f513ffe7ec3c0e4b6c78cec8b78f2f099c775d0e6a0dcc3b8/Acquisition-4.2-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "8e15ab4529b7244b936d7db5bda67f75", "sha256": "b1809b71b85ea8dafd61937d4e62190187b002cf66f054cbb166235d58f125f0" }, "downloads": -1, "filename": "Acquisition-4.2-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "8e15ab4529b7244b936d7db5bda67f75", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 89135, "upload_time": "2015-04-08T06:07:58", "url": "https://files.pythonhosted.org/packages/a2/2c/cf7c261f6e60ba755b9c96020b6581c8d0e8885dc380b00609862a8b1ab1/Acquisition-4.2-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "175bb691b66ea7382a6f2a1aff731d33", "sha256": "64fcb7aa48f4b5733222e58082039b3e78d35d5cb646a286a5f7a882b1d71582" }, "downloads": -1, "filename": "Acquisition-4.2-py2.7-win32.egg", "has_sig": false, "md5_digest": "175bb691b66ea7382a6f2a1aff731d33", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 88021, "upload_time": "2015-04-08T06:08:10", "url": "https://files.pythonhosted.org/packages/12/0a/984f7d5bea0a744b85f80aed899cdb8763c8679ed9c8112dd74f5e2d2444/Acquisition-4.2-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "d957cde5c877fee6b617dd74f06ca082", "sha256": "6ddc19a425a1f613d66f3d7b82dfc32eeb6f8b316e66c8bd3926e84343ce081a" }, "downloads": -1, "filename": "Acquisition-4.2-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "d957cde5c877fee6b617dd74f06ca082", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 89120, "upload_time": "2015-04-08T06:08:18", "url": "https://files.pythonhosted.org/packages/2e/61/11a8aa2e884a2f96662a99f5f5715ce6319f635833b38b48bbc49399117c/Acquisition-4.2-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "22f68c21f6016049b5893d5a6f9eb981", "sha256": "5e3cfc1cc1ed5810309a436b83ef68274a9f133889ef73cf626173f808ac202f" }, "downloads": -1, "filename": "Acquisition-4.2-py3.4.egg", "has_sig": false, "md5_digest": "22f68c21f6016049b5893d5a6f9eb981", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 76097, "upload_time": "2017-05-16T10:20:13", "url": "https://files.pythonhosted.org/packages/bc/08/737bc5dd8109b162c5c4a41701b930ee6797e8e9b7f4fa82d254910ed251/Acquisition-4.2-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "d36885bab9e14d49b97446b358c05b27", "sha256": "88976327eb35c27d46588e64877b5b915fd483e5058f1c299863175864cb3e12" }, "downloads": -1, "filename": "Acquisition-4.2.tar.gz", "has_sig": true, "md5_digest": "d36885bab9e14d49b97446b358c05b27", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63195, "upload_time": "2015-04-04T15:51:43", "url": "https://files.pythonhosted.org/packages/a2/86/5226adcc990f1e7bbb3f1bf175d141178410e66ab993a62b402ff95b69e8/Acquisition-4.2.tar.gz" } ], "4.2.1": [ { "comment_text": "", "digests": { "md5": "1ab76e11bda4aa5671cef6405ad50561", "sha256": "6a1bb23fc2f73bb851fa33992374a4710f6c7dfdb133d9b350713260c1d94609" }, "downloads": -1, "filename": "Acquisition-4.2.1-py2.6-win32.egg", "has_sig": false, "md5_digest": "1ab76e11bda4aa5671cef6405ad50561", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 88620, "upload_time": "2015-04-24T08:57:48", "url": "https://files.pythonhosted.org/packages/44/5e/d52e3491fc0bee1f20ecc86416f1073fca09a367d691f4dd9f68f125367c/Acquisition-4.2.1-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "7a7a284756d4c1b30085418e66ad5777", "sha256": "74d7d13f312e16099840bac8d8d9ff344ee07c04fc9c779f5a0be1c9c3ca920e" }, "downloads": -1, "filename": "Acquisition-4.2.1-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "7a7a284756d4c1b30085418e66ad5777", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 89823, "upload_time": "2015-04-24T08:58:00", "url": "https://files.pythonhosted.org/packages/d3/69/61331cf2f36384919997cc827d22dcddb6c849d8ee430b66a8519148c05e/Acquisition-4.2.1-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "0c30c3f43471736b84f83d5ec1a026df", "sha256": "86b28e02f66a10d0cc078402c8635cf4c0c7ced52380162e95bf9d09c62c3e35" }, "downloads": -1, "filename": "Acquisition-4.2.1-py2.7-win32.egg", "has_sig": false, "md5_digest": "0c30c3f43471736b84f83d5ec1a026df", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 88616, "upload_time": "2015-04-24T08:58:05", "url": "https://files.pythonhosted.org/packages/51/9d/0fdd286ef80f0de7619c613a39329bb3382de14c97d5db8dfab2078fc6af/Acquisition-4.2.1-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "3c5924ae373437169edc716dbab47894", "sha256": "9a1bbdda52715a7f3995640cf36d254db2c50b25ed1397d917faa41811e91e31" }, "downloads": -1, "filename": "Acquisition-4.2.1-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "3c5924ae373437169edc716dbab47894", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 89801, "upload_time": "2015-04-24T08:58:11", "url": "https://files.pythonhosted.org/packages/cc/5f/9c25e3bd64cb8d76fb0f4571a61c1326560c79b57b675205915fd3815c40/Acquisition-4.2.1-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "113539d60e0a0fc9e1f03b9d0fd79a7d", "sha256": "6b69293828dedb8c8db46281067b4d8e63f69d9abc6bfaacff4ba569cd504057" }, "downloads": -1, "filename": "Acquisition-4.2.1-py3.4.egg", "has_sig": false, "md5_digest": "113539d60e0a0fc9e1f03b9d0fd79a7d", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 76566, "upload_time": "2017-05-16T10:20:28", "url": "https://files.pythonhosted.org/packages/ac/0f/00926699e76584c1e7e4470b8ed9bc9ce7de81210f3a3ff331dbb18361b9/Acquisition-4.2.1-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "7ab3376177d4adbaebeef4840513d999", "sha256": "c71253201c5596228b1708de3b5df9563ddd9d26ff9117a44efeef78d0f47b75" }, "downloads": -1, "filename": "Acquisition-4.2.1.tar.gz", "has_sig": true, "md5_digest": "7ab3376177d4adbaebeef4840513d999", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63813, "upload_time": "2015-04-23T18:23:50", "url": "https://files.pythonhosted.org/packages/2a/1f/38e8eb06fcbd0f962165ee25b2964073ec62b6db524c795e25654b4dada1/Acquisition-4.2.1.tar.gz" } ], "4.2.2": [ { "comment_text": "", "digests": { "md5": "acee4c1a7167e6a263721f2c1ef92713", "sha256": "fd47c045777fd966fd3b211c4ae828ce820ac91b242b83a84512b199471b4d06" }, "downloads": -1, "filename": "Acquisition-4.2.2-py2.6-win32.egg", "has_sig": false, "md5_digest": "acee4c1a7167e6a263721f2c1ef92713", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 92230, "upload_time": "2015-05-20T00:26:56", "url": "https://files.pythonhosted.org/packages/11/4d/1c560a63f26280863a68d74148f36c182abf72cc103a6cf2afc9fa6f6210/Acquisition-4.2.2-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "7a6db326d8008c3f0d3de89dccc6a34b", "sha256": "a11cb56c86d13c8fa46b674ee2a998949f01d2c0e83f2f9026d488bfeacc5eaf" }, "downloads": -1, "filename": "Acquisition-4.2.2-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "7a6db326d8008c3f0d3de89dccc6a34b", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 93434, "upload_time": "2015-05-20T00:27:08", "url": "https://files.pythonhosted.org/packages/14/eb/2a3c6942390b18141703ef3bd5a6675b566518cc6ffcf62f72ada5562693/Acquisition-4.2.2-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "419b9a72f24c874e5b947163b7044c69", "sha256": "0351597a864693b6d2c926c29e133af0ea41a252a93e37fb29dc7b0a5792e964" }, "downloads": -1, "filename": "Acquisition-4.2.2-py2.7-win32.egg", "has_sig": false, "md5_digest": "419b9a72f24c874e5b947163b7044c69", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 92213, "upload_time": "2015-05-20T00:27:14", "url": "https://files.pythonhosted.org/packages/07/c3/496643e346c19845b73553d6d70ad015446441de3cf752d34fcd2369fac0/Acquisition-4.2.2-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "3787eaff862a3e0762e62c54fadafb65", "sha256": "380806d4d56e79844fbe9ad52f1f1ddb52401def02f09772ecce7e08f06cde4e" }, "downloads": -1, "filename": "Acquisition-4.2.2-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "3787eaff862a3e0762e62c54fadafb65", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 93398, "upload_time": "2015-05-20T00:27:20", "url": "https://files.pythonhosted.org/packages/1b/e2/133525be9a91c1ccf4d32e378f999017f70fa4dbaf0c151959806af1f42c/Acquisition-4.2.2-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "cc5a8a247077d4ca02b68f7f6733d0c9", "sha256": "f59816f21071a4afcfd90efecec057c24d2f34ca5f8d82cd67558f147580b9ed" }, "downloads": -1, "filename": "Acquisition-4.2.2-py3.4.egg", "has_sig": false, "md5_digest": "cc5a8a247077d4ca02b68f7f6733d0c9", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 80296, "upload_time": "2017-05-16T10:20:40", "url": "https://files.pythonhosted.org/packages/aa/d7/50045bbee87e237081b92157bcd372e381c14357695e84be974f6654fef0/Acquisition-4.2.2-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "8d57d152ce38c7639657998c113a4f12", "sha256": "90bbeedfff34630d63adf97be5c156ad28920412b319eb95db7d6d39de7bd623" }, "downloads": -1, "filename": "Acquisition-4.2.2.tar.gz", "has_sig": true, "md5_digest": "8d57d152ce38c7639657998c113a4f12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65767, "upload_time": "2015-05-19T20:36:28", "url": "https://files.pythonhosted.org/packages/9e/32/00f343af778abd9f260fe3b8b183fc5033eb554c65d5c7c601dfcd848536/Acquisition-4.2.2.tar.gz" } ], "4.3.0": [ { "comment_text": "", "digests": { "md5": "8a2008cad1ac302fa0c83b363f1f6a7c", "sha256": "215b56577d040baebbfdc4c24dd9cb2cfd4a0ca43d75c04f3ea3c1664f476a4a" }, "downloads": -1, "filename": "Acquisition-4.3.0-py2.7-win32.egg", "has_sig": false, "md5_digest": "8a2008cad1ac302fa0c83b363f1f6a7c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 92252, "upload_time": "2017-01-22T01:54:58", "url": "https://files.pythonhosted.org/packages/48/4a/a788f7d0ed3f28f8a4efbc0f260ab7db76c5b20780eb1952a1c95671ea5e/Acquisition-4.3.0-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "7757996785ab59c320eff8357abc3b53", "sha256": "bb059a2cb9e21138141717f5e1eb428dfc275795f171d6d9739f3351cece27b0" }, "downloads": -1, "filename": "Acquisition-4.3.0-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "7757996785ab59c320eff8357abc3b53", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 93438, "upload_time": "2017-01-22T01:55:01", "url": "https://files.pythonhosted.org/packages/4e/7f/2a4b676ae008421029045c88203705ef03a9873c1f04c5f4bf461de8ea59/Acquisition-4.3.0-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "958fff5f79a54052ca63b9ba7224f5d5", "sha256": "a44957e46408766a9745e0de9f6edfe1e1e8c8bb6efb77c009a2b5fcdbe664cb" }, "downloads": -1, "filename": "Acquisition-4.3.0-py3.4.egg", "has_sig": false, "md5_digest": "958fff5f79a54052ca63b9ba7224f5d5", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 80684, "upload_time": "2017-05-16T10:20:54", "url": "https://files.pythonhosted.org/packages/25/98/2bcd67906e9ea05da8d17d013433b80b0e346d73f790a462997dd9e759d2/Acquisition-4.3.0-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "94bfaae7a9f163b40b740b36c5a128a1", "sha256": "15ad18c86117dcd1e902892dd24aeab4540579b8e9273211d779a47ddba4ce70" }, "downloads": -1, "filename": "Acquisition-4.3.0.tar.gz", "has_sig": false, "md5_digest": "94bfaae7a9f163b40b740b36c5a128a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 60028, "upload_time": "2017-01-19T23:32:21", "url": "https://files.pythonhosted.org/packages/65/91/3c9ae88a38e200b17bf8d164e54b5e66da04d2b3365b69a580865129e692/Acquisition-4.3.0.tar.gz" } ], "4.4.0": [ { "comment_text": "", "digests": { "md5": "d8eabe2488b5aa41f247dd8574440451", "sha256": "e765578682d975218f2decd035482af8c86c29ff5df2d07825c547d7d74f1af6" }, "downloads": -1, "filename": "Acquisition-4.4.0.tar.gz", "has_sig": true, "md5_digest": "d8eabe2488b5aa41f247dd8574440451", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 60375, "upload_time": "2017-05-04T09:27:35", "url": "https://files.pythonhosted.org/packages/45/86/8b4b83285650204dd73dbe486d2f10d643a44b9174c077bd70008a216ef9/Acquisition-4.4.0.tar.gz" } ], "4.4.1": [ { "comment_text": "", "digests": { "md5": "5be6f463a53f74bf826d519f0db5969c", "sha256": "dc6ccf59d8961c4eb868b85303c5a46b16b2473d05260710294273dc3f819476" }, "downloads": -1, "filename": "Acquisition-4.4.1-py2.7-win32.egg", "has_sig": false, "md5_digest": "5be6f463a53f74bf826d519f0db5969c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 92563, "upload_time": "2017-05-05T19:54:55", "url": "https://files.pythonhosted.org/packages/bc/f0/36c73f92207d038bb4becafae71482e7e1b63fb6d38ae22e5140f1748390/Acquisition-4.4.1-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "a668544e006d6876f93fef402f6e1a08", "sha256": "852aa448ad3c8a8b659c4a4fcb5858ea20fbf95d46b5e501b81d1c0fea9620cd" }, "downloads": -1, "filename": "Acquisition-4.4.1-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "a668544e006d6876f93fef402f6e1a08", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 94010, "upload_time": "2017-05-05T19:54:59", "url": "https://files.pythonhosted.org/packages/e4/2d/40bbdf378c5fd642b378e326c27e50735def00f2e96f36c56145e71beb25/Acquisition-4.4.1-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "ba136d39948e816b8356aa9625b84a23", "sha256": "04e3e4711e55cc937c10e9b6843707581664599f5950af422cc2f95400253986" }, "downloads": -1, "filename": "Acquisition-4.4.1-py3.4-win32.egg", "has_sig": false, "md5_digest": "ba136d39948e816b8356aa9625b84a23", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 93798, "upload_time": "2017-05-16T10:21:19", "url": "https://files.pythonhosted.org/packages/f4/e4/03a9efb360c3e968485389b2d6816ec8a2beb97d12b90489d1a187ca94ef/Acquisition-4.4.1-py3.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "97ea24fb71a15534dd5f9a4f29cc18c6", "sha256": "0a1f3058d52cd14f7fc0672c9a83c9ad373d481b32ff1dba6975c2d8d687fea3" }, "downloads": -1, "filename": "Acquisition-4.4.1-py3.4-win-amd64.egg", "has_sig": false, "md5_digest": "97ea24fb71a15534dd5f9a4f29cc18c6", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 95129, "upload_time": "2017-05-16T10:21:24", "url": "https://files.pythonhosted.org/packages/57/8a/fe89162d9dc0351030508419d3719dee67b64b221b7bea09522064bb346b/Acquisition-4.4.1-py3.4-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "e916360aaaed15c0c3e5e0d171f21395", "sha256": "ac6253ab8a94d1874b536e383da1e597fc402c985a1345429c633e9624b661d0" }, "downloads": -1, "filename": "Acquisition-4.4.1.tar.gz", "has_sig": true, "md5_digest": "e916360aaaed15c0c3e5e0d171f21395", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 60690, "upload_time": "2017-05-04T11:01:11", "url": "https://files.pythonhosted.org/packages/31/2d/028075a77d7dd1e81eb0af2f669a7b1cd9505e4283a1c209c373e4620043/Acquisition-4.4.1.tar.gz" } ], "4.4.2": [ { "comment_text": "", "digests": { "md5": "0f9f261edc33dcca2862193394e35d2e", "sha256": "3d5900f5f0aa9a034690c2a46c65706f96e17b5d47ecdc78f782f7dc6f76e44e" }, "downloads": -1, "filename": "Acquisition-4.4.2-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0f9f261edc33dcca2862193394e35d2e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 114883, "upload_time": "2017-06-13T14:46:05", "url": "https://files.pythonhosted.org/packages/fa/ff/d3cf36b445425a5a50720f5b37974f3dc65cc9a02b6cc92a8fbefa6f50ee/Acquisition-4.4.2-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "68ce08fdd8f6296d7cb302e7397a40de", "sha256": "d40fd73097eb6e93cbdc14b13cea61fec2d4a490f1cebf66d7248a5c31f306b4" }, "downloads": -1, "filename": "Acquisition-4.4.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "68ce08fdd8f6296d7cb302e7397a40de", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 115189, "upload_time": "2017-06-13T14:46:07", "url": "https://files.pythonhosted.org/packages/b6/6e/c583e834a0b84cd1f9c4be45d9e53af3d7a91c7b8c526fd94e72e7801582/Acquisition-4.4.2-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "edd0931f5fa9173ef36c2909e45904d3", "sha256": "968f9fc10ec0098bb8f680b31eda19217e6d5f0df255a87688074eb78a68d5db" }, "downloads": -1, "filename": "Acquisition-4.4.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "edd0931f5fa9173ef36c2909e45904d3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 115209, "upload_time": "2017-06-13T14:46:10", "url": "https://files.pythonhosted.org/packages/d2/94/55dd5c414aa1d3a6f3a84a2598e783e4f27286ceb46d554da476d00ad7a8/Acquisition-4.4.2-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f640b33a27ff9e868c0b7bb3d2996990", "sha256": "d9564698813aaf38e4e94b23176b84f0ae55617f32860ec6a9bd7e83e377564f" }, "downloads": -1, "filename": "Acquisition-4.4.2-py2.7-win32.egg", "has_sig": false, "md5_digest": "f640b33a27ff9e868c0b7bb3d2996990", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 92664, "upload_time": "2017-05-12T10:00:26", "url": "https://files.pythonhosted.org/packages/2a/a5/d6abcea77c831344b045f5e7d795e5bab1ad9a224080a9ae02372a22878c/Acquisition-4.4.2-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "ae471bfca935c3ce229939ec122c6791", "sha256": "ae3ba0e1cdcc11a9203ed42b8ac5c246542b103e62f580ccbeb03ccc2b8d456c" }, "downloads": -1, "filename": "Acquisition-4.4.2-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "ae471bfca935c3ce229939ec122c6791", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 94111, "upload_time": "2017-05-12T10:00:30", "url": "https://files.pythonhosted.org/packages/c2/a6/13644a6a3e8e8ed818c9df9b03a21269a1cecce480586aabaf8393068ef1/Acquisition-4.4.2-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "feaff1e33ea53a8cc9c73ec5fea0f2c6", "sha256": "dc32afae9c5c9e45d4dedb0ac66a39f2b76b55825383733ed4e28338ea4dc205" }, "downloads": -1, "filename": "Acquisition-4.4.2-py3.4-win32.egg", "has_sig": false, "md5_digest": "feaff1e33ea53a8cc9c73ec5fea0f2c6", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 93943, "upload_time": "2017-05-16T10:21:34", "url": "https://files.pythonhosted.org/packages/38/12/7829423acfccad7276daca48e6bd12ace01b74108c38ec0328dfc0e24a67/Acquisition-4.4.2-py3.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "3ef88e06ed0ada12ce3ac1f324258bfe", "sha256": "5e603b74f5cfd85b9db6aa75661c1394b51834c112a9c9ec903578f7f6207ab6" }, "downloads": -1, "filename": "Acquisition-4.4.2-py3.4-win-amd64.egg", "has_sig": false, "md5_digest": "3ef88e06ed0ada12ce3ac1f324258bfe", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 95273, "upload_time": "2017-05-16T10:21:39", "url": "https://files.pythonhosted.org/packages/b1/f2/6c289a0d275275711f9a55934427a59da7eba404a15e21c98dee5dbc4cee/Acquisition-4.4.2-py3.4-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "3ca1930520284d8a4c3ab2764fddfb89", "sha256": "0b0a5819d610403bc99764cc985d4320ad23e4415e7b28116ff497ed4081a0a9" }, "downloads": -1, "filename": "Acquisition-4.4.2.tar.gz", "has_sig": true, "md5_digest": "3ca1930520284d8a4c3ab2764fddfb89", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 60853, "upload_time": "2017-05-12T09:46:28", "url": "https://files.pythonhosted.org/packages/08/a0/a51a20666a5e164cdb6f757f97d89dd362f495e29ff21b21de303692829e/Acquisition-4.4.2.tar.gz" } ], "4.4.3": [ { "comment_text": "", "digests": { "md5": "309344430ea739b478cfe61f3e0d6c94", "sha256": "c7328df30866c2da66b6eb8beecc3bae59dc73c5618deb234cfa45acd835f69f" }, "downloads": -1, "filename": "Acquisition-4.4.3-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "309344430ea739b478cfe61f3e0d6c94", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 113832, "upload_time": "2017-11-23T07:52:35", "url": "https://files.pythonhosted.org/packages/0e/2f/d413314c5fd7251267b3b26b3cc4f2d3c6d5238360fd864b542aa2f8a543/Acquisition-4.4.3-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b9a4edf648727e309e1176f2fd253bb7", "sha256": "36d32ff08aaa16d695cacdb3ff6bdd57d1d6a3dad9c5ddac743ce0712b705ce1" }, "downloads": -1, "filename": "Acquisition-4.4.3-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "b9a4edf648727e309e1176f2fd253bb7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 113841, "upload_time": "2017-11-23T07:52:40", "url": "https://files.pythonhosted.org/packages/38/02/a9937b5816814399da3873eb64e55a4f90448365432923df99e62059dfc5/Acquisition-4.4.3-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "66462a32e811e41c88c5ea8ccb73532a", "sha256": "f98f3dc39cf528fabadc3a9b4249a6342ba4c9a09036b4e0c4d385f0a8c12b9d" }, "downloads": -1, "filename": "Acquisition-4.4.3-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "66462a32e811e41c88c5ea8ccb73532a", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 115143, "upload_time": "2017-11-23T07:52:46", "url": "https://files.pythonhosted.org/packages/b9/b7/5aa0aab996f1baa3d7377f8971b5c7aee512b5e058a134b7458ebcb9e877/Acquisition-4.4.3-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "53a180be433de9a77635d26a19ea7f1b", "sha256": "abe7db103f7ff67a849a316127de618d436f9d06c6c005f5f55c115391249c6d" }, "downloads": -1, "filename": "Acquisition-4.4.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "53a180be433de9a77635d26a19ea7f1b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 115462, "upload_time": "2017-11-23T07:52:51", "url": "https://files.pythonhosted.org/packages/fe/b9/934f1ca6c7944e66b1758674f9efef43d9965058bcdf089a574daa78cfd5/Acquisition-4.4.3-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2c1334386c502480d109110a0e1f0521", "sha256": "e07bef71fe405128881a057a417b8b22276b1b7659a2f210b0b567b018da1795" }, "downloads": -1, "filename": "Acquisition-4.4.3-cp35-cp35m-win32.whl", "has_sig": true, "md5_digest": "2c1334386c502480d109110a0e1f0521", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 69748, "upload_time": "2017-11-24T13:50:11", "url": "https://files.pythonhosted.org/packages/7f/0c/ad1fc1d79ddc57e7e00833899c26662c88e73d401e834468ec06eb4bd4be/Acquisition-4.4.3-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "d8aac1f47b4f93d47129b6916ea8c4b3", "sha256": "922d89b00d4522a42e824da6d91f4f11f6c198dd517e42e919a0876687c83a37" }, "downloads": -1, "filename": "Acquisition-4.4.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "d8aac1f47b4f93d47129b6916ea8c4b3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 115474, "upload_time": "2017-11-23T07:52:57", "url": "https://files.pythonhosted.org/packages/ba/88/5b34ae4860a0aad963ac293d32c2bcfe915009f96d8f1405c7484539dfc0/Acquisition-4.4.3-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5a3b91f9dd5d9ec74949d160e78417e3", "sha256": "3767ffdf01c78149ee90b9cfad15b58a19dd5d1f6dd23f47b7b85e5421256d07" }, "downloads": -1, "filename": "Acquisition-4.4.3-cp36-cp36m-win32.whl", "has_sig": true, "md5_digest": "5a3b91f9dd5d9ec74949d160e78417e3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 69748, "upload_time": "2017-11-24T13:50:16", "url": "https://files.pythonhosted.org/packages/15/7b/0dbd13c03694e2df53c611fba2b1a73b426e0fc43e1a60b3678000adbb40/Acquisition-4.4.3-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "451d40f9364da75c90296e09dbba90cd", "sha256": "c676129e62259649ba88e4486588b41ae99b939a7c4bb21b4efc782ce2a53029" }, "downloads": -1, "filename": "Acquisition-4.4.3.tar.gz", "has_sig": true, "md5_digest": "451d40f9364da75c90296e09dbba90cd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64251, "upload_time": "2017-11-23T07:49:34", "url": "https://files.pythonhosted.org/packages/8c/de/e2c612ba34d42a25a0b8a596dbe802963a5f87a63a3bd5de364d3efa0ef5/Acquisition-4.4.3.tar.gz" } ], "4.4.4": [ { "comment_text": "", "digests": { "md5": "5da3c01dbc1de242eda988f161232d53", "sha256": "e195883ce3018aab24691af25858e32c7759a66fb7e1088f1043740095d56eb7" }, "downloads": -1, "filename": "Acquisition-4.4.4-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "5da3c01dbc1de242eda988f161232d53", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 113919, "upload_time": "2017-11-24T14:35:07", "url": "https://files.pythonhosted.org/packages/b6/ad/362528e390d47c8198ac967cf5488494931e7ac1715e0a5bed7fbfe57f2f/Acquisition-4.4.4-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4d5ec04d5b2e82ba4f38f058cc1efcb7", "sha256": "c567ca822d198deae57ce9ead5bd2af01d84daf7aac9ecc52bcb2905c9cd19dd" }, "downloads": -1, "filename": "Acquisition-4.4.4-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "4d5ec04d5b2e82ba4f38f058cc1efcb7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 113931, "upload_time": "2017-11-24T14:35:13", "url": "https://files.pythonhosted.org/packages/72/eb/2c5d15b6667025f2b35527237e3a3bf016ecd6f0574014cb2cc72849885f/Acquisition-4.4.4-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e16d438f4d435c1183c804d492eac82c", "sha256": "898e265534d9d53dca69545fa1c379a47d3416f2f7e0e1001aba9ed720dc2bfe" }, "downloads": -1, "filename": "Acquisition-4.4.4-cp27-cp27m-win32.whl", "has_sig": true, "md5_digest": "e16d438f4d435c1183c804d492eac82c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 68248, "upload_time": "2017-11-24T15:21:46", "url": "https://files.pythonhosted.org/packages/2a/d8/bc0ea0c151cf6ea8b8e1d585548071ca578c3affb9452f72c49e28e7e94c/Acquisition-4.4.4-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "e2f8ae0902933c2810e2ce2e45af140e", "sha256": "dd56099a9fefcc8816bf8100284dc9a2b6b69ea4c7c5dab40efd9c79208c7811" }, "downloads": -1, "filename": "Acquisition-4.4.4-cp27-cp27m-win_amd64.whl", "has_sig": true, "md5_digest": "e2f8ae0902933c2810e2ce2e45af140e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 69694, "upload_time": "2017-11-24T15:21:51", "url": "https://files.pythonhosted.org/packages/6a/3f/c6a42c279f6c1a70a0f2b67b61d6021fa3820b302a3f9710a0e62279f743/Acquisition-4.4.4-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5fded22c0b3dba3dafdafc796ba6b09d", "sha256": "cfe6647dc132b5a92866433aa17c22a947d8eb11d715d70775891af3c7877e5c" }, "downloads": -1, "filename": "Acquisition-4.4.4-cp33-cp33m-win32.whl", "has_sig": true, "md5_digest": "5fded22c0b3dba3dafdafc796ba6b09d", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 68050, "upload_time": "2017-11-24T15:21:57", "url": "https://files.pythonhosted.org/packages/13/c7/15c4967cc9e55e3fab31e64b2a35bc652c53636f7efa69a53baaff0240d9/Acquisition-4.4.4-cp33-cp33m-win32.whl" }, { "comment_text": "", "digests": { "md5": "43b1a499da3149868a79a465361a01f8", "sha256": "82b47356b389a19867ef996fee150f4f0ded7d53e0cb170ba7e97aaabb788d39" }, "downloads": -1, "filename": "Acquisition-4.4.4-cp33-cp33m-win_amd64.whl", "has_sig": true, "md5_digest": "43b1a499da3149868a79a465361a01f8", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 69360, "upload_time": "2017-11-24T15:22:04", "url": "https://files.pythonhosted.org/packages/77/31/f5ffdfad5d9c69fbd359cc062b8ced0db88e2cf6f7a6e6ae1ad29e81abcd/Acquisition-4.4.4-cp33-cp33m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ef65323e627048187dfda92448511997", "sha256": "427944f712b74111ab7b69a461b4fde45c2322da151dec5414a13640ec82cae7" }, "downloads": -1, "filename": "Acquisition-4.4.4-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "ef65323e627048187dfda92448511997", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 115230, "upload_time": "2017-11-24T14:35:19", "url": "https://files.pythonhosted.org/packages/62/12/b0c1d6eb9916bccf2b7b34f1b2a291dbca5bf958049190ff07cfaf684a8d/Acquisition-4.4.4-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f8b23b83b7a08493d2523ae828df4d03", "sha256": "4d5029cf0273c25d4c07cda8a4eb51519bd71c51e1040a5c87eebcb844dcb171" }, "downloads": -1, "filename": "Acquisition-4.4.4-cp34-cp34m-win32.whl", "has_sig": true, "md5_digest": "f8b23b83b7a08493d2523ae828df4d03", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 68031, "upload_time": "2017-11-24T15:22:10", "url": "https://files.pythonhosted.org/packages/57/a7/b86c651d64d0148ce7a589e0875e50a8d1e181a42a33618afc55096092e6/Acquisition-4.4.4-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "29c77f55a0ba821f4eba0c985ac3616a", "sha256": "dc5c9c4c91d0f7b68907ad19d5471e913b9a634314f25f49a5b88844580778e8" }, "downloads": -1, "filename": "Acquisition-4.4.4-cp34-cp34m-win_amd64.whl", "has_sig": true, "md5_digest": "29c77f55a0ba821f4eba0c985ac3616a", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 69364, "upload_time": "2017-11-24T15:22:15", "url": "https://files.pythonhosted.org/packages/2f/75/7e85af311e0553e224dfe0eaccfb013b3ef5a752c05f45f9d613552059cb/Acquisition-4.4.4-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7ce406e576fde76e852cb15f4da8062f", "sha256": "eafcbf1d7d62dab28f7c6c560c6a84ee037ccff1c65dff0a9dc97d54ea07e23e" }, "downloads": -1, "filename": "Acquisition-4.4.4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "7ce406e576fde76e852cb15f4da8062f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 115552, "upload_time": "2017-11-24T14:35:24", "url": "https://files.pythonhosted.org/packages/91/fb/fd2f841d9aced2dd58819881e367c57f603f97fd5978528b38b1e8eefa41/Acquisition-4.4.4-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "de20c058bc7f8b57df2291d66d188f2c", "sha256": "a1cd3cff625af3b683731c563f407473dbeb22c198eaa0d762eeee119f021a83" }, "downloads": -1, "filename": "Acquisition-4.4.4-cp35-cp35m-win32.whl", "has_sig": true, "md5_digest": "de20c058bc7f8b57df2291d66d188f2c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 69424, "upload_time": "2017-11-24T15:22:22", "url": "https://files.pythonhosted.org/packages/21/e2/8ef3c60f663d565a6f610b1c26ea4e0919c2756feae64087d2151269b8f9/Acquisition-4.4.4-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "14c2cdbc5707bae865f4458d27cea3c8", "sha256": "cfc6612453ba1a7a881b240846da72b0b4a45ee7118993beaf2188f9056ae4ea" }, "downloads": -1, "filename": "Acquisition-4.4.4-cp35-cp35m-win_amd64.whl", "has_sig": true, "md5_digest": "14c2cdbc5707bae865f4458d27cea3c8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 71679, "upload_time": "2017-11-24T15:22:27", "url": "https://files.pythonhosted.org/packages/f5/22/ceee7e7d8912511d8085365fd1616ffd45dbc45c06bb881549390c4b9d15/Acquisition-4.4.4-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "dd53cc87a1c0901d367553594ccc0b73", "sha256": "0497abb360cd9027e3f26b0d0c4c301a0e190abb6406644696310a2b4570c1af" }, "downloads": -1, "filename": "Acquisition-4.4.4-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "dd53cc87a1c0901d367553594ccc0b73", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 115561, "upload_time": "2017-11-24T14:35:29", "url": "https://files.pythonhosted.org/packages/26/f8/0899f1671cd59eca96dda9562379d1240e6a3fdaf33b487d0bfa09e45cc1/Acquisition-4.4.4-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4ec4b18af2dbb54fecea5e0de0583752", "sha256": "b59bf0aa7a65adb9b022252831e0dc73920527ab1c15008051fc5dd1a88566e5" }, "downloads": -1, "filename": "Acquisition-4.4.4-cp36-cp36m-win32.whl", "has_sig": true, "md5_digest": "4ec4b18af2dbb54fecea5e0de0583752", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 69426, "upload_time": "2017-11-24T15:22:33", "url": "https://files.pythonhosted.org/packages/00/bc/adab0b088256ae17f59b84ec425259c6b791cea44c4e847cbaa5acac9d82/Acquisition-4.4.4-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "b79c2c0a82898485554e7b599b3564cd", "sha256": "b7c43c21eb77f3d4ba4a49d886e9e48daa8fb8bf4bbb25986038d7afc935ea46" }, "downloads": -1, "filename": "Acquisition-4.4.4-cp36-cp36m-win_amd64.whl", "has_sig": true, "md5_digest": "b79c2c0a82898485554e7b599b3564cd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 71679, "upload_time": "2017-11-24T15:22:38", "url": "https://files.pythonhosted.org/packages/0b/b8/69fcddecbee5c3442fe904b20deb0f4b06f9fe0f8f6e9c6bcdb72def18b7/Acquisition-4.4.4-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "9524b854ec5c13c779a898a7e2d149cb", "sha256": "dd460343deec47bbbe4f1bce50fee595ab42eecdfd4372678cc472b640540126" }, "downloads": -1, "filename": "Acquisition-4.4.4.tar.gz", "has_sig": false, "md5_digest": "9524b854ec5c13c779a898a7e2d149cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64380, "upload_time": "2017-11-24T15:23:30", "url": "https://files.pythonhosted.org/packages/c1/b3/ae140401dac7400f18481481a5ede99c137d5a787f64eb0e6ccc66f810cd/Acquisition-4.4.4.tar.gz" } ], "4.5": [ { "comment_text": "", "digests": { "md5": "11d122213502e51dd40f2ca1ed8abbe3", "sha256": "25d88ac19db1722ae39f8ac01c24e2263b8de25642ee9f80995c52659d0ebb86" }, "downloads": -1, "filename": "Acquisition-4.5-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "11d122213502e51dd40f2ca1ed8abbe3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 60896, "upload_time": "2018-10-05T12:36:05", "url": "https://files.pythonhosted.org/packages/d1/7d/deb6bf525131718c1a4feebe64fac23f963a6e6f2c12714d6d18d683c0d1/Acquisition-4.5-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "ee25edd401a979934f4e0a321dbc8b6c", "sha256": "4ba2c2f2326ffc8cdfbff1349fe9decca5ff4e01e38abbdf8ef989a67418ecf7" }, "downloads": -1, "filename": "Acquisition-4.5-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "ee25edd401a979934f4e0a321dbc8b6c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 62340, "upload_time": "2018-10-05T12:36:50", "url": "https://files.pythonhosted.org/packages/d2/d2/1c5ade04614f98394c65acff66112bad9d838c7a5c9761fdc205e4e6ebd7/Acquisition-4.5-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b01af63086e0c3f1ac45bd30d73e5929", "sha256": "2bd5ceab783c99e4f17503b0a126ce5fff3ec219062536a437696eec972698f9" }, "downloads": -1, "filename": "Acquisition-4.5-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "b01af63086e0c3f1ac45bd30d73e5929", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 60685, "upload_time": "2018-10-05T12:37:48", "url": "https://files.pythonhosted.org/packages/4b/ac/60554bd545ac6c56962d5af60fa4721c886a2670dcb109eda90796dcee4e/Acquisition-4.5-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "489be6e042cd2eaca892242425c846f2", "sha256": "2db83d0a63d3cd331cf074c2cc5e301eba826dbd613ec0b381981521f54789c9" }, "downloads": -1, "filename": "Acquisition-4.5-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "489be6e042cd2eaca892242425c846f2", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 62012, "upload_time": "2018-10-05T12:39:21", "url": "https://files.pythonhosted.org/packages/41/a1/ba8bb7d2f3d29958e7e2aa27391be358a9ef137df259eea65497d731b065/Acquisition-4.5-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ce98808e6c6a58474193849082d4025d", "sha256": "9cbcdc6ea8336b8e2a742baecb597d58f623172ec1cdefc0650f931d3e153fe5" }, "downloads": -1, "filename": "Acquisition-4.5-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "ce98808e6c6a58474193849082d4025d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 62076, "upload_time": "2018-10-05T12:40:25", "url": "https://files.pythonhosted.org/packages/ca/a8/fb5e63e09158bfad565fa9672cd08a2df3a68c0d5bcb43a253c71c842a17/Acquisition-4.5-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "d3ec32182d4a01a24520d273f83f7b06", "sha256": "f482ab11df617614be957ff5829ee8d33bfe2ced1456e0bd69e307af603655e2" }, "downloads": -1, "filename": "Acquisition-4.5-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "d3ec32182d4a01a24520d273f83f7b06", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 64330, "upload_time": "2018-10-05T12:41:24", "url": "https://files.pythonhosted.org/packages/a8/ab/ff62d1a0082533cdff9dd0ec037d9969e54a224c3bd71b8dbf06a2eea600/Acquisition-4.5-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f4cf86d80c45a3ef1cafb7abaf49af34", "sha256": "68a9d8cfecbc7613a1989ef9ea2c8cc282f6aba4be5fd6f681ca600bfb078f6d" }, "downloads": -1, "filename": "Acquisition-4.5-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "f4cf86d80c45a3ef1cafb7abaf49af34", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 62076, "upload_time": "2018-10-05T12:42:14", "url": "https://files.pythonhosted.org/packages/bc/e2/db26c1bc65d7991fb02e264b949399c48d9880f502f587e756d5dfc91214/Acquisition-4.5-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "178b3bf2371a9f6370c85e1af479f381", "sha256": "d829df898e6f19b91f32491ac0974b13ac58f1c261f9d5e2fd56509cbbc5e12c" }, "downloads": -1, "filename": "Acquisition-4.5-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "178b3bf2371a9f6370c85e1af479f381", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 64329, "upload_time": "2018-10-05T12:44:17", "url": "https://files.pythonhosted.org/packages/f3/56/0ffea63514088c968192be24eeaf671c81dfcfba6c2ae8251a1312936663/Acquisition-4.5-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7c45f5bbe6c786462c62512cf8c91e9c", "sha256": "6b69ba807925593ca1566971a5045e967b9ea7708d69e666462be942883cbe69" }, "downloads": -1, "filename": "Acquisition-4.5-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "7c45f5bbe6c786462c62512cf8c91e9c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 62081, "upload_time": "2018-10-05T12:45:08", "url": "https://files.pythonhosted.org/packages/19/13/1396f27b30381274cf81e620a11e1a9adedde368e305f74d3fd0deeb93a9/Acquisition-4.5-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "0779e107c021f48c759331e00e6ad26f", "sha256": "5148f97c1f04a26445fe00a6a08683269ecde69846e44e32949a545547d8a17c" }, "downloads": -1, "filename": "Acquisition-4.5-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "0779e107c021f48c759331e00e6ad26f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 64335, "upload_time": "2018-10-05T12:46:01", "url": "https://files.pythonhosted.org/packages/b4/de/05ae344f221bb4c701bc27d0e645f3c7963e3c3d32246c274b1fd5753777/Acquisition-4.5-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "665c75700d439968d815296adb063f5a", "sha256": "d07e92a67e17422a5378f89a64354dca40e4d1453775937ff21c5ada30dceca9" }, "downloads": -1, "filename": "Acquisition-4.5.tar.gz", "has_sig": false, "md5_digest": "665c75700d439968d815296adb063f5a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65260, "upload_time": "2018-10-05T12:29:33", "url": "https://files.pythonhosted.org/packages/32/0c/d037b47ef89db171e4f3e1225e05ce2283400109e50e581fdd24145825dd/Acquisition-4.5.tar.gz" } ], "4.6": [ { "comment_text": "", "digests": { "md5": "a60218db1f0d5b2fe5fab836b93e024c", "sha256": "a687ec005597ec2dd257c6fdd611d3a459e05e460f0f859599c4f4c00c9663af" }, "downloads": -1, "filename": "Acquisition-4.6-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "a60218db1f0d5b2fe5fab836b93e024c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 61260, "upload_time": "2019-04-24T15:59:24", "url": "https://files.pythonhosted.org/packages/58/24/bd3d026bc98b1fccbc01825b7738883ddc398a66c595831163608bf7fb9c/Acquisition-4.6-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "2d3fe330b863c1d867264aef333b732c", "sha256": "440e25d89ad422352fa9f5f1f30d01528c0237ae59f71a7441e21ef5cb05a58f" }, "downloads": -1, "filename": "Acquisition-4.6-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "2d3fe330b863c1d867264aef333b732c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 62709, "upload_time": "2019-04-24T15:59:49", "url": "https://files.pythonhosted.org/packages/33/ab/fd912065a686ccb413d453aae0429053f98ebf059d24bc8cd9771eca1ddb/Acquisition-4.6-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b9b50dc3d013884c2f0849291edb64af", "sha256": "4431efb4cf0c766d8d121f64ac97579569b491722e71a634b1be6cc231f7b3fa" }, "downloads": -1, "filename": "Acquisition-4.6-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "b9b50dc3d013884c2f0849291edb64af", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 61036, "upload_time": "2019-04-24T16:00:24", "url": "https://files.pythonhosted.org/packages/1c/c3/e5927e7223fe4a44ad938212926e469671c512ae5b8353529aeec8dd89c6/Acquisition-4.6-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "936d44460bc01072b3d3b0d53aa4bc5f", "sha256": "cf09a19c76d3fe0db576980321ef14b841dc5ea5f80132c9bf6e54f00714b7e1" }, "downloads": -1, "filename": "Acquisition-4.6-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "936d44460bc01072b3d3b0d53aa4bc5f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 62417, "upload_time": "2019-04-24T16:01:27", "url": "https://files.pythonhosted.org/packages/66/92/8a7bc6d2c97418460f7abc8affae9b37339cf42f1d418344ff3a8bce7513/Acquisition-4.6-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "4e1eff30e972a6338d9826d3b0729c71", "sha256": "8fc32e5a6284b1b027ae93fceecdf65806d06600d4a79cb2b75360e13ade9ceb" }, "downloads": -1, "filename": "Acquisition-4.6-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "4e1eff30e972a6338d9826d3b0729c71", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 64702, "upload_time": "2019-04-24T16:02:15", "url": "https://files.pythonhosted.org/packages/62/39/328d8c413563dce56485e896cffe6af110ef5d3a574aa1f4b3da781d9ea5/Acquisition-4.6-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "452e21b805305a503fd8ee7cbf0a43a3", "sha256": "07fc07841ddbed9f27c95b2495956fedec0c4b4e9a3bf1742861f8f5ca263069" }, "downloads": -1, "filename": "Acquisition-4.6-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "452e21b805305a503fd8ee7cbf0a43a3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 62415, "upload_time": "2019-04-24T16:02:50", "url": "https://files.pythonhosted.org/packages/8d/da/7b078c547be37f2a1a81960c0ee34cde75f97bb5adadab2223139901a126/Acquisition-4.6-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "24e866819720b47183c8d2a9c2fa0d17", "sha256": "7a91fdbe7f16b13dcec57fdb2cde390760a5534db0c7742a0c2605e298fa46a4" }, "downloads": -1, "filename": "Acquisition-4.6-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "24e866819720b47183c8d2a9c2fa0d17", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 64703, "upload_time": "2019-04-24T16:03:24", "url": "https://files.pythonhosted.org/packages/10/c5/96a61d23abb730bbaa02060fe9bad8dfeb7979e605ebb966daef04aeac22/Acquisition-4.6-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f737226e8daf7e6b03326916e1835a72", "sha256": "7ff9056f94c715215bacdd1a3d8fc58a3aa3221d65ee05c32911a40c6e0e6785" }, "downloads": -1, "filename": "Acquisition-4.6-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "f737226e8daf7e6b03326916e1835a72", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 62416, "upload_time": "2019-04-24T16:04:09", "url": "https://files.pythonhosted.org/packages/10/c3/af998af3bdd94093f2fee568a36fa37edd592e64d7fc9f9c769872a1368a/Acquisition-4.6-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "1e0e8c6eca7d90a26fdd19c9f1afb0ca", "sha256": "265bff224f01df1db59f4709ec8f34ac1744bf53b6c9d7bb9c336cf7bdaf02f9" }, "downloads": -1, "filename": "Acquisition-4.6-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "1e0e8c6eca7d90a26fdd19c9f1afb0ca", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 64706, "upload_time": "2019-04-24T16:04:44", "url": "https://files.pythonhosted.org/packages/83/96/7b33b171e7e3b05061073320713935be2062268e2767f95924b0bb3e54a6/Acquisition-4.6-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a97dd3880597e84e901c21e9859fec7f", "sha256": "dcb318066c3f295b557f79a2e740302edb298f42d62123ffa6e328d79287218e" }, "downloads": -1, "filename": "Acquisition-4.6.tar.gz", "has_sig": false, "md5_digest": "a97dd3880597e84e901c21e9859fec7f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 65925, "upload_time": "2019-04-24T15:47:16", "url": "https://files.pythonhosted.org/packages/9f/d4/36228e04dc08be90e6b9b71707345c8ab2fe02c92d966254e020966856cd/Acquisition-4.6.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "a60218db1f0d5b2fe5fab836b93e024c", "sha256": "a687ec005597ec2dd257c6fdd611d3a459e05e460f0f859599c4f4c00c9663af" }, "downloads": -1, "filename": "Acquisition-4.6-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "a60218db1f0d5b2fe5fab836b93e024c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 61260, "upload_time": "2019-04-24T15:59:24", "url": "https://files.pythonhosted.org/packages/58/24/bd3d026bc98b1fccbc01825b7738883ddc398a66c595831163608bf7fb9c/Acquisition-4.6-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "2d3fe330b863c1d867264aef333b732c", "sha256": "440e25d89ad422352fa9f5f1f30d01528c0237ae59f71a7441e21ef5cb05a58f" }, "downloads": -1, "filename": "Acquisition-4.6-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "2d3fe330b863c1d867264aef333b732c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 62709, "upload_time": "2019-04-24T15:59:49", "url": "https://files.pythonhosted.org/packages/33/ab/fd912065a686ccb413d453aae0429053f98ebf059d24bc8cd9771eca1ddb/Acquisition-4.6-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b9b50dc3d013884c2f0849291edb64af", "sha256": "4431efb4cf0c766d8d121f64ac97579569b491722e71a634b1be6cc231f7b3fa" }, "downloads": -1, "filename": "Acquisition-4.6-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "b9b50dc3d013884c2f0849291edb64af", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 61036, "upload_time": "2019-04-24T16:00:24", "url": "https://files.pythonhosted.org/packages/1c/c3/e5927e7223fe4a44ad938212926e469671c512ae5b8353529aeec8dd89c6/Acquisition-4.6-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "936d44460bc01072b3d3b0d53aa4bc5f", "sha256": "cf09a19c76d3fe0db576980321ef14b841dc5ea5f80132c9bf6e54f00714b7e1" }, "downloads": -1, "filename": "Acquisition-4.6-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "936d44460bc01072b3d3b0d53aa4bc5f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 62417, "upload_time": "2019-04-24T16:01:27", "url": "https://files.pythonhosted.org/packages/66/92/8a7bc6d2c97418460f7abc8affae9b37339cf42f1d418344ff3a8bce7513/Acquisition-4.6-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "4e1eff30e972a6338d9826d3b0729c71", "sha256": "8fc32e5a6284b1b027ae93fceecdf65806d06600d4a79cb2b75360e13ade9ceb" }, "downloads": -1, "filename": "Acquisition-4.6-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "4e1eff30e972a6338d9826d3b0729c71", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 64702, "upload_time": "2019-04-24T16:02:15", "url": "https://files.pythonhosted.org/packages/62/39/328d8c413563dce56485e896cffe6af110ef5d3a574aa1f4b3da781d9ea5/Acquisition-4.6-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "452e21b805305a503fd8ee7cbf0a43a3", "sha256": "07fc07841ddbed9f27c95b2495956fedec0c4b4e9a3bf1742861f8f5ca263069" }, "downloads": -1, "filename": "Acquisition-4.6-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "452e21b805305a503fd8ee7cbf0a43a3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 62415, "upload_time": "2019-04-24T16:02:50", "url": "https://files.pythonhosted.org/packages/8d/da/7b078c547be37f2a1a81960c0ee34cde75f97bb5adadab2223139901a126/Acquisition-4.6-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "24e866819720b47183c8d2a9c2fa0d17", "sha256": "7a91fdbe7f16b13dcec57fdb2cde390760a5534db0c7742a0c2605e298fa46a4" }, "downloads": -1, "filename": "Acquisition-4.6-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "24e866819720b47183c8d2a9c2fa0d17", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 64703, "upload_time": "2019-04-24T16:03:24", "url": "https://files.pythonhosted.org/packages/10/c5/96a61d23abb730bbaa02060fe9bad8dfeb7979e605ebb966daef04aeac22/Acquisition-4.6-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f737226e8daf7e6b03326916e1835a72", "sha256": "7ff9056f94c715215bacdd1a3d8fc58a3aa3221d65ee05c32911a40c6e0e6785" }, "downloads": -1, "filename": "Acquisition-4.6-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "f737226e8daf7e6b03326916e1835a72", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 62416, "upload_time": "2019-04-24T16:04:09", "url": "https://files.pythonhosted.org/packages/10/c3/af998af3bdd94093f2fee568a36fa37edd592e64d7fc9f9c769872a1368a/Acquisition-4.6-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "1e0e8c6eca7d90a26fdd19c9f1afb0ca", "sha256": "265bff224f01df1db59f4709ec8f34ac1744bf53b6c9d7bb9c336cf7bdaf02f9" }, "downloads": -1, "filename": "Acquisition-4.6-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "1e0e8c6eca7d90a26fdd19c9f1afb0ca", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 64706, "upload_time": "2019-04-24T16:04:44", "url": "https://files.pythonhosted.org/packages/83/96/7b33b171e7e3b05061073320713935be2062268e2767f95924b0bb3e54a6/Acquisition-4.6-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a97dd3880597e84e901c21e9859fec7f", "sha256": "dcb318066c3f295b557f79a2e740302edb298f42d62123ffa6e328d79287218e" }, "downloads": -1, "filename": "Acquisition-4.6.tar.gz", "has_sig": false, "md5_digest": "a97dd3880597e84e901c21e9859fec7f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 65925, "upload_time": "2019-04-24T15:47:16", "url": "https://files.pythonhosted.org/packages/9f/d4/36228e04dc08be90e6b9b71707345c8ab2fe02c92d966254e020966856cd/Acquisition-4.6.tar.gz" } ] }