{ "info": { "author": "Zope Foundation and Contributors", "author_email": "zope-dev@zope.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 6 - Mature", "Environment :: Web Environment", "Framework :: Zope :: 4", "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", "Topic :: Internet :: WWW/HTTP :: Indexing/Search" ], "description": "Overview\n========\n\nThe ZCatalog is Zope's built in search engine. It allows you to categorize\nand search all kinds of Zope objects.\n\nIt comes with a variety of indexes for different types of data.\n\nChangelog\n=========\n\n5.0.1 (2019-06-17)\n------------------\n\nBug fixes\n+++++++++\n\n- Fix sorting of index overview table in ZMI. Migrated the template from \n to zpt.\n (`#62 `_)\n\n\n5.0 (2019-05-10)\n----------------\n\nBackwards incompatible changes\n++++++++++++++++++++++++++++++\n\n- Raise a ``ValueError`` if a query uses invalid index parameters. This\n prevents the query from being changed without feedback to the user and\n delivering implausible search results.\n (`#67 `_)\n\nBug fixes\n+++++++++\n\n- Fix rewriting of query to avoid wrong optimization of CompositeIndex.\n (`#59 `_)\n\n- Consistent use of ``UnIndex._convert`` method to avoid unnecessary\n doubling of code.\n (`#69 `_)\n\n- Fix performance issue of ``valueindexes`` method for catalogs with\n many indexed objects\n (`#39 `_)\n\n- Make sure ``PathIndex._index_object`` removes old index entries\n when path of object changes\n (`#61 `_)\n\n- Code cleanup and completion of TopicIndex according to existing index\n methods and properties\n (`#65 `_)\n\n\n4.4 (2019-03-08)\n----------------\n\n- Make sure WidCode decode handles bytes that were improperly\n converted from Python 2 to Python 3.\n\n- Specify supported Python versions using ``python_requires`` in setup.py\n (`Zope#481 `_)\n\n- Added support for Python 3.8\n\n- Flake8 the code.\n\n\n4.3 (2019-02-08)\n----------------\n\n- Adapt remaining ZMI tabs to Bootstrap\n (`#45 `_)\n\n- Replace deprecated ``cgi.escape`` with ``html.escape`` for Python 3.\n\n- Fix \"invalid escape sequence\" warning in Python 3.\n\n\n4.2 (2018-10-05)\n----------------\n\n- Replace ``urllib.quote`` with ``six.moves.urllib.parse.quote``.\n Fixes an issue on a ZMI redirect after rebuilding the catalog.\n\n- Adapt the ZMI HTML to the new Bootstrap ZMI.\n (`#41 `_)\n\n- Fix sorting in _sort_iterate_resultset in Python 3.\n (`#42 `_)\n\n- Add support for Python 3.7.\n\n- Drop support for Python 3.4.\n\n\n4.1.1 (2018-07-05)\n------------------\n\n- Fix a TypeError on Python 3 when trying to lookup in an OOBTree\n a value for a key that has an invalid type.\n (`#36 `_)\n\n\n4.1 (2018-03-06)\n----------------\n\n- Add new precision property to date and date range indexes.\n This lets you index more coarse grained time values instead of the\n default one minute based time resolution.\n\n- Add new `getAllBrains` method to the ZCatalog, returning a generator\n of brains for all cataloged objects. You can use this if you relied\n on `searchResults` returning all brains for empty queries before\n version 4.0a2.\n\n- Fix logging issue in KeywordIndex.\n\n4.0.1 (2017-10-10)\n------------------\n\n- Fix a bug in the BooleanIndex where documents without an entry in\n the index were not being filtered out in all queries.\n\n- More PEP8 compliance.\n\n4.0.0 (2017-05-23)\n------------------\n\n- Python 3 compatibility\n\n- Target use with Zope 4: no longer support 2.13.x.\n\n- `five.globalrequest` got merged into Zope2 itself.\n\n- Use aq_inner before aq_parent at some places to safely get the parent.\n\n4.0a3 (2017-02-02)\n------------------\n\n- #19: Fix stale cache results after clearing an index.\n\n- Use `@implementer` class decorator.\n\n- Add `__contains__` method to ZCatalogIndexes, fixes zopefoundation/Zope#69.\n\n- Raise BadRequest instead of returning MessageDialog.\n\n4.0a2 (2016-08-28)\n------------------\n\n- Move PluginIndexes.common.UnIndex module to PluginIndexes.unindex.\n\n- Remove unused `Products.PluginIndexes.common.ResultList` and\n `randid` modules.\n\n- Merge in the ZCTextIndex code.\n\n- Extend IQueryIndex interface to handle operator parsing.\n\n- Add new IQueryIndex interface for indices. This introduces a new\n `query_index` method on each index with a simplified contract compared\n to `_apply_index`. The responsibility for parsing and skipping the query\n has moved into the catalog, and the return value no longer has to be\n a tuple of (result, used_attributes), as the later wasn't used by the\n catalog.\n\n- Rename `parseIndexRequest` to `IndexQuery` and move it to `ZCatalog.query`.\n\n- Remove unused ZMI icons.\n\n- Remove deprecated Catalog(Path)Awareness modules.\n\n- Remove CatalogSearchArgumentsMap and support for using requests\n objects as queries.\n\n- Empty catalog queries now return no results.\n\n- No longer special-case empty strings in catalog queries.\n\n- Add new CompositeIndex index type.\n\n4.0a1 (2016-07-22)\n------------------\n\n- Moved `Products.ZCatalog.Lazy` module to `ZTUtils.Lazy`.\n\n- Add configure.zcml with deprecatedManageAddDelete directives.\n\n3.2 (2016-07-18)\n----------------\n\n- #12: Add request cache for index results to all UnIndex subclasses.\n\n- Add dependency on `five.globalrequest`.\n\n3.1.2 (2016-07-17)\n------------------\n\n- #6, #7, #11: Run ZODB cache garbage collection during queries.\n\n- #13: Deal with threshold value of None in add/delColum.\n\n3.1.1 (2016-07-17)\n------------------\n\n- Make index-listing compatible with Zope 4.\n\n- #5: Ignore None values in UnIndex instead of raising a TypeError.\n\n- Add a new getCounter method to indices.\n\n- Update to ZODB 4.0 as direct dependency.\n\n3.1 (2014-11-02)\n----------------\n\n- Raise a TypeError when trying to index or lookup `None` in an UnIndex.\n This is a required change for BTrees 4.0+ compatibility, which prevents\n objects without a clear ordering definition from being inserted in a tree.\n\n- No longer try to insert a None value into a field index in tests.\n\n3.0.2 (2014-03-04)\n------------------\n\n- Restore ability for indexes to use extra query params.\n See PR #1.\n\n- Change `CatalogPlan.valueindexes` to avoid using a `len()` call on the\n result of each index `uniqueValues` method. This was loading entire BTrees\n into memory and caused excessive database load on startup.\n\n- Correct `withLengths` argument name on `PathIndex.uniqueValues` to use\n plural form, adhering to the interface specification.\n\n- Clarify the `IUniqueValueIndex.uniqueValues` method description and\n explicitly mention generators/iterators as potential return values.\n The PathIndex was one example returning a generator for some time.\n\n- Adjust `actual_result_count` for sorted queries where the sort index doesn't\n contain all the documents. Fixes LP #1237141.\n\n- Restore safeguard for using the `iterate over sort index` case and avoid\n it while using limiting at the same time. Fixes LP #1236790.\n\n3.0.1 (2013-10-15)\n------------------\n\n- Fix BooleanIndex when index inversion occurs as a result of reindexing\n and existing document with the opposite value. Fixes LP\u00a0#1236354.\n\n3.0 (2013-02-24)\n------------------\n\n- Strip white space from name when adding a column or index.\n\n- Forward compatibility for Zope 4 removal of RequestContainer.\n\n- Optimize brain instantiation, by creating underlying record items in a\n single step, instead of creation and three update calls.\n\n3.0b1 (2012-07-19)\n------------------\n\n- LP #727981: Fix DateIndex ZMI browsing for dates in the first month of a\n year.\n\n- Unify Unindex and DateIndex search logic (`_apply_index`) adding `not`\n support to DateIndexes.\n\n3.0a2 (2012-04-26)\n------------------\n\n- Fixed another issue with preserving score values, when a custom index was\n queried first which was neither ILimitedResultIndex aware nor return scores,\n and a later index was of the default ZCTextIndex type.\n\n3.0a1 (2012-04-22)\n------------------\n\n- Expand query report, to cover details on sort indexes, order and limits.\n\n- As part of each progress handler report, also do an automatic transaction\n savepoint, to give the ZODB cache a chance to do garbage collection.\n\n- Added a `threshold` argument to the catalog's `addColumn` and `delColumn`\n methods and used it for a progress handler. Also optimized some of their\n internals.\n\n- Added support for `sort_on` queries with any number of sort indexes and\n differing `sort_order` values. For example:\n `{'foo': 'a', 'sort_on': ('foo', 'bar')}`\n `{'foo': 'a', 'sort_on': ('foo', 'bar'), 'sort_order': ('', 'reverse')}`\n `{'foo': 'a', 'sort_on': ('foo', 'bar', 'baz')}`\n\n- Added support for `not` queries in field and keyword indexes. Both\n restrictions of normal queries and range queries are supported, as well as\n purely exclusive queries. For example:\n `{'foo': {'query': ['a', 'ab'], 'not': 'a'}}`\n `{'foo': {'query': 'a', 'range': 'min', 'not': ['a', 'e', 'f']}}`\n `{'foo': {'not': ['a', 'b']}}`.\n Note that negative filtering on an index still restricts items to those\n having a value in the index. So with 10 documents, 5 of them in the `foo`\n index with a value of `1`, a query for `not 1` will return no items instead\n of the 5 items without a value. You need to index a dummy/default value if\n you want to consider all items for a particular index.\n\n- Updated deprecation warnings to point to Zope 4 instead of 2.14.\n\n2.13.22 (2011-11-17)\n--------------------\n\n- Added a new `load_from_path` class method to the `PriorityMap`, which allows\n one to load a plan from a file, instead of a module via an environment var.\n\n2.13.21 (2011-10-20)\n--------------------\n\n- Refactored value index logic. Determine value indexes per catalog instead of\n globally. Store value index set in the priority map, so it can be seen in the\n ZMI and stored in the module level storage.\n\n- Added support for using ZCatalog as local utility.\n This feature requires the optional `five.globalrequest` dependency.\n\n2.13.20 (2011-08-23)\n--------------------\n\n- Fixed incorrect calculation of batches in the second half of the result set\n in sortResults.\n\n2.13.19 (2011-08-20)\n--------------------\n\n- Increase plan precision to 4 digits in its string representation.\n\n2.13.18 (2011-07-29)\n--------------------\n\n- In the string representation of a catalog plan, round the times to at most\n two digits after the comma.\n\n2.13.17 (2011-07-29)\n--------------------\n\n- Put back the `weightedIntersection` optimization but guard against results\n with values and do the appropriate fallback to the weighted version.\n\n2.13.16 (2011-07-24)\n--------------------\n\n- Restored preserving score values from ZCTextIndex indices.\n https://bugs.launchpad.net/zope2/+bug/815469\n\n2.13.15 (2011-06-30)\n--------------------\n\n- Fixed undefined variables in BooleanIndex inline migration code.\n\n- Fixed BooleanIndex' items method so the ZMI browse view works.\n\n2.13.14 (2011-05-19)\n--------------------\n\n- Fixed addition of two LazyCat's if any of them was already flattened.\n\n- Extend BooleanIndex by making the indexed value variable instead of\n hardcoding it to `True`. The indexed value will determine the smaller set\n automatically and choose its best value. An inline switch is done once the\n indexed value set grows larger than 60% of the total length. 60% was chosen\n to avoid constant switching for indexes that have an almost equal\n distribution of `True/False`.\n\n- Substitute catalog entry in UUIDIndex error message.\n\n2.13.13 (2011-05-04)\n--------------------\n\n- Optimize `Catalog.updateMetadata` avoiding a `self.uids` lookup and removing\n inline migration code for converting `self.data` from non-IOBTree types.\n\n- In the path index, don't update data if the value hasn't changed.\n\n2.13.12 (2011-05-02)\n--------------------\n\n- Optimize DateRangeIndex for better conflict resolution handling. It always\n starts out with storing an IITreeSet of the value instead of special casing\n storing an int for a single value. The `single value as int` optimization\n should be provided via a separate API to be called periodically outside the\n context of a normal request.\n\n- Replaced `weightedIntersection` and `weightedUnion` calls with their\n non-weighted version, as we didn't pass in weights.\n\n2.13.11 (2011-05-02)\n--------------------\n\n- Fix possible TypeError in `sortResults` method if only b_start but not b_size\n has been provided.\n\n- Prevent the new UUIDIndex from acquiring attributes via Acquisition.\n\n2.13.10 (2011-04-21)\n--------------------\n\n- Handle `TypeErrors` in the KeywordIndex if an indexed attribute is a method\n with required arguments.\n\n- Added reporting of the intersection time of each index' result with the\n result set of the other indexes and consider this time to be part of each\n index time for prioritizing the index.\n\n- Removed tracking of result length from the query plan. The calculation of the\n length of an intermediate index result can itself be expensive.\n\n2.13.9 (2011-04-10)\n-------------------\n\n- Added a floor and ceiling value to the date range index. Values outside the\n specified range will be interpreted the same way as passing `None`, i.e.\n `since the beginning of time` and `until the end of it`. This allows the\n index to apply its optimizations, while objects with values outside this\n range can still be stored in a normal date index, which omits explicitly\n passed in `None` values.\n\n2.13.8 (2011-04-01)\n-------------------\n\n- Fixed bug in date range index, which would omit objects exactly matching the\n query term if a resultset was provided.\n\n- Fixed the BooleanIndex to not index objects without the cataloged attribute.\n\n2.13.7 (2011-02-15)\n-------------------\n\n- Fixed the `DateIndex._unindex` to be of type `IIBTree` instead of `OIBTree`.\n It stores document ids as keys, which can only be ints.\n\n2.13.6 (2011-02-10)\n-------------------\n\n- Remove docstrings from various methods, as they shouldn't be web-publishable.\n\n2.13.5 (2011-02-05)\n-------------------\n\n- Fixed test failures introduced in 2.13.4.\n\n2.13.4 (2011-02-05)\n-------------------\n\n- Added a new UUIDIndex, based on the common UnIndex. It behaves like a\n FieldIndex, but can only store one document id per value, so there's a 1:1\n mapping from value to document id. An error is logged if a different document\n id is indexed for an already taken value. The internal data structures are\n optimized for this and avoid storing one IITreeSet per value.\n\n- Optimize sorting in presence of batching arguments. If a batch from the end\n of the result set is requested, we internally reverse the sorting order and\n at the end reverse the lazy sequence again. In a sequence with 100 entries,\n if we request the batch with items 80 to 90, we now reverse sort 20 items\n (100 to 80), slice of the first ten items and then reverse them. Before we\n would had to sort the first 90 items and then slice of the last 10.\n\n- If batching arguments are provided, limit the returned lazy sequence to the\n items in the required batch instead of returning leading items falling\n outside of the requested batch.\n\n- Fixed inline `IISet` to `IITreeSet` conversion code inside DateRangeIndex'\n `_insertForwardIndexEntry` method.\n\n2.13.3 (2011-01-01)\n-------------------\n\n- Avoid locale-dependent test condition in `test_length_with_filter`.\n\n2.13.2 (2010-12-31)\n-------------------\n\n- Preserve `actual_result_count` on flattening nested LazyCat's.\n\n- Preserve the `actual_result_count` on all lazy return values. This allows\n to get proper batching information from catalog results which have been\n restricted by `sort_limit`.\n\n- Made sure `actual_result_count` is available on all lazy classes and falls\n back to `__len__` if not explicitly provided.\n\n- Optimized length calculation of Lazy classes.\n\n2.13.1 (2010-12-25)\n-------------------\n\n- Added automatic sorting limit calculation based on batch arguments. If the\n query contains a `b_start` and `b_size` argument and no explicit `sort_limit`\n is provided, the sort limit will be calculated as `b_start + b_size`.\n\n- Avoid pre-allocation of marker items in `LazyMap`.\n\n2.13.0 (2010-12-25)\n-------------------\n\n- Fix `LazyMap` to avoid unnecessary function calls.\n\n- Released as separate distribution.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/zopefoundation/Products.ZCatalog", "keywords": "Zope catalog index search data", "license": "ZPL 2.1", "maintainer": "", "maintainer_email": "", "name": "Products.ZCatalog", "package_url": "https://pypi.org/project/Products.ZCatalog/", "platform": "", "project_url": "https://pypi.org/project/Products.ZCatalog/", "project_urls": { "Homepage": "https://github.com/zopefoundation/Products.ZCatalog" }, "release_url": "https://pypi.org/project/Products.ZCatalog/5.0.1/", "requires_dist": [ "AccessControl (>=4.0a4)", "Acquisition", "BTrees", "DateTime", "DocumentTemplate", "ExtensionClass", "Missing", "Persistence", "Record", "RestrictedPython", "ZODB", "Zope2 (>=4.0a5)", "setuptools", "six", "zExceptions", "zope.deferredimport", "zope.dottedname", "zope.globalrequest", "zope.interface", "zope.schema", "zope.testing" ], "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "summary": "Zope's indexing and search solution.", "version": "5.0.1" }, "last_serial": 5410356, "releases": { "2.13.0": [ { "comment_text": "", "digests": { "md5": "e0a069309bb0b6f0949fe1acde448109", "sha256": "3e24be13507747739042b5de89004430aaa7b5844ffca186b864998bdb7bf8a2" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.0.zip", "has_sig": false, "md5_digest": "e0a069309bb0b6f0949fe1acde448109", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 143635, "upload_time": "2010-12-25T19:32:34", "url": "https://files.pythonhosted.org/packages/d0/82/4d65c457f63b044b29e2d51dcd9c979dc7c402c428409acce080039a9b19/Products.ZCatalog-2.13.0.zip" } ], "2.13.1": [ { "comment_text": "", "digests": { "md5": "2e9dca1e6a10ba43d6aa276a7b191666", "sha256": "7598bb6efb639e05839f51100fa0ffb9fd350ec95ed9d4220e9d91bc01a57fe7" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.1.zip", "has_sig": false, "md5_digest": "2e9dca1e6a10ba43d6aa276a7b191666", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 144355, "upload_time": "2010-12-25T20:42:01", "url": "https://files.pythonhosted.org/packages/7b/66/c4e3a48971fc2c453bbe162dd88a914fe60a05e4b5848368b98e765c2bab/Products.ZCatalog-2.13.1.zip" } ], "2.13.10": [ { "comment_text": "", "digests": { "md5": "8dc4a256adc5797a517277eb9012b08e", "sha256": "f70b9afcce786b167b6d0a9f1a23e97de8bae7b619b0bafd1d82cdf16a8d309c" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.10.zip", "has_sig": false, "md5_digest": "8dc4a256adc5797a517277eb9012b08e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 155171, "upload_time": "2011-04-21T20:08:59", "url": "https://files.pythonhosted.org/packages/98/cc/36326147ec3703cfd23dc753a28037780290f16ce4501039dfb615bb7a75/Products.ZCatalog-2.13.10.zip" } ], "2.13.11": [ { "comment_text": "", "digests": { "md5": "7ca1aabb3711d2945a459033c1c1ecf9", "sha256": "650f93319657fdc8e92f186521f4163276ad0c1b076baa508b6f871f3fef9700" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.11.zip", "has_sig": false, "md5_digest": "7ca1aabb3711d2945a459033c1c1ecf9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 155373, "upload_time": "2011-05-02T11:08:05", "url": "https://files.pythonhosted.org/packages/0f/f9/8b3107295a8408389e0d4a328c73a1cd70d7d252abee56f4eea1c7ef86f5/Products.ZCatalog-2.13.11.zip" } ], "2.13.12": [ { "comment_text": "", "digests": { "md5": "d530ea46a9e014a603b107480956c2d3", "sha256": "e4062f0fba7e930286e3cf3ce87c29899033491575e2e80e5134092d715105b8" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.12.zip", "has_sig": false, "md5_digest": "d530ea46a9e014a603b107480956c2d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 155917, "upload_time": "2011-05-02T14:09:59", "url": "https://files.pythonhosted.org/packages/dc/b3/76aa906239723412c4b6274de0916400541ce734bf03763c25e6f7d536e9/Products.ZCatalog-2.13.12.zip" } ], "2.13.13": [ { "comment_text": "", "digests": { "md5": "cfc202237d8bf084047b50e11f3a4dc7", "sha256": "15cb01533e51bcc7701d8ef06631782681c7513fab2dca085539ad90addfc3be" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.13.zip", "has_sig": false, "md5_digest": "cfc202237d8bf084047b50e11f3a4dc7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 156127, "upload_time": "2011-05-04T10:46:47", "url": "https://files.pythonhosted.org/packages/eb/b5/48d5f498d378679696214f582fdf22498b7bd3280df533af86605b4ea4cf/Products.ZCatalog-2.13.13.zip" } ], "2.13.14": [ { "comment_text": "", "digests": { "md5": "409741ee8c714a46519638b3dc587971", "sha256": "09c3fd01a546828b0167073e6db68d1d8e144e0d3615829f10135b03495e5397" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.14.zip", "has_sig": false, "md5_digest": "409741ee8c714a46519638b3dc587971", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 158495, "upload_time": "2011-05-19T10:20:46", "url": "https://files.pythonhosted.org/packages/c9/ab/0d5da2202b98594fdd6e6c732b7aafe73f1a7b7340973018f9c25c25cb2b/Products.ZCatalog-2.13.14.zip" } ], "2.13.15": [ { "comment_text": "", "digests": { "md5": "0f862f56256945d3d38b6b7657d3f43f", "sha256": "61d31c08f60fcf73ec0412e34bd89eec6c876d559290c57ae9d4652de52de8c7" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.15.zip", "has_sig": false, "md5_digest": "0f862f56256945d3d38b6b7657d3f43f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 158668, "upload_time": "2011-06-30T17:17:26", "url": "https://files.pythonhosted.org/packages/c7/03/73aed02b8f7717ac7778d8809b8bc6dbb0adeae0c7cad7ceec54cff45879/Products.ZCatalog-2.13.15.zip" } ], "2.13.16": [ { "comment_text": "", "digests": { "md5": "e7e5431f36fd5ed74a49b7085320b383", "sha256": "96df6487a7c0836861945c7a17ba111835214784024e748fdfcb02235ad16232" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.16.zip", "has_sig": false, "md5_digest": "e7e5431f36fd5ed74a49b7085320b383", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 159178, "upload_time": "2011-07-24T19:37:27", "url": "https://files.pythonhosted.org/packages/73/bc/ec5c8e5edb7e54221d1a1e247dca223ab8557b6f1b2631f02a72ce89b517/Products.ZCatalog-2.13.16.zip" } ], "2.13.17": [ { "comment_text": "", "digests": { "md5": "e30907d1e4c0e26a35616afea79eccac", "sha256": "9cc3c173718ae8f3ec6c172059ae6de55d06f3013038cec5554daf9cafba52c7" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.17.zip", "has_sig": false, "md5_digest": "e30907d1e4c0e26a35616afea79eccac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 159364, "upload_time": "2011-07-29T10:52:58", "url": "https://files.pythonhosted.org/packages/d3/52/9d267264f77dad4e0c43fc04fb75581b0be823ded8a31ac444771392d86a/Products.ZCatalog-2.13.17.zip" } ], "2.13.18": [ { "comment_text": "", "digests": { "md5": "1a8d6e7d44856cbe762c8e76a0be0492", "sha256": "1d595278aa8e651f3f24265f0c7e1ede0ec4b6703911bcf55b98e0af62a65fe6" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.18.zip", "has_sig": false, "md5_digest": "1a8d6e7d44856cbe762c8e76a0be0492", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 159648, "upload_time": "2011-07-29T11:40:34", "url": "https://files.pythonhosted.org/packages/8f/40/ea3eae81742ff775f4c7902eccdbd2b5d3ffe2098128b2f78c069ac90225/Products.ZCatalog-2.13.18.zip" } ], "2.13.19": [ { "comment_text": "", "digests": { "md5": "1ecf60b7f929fba62709bdeee8a6954a", "sha256": "0cb30bddf48a62692768fc54f14d6d3fedddde0611df9e71bf6532641bf4ab53" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.19.zip", "has_sig": false, "md5_digest": "1ecf60b7f929fba62709bdeee8a6954a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 159720, "upload_time": "2011-08-20T18:35:16", "url": "https://files.pythonhosted.org/packages/17/97/f8f1cf47c4e6590ac4a77ce15d418cc6141b391b42847f5316fb646b4585/Products.ZCatalog-2.13.19.zip" } ], "2.13.2": [ { "comment_text": "", "digests": { "md5": "143d5d9384f302748f1eb91bdf37a93e", "sha256": "c2eb190eb7f808fbe826f4c65e1fbf9535a47473922579958daaadebd60692fb" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.2.zip", "has_sig": false, "md5_digest": "143d5d9384f302748f1eb91bdf37a93e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 145293, "upload_time": "2010-12-31T18:21:43", "url": "https://files.pythonhosted.org/packages/e6/1f/eab23df76002ad38866ff8709abe867c2d114aa4d938026bf1c3ef37f488/Products.ZCatalog-2.13.2.zip" } ], "2.13.20": [ { "comment_text": "", "digests": { "md5": "2e7d70d22dccd1977303cace19885aa3", "sha256": "25e83abce950ae1fe8868c1ac9df4074d7b2cac9b99ca3fa407e18d8d7479df8" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.20.zip", "has_sig": false, "md5_digest": "2e7d70d22dccd1977303cace19885aa3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 159958, "upload_time": "2011-08-23T10:49:09", "url": "https://files.pythonhosted.org/packages/60/10/e99813caa906a96c2590d91d7317e9ebe7361f2c246d62716afdd5eace8c/Products.ZCatalog-2.13.20.zip" } ], "2.13.21": [ { "comment_text": "", "digests": { "md5": "53e5d7307e5e2bacfb45d5e8a2cc6c0d", "sha256": "5a736d2a0d34436feace450a519f1627d3d537899963219d6048c0c4b0170519" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.21.zip", "has_sig": false, "md5_digest": "53e5d7307e5e2bacfb45d5e8a2cc6c0d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 160926, "upload_time": "2011-10-20T16:45:57", "url": "https://files.pythonhosted.org/packages/cc/1c/08259992d45f42f564cd20eb52d8b6d4912aac0c3ad75444308f429257c8/Products.ZCatalog-2.13.21.zip" } ], "2.13.22": [ { "comment_text": "", "digests": { "md5": "a0463dd267982eb89b15a7389e4ea79b", "sha256": "37efc3bb6bc189bec6c62f72a7895070e144a53382cac8d482c445836d50fe9c" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.22.zip", "has_sig": false, "md5_digest": "a0463dd267982eb89b15a7389e4ea79b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 161652, "upload_time": "2011-11-17T13:23:28", "url": "https://files.pythonhosted.org/packages/10/36/992f04eebb3d1c935ee2db8e6d3ff84b8d40f208aa133c0353a5fdaacd3e/Products.ZCatalog-2.13.22.zip" } ], "2.13.23": [ { "comment_text": "", "digests": { "md5": "d425171516dfc70e543a4e2b852301cb", "sha256": "01fe5b17e3135e0d5524c26874c739431943d04ee604dda302293fdb3ee9a84e" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.23.zip", "has_sig": false, "md5_digest": "d425171516dfc70e543a4e2b852301cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 160011, "upload_time": "2012-04-26T02:42:32", "url": "https://files.pythonhosted.org/packages/81/5f/092c0d380b9a2dc4dee7d5315f83c24867f832ae603e6f818f891df2baed/Products.ZCatalog-2.13.23.zip" } ], "2.13.24": [ { "comment_text": "", "digests": { "md5": "c77b94c616e37e5ad73239560d8f4fc9", "sha256": "8df4dc697664d396fea369c9dabbf084b740d1118c20ec5732f419f89f7d023b" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.24.zip", "has_sig": true, "md5_digest": "c77b94c616e37e5ad73239560d8f4fc9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 160367, "upload_time": "2013-10-15T09:41:13", "url": "https://files.pythonhosted.org/packages/e5/0b/e1a0706774df91385ad7a82a02a694a75d50702108546e630a34ea2c4b6e/Products.ZCatalog-2.13.24.zip" } ], "2.13.25": [ { "comment_text": "", "digests": { "md5": "ef0b04a5ba97ad41d341dfd89d821c6a", "sha256": "6bd1c847ab8dce4a73448c99163ee2bd1921d7096fafa9fa6bcb16d1df6627e8" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.25.zip", "has_sig": true, "md5_digest": "ef0b04a5ba97ad41d341dfd89d821c6a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 160738, "upload_time": "2013-10-15T20:03:43", "url": "https://files.pythonhosted.org/packages/d4/93/3ad8bf51e22de00f4e63e83621baa4a50e2ca330b025db3f0f3eacac9af9/Products.ZCatalog-2.13.25.zip" } ], "2.13.26": [ { "comment_text": "", "digests": { "md5": "ec660f659fc5e3ca14fd391f0a08e29e", "sha256": "cb1b1fe1824a83f26941a4f0b0816efca4a56883f3654ac640bc78ed9926f736" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.26.zip", "has_sig": true, "md5_digest": "ec660f659fc5e3ca14fd391f0a08e29e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 161105, "upload_time": "2013-10-19T09:21:18", "url": "https://files.pythonhosted.org/packages/95/2f/5433b32d6d889186eb4cb9663a279a97c6c44fc5fc6c7e5dde9b772ac5fe/Products.ZCatalog-2.13.26.zip" } ], "2.13.27": [ { "comment_text": "", "digests": { "md5": "49cad3f1c408973cc9a1430acc9e1432", "sha256": "4cf1d46028cc1b1bdfb91805bfb0ed635ac447713b7e567f3052f32f0d17dd65" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.27.zip", "has_sig": true, "md5_digest": "49cad3f1c408973cc9a1430acc9e1432", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 161547, "upload_time": "2014-02-19T12:48:51", "url": "https://files.pythonhosted.org/packages/b3/ec/98896b4f605aecf30ada3f569a3c5220b82bade5f68c1abee287841a347b/Products.ZCatalog-2.13.27.zip" } ], "2.13.28": [ { "comment_text": "", "digests": { "md5": "a203597e4fc8abacb8d8f0c27d7d5ee3", "sha256": "4b00d470aa950931898b96f3c669a2b3608c6d08432d564e8e491a1afe2de4a8" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.28.tar.gz", "has_sig": true, "md5_digest": "a203597e4fc8abacb8d8f0c27d7d5ee3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 103126, "upload_time": "2017-10-10T09:57:34", "url": "https://files.pythonhosted.org/packages/9e/4f/b6dbbbf7a030ba452f770cd7e3685db3ac607a10b5de90168d7435c38082/Products.ZCatalog-2.13.28.tar.gz" } ], "2.13.29": [ { "comment_text": "", "digests": { "md5": "77a5d7827e74f5df195db0b941196ec7", "sha256": "9c527b6222f80dfafd03abcabb9e7534e749c0c744c03d1fc9adae36b8dddc6f" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.29.tar.gz", "has_sig": false, "md5_digest": "77a5d7827e74f5df195db0b941196ec7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 105400, "upload_time": "2017-10-13T15:21:52", "url": "https://files.pythonhosted.org/packages/a1/b4/48f936337a3f835fbe6f40306d12a95e54a8509c476824f7b083dfd60880/Products.ZCatalog-2.13.29.tar.gz" } ], "2.13.3": [ { "comment_text": "", "digests": { "md5": "acdc38998c1d726d8033327f94d42025", "sha256": "73644d28022bb1337b44214cbee5c6425666625ebd19075577836942a8af4453" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.3.zip", "has_sig": false, "md5_digest": "acdc38998c1d726d8033327f94d42025", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 145453, "upload_time": "2011-01-01T15:07:16", "url": "https://files.pythonhosted.org/packages/00/a7/c8b2ffe054522930f54c2a43846e345a7a91d8c5f054f181f70f5bc3b31f/Products.ZCatalog-2.13.3.zip" } ], "2.13.30": [ { "comment_text": "", "digests": { "md5": "e9e25352101de1f2c79d52111b6df066", "sha256": "c28678cf8cd87d7432372e2ef3cd43071ecd34998ec193bbb3aade611fa76438" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.30.tar.gz", "has_sig": false, "md5_digest": "e9e25352101de1f2c79d52111b6df066", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 105107, "upload_time": "2019-01-29T12:50:09", "url": "https://files.pythonhosted.org/packages/45/3c/83a2974f071717b59aacb3b8d91e4c1f2bdcc5c2d6abce74c202611a912a/Products.ZCatalog-2.13.30.tar.gz" } ], "2.13.4": [ { "comment_text": "", "digests": { "md5": "9f6029fa27823d28cbb68a6799318478", "sha256": "b887845de5e7369d90120ef2297117ac5af6eff61835a11f8620eee6abfb17b6" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.4.zip", "has_sig": false, "md5_digest": "9f6029fa27823d28cbb68a6799318478", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 152025, "upload_time": "2011-02-05T10:51:36", "url": "https://files.pythonhosted.org/packages/89/00/adbb2ede3e66ee9dd76db15b1b9866cfdcd2d566a27b3627b2751e406edf/Products.ZCatalog-2.13.4.zip" } ], "2.13.5": [ { "comment_text": "", "digests": { "md5": "7db6485d4d5fa30e7a82631c8ba7543f", "sha256": "506d92cf97870067caa555132ebb62c97061c1c16910c56be9bf59ff4ac961d0" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.5.zip", "has_sig": false, "md5_digest": "7db6485d4d5fa30e7a82631c8ba7543f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 152129, "upload_time": "2011-02-05T11:08:48", "url": "https://files.pythonhosted.org/packages/36/40/534203451207386c65405fea4c49562aa0211078f0c3a6f7f8b25531410e/Products.ZCatalog-2.13.5.zip" } ], "2.13.6": [ { "comment_text": "", "digests": { "md5": "3e8f4f8d753648584878365ad220db49", "sha256": "b58fa2d95fb34e700ad9f75feb5f6cdda3202d169fee543a6e1541fcbae95b82" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.6.zip", "has_sig": false, "md5_digest": "3e8f4f8d753648584878365ad220db49", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 152363, "upload_time": "2011-02-10T21:11:12", "url": "https://files.pythonhosted.org/packages/49/26/d793d518ca9b85843c72aa6be31aa948ea81163db3733868090848229c59/Products.ZCatalog-2.13.6.zip" } ], "2.13.7": [ { "comment_text": "", "digests": { "md5": "b819386dbf5433484d49891bdc27ac89", "sha256": "813341016262016460ea5e506bd998d2b81c1bc61b5c34727ed23d336c7dbacf" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.7.zip", "has_sig": false, "md5_digest": "b819386dbf5433484d49891bdc27ac89", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 152541, "upload_time": "2011-02-15T20:13:15", "url": "https://files.pythonhosted.org/packages/1d/08/728c045230f2d6aed7040ed29eadd6516f75857daf6e98a742fb221dd965/Products.ZCatalog-2.13.7.zip" } ], "2.13.8": [ { "comment_text": "", "digests": { "md5": "3e8c809380816ebfa55d40ce708d3d77", "sha256": "c91d5027dc3f81f88c89190c450070dd7298fa635477f825a004ad833bf5f837" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.8.zip", "has_sig": false, "md5_digest": "3e8c809380816ebfa55d40ce708d3d77", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 153036, "upload_time": "2011-04-01T13:04:26", "url": "https://files.pythonhosted.org/packages/53/8b/508360163e2d2c30fb367202c894bedaf8361a4aadb093bb33b599d5a00e/Products.ZCatalog-2.13.8.zip" } ], "2.13.9": [ { "comment_text": "", "digests": { "md5": "701d5a3437e045833bff9ecf4ffed07b", "sha256": "c90352216839ece1a487f5bb362e2c2fc25b61346dc907070f30c1474ec26816" }, "downloads": -1, "filename": "Products.ZCatalog-2.13.9.zip", "has_sig": false, "md5_digest": "701d5a3437e045833bff9ecf4ffed07b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 153985, "upload_time": "2011-04-10T13:40:55", "url": "https://files.pythonhosted.org/packages/ea/54/656c078dd0a5e099c0b547c184acffcba2e030513ffdc625d55588724519/Products.ZCatalog-2.13.9.zip" } ], "3.0": [ { "comment_text": "", "digests": { "md5": "fc46c11e3251a066a7edb7a3112bb0ec", "sha256": "d7e8efda867d2dc32233488e158064eff9ae63f6f83a286e87e20329a77f814d" }, "downloads": -1, "filename": "Products.ZCatalog-3.0.zip", "has_sig": true, "md5_digest": "fc46c11e3251a066a7edb7a3112bb0ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 159564, "upload_time": "2013-02-24T14:07:20", "url": "https://files.pythonhosted.org/packages/84/23/fa8bc86a24b796ae9d3513248256ad1c0c932e02c420b3f3ff2dc9d299bc/Products.ZCatalog-3.0.zip" } ], "3.0.1": [ { "comment_text": "", "digests": { "md5": "6491d825235002c6f2ad4e4ef59de00d", "sha256": "5002b553b0160e27c1c011b09306a3c62edd2dcaf31142242295ec90f93fd5f0" }, "downloads": -1, "filename": "Products.ZCatalog-3.0.1.zip", "has_sig": true, "md5_digest": "6491d825235002c6f2ad4e4ef59de00d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 160360, "upload_time": "2013-10-15T09:45:00", "url": "https://files.pythonhosted.org/packages/74/6d/28e60fa6d18a5e94b8290acb0f93ef5ebe769c78275adc40d86f411267be/Products.ZCatalog-3.0.1.zip" } ], "3.0.2": [ { "comment_text": "", "digests": { "md5": "57a4d3694e654e7ff5064ac3ec390a4a", "sha256": "09bf7381e041e7f21e0e50e3665cd73ee65ae9d6a769087f114b11dc326cc4e9" }, "downloads": -1, "filename": "Products.ZCatalog-3.0.2.zip", "has_sig": true, "md5_digest": "57a4d3694e654e7ff5064ac3ec390a4a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 162551, "upload_time": "2014-03-04T07:00:20", "url": "https://files.pythonhosted.org/packages/4d/d2/bf4f765265818c4ec3f59247c823b6ba10a654ed802498408e9ea38e14eb/Products.ZCatalog-3.0.2.zip" } ], "3.0.3": [ { "comment_text": "", "digests": { "md5": "8d567cafec15a078861dcda21bd2dd9d", "sha256": "9fba2c807467f8f7555429620aaab4641164b5cfe4d47cc6361bb1ddacf7f463" }, "downloads": -1, "filename": "Products.ZCatalog-3.0.3.tar.gz", "has_sig": true, "md5_digest": "8d567cafec15a078861dcda21bd2dd9d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 109333, "upload_time": "2017-10-10T10:00:47", "url": "https://files.pythonhosted.org/packages/b2/4c/b9594e70b208bddf20fbc98d6684d9d4da1ce961c6c5361ad1316fc554a7/Products.ZCatalog-3.0.3.tar.gz" } ], "3.0a1": [ { "comment_text": "", "digests": { "md5": "9e3d43eafb7696aa4bbca0b23e704e0d", "sha256": "7d2fc0e6cbef8b3b83f56399128954e8517521a5dbd28a2b68854f39cf2c8d6a" }, "downloads": -1, "filename": "Products.ZCatalog-3.0a1.zip", "has_sig": false, "md5_digest": "9e3d43eafb7696aa4bbca0b23e704e0d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 158513, "upload_time": "2012-04-22T18:56:00", "url": "https://files.pythonhosted.org/packages/d9/8b/517a6bfc5e4ef5ce517d961e3028a8e5ce701e561b4fffb2aa46646c2bf6/Products.ZCatalog-3.0a1.zip" } ], "3.0a2": [ { "comment_text": "", "digests": { "md5": "74bff4b2082dc205f941b8a0422e343e", "sha256": "f702e026eac261a007b569dd0fcaebe55b186daf50091311ee1298f3c92bde67" }, "downloads": -1, "filename": "Products.ZCatalog-3.0a2.zip", "has_sig": false, "md5_digest": "74bff4b2082dc205f941b8a0422e343e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 158968, "upload_time": "2012-04-26T02:33:40", "url": "https://files.pythonhosted.org/packages/13/3a/c9ff213b6041016551a9e9f16db18391494741d099c69de6d6013a83a68f/Products.ZCatalog-3.0a2.zip" } ], "3.0b1": [ { "comment_text": "", "digests": { "md5": "4af8614f9d8891aa447b02cd1b1d36b8", "sha256": "322f74bca274bb0c1ce0e0065de7f449d2b1fb8f4480ba3e2cf5f943c7df1e6d" }, "downloads": -1, "filename": "Products.ZCatalog-3.0b1.zip", "has_sig": false, "md5_digest": "4af8614f9d8891aa447b02cd1b1d36b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 162786, "upload_time": "2012-07-19T07:09:42", "url": "https://files.pythonhosted.org/packages/4a/66/9191654b0b5c7f50e0ee3c53bd40c6345fb6fc165d0929e3d9a29434d382/Products.ZCatalog-3.0b1.zip" } ], "3.1": [ { "comment_text": "", "digests": { "md5": "e97d14fd581df8c598d9be0338212040", "sha256": "0119368e824de681e2c28fcd1eb02c72244f58bdf7dee3619c101e72b9e93ff0" }, "downloads": -1, "filename": "Products.ZCatalog-3.1.zip", "has_sig": true, "md5_digest": "e97d14fd581df8c598d9be0338212040", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 162850, "upload_time": "2014-11-02T13:45:37", "url": "https://files.pythonhosted.org/packages/78/d0/35de1884b0af49b0e5886292db60240c210f1427d79b8fedee315d647c46/Products.ZCatalog-3.1.zip" } ], "3.1.1": [ { "comment_text": "", "digests": { "md5": "3182dbc65556d7331b75ac6638ed5ed4", "sha256": "eec8434d0d6c75652154fa384b917f61dc996cb4d0a98a233ccdc7189240f3bf" }, "downloads": -1, "filename": "Products.ZCatalog-3.1.1.zip", "has_sig": false, "md5_digest": "3182dbc65556d7331b75ac6638ed5ed4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 164281, "upload_time": "2016-07-17T12:38:16", "url": "https://files.pythonhosted.org/packages/5a/88/5927e259073e5e8220c6a8a07c2d116d714cec28c4dadc97dee311f28b54/Products.ZCatalog-3.1.1.zip" } ], "3.1.2": [ { "comment_text": "", "digests": { "md5": "bdfcd54cc1311925f09b3dc6f41044f4", "sha256": "30db13cef35d61ba0501c244297f54013daa82270a3eb25878ed28eed3bd18d8" }, "downloads": -1, "filename": "Products.ZCatalog-3.1.2.zip", "has_sig": false, "md5_digest": "bdfcd54cc1311925f09b3dc6f41044f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 166671, "upload_time": "2016-07-17T15:34:51", "url": "https://files.pythonhosted.org/packages/fa/26/8386763544688dfba394cb3f2d9b3f9985eea7700aa581fe14703db565c3/Products.ZCatalog-3.1.2.zip" } ], "3.1.3": [ { "comment_text": "", "digests": { "md5": "dafa3a304b6c814bb3399c2ed6f98d1e", "sha256": "786e17f8446fb3c705ad73efd71397985f78a8fba1d466cc30de87afdd118e5f" }, "downloads": -1, "filename": "Products.ZCatalog-3.1.3.tar.gz", "has_sig": false, "md5_digest": "dafa3a304b6c814bb3399c2ed6f98d1e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 110528, "upload_time": "2018-08-09T06:04:06", "url": "https://files.pythonhosted.org/packages/6c/54/18f574ea65834355ff3c772042cef1af80207021a7b34021eeb5d3954104/Products.ZCatalog-3.1.3.tar.gz" } ], "3.2": [ { "comment_text": "", "digests": { "md5": "1ffa504efaedcd1baf450ffd3fed9693", "sha256": "5bd9d58501fd0376fb7ecddaf1404a2cf634d3431c09ed7c5841497a8ff33aa1" }, "downloads": -1, "filename": "Products.ZCatalog-3.2.zip", "has_sig": false, "md5_digest": "1ffa504efaedcd1baf450ffd3fed9693", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 169760, "upload_time": "2016-07-18T15:53:21", "url": "https://files.pythonhosted.org/packages/d4/61/1e3f9945e8b703d3874b95a8f2a57ac0a9bb048be03a213d38eed9df103c/Products.ZCatalog-3.2.zip" } ], "3.2.1": [ { "comment_text": "", "digests": { "md5": "9c99d06b77f927c6a6d366350404ac92", "sha256": "300479bb01fba6ac6efa98a801ebd955f084c3126217bcaa8a41676078464e49" }, "downloads": -1, "filename": "Products.ZCatalog-3.2.1.tar.gz", "has_sig": true, "md5_digest": "9c99d06b77f927c6a6d366350404ac92", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 112980, "upload_time": "2017-10-10T10:02:43", "url": "https://files.pythonhosted.org/packages/02/4a/927636c6ee48f7684cff6a0e36e86d26075c4ff0606495963126820e6c31/Products.ZCatalog-3.2.1.tar.gz" } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "bf17a2bcab2908c72f006149f26855d0", "sha256": "63f00acaecfc14b9ea092f071cbe8540753a97572dc4c169d2e766088e3f015d" }, "downloads": -1, "filename": "Products.ZCatalog-4.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bf17a2bcab2908c72f006149f26855d0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 227340, "upload_time": "2017-05-28T20:22:07", "url": "https://files.pythonhosted.org/packages/6f/af/e9eacd7d0565b5fa32e65068b7a114892134007d289f4b4eb85cc5cb2e8e/Products.ZCatalog-4.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7833c0ed71cc33efe205b53716d83047", "sha256": "55861b19e53ec11402bfae2ee95ac2281c7741304ace7f848195b3ad96475349" }, "downloads": -1, "filename": "Products.ZCatalog-4.0.0.tar.gz", "has_sig": false, "md5_digest": "7833c0ed71cc33efe205b53716d83047", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 159390, "upload_time": "2017-05-23T07:01:24", "url": "https://files.pythonhosted.org/packages/08/77/6d829001afc22cdaa19fe1bc156f03cbc8a48677d6caf1cbafe9300ebf2b/Products.ZCatalog-4.0.0.tar.gz" } ], "4.0.1": [ { "comment_text": "", "digests": { "md5": "ed17fff9f8ae08b3678fca3fb4f2c276", "sha256": "5760b1b41a3e44998707b35e7711de7d17afe9d4958e50c3037890d43cc9fa8c" }, "downloads": -1, "filename": "Products.ZCatalog-4.0.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "ed17fff9f8ae08b3678fca3fb4f2c276", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 227805, "upload_time": "2017-10-10T10:04:56", "url": "https://files.pythonhosted.org/packages/a9/9b/951a7028b1bdaf61f20db163b3ffef11207a40cf0eafb41ffaaa86497f52/Products.ZCatalog-4.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "af6603f07aa08d9c8a4ca3a167e1ae53", "sha256": "e51ab945a03365678454b150caa1ac56a03af36f20728ace0da642df51971c42" }, "downloads": -1, "filename": "Products.ZCatalog-4.0.1.tar.gz", "has_sig": true, "md5_digest": "af6603f07aa08d9c8a4ca3a167e1ae53", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 158216, "upload_time": "2017-10-10T10:04:43", "url": "https://files.pythonhosted.org/packages/b2/f5/db5675a943cfc76d3fbc6365780631518b502c661277ff895107550e9f69/Products.ZCatalog-4.0.1.tar.gz" } ], "4.0a1": [ { "comment_text": "", "digests": { "md5": "0ea93c9a05146203767aa2dc6f68912a", "sha256": "a4a33afa10718d88582de5835972668ab5ebeec2029c05968a6f2b5a4b098e0f" }, "downloads": -1, "filename": "Products.ZCatalog-4.0a1.zip", "has_sig": false, "md5_digest": "0ea93c9a05146203767aa2dc6f68912a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 166883, "upload_time": "2016-07-22T20:32:34", "url": "https://files.pythonhosted.org/packages/83/f8/2d51d1d007c755b8545da9047f748f99f1a46a5a82e0e410de76fd3cd3dd/Products.ZCatalog-4.0a1.zip" } ], "4.0a2": [ { "comment_text": "", "digests": { "md5": "3260c531da5483e61a33fd43b3201e38", "sha256": "d0bfc5499a253b4b5add4d810753d34bfd1b594f669cc0fa45c8dd844c0997c7" }, "downloads": -1, "filename": "Products.ZCatalog-4.0a2.tar.gz", "has_sig": false, "md5_digest": "3260c531da5483e61a33fd43b3201e38", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 157185, "upload_time": "2016-08-28T10:44:13", "url": "https://files.pythonhosted.org/packages/6f/4b/110f08d5c897cc68ffdf1e8e195a4c9298becdb99130423a4eedcacd941b/Products.ZCatalog-4.0a2.tar.gz" } ], "4.0a3": [ { "comment_text": "", "digests": { "md5": "aacee74d08ebaef54c4fb0400fdb3839", "sha256": "afa07eb27773a4ddc628671dd25625a3e2e041fad4c8717c485f6e7bc853a265" }, "downloads": -1, "filename": "Products.ZCatalog-4.0a3.tar.gz", "has_sig": false, "md5_digest": "aacee74d08ebaef54c4fb0400fdb3839", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 156516, "upload_time": "2017-02-02T12:04:10", "url": "https://files.pythonhosted.org/packages/4f/1d/6b1165f598ac3963240bbbe361005fa1b966569103c3f75e271ef55dd592/Products.ZCatalog-4.0a3.tar.gz" } ], "4.1": [ { "comment_text": "", "digests": { "md5": "00b0befdf07891844c39291c53862da9", "sha256": "ac923ec3692480d6ad74f834747c79b09ff23e1be4d683e571df476dc1c99288" }, "downloads": -1, "filename": "Products.ZCatalog-4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "00b0befdf07891844c39291c53862da9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 228515, "upload_time": "2018-03-06T07:10:14", "url": "https://files.pythonhosted.org/packages/b0/6a/1f7c9fe729f4a12cd92cc0fe0622b590f127c715802cf42828a5a9849578/Products.ZCatalog-4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "285dba5418260bb14b1538f47b510ac3", "sha256": "661e37a587ed1659e24b77b5286808fec11406e3037f8ab7b20d0b7c1871c5ba" }, "downloads": -1, "filename": "Products.ZCatalog-4.1.tar.gz", "has_sig": false, "md5_digest": "285dba5418260bb14b1538f47b510ac3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 159846, "upload_time": "2018-03-06T07:10:16", "url": "https://files.pythonhosted.org/packages/0b/33/5f0e9373415c4084b4f9f867d92c95b435f714e6cc6267e9b650637942a7/Products.ZCatalog-4.1.tar.gz" } ], "4.1.1": [ { "comment_text": "", "digests": { "md5": "e9fba894288edf9472e369eef0f0f4f4", "sha256": "967f92650bc7695349d5f34ef8793e5114e90663bb1fc2bb64ce0bd0b57abf5a" }, "downloads": -1, "filename": "Products.ZCatalog-4.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e9fba894288edf9472e369eef0f0f4f4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 229073, "upload_time": "2018-07-05T06:26:39", "url": "https://files.pythonhosted.org/packages/dc/f9/992d3c57d73e9c15fc39ac33686940d3fe6b718a74dc87a3f6d9569abe33/Products.ZCatalog-4.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fac03c9e2df0b5be284f325b522e471e", "sha256": "15af4869b512894d487349d290b8e3c8c43f9c5e6212be63ac08ed6657a38fb7" }, "downloads": -1, "filename": "Products.ZCatalog-4.1.1.tar.gz", "has_sig": false, "md5_digest": "fac03c9e2df0b5be284f325b522e471e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 158320, "upload_time": "2018-07-05T06:26:41", "url": "https://files.pythonhosted.org/packages/dc/c9/a7f236484e22e0380723752a6ecd24657d16edab91170507f8dc5d67ead4/Products.ZCatalog-4.1.1.tar.gz" } ], "4.2": [ { "comment_text": "", "digests": { "md5": "b8940cec0bacf237f8cfa92c77e75bd2", "sha256": "59a04ada7fda85b7cffa4a38806a76449aea46fb2cf5637022f39b6454e3e746" }, "downloads": -1, "filename": "Products.ZCatalog-4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b8940cec0bacf237f8cfa92c77e75bd2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 230202, "upload_time": "2018-10-05T11:11:29", "url": "https://files.pythonhosted.org/packages/d8/d8/49bc202712f985fafcfc4a64ea67ad7369c178497de8d60e9f67616775af/Products.ZCatalog-4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a319bbb653eebc253baee8fe398627ac", "sha256": "f4150682b48dfb66c3aeae3e3ac86f45f98713c9e0a14417c02a4225e362b06b" }, "downloads": -1, "filename": "Products.ZCatalog-4.2.tar.gz", "has_sig": false, "md5_digest": "a319bbb653eebc253baee8fe398627ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 159941, "upload_time": "2018-10-05T11:11:31", "url": "https://files.pythonhosted.org/packages/50/ad/a3c211614a8531d43c3d9e5c111dcd2954140e59d772f033ea944cacfb1c/Products.ZCatalog-4.2.tar.gz" } ], "4.3": [ { "comment_text": "", "digests": { "md5": "b8e61dcf5ca59cbe0a18fba0a064d417", "sha256": "c8301bf3e209152540f8f070c9a81f93bd28397261d963e4d7432d5256bb2e36" }, "downloads": -1, "filename": "Products.ZCatalog-4.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b8e61dcf5ca59cbe0a18fba0a064d417", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 230634, "upload_time": "2019-02-08T11:30:32", "url": "https://files.pythonhosted.org/packages/01/67/de270fb0dede1b6a6d868a06f3c6a6c88190cb254694a92a05a1dd69118e/Products.ZCatalog-4.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "12cafda2dd8e1ad0942f0670dd061b78", "sha256": "3bd759800ba6cd27ce580527482fc4cf86235d5f20daffa1a5e5e655345d2423" }, "downloads": -1, "filename": "Products.ZCatalog-4.3.tar.gz", "has_sig": false, "md5_digest": "12cafda2dd8e1ad0942f0670dd061b78", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 160248, "upload_time": "2019-02-08T11:30:34", "url": "https://files.pythonhosted.org/packages/03/1b/e2f4d14101d8a5de02ece731faf7f6b20f08319d7a7ced60c92f892d373f/Products.ZCatalog-4.3.tar.gz" } ], "4.4": [ { "comment_text": "", "digests": { "md5": "4fa3ae382812a8f173791d134411f4df", "sha256": "e72851292386e5b4020858151a7487f9415b80c091580820e7058225b7f12c27" }, "downloads": -1, "filename": "Products.ZCatalog-4.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4fa3ae382812a8f173791d134411f4df", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 230872, "upload_time": "2019-03-08T13:09:22", "url": "https://files.pythonhosted.org/packages/f7/0c/b88a3ef8d1538ec03e12e14649bf18462621b6120f5f509e4b313054a958/Products.ZCatalog-4.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "16e41bfd3f85e841e9384be163406ff7", "sha256": "eabd8c883b20a9e8df144e40f67eaa371326313c6d63d4c733d9044b70a0c744" }, "downloads": -1, "filename": "Products.ZCatalog-4.4.tar.gz", "has_sig": false, "md5_digest": "16e41bfd3f85e841e9384be163406ff7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 161120, "upload_time": "2019-03-08T13:09:24", "url": "https://files.pythonhosted.org/packages/8b/b4/d1d30caaf8514fb78fb032bb5b996b5840c929633332d0156b1293b6dec4/Products.ZCatalog-4.4.tar.gz" } ], "5.0": [ { "comment_text": "", "digests": { "md5": "49ca8df8fb79bd2238964ec53189e1a3", "sha256": "a54175398f0704ae414f2fbbcb9ed05448b041a939b1534748a6bdc607737163" }, "downloads": -1, "filename": "Products.ZCatalog-5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "49ca8df8fb79bd2238964ec53189e1a3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 233665, "upload_time": "2019-05-10T11:52:25", "url": "https://files.pythonhosted.org/packages/d8/c5/8da7e2bd4c83b47092cf53be5b2fc8fcb92746d6181855026af6e7c58857/Products.ZCatalog-5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ead29b4e7d6a6b8c3a298f2f9139ce57", "sha256": "b382a0299334934d377ee14fa04811ac0991532615cd61b98f0647edf1da9f00" }, "downloads": -1, "filename": "Products.ZCatalog-5.0.tar.gz", "has_sig": false, "md5_digest": "ead29b4e7d6a6b8c3a298f2f9139ce57", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 165964, "upload_time": "2019-05-10T11:52:27", "url": "https://files.pythonhosted.org/packages/eb/7d/9969c35d3f8f973af0982504ccd83e4bd8f57b45f67a6f584745d70584ce/Products.ZCatalog-5.0.tar.gz" } ], "5.0.1": [ { "comment_text": "", "digests": { "md5": "46be5ac993da02c0d50a71eac9d5ca90", "sha256": "16a862e8bdc2b15a3b56bd8e010160dc6dab84bebe2e9d46dd8a09564f700014" }, "downloads": -1, "filename": "Products.ZCatalog-5.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "46be5ac993da02c0d50a71eac9d5ca90", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 235641, "upload_time": "2019-06-17T14:10:14", "url": "https://files.pythonhosted.org/packages/22/ba/f65a8449f45c903e2e41291011ed19775c6612ed8afccf079ed5fe17db35/Products.ZCatalog-5.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b12a47ff0d7e250cee07741a970d1811", "sha256": "bf3d516702a7e2191240c9b0354119f603a0ab22e5370646601dd5f9f06b175e" }, "downloads": -1, "filename": "Products.ZCatalog-5.0.1.tar.gz", "has_sig": false, "md5_digest": "b12a47ff0d7e250cee07741a970d1811", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 168324, "upload_time": "2019-06-17T14:10:16", "url": "https://files.pythonhosted.org/packages/c2/bf/3a9ee30e872b81e13d1b6022a8fdba67954ac67a2d9587bdda868c634be3/Products.ZCatalog-5.0.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "46be5ac993da02c0d50a71eac9d5ca90", "sha256": "16a862e8bdc2b15a3b56bd8e010160dc6dab84bebe2e9d46dd8a09564f700014" }, "downloads": -1, "filename": "Products.ZCatalog-5.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "46be5ac993da02c0d50a71eac9d5ca90", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 235641, "upload_time": "2019-06-17T14:10:14", "url": "https://files.pythonhosted.org/packages/22/ba/f65a8449f45c903e2e41291011ed19775c6612ed8afccf079ed5fe17db35/Products.ZCatalog-5.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b12a47ff0d7e250cee07741a970d1811", "sha256": "bf3d516702a7e2191240c9b0354119f603a0ab22e5370646601dd5f9f06b175e" }, "downloads": -1, "filename": "Products.ZCatalog-5.0.1.tar.gz", "has_sig": false, "md5_digest": "b12a47ff0d7e250cee07741a970d1811", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 168324, "upload_time": "2019-06-17T14:10:16", "url": "https://files.pythonhosted.org/packages/c2/bf/3a9ee30e872b81e13d1b6022a8fdba67954ac67a2d9587bdda868c634be3/Products.ZCatalog-5.0.1.tar.gz" } ] }