{
"info": {
"author": "Plone Foundation",
"author_email": "plone-developers@lists.sourceforge.net",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Plone",
"Framework :: Plone :: 5.0",
"Framework :: Plone :: 5.1",
"Framework :: Plone :: 5.2",
"Framework :: Zope2",
"Framework :: Zope :: 4",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7"
],
"description": "\nIntroduction\n------------\n\nThis package tries to factor out and re-use the image scaling code from\nArchetypes_ into a separate package in order to make it user-configurable\nand add support for storing the image data into ZODB blobs_.\n\n .. _Archetypes: http://plone.org/products/archetypes\n .. _blobs: http://plone.org/products/plone.app.blob\n\n\nWarning\n-------\n\nVersion 2.x is for Plone 5 only.\n\n\nInstallation\n------------\n\nThe easiest way to use this package is when working with installations\nbased on `zc.buildout`_. Here you can simply add the package to your \"eggs\"\nand \"zcml\" options, run buildout and restart your `Plone`_ instance.\n\n .. _`zc.buildout`: http://pypi.python.org/pypi/zc.buildout/\n .. _`Plone`: http://www.plone.org/\n\nAlternatively you can use the following configuration file to extend an\nexisting buildout::\n\n [buildout]\n extends = buildout.cfg\n\n [instance]\n eggs += plone.app.imaging\n zcml += plone.app.imaging\n\nAfter that you should be able to \"quick-install\" the package via the\n\"Add-on products\" section of `Plone`_'s configuration panel (\"Site setup\").\n\n\nNew-style image scales\n----------------------\n\n`plone.app.imaging` introduces new ways of using image scales in your\ntemplates. There are several variants you can pick from depending on how\nmuch flexibility/convenience you need:\n\n1. The ``tag`` method generates a complete image tag::\n\n
\n\n While the first call requires the storage to load the image data\n and extract information for scaling, consecutive calls are cheap\n because the metadata is stored for each call signature.\n\n The ``direction`` keyword-argument can be used to specify the\n scaling direction. Additional parameters are rendered as element\n attributes (typically: \"title\" and \"alt\").\n\n2. For tag generation using predefined scale names this would look like::\n\n
\n\n This would use the predefined scale size \"mini\" to determine the desired\n image dimensions, but still allow to pass in extra parameters.\n\n3. The following traversal syntax is a short-cut for tag generation\n for predefined image scales::\n\n
\n\n4. The same syntax may be used for the original image::\n\n
\n\n5. The ``scale`` method returns an image scale object useful for\n explicit tag generation::\n\n
\n\n This would create an up to 64 by 64 pixel scaled down version of the image\n stored in the \"image\" field. It also allows for passing in addition\n parameters support by `plone.scale`_'s ``scaleImage`` function, e.g.\n ``direction`` or ``quality``.\n\n Note that the ``scale`` method loads the actual image data into\n memory on each invocation.\n\n .. _`plone.scale`: http://pypi.python.org/pypi/plone.scale\n\n6. The image scale object also implements a ``tag`` method::\n\n
\n\n However, it's recommended to use the ``tag`` method of the image\n scales view directly because it avoids loading the image into memory.\n\nScaled image direction\n~~~~~~~~~~~~~~~~~~~~~~\n\nThree different scaling options are supported with the ``direction`` parameter.\n\n* ``up`` scaling scales the smallest dimension up to the required size\n and crops the other dimension if needed.\n\n* ``down`` scaling starts by scaling the largest dimension to the required\n size and crops the other dimension if needed.\n\n* ``thumbnail`` scales to the requested dimensions without cropping. The\n resulting image may have a different size than requested. This option\n requires both width and height to be specified. `keep` is accepted as\n an alternative spelling for this option, but its use is deprecated.\n\nScaled image quality\n~~~~~~~~~~~~~~~~~~~~\n\nThe quality of scaled images can be controlled through the \"Imaging\" control\npanel.\n\nThis will only take effect for images that have not been scaled yet. To\nre-scale existing images with an updated quality setting, you'l need to go in\nthe ZMI > ``portal_atct`` > \"Image scales\" tab, and click \"recreate\". This\nmay take a very long time!\n\nChangelog\n=========\n\n2.1.1 (2019-10-09)\n------------------\n\nBug fixes:\n\n- Fix IOError: cannot write mode RGBA as JPEG on ImageField scale\n [avoinea]\n\n\n2.1.0 (2018-10-30)\n------------------\n\nBug fixes:\n\n- Switch to new TestCase using AT after PloneTestcase is now DX.\n [pbauer]\n\n2.0.7 (2018-02-05)\n------------------\n\nBug fixes:\n\n- Imports are Python3 compatible\n [ale-rt]\n\n\n2.0.6 (2016-12-19)\n------------------\n\nBug fixes:\n\n- Add coding headers on python files.\n [gforcada]\n\n- Remove vestigial requirement of plone.app.controlpanel.\n [davisagli]\n\n\n2.0.5 (2016-08-17)\n------------------\n\nBug fixes:\n\n- Use zope.interface decorator.\n [gforcada]\n\n\n2.0.4 (2016-06-07)\n------------------\n\nFixes:\n\n- Fix tests to not scale ``gif`` images, which were converted to ``jpeg`` imaged until ``plone.scale`` version < 2.\n Use ``png`` images for testing instead, which works for all versions of plone.scale.\n [thet]\n\n\n2.0.3 (2016-02-20)\n------------------\n\nFixes:\n\n- Fix test to not check for the concrete WebDAV content type header.\n Needed for Zope 4 compatibility.\n [thet]\n\n\n2.0.2 (2016-01-08)\n------------------\n\nNew:\n\n- Added documentation for what the 'direction' parameter actually\n does. [shadowmint]\n\n\n2.0.1 (2015-11-26)\n------------------\n\nFixes:\n\n- Fixed incompatibilities with five.pt and chameleon (closes `#16`_).\n [rodfersou, maurits]\n\n- Fixed 404 NotFound error when accessing image scales via webdav.\n [maurits]\n\n\n2.0.0 (2015-05-11)\n------------------\n\n- Move control panel to Products.CMFPlone\n [vangheem]\n\n- Remove unused import.\n [gforcada]\n\n- re-adding imaging doctests.\n [tomgross]\n\n\n1.1.2 (2014-10-23)\n------------------\n\n- portet tests to plone.app.testing\n [tomgross]\n\n\n1.1.1 (2014-04-13)\n------------------\n\n- Disable csrf protection when scale is generated and traversed to.\n [vangheem]\n\n\n1.1.0 (2014-02-23)\n------------------\n\n- Cache image scales using the plone.stableResource ruleset\n when they are accessed via UID-based URLs.\n [davisagli]\n\n- Move propertysheet imaging_properties and the corresponding\n utilities to Products.CMFPlone.\n https://github.com/plone/plone.app.contenttypes/issues/82\n [pbauer]\n\n- Generate Progressive JPEG.\n [kroman0]\n\n\n1.0.9 (2013-06-13)\n------------------\n\n- Make getQuality always return an integer.\n\n\n1.0.8 (2013-05-23)\n------------------\n\n- Make the quality of scaled images configurable through the configlet.\n https://dev.plone.org/ticket/13337\n [khink]\n\n\n1.0.7 (2013-03-05)\n------------------\n\n* Avoid hard dependency on ATContentTypes.\n [davisagli]\n\n1.0.6 (2012-04-15)\n------------------\n\n* Avoid loading an image scale object in order to generate a tag. It's\n expensive because it loads the image data into memory. The\n documentation has been updated to reflect that this is the most\n efficient usage of the API.\n\n1.0.5 - 2011-04-03\n------------------\n\n* Fix test now `scale=None` does not raise exception.\n [elro]\n\n1.0.4 - 2011-03-22\n------------------\n\n* Add a tag method to @@images to simplify tagging of full sized images.\n [elro]\n\n* Make scale=None return the original image wrapped as an ImageScaling object.\n [elro]\n\n1.0.3 - 2011-02-14\n------------------\n\n- Avoid breaking on startup if PIL is not present.\n [davisagli]\n\n1.0.2 - 2011-02-10\n------------------\n\n- Add getAvailableSizes and getImageSize to the @@images view.\n [elro]\n\n1.0.1 - 2011-01-03\n------------------\n\n- Protect the control panel with a custom permission,\n \"Plone Site Setup: Imaging\", instead of the generic \"Manage portal\".\n [davisagli]\n\n1.0 - 2010-07-18\n----------------\n\n- Use the standard libraries doctest module.\n [hannosch]\n\n- Update license to GPL version 2 only.\n [hannosch]\n\n1.0b11 - 2010-07-01\n-------------------\n\n- Fix issue with creating scales based on Image objects that are storing their\n data as chained Pdata objects.\n [davisagli]\n\n- Avoid using the deprecated five:implements directive.\n [hannosch]\n\n1.0b10 - 2010-05-01\n-------------------\n\n- Use plone i18n domain instead of plone.app.imaging domain for the\n MessageFactory. This closes http://dev.plone.org/plone/ticket/10478\n [vincentfretin]\n\n- Fix dependency on `plone.scale` to get requirements for the scale storage.\n [witsch]\n\n- Fix logic bug in url traversal code for image scales.\n This fixes http://plone.org/products/plone.app.imaging/issues/1\n [ramonski, witsch]\n\n- Add support for custom scales for \"News Item\" content.\n This refs http://dev.plone.org/plone/ticket/10250\n [pelle, witsch]\n\n- Removed dependency declaration for the unused uuid distribution.\n [hannosch]\n\n- Fix control panel definition so that its icon shows up again.\n [witsch]\n\n\n1.0b9 - 2010-04-10\n------------------\n\n- Add new syntax options for generating image scales based on ideas\n borrowed from `plone.scale`, also improving caching and invalidation.\n [witsch]\n\n- Provide sizes for `plone.namedfile` if it's installed.\n [davisagli]\n\n- Restore possibility to define per-field image scale sizes.\n This refs http://dev.plone.org/plone/ticket/10159\n [huub_bouma, witsch]\n\n\n1.0b8 - 2010-03-06\n------------------\n\n- Convert test setup to use `collective.testcaselayer`.\n [witsch]\n\n- Add monkey-patch for `createScales` in order to fix recreation of scales.\n This refs http://dev.plone.org/plone/ticket/10186\n [witsch]\n\n\n1.0b7 - 2009-12-03\n------------------\n\n- Swallow resizing exceptions if that flag is set on the image field.\n [matthewwilkes]\n\n- Add test to make sure traversal to scales in path expressions still works.\n [davisagli, witsch]\n\n\n1.0b6 - 2009-11-18\n------------------\n\n- Corrected ill-formed msgid that contained a double quote.\n [hannosch]\n\n\n1.0b5 - 2009-11-15\n------------------\n\n- Allow white space within image scale definitions.\n This fixes http://dev.plone.org/plone/ticket/9207\n [amleczko]\n\n\n1.0b4 - 2009-10-29\n------------------\n\n- Refactor default scale handler to make it more reusable for the\n blob-enabled version in `plone.app.blob`\n [witsch]\n\n\n1.0b3 - 2009-08-26\n------------------\n\n- Fix compatibility issue with Plone 4.0.\n [witsch]\n\n- Revert deferral of monkey-patching and traversal adapter registration\n to package installation time.\n [witsch]\n\n\n1.0b2 - 2009-07-08\n------------------\n\n- Register traversal handler locally to avoid problems without the\n corresponding monkey patch in place. Please see the second issue in\n http://plone.org/products/plone.app.blob/issues/19 for more info.\n [witsch]\n\n- Replaced a getUtility with a queryUtility call in getAllowedSizes.\n [hannosch]\n\n\n1.0b1 - 2009-05-14\n------------------\n\n- Add fallback for determining available image sizes to avoid breaking\n sites which haven't installed the package yet.\n [witsch]\n\n\n1.0a2 - 2008-09-22\n------------------\n\n- Fix `getAvailableSizes` to not depend on `sizes` field-attribute.\n [witsch]\n\n\n1.0a1 - 2008-08-12\n------------------\n\n- Initial version\n [witsch]\n\n- Initial package structure.\n [zopeskel]\n\n.. _`#16`: https://github.com/plone/plone.app.imaging/issues/16\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/plone/plone.app.imaging",
"keywords": "images scaling zodb blob plone",
"license": "GPL version 2",
"maintainer": "",
"maintainer_email": "",
"name": "plone.app.imaging",
"package_url": "https://pypi.org/project/plone.app.imaging/",
"platform": "Any",
"project_url": "https://pypi.org/project/plone.app.imaging/",
"project_urls": {
"Homepage": "https://github.com/plone/plone.app.imaging"
},
"release_url": "https://pypi.org/project/plone.app.imaging/2.1.1/",
"requires_dist": [
"setuptools",
"plone.scale[storage]",
"Products.Archetypes",
"z3c.caching",
"five.globalrequest",
"plone.app.testing ; extra == 'test'",
"Products.ATContentTypes ; extra == 'test'"
],
"requires_python": "",
"summary": "User-configurable, blob-aware image scaling for Plone.",
"version": "2.1.1"
},
"last_serial": 5949997,
"releases": {
"1.0": [
{
"comment_text": "",
"digests": {
"md5": "2659de17bc842dd8bb3fa7d1982f4edf",
"sha256": "c941fbea3cc1168700f02f3977df5e8ca2843bf6b9f709b2e443ba2837ce989a"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0.zip",
"has_sig": false,
"md5_digest": "2659de17bc842dd8bb3fa7d1982f4edf",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 50378,
"upload_time": "2010-07-18T14:26:52",
"url": "https://files.pythonhosted.org/packages/39/d3/ae74d0b3203bae726cecdcd9fc50e1fa9c6505c6a87e93dca3bef69bad16/plone.app.imaging-1.0.zip"
}
],
"1.0.1": [
{
"comment_text": "",
"digests": {
"md5": "7624387bf5a71e4798bf73414d5ce4ce",
"sha256": "f14cdd4c1a3a71e68cd03b94c760808611d313b2ab84a20af50bc04371bf6b42"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0.1.zip",
"has_sig": false,
"md5_digest": "7624387bf5a71e4798bf73414d5ce4ce",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 50949,
"upload_time": "2011-01-03T22:14:30",
"url": "https://files.pythonhosted.org/packages/79/3e/ac053c2e6cf663db27034d7493270a0dfaa8ce0c1e65c1d40ab2a834e713/plone.app.imaging-1.0.1.zip"
}
],
"1.0.10": [
{
"comment_text": "",
"digests": {
"md5": "511ed465cef112bac3d074f09810ca80",
"sha256": "5e255a51e02f3d56a4b9f6db4f54d1bd90e011ca75c1406dbf3b6127eebbdb26"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0.10.zip",
"has_sig": false,
"md5_digest": "511ed465cef112bac3d074f09810ca80",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 57145,
"upload_time": "2014-01-28T03:21:51",
"url": "https://files.pythonhosted.org/packages/83/6b/0f44b9e754f4fb5873b185738e7dee993bb7dfb45851aea6a606ec0039fe/plone.app.imaging-1.0.10.zip"
}
],
"1.0.11": [
{
"comment_text": "",
"digests": {
"md5": "39c205f7bac13d8fd456208ace91625d",
"sha256": "c2c482154788ebe3c11d39f7629382a106fb108120a99254b8b7e81757ab27bd"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0.11.zip",
"has_sig": false,
"md5_digest": "39c205f7bac13d8fd456208ace91625d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 57691,
"upload_time": "2014-10-23T01:51:33",
"url": "https://files.pythonhosted.org/packages/8d/34/79fe66f263f322d21ef6a6b68f7cfb0db5d54fbf745c981d77a55f9f2fd2/plone.app.imaging-1.0.11.zip"
}
],
"1.0.12": [
{
"comment_text": "",
"digests": {
"md5": "70071da1daf0d34f1d922724cdfa5af4",
"sha256": "58de7d0dce438a65509008d70276a9c8bc0e4e2f3ca1ce6120520888cc62eba6"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0.12.tar.gz",
"has_sig": false,
"md5_digest": "70071da1daf0d34f1d922724cdfa5af4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 39775,
"upload_time": "2015-11-26T00:07:37",
"url": "https://files.pythonhosted.org/packages/c4/c2/d568d0266cedaa034d70d0de214307bb0080d43929dd1a5eb88a2bc20463/plone.app.imaging-1.0.12.tar.gz"
}
],
"1.0.13": [
{
"comment_text": "",
"digests": {
"md5": "2e108f147d3e5b9fe27fba836f8f6cb4",
"sha256": "90d8325af1a1806817957fb0ca8324de4b66dd88fd24c3b3173533416c1721fc"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0.13.zip",
"has_sig": false,
"md5_digest": "2e108f147d3e5b9fe27fba836f8f6cb4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 59597,
"upload_time": "2016-02-24T12:26:38",
"url": "https://files.pythonhosted.org/packages/33/05/93ef62745ab9d89ee04803d9c9a1b286ce1f4afaa35c60c2e977034a3c26/plone.app.imaging-1.0.13.zip"
}
],
"1.0.14": [
{
"comment_text": "",
"digests": {
"md5": "014ff4fc5e6ef5317631931d8da522ba",
"sha256": "06ef0fa38b30b163e917dc42f491739c6ea8eb2eccd17e9bcfbe9955ddba4002"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0.14-py2-none-any.whl",
"has_sig": false,
"md5_digest": "014ff4fc5e6ef5317631931d8da522ba",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 37382,
"upload_time": "2019-10-09T12:34:45",
"url": "https://files.pythonhosted.org/packages/19/6c/8d5bc9fe3aa99011b5ec22afb47f54f1544f7c3ffaa3444068b311797a6f/plone.app.imaging-1.0.14-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "0d227f3abf113640b25fe35d5ea72ceb",
"sha256": "5f701c945ab361fa768cdd64c733dc3607cfd3bde8dc33a851873e7f8bad6a23"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0.14.tar.gz",
"has_sig": false,
"md5_digest": "0d227f3abf113640b25fe35d5ea72ceb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 40363,
"upload_time": "2019-10-09T12:34:47",
"url": "https://files.pythonhosted.org/packages/ba/0c/f8c0078eb70a7420e08953457ec2c2e46551daedadf219e8a7c118d171d1/plone.app.imaging-1.0.14.tar.gz"
}
],
"1.0.2": [
{
"comment_text": "",
"digests": {
"md5": "7f0bb4057d67790c7cd22952064932ef",
"sha256": "cb35f9ca2565ffdac2807e19e3b507ddc4334b0084d0d702950af2d0f935072f"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0.2.zip",
"has_sig": false,
"md5_digest": "7f0bb4057d67790c7cd22952064932ef",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 51220,
"upload_time": "2011-02-10T17:01:52",
"url": "https://files.pythonhosted.org/packages/21/aa/e030c78fd9c33f6925d1613bff548e21f9b9f08725866c652be8cf1c2e76/plone.app.imaging-1.0.2.zip"
}
],
"1.0.3": [
{
"comment_text": "",
"digests": {
"md5": "7d58b46acf76cc799be4b5036befd1de",
"sha256": "66545655b28f4405cfb0ab35e87194e3161633f556e66fb01bec633e927d98c3"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0.3.zip",
"has_sig": false,
"md5_digest": "7d58b46acf76cc799be4b5036befd1de",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 51401,
"upload_time": "2011-02-14T14:52:16",
"url": "https://files.pythonhosted.org/packages/6f/66/b0c3f8e7cb90c97b5d233e3de40e6a435ac2d831bb8cc28860586641ef20/plone.app.imaging-1.0.3.zip"
}
],
"1.0.4": [
{
"comment_text": "",
"digests": {
"md5": "879d25a116652e09ccde98a36da53efb",
"sha256": "04545213ebe38a7e761f55d147fb1aea9a7f4b13e882752209392041c3cede86"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0.4.zip",
"has_sig": false,
"md5_digest": "879d25a116652e09ccde98a36da53efb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 51826,
"upload_time": "2011-03-22T20:23:22",
"url": "https://files.pythonhosted.org/packages/c5/5a/912bd1e82fbea1cba8a4806995a8ce345cd13846d305eb4fa5182f52b9d2/plone.app.imaging-1.0.4.zip"
}
],
"1.0.5": [
{
"comment_text": "",
"digests": {
"md5": "3b2f7597029a0f39483209ea48c52788",
"sha256": "f10faaa7dde7d41a090cc779b0588ae3f62383bc03b137ea3a73aa6c98e6d06f"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0.5.zip",
"has_sig": false,
"md5_digest": "3b2f7597029a0f39483209ea48c52788",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 51949,
"upload_time": "2011-04-03T19:55:32",
"url": "https://files.pythonhosted.org/packages/bd/cd/442e060c123a6a82675c810844a97ec173cc6f4ab212c7827dbd19e9337d/plone.app.imaging-1.0.5.zip"
}
],
"1.0.6": [
{
"comment_text": "",
"digests": {
"md5": "8d494cd69b3f6be7fcb9e21c20277765",
"sha256": "7e35e9f133d312d8f38317868a4da546b909518b4741bb84f4a013cf1a51eb42"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0.6.zip",
"has_sig": false,
"md5_digest": "8d494cd69b3f6be7fcb9e21c20277765",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 54147,
"upload_time": "2012-04-15T20:06:51",
"url": "https://files.pythonhosted.org/packages/b2/b0/582821ebc08545fcd7e8563d63456f247853b5c4a9ee2f74f9f448be00d4/plone.app.imaging-1.0.6.zip"
}
],
"1.0.7": [
{
"comment_text": "",
"digests": {
"md5": "27c24477bdcbcebeba6cd83419a57aa6",
"sha256": "b5ce253def77b63d9e5626a0ef776745dc998bd5d724d57e6cbba028a2c17623"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0.7.zip",
"has_sig": false,
"md5_digest": "27c24477bdcbcebeba6cd83419a57aa6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 54519,
"upload_time": "2013-03-05T19:32:41",
"url": "https://files.pythonhosted.org/packages/f9/dc/60a7adc3791dbbbe6bb5ea1f7b00cb88282cf7a121fe9132dad536ea1bad/plone.app.imaging-1.0.7.zip"
}
],
"1.0.8": [
{
"comment_text": "",
"digests": {
"md5": "ed4bb235dad25c1beb487991fe4c69a3",
"sha256": "ab5ed805e2bc6d2d4be040fef664eee327a079c701354c6083c2123f42e6bf10"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0.8.zip",
"has_sig": false,
"md5_digest": "ed4bb235dad25c1beb487991fe4c69a3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 56759,
"upload_time": "2013-05-24T01:31:17",
"url": "https://files.pythonhosted.org/packages/24/b9/c43bc567949ea3029223ff57ee558bb27ca26e81828ab30843fc2b9fb6f2/plone.app.imaging-1.0.8.zip"
}
],
"1.0.9": [
{
"comment_text": "",
"digests": {
"md5": "e680c5540021a70266343b935ac732a7",
"sha256": "eabed9f3120a77ed10ca11c3e7dcb04fe3f373641b7689d952f3275add24bd99"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0.9.zip",
"has_sig": false,
"md5_digest": "e680c5540021a70266343b935ac732a7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 56907,
"upload_time": "2013-06-14T02:01:35",
"url": "https://files.pythonhosted.org/packages/69/ca/5f30d9d7d1261283e706db8247d2e628be73adecfa5ffabda44d04623145/plone.app.imaging-1.0.9.zip"
}
],
"1.0a1": [
{
"comment_text": "",
"digests": {
"md5": "7396fd27b2a98fb2c5bb04bc41ae8732",
"sha256": "59b02008a58820933d23dbea39d5c1049b67a1e7b918a6e2a3e6bc1b12a5e7bb"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0a1-py2.4.egg",
"has_sig": true,
"md5_digest": "7396fd27b2a98fb2c5bb04bc41ae8732",
"packagetype": "bdist_egg",
"python_version": "2.4",
"requires_python": null,
"size": 32220,
"upload_time": "2008-08-12T22:34:02",
"url": "https://files.pythonhosted.org/packages/ca/aa/27929054f4faae05ded41db85d3d20f59dcab312f94fbe018e6660f53a4d/plone.app.imaging-1.0a1-py2.4.egg"
},
{
"comment_text": "",
"digests": {
"md5": "d46217f5a20e0341274c00a655707ecd",
"sha256": "da3446ada77e033a8bd8c954747aad42fcf798d4e00d38951bfa3a12750a775c"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0a1.tar.gz",
"has_sig": true,
"md5_digest": "d46217f5a20e0341274c00a655707ecd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 16055,
"upload_time": "2008-08-12T22:33:53",
"url": "https://files.pythonhosted.org/packages/b0/64/ec70288a20ad29756e962b2a5df6b4ca259b6b73d08ec7f7e056938ac371/plone.app.imaging-1.0a1.tar.gz"
}
],
"1.0a2": [
{
"comment_text": "",
"digests": {
"md5": "2dcc10929ad9afc03c8453c9595c6bea",
"sha256": "91bee692643e6932f1faf9c54ea93c577d0be18b4ed3c6157d263e9e9cdc7a64"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0a2.tar.gz",
"has_sig": true,
"md5_digest": "2dcc10929ad9afc03c8453c9595c6bea",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 16233,
"upload_time": "2008-09-22T15:50:41",
"url": "https://files.pythonhosted.org/packages/d1/be/c6ad89ec1c56fe35c21d71bb0c70185b524977eb8e154b8e03cdd8c4eb76/plone.app.imaging-1.0a2.tar.gz"
}
],
"1.0b1": [
{
"comment_text": "",
"digests": {
"md5": "324afa0ead4d40992abf5fecaf39ae88",
"sha256": "d62974b8154aa019338410fc53cc05bfb7577c75e608e4647c826b842bef3dfc"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0b1.zip",
"has_sig": true,
"md5_digest": "324afa0ead4d40992abf5fecaf39ae88",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30473,
"upload_time": "2009-05-15T01:00:37",
"url": "https://files.pythonhosted.org/packages/88/5d/7193b1202ba802ae57fcb65c30d1f2f12429b89bc6fa5a7d25cc9886a7f2/plone.app.imaging-1.0b1.zip"
}
],
"1.0b10": [
{
"comment_text": "",
"digests": {
"md5": "a72cf2a3c6ef2d15fdc615ed1c2dc65f",
"sha256": "56c963e907c8959b35b428533d0ae0f6ea7019f9fc0c9758870f6755118a1090"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0b10.zip",
"has_sig": false,
"md5_digest": "a72cf2a3c6ef2d15fdc615ed1c2dc65f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 49985,
"upload_time": "2010-05-01T16:47:34",
"url": "https://files.pythonhosted.org/packages/6c/68/fa648154be83fbafa2de6a499cd2fac3b55dd2a143c712f818ed4a2d1353/plone.app.imaging-1.0b10.zip"
}
],
"1.0b11": [
{
"comment_text": "",
"digests": {
"md5": "ea87c0df685d90e9fab3679cf97d9e3e",
"sha256": "e2ee7b6dc0e1147c76c3c24f40250751caae2ed1c658c6a21ad2fef58f9da56e"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0b11.zip",
"has_sig": false,
"md5_digest": "ea87c0df685d90e9fab3679cf97d9e3e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 50492,
"upload_time": "2010-07-01T19:19:45",
"url": "https://files.pythonhosted.org/packages/8c/f5/2740b4ba9acfb4d88a284965af020fbc7cae5e8969b5d6332c60b07131ae/plone.app.imaging-1.0b11.zip"
}
],
"1.0b2": [
{
"comment_text": "",
"digests": {
"md5": "a22968bc56e9d5cb95479045e64276a3",
"sha256": "c5fcf7bfac6950056b51730bcf94cdc8890f2fc44dc87741740f572753d55f4e"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0b2.zip",
"has_sig": true,
"md5_digest": "a22968bc56e9d5cb95479045e64276a3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31407,
"upload_time": "2009-07-08T17:53:25",
"url": "https://files.pythonhosted.org/packages/ff/2f/04e95d99510c3b08f57095e676ac290302ec2201ec7ec7841d6bd3c9f397/plone.app.imaging-1.0b2.zip"
}
],
"1.0b3": [
{
"comment_text": "",
"digests": {
"md5": "c1372d3c97867cf33681d60a55420137",
"sha256": "370751dfa28aa5edc84a0e20678c5cc676e3f75875e9d19832e0d3aa71682861"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0b3.zip",
"has_sig": true,
"md5_digest": "c1372d3c97867cf33681d60a55420137",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31178,
"upload_time": "2009-08-26T08:24:26",
"url": "https://files.pythonhosted.org/packages/76/bf/07cfcbd9a7595eef468cf787fd04aaa39fdafc411f9c8edc6093c1c34439/plone.app.imaging-1.0b3.zip"
}
],
"1.0b4": [
{
"comment_text": "",
"digests": {
"md5": "c82cffba371d8230f56b246e477f4023",
"sha256": "7f063d189d4d14ce561c435cbae644683a0e5141c256375715f1a99b68948ec2"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0b4.zip",
"has_sig": true,
"md5_digest": "c82cffba371d8230f56b246e477f4023",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 34881,
"upload_time": "2009-10-10T14:46:31",
"url": "https://files.pythonhosted.org/packages/1b/d8/406396eeca54a680cedb9d1da36d370f712a2eae497a6a3b39e2bcbe37b0/plone.app.imaging-1.0b4.zip"
}
],
"1.0b5": [
{
"comment_text": "",
"digests": {
"md5": "efd28567f62e0ec10576b4081933ecf1",
"sha256": "56c87bbd852ddeea835a10ca5e1956a8af365a813f90ebf41fbb93b22f913eaf"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0b5.zip",
"has_sig": true,
"md5_digest": "efd28567f62e0ec10576b4081933ecf1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 40137,
"upload_time": "2009-11-15T03:42:06",
"url": "https://files.pythonhosted.org/packages/51/b5/b59a342f6c3d5ad93d7b94424d8f30cde638ff3174edef05d5ad04e24610/plone.app.imaging-1.0b5.zip"
}
],
"1.0b6": [
{
"comment_text": "",
"digests": {
"md5": "1c4e1d84e84122167e12d53115d6f22e",
"sha256": "0a516258d4def0cbb5e6693290b685d52df898820f81462fd6dbf2838e34d22c"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0b6.zip",
"has_sig": false,
"md5_digest": "1c4e1d84e84122167e12d53115d6f22e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 40180,
"upload_time": "2009-11-18T21:03:32",
"url": "https://files.pythonhosted.org/packages/89/60/0fd200b1fb10d6a3994d454dba0d15cecbaa33d27895713148ce28e9e2e0/plone.app.imaging-1.0b6.zip"
}
],
"1.0b7": [
{
"comment_text": "",
"digests": {
"md5": "e789b0442f47589739302d436727df78",
"sha256": "e70e76187268b8f9da8dd6283477b16c65edae6f513e4996f37647eccfab4ddc"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0b7.zip",
"has_sig": true,
"md5_digest": "e789b0442f47589739302d436727df78",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 40948,
"upload_time": "2009-12-03T01:32:59",
"url": "https://files.pythonhosted.org/packages/2f/37/2a5569196aa2929a21add44a626e2835de65ee3bc319dd50768609d11257/plone.app.imaging-1.0b7.zip"
}
],
"1.0b8": [
{
"comment_text": "",
"digests": {
"md5": "81f8355b028ce96a3725553567c0307d",
"sha256": "b56135d3fa5a1f5c085ae3a0edeb8f92e818a04f2ef67e3ef3a628ec8f987a68"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0b8.zip",
"has_sig": true,
"md5_digest": "81f8355b028ce96a3725553567c0307d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41075,
"upload_time": "2010-03-06T01:01:52",
"url": "https://files.pythonhosted.org/packages/58/9f/50ae118fbf183f30b7efbf4097cdfe0b78940441981e542280952602a9fd/plone.app.imaging-1.0b8.zip"
}
],
"1.0b9": [
{
"comment_text": "",
"digests": {
"md5": "9aa630cccb5fd875e8abfab163828044",
"sha256": "be969df64756d3bf276de6cc4989f9c87269905f428e4a9ab5c3712cb3ae1574"
},
"downloads": -1,
"filename": "plone.app.imaging-1.0b9.zip",
"has_sig": true,
"md5_digest": "9aa630cccb5fd875e8abfab163828044",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 48940,
"upload_time": "2010-04-10T01:52:39",
"url": "https://files.pythonhosted.org/packages/61/70/0b593440334fd15cd993ef468b396a57b3fb7ef9643cfed9483989edf1f0/plone.app.imaging-1.0b9.zip"
}
],
"1.1.0": [
{
"comment_text": "",
"digests": {
"md5": "60a2295dbcd813b22e881053eaeaaec4",
"sha256": "57a323a4f3b9b03bf9202537d792ff70aff40cef057bd6a07a4e8244b0b4dd78"
},
"downloads": -1,
"filename": "plone.app.imaging-1.1.0.zip",
"has_sig": false,
"md5_digest": "60a2295dbcd813b22e881053eaeaaec4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 56984,
"upload_time": "2014-02-23T18:53:48",
"url": "https://files.pythonhosted.org/packages/4a/92/b75209466f539e51fe1ab163a29b6714c71ca79f0c98b0819ec29fd3a65e/plone.app.imaging-1.1.0.zip"
}
],
"1.1.1": [
{
"comment_text": "",
"digests": {
"md5": "0163d72a80d7553ad6073926dae245aa",
"sha256": "6f9dbc84fd05e51766f992872cafc87c1dc63abb214ee3cc1a406cbe061adc9e"
},
"downloads": -1,
"filename": "plone.app.imaging-1.1.1.zip",
"has_sig": false,
"md5_digest": "0163d72a80d7553ad6073926dae245aa",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 57228,
"upload_time": "2014-04-14T01:21:12",
"url": "https://files.pythonhosted.org/packages/b0/91/216fe1895fb6df107ca060c033294133a5e2c1b19dddee57fcf78a805cd9/plone.app.imaging-1.1.1.zip"
}
],
"1.1.2": [
{
"comment_text": "",
"digests": {
"md5": "af7564f8cf86dbc3adc2e9c23dc5c35a",
"sha256": "cf378838a357f05fccfcf0461847072d7f0679b46fea5c10bf74695a0ad18f43"
},
"downloads": -1,
"filename": "plone.app.imaging-1.1.2.zip",
"has_sig": false,
"md5_digest": "af7564f8cf86dbc3adc2e9c23dc5c35a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 55853,
"upload_time": "2014-10-24T01:41:49",
"url": "https://files.pythonhosted.org/packages/b8/6f/24e97b09024756b717bd07e5244fb17d538087a479df802e97db1389c2d5/plone.app.imaging-1.1.2.zip"
}
],
"1.1.3": [
{
"comment_text": "",
"digests": {
"md5": "54fc29589df27c386c839a0a2858d30b",
"sha256": "9d3a8ca070a6f2a8f4ecbb32caf3f3edeed223f31ceb8b88523a4ad0c4eaa43b"
},
"downloads": -1,
"filename": "plone.app.imaging-1.1.3.zip",
"has_sig": false,
"md5_digest": "54fc29589df27c386c839a0a2858d30b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 56600,
"upload_time": "2015-03-13T14:36:02",
"url": "https://files.pythonhosted.org/packages/b3/8e/9ef2a48f22cad5e6047c374b90c23f7705b3025a6cb56288d3f52c31b822/plone.app.imaging-1.1.3.zip"
}
],
"2.0.0": [
{
"comment_text": "",
"digests": {
"md5": "4755daf9565e47692299c2cf17b38f3c",
"sha256": "a483fb13bb64d819150701162676cdcd7e6d5a5a774f5304cf9808404cf94755"
},
"downloads": -1,
"filename": "plone.app.imaging-2.0.0.tar.gz",
"has_sig": false,
"md5_digest": "4755daf9565e47692299c2cf17b38f3c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 34813,
"upload_time": "2015-05-11T13:17:27",
"url": "https://files.pythonhosted.org/packages/0c/68/8284a4543f83a9a75f97229548c6a19c85dd914087293bc30b007a301750/plone.app.imaging-2.0.0.tar.gz"
}
],
"2.0.1": [
{
"comment_text": "",
"digests": {
"md5": "72d411e9f88b6538a2e669901814e647",
"sha256": "2fcf6ae2535771766b2291439fb26af5d8aaa3c04a79f1f170ecc2bad2560692"
},
"downloads": -1,
"filename": "plone.app.imaging-2.0.1.tar.gz",
"has_sig": false,
"md5_digest": "72d411e9f88b6538a2e669901814e647",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 37280,
"upload_time": "2015-11-26T00:08:26",
"url": "https://files.pythonhosted.org/packages/21/f4/80f46694f5d6c359b6fd96909de4f018fae864f7e42cd4346f4f7ed26bd9/plone.app.imaging-2.0.1.tar.gz"
}
],
"2.0.2": [
{
"comment_text": "",
"digests": {
"md5": "83cf2169456dc685d5b0b55186d15abd",
"sha256": "7e492d0133d1aa50f64dde31dbbf9777e74208b0d5a1d77bd894d86a9cb032f1"
},
"downloads": -1,
"filename": "plone.app.imaging-2.0.2.tar.gz",
"has_sig": false,
"md5_digest": "83cf2169456dc685d5b0b55186d15abd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 38146,
"upload_time": "2016-01-08T14:13:13",
"url": "https://files.pythonhosted.org/packages/e2/5d/6a022ec71fde7f65643a7f464ab6a83c3a980961342b15f2a60ed542f7c3/plone.app.imaging-2.0.2.tar.gz"
}
],
"2.0.3": [
{
"comment_text": "",
"digests": {
"md5": "20e49858f1e78ee9b74d155fc8c95dfb",
"sha256": "d7b3ba269da5e97d2dc349358b763706f53a0a1e6b803c395bdd73bcf7cb7a90"
},
"downloads": -1,
"filename": "plone.app.imaging-2.0.3.tar.gz",
"has_sig": false,
"md5_digest": "20e49858f1e78ee9b74d155fc8c95dfb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 38318,
"upload_time": "2016-02-20T20:45:13",
"url": "https://files.pythonhosted.org/packages/57/bf/17626af2cc46d4544783db93ea8c48ad5b8e3b4081c2a43d9f3155c1ef80/plone.app.imaging-2.0.3.tar.gz"
}
],
"2.0.4": [
{
"comment_text": "",
"digests": {
"md5": "9a148a944df91ff998a202cd94b87348",
"sha256": "88057b609b6b92a0d752e736e14025b56364d1d68117ad22075aef07de3fba91"
},
"downloads": -1,
"filename": "plone.app.imaging-2.0.4.tar.gz",
"has_sig": false,
"md5_digest": "9a148a944df91ff998a202cd94b87348",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 38911,
"upload_time": "2016-06-07T16:28:45",
"url": "https://files.pythonhosted.org/packages/c3/7b/0973697c0649695ff3dbb40dfe86bcb9f77534ffc3235be041169d5d34c6/plone.app.imaging-2.0.4.tar.gz"
}
],
"2.0.5": [
{
"comment_text": "",
"digests": {
"md5": "b42f0efebc4774e8870f319f36bc548b",
"sha256": "d2d8f6b718ca5f12b56bdb27f72acc135dca458a729fcb841f8cff6e523f8515"
},
"downloads": -1,
"filename": "plone.app.imaging-2.0.5.tar.gz",
"has_sig": false,
"md5_digest": "b42f0efebc4774e8870f319f36bc548b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 39019,
"upload_time": "2016-08-16T22:22:59",
"url": "https://files.pythonhosted.org/packages/a2/e8/852dc144181403cbdf56e3263384240b7b67e9e3220ade7863ce1b0f4257/plone.app.imaging-2.0.5.tar.gz"
}
],
"2.0.6": [
{
"comment_text": "",
"digests": {
"md5": "3592016ad9c29bd1cca3dc4792198baf",
"sha256": "b8fa449518892437d518ec3faad82ea1ca0d4ca08a6971fe99847ae93addd7ce"
},
"downloads": -1,
"filename": "plone.app.imaging-2.0.6.tar.gz",
"has_sig": false,
"md5_digest": "3592016ad9c29bd1cca3dc4792198baf",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 39169,
"upload_time": "2016-12-19T16:57:56",
"url": "https://files.pythonhosted.org/packages/c2/54/fcec07d8e7c4527ab673f394d7af4a13ba53711f927f3eb8c0a4ca20dcce/plone.app.imaging-2.0.6.tar.gz"
}
],
"2.0.7": [
{
"comment_text": "",
"digests": {
"md5": "e4496fbaed7f239953ca9d0f3b647825",
"sha256": "4060fbe3a4ba3b36c0cd82fcd761f03dff98b59426772060bda4f0ac0e54c3f8"
},
"downloads": -1,
"filename": "plone.app.imaging-2.0.7-py2-none-any.whl",
"has_sig": false,
"md5_digest": "e4496fbaed7f239953ca9d0f3b647825",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 40159,
"upload_time": "2018-02-05T00:04:45",
"url": "https://files.pythonhosted.org/packages/e8/b6/36abe6bcdf29e4ce660bca649b4ba78e7cfb63ac34d7f5b36daaa01f005f/plone.app.imaging-2.0.7-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "9ca3399f6c4a00e1309b4fb000147193",
"sha256": "df13340fead03ba94792a85f7a8b99856f83a44b66593f01ba4a21981f8d83c4"
},
"downloads": -1,
"filename": "plone.app.imaging-2.0.7.tar.gz",
"has_sig": false,
"md5_digest": "9ca3399f6c4a00e1309b4fb000147193",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 34713,
"upload_time": "2018-02-05T00:04:46",
"url": "https://files.pythonhosted.org/packages/04/44/2b94fdd2932b69abdc7d0e2a085c1c9ddf698762d2c78cc038bbd0af3751/plone.app.imaging-2.0.7.tar.gz"
}
],
"2.0.8": [
{
"comment_text": "",
"digests": {
"md5": "f000beee4e93f06fd2575645de1cb896",
"sha256": "ea909d8f9e0a6693dd6266f1e0837144853780e182a950759d5264a2b7bed5f1"
},
"downloads": -1,
"filename": "plone.app.imaging-2.0.8-py2-none-any.whl",
"has_sig": false,
"md5_digest": "f000beee4e93f06fd2575645de1cb896",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 34850,
"upload_time": "2019-10-09T14:01:41",
"url": "https://files.pythonhosted.org/packages/8c/77/18a111485feefd78859ce5cbc728ecd13c86562c5928f11c40dcdadfcf27/plone.app.imaging-2.0.8-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "ccc7635ecbc4e9bd7553fd390d34eaa2",
"sha256": "684e7a64163de58290ea245aaad834a8ca1993b9dd477be82b88eadbbc0acab7"
},
"downloads": -1,
"filename": "plone.app.imaging-2.0.8.tar.gz",
"has_sig": false,
"md5_digest": "ccc7635ecbc4e9bd7553fd390d34eaa2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 38113,
"upload_time": "2019-10-09T14:01:43",
"url": "https://files.pythonhosted.org/packages/57/a0/3f9d05b31443d400081f7df989773b89d16a5830a89ececd66e3e4edea63/plone.app.imaging-2.0.8.tar.gz"
}
],
"2.1.0": [
{
"comment_text": "",
"digests": {
"md5": "faca070c3760f145f19945e9c706fc2e",
"sha256": "c4854598e33387830a77df748237ea1828c2b68befa68db2ba65259abdf2fbe3"
},
"downloads": -1,
"filename": "plone.app.imaging-2.1.0-py2-none-any.whl",
"has_sig": false,
"md5_digest": "faca070c3760f145f19945e9c706fc2e",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 40228,
"upload_time": "2018-10-31T03:29:17",
"url": "https://files.pythonhosted.org/packages/12/44/62fbb266670ec5ae3892b460597e031c14b09b6911aaf298a6462d22a4c0/plone.app.imaging-2.1.0-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "89bd8b77b5591e644e73c21e63af96e9",
"sha256": "84b6998f8b4f5aa4759e5382946c88a4ee08def4603607784de481e360ca90db"
},
"downloads": -1,
"filename": "plone.app.imaging-2.1.0.tar.gz",
"has_sig": false,
"md5_digest": "89bd8b77b5591e644e73c21e63af96e9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 37986,
"upload_time": "2018-10-31T03:29:18",
"url": "https://files.pythonhosted.org/packages/0f/33/4995c84b93e9a6ec16fc35a2f8d503b96bbc81cbb06fe4bc75281e5eb7eb/plone.app.imaging-2.1.0.tar.gz"
}
],
"2.1.1": [
{
"comment_text": "",
"digests": {
"md5": "15c7797b732f018d630de85edbbd1409",
"sha256": "03d46d937eedb1668f2538c447d039660d0a9bc12d9be164ce0342ca169ce97f"
},
"downloads": -1,
"filename": "plone.app.imaging-2.1.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "15c7797b732f018d630de85edbbd1409",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 34913,
"upload_time": "2019-10-09T14:07:15",
"url": "https://files.pythonhosted.org/packages/d7/b8/3cfa3ce1a4d9c8fb5c586600afe5d2196a5d65365567689a9323bc1eddec/plone.app.imaging-2.1.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "ebc1aa735441871d49c7adf99752df20",
"sha256": "8873104377df3393dc2e4c0414df0021fa5c32a5c8b5f9d77c54591ca508f941"
},
"downloads": -1,
"filename": "plone.app.imaging-2.1.1.tar.gz",
"has_sig": false,
"md5_digest": "ebc1aa735441871d49c7adf99752df20",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 38224,
"upload_time": "2019-10-09T14:07:18",
"url": "https://files.pythonhosted.org/packages/ac/e6/8bf4389787786e648db2b10c9fc231056b0e30937622f3074fbdf5e7bdbc/plone.app.imaging-2.1.1.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "15c7797b732f018d630de85edbbd1409",
"sha256": "03d46d937eedb1668f2538c447d039660d0a9bc12d9be164ce0342ca169ce97f"
},
"downloads": -1,
"filename": "plone.app.imaging-2.1.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "15c7797b732f018d630de85edbbd1409",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 34913,
"upload_time": "2019-10-09T14:07:15",
"url": "https://files.pythonhosted.org/packages/d7/b8/3cfa3ce1a4d9c8fb5c586600afe5d2196a5d65365567689a9323bc1eddec/plone.app.imaging-2.1.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "ebc1aa735441871d49c7adf99752df20",
"sha256": "8873104377df3393dc2e4c0414df0021fa5c32a5c8b5f9d77c54591ca508f941"
},
"downloads": -1,
"filename": "plone.app.imaging-2.1.1.tar.gz",
"has_sig": false,
"md5_digest": "ebc1aa735441871d49c7adf99752df20",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 38224,
"upload_time": "2019-10-09T14:07:18",
"url": "https://files.pythonhosted.org/packages/ac/e6/8bf4389787786e648db2b10c9fc231056b0e30937622f3074fbdf5e7bdbc/plone.app.imaging-2.1.1.tar.gz"
}
]
}