{ "info": { "author": "European Environment Agency: IDM2 A-Team", "author_email": "eea-edw-a-team-alerts@googlegroups.com", "bugtrack_url": null, "classifiers": [ "Framework :: Plone", "Framework :: Plone :: 4.0", "Framework :: Plone :: 4.1", "Framework :: Plone :: 4.2", "Framework :: Plone :: 4.3", "Framework :: Zope2", "License :: OSI Approved :: GNU General Public License (GPL)", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Zope", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "=============\nEEA Converter\n=============\n.. image:: https://ci.eionet.europa.eu/buildStatus/icon?job=eea/eea.converter/develop\n :target: https://ci.eionet.europa.eu/job/eea/job/eea.converter/job/develop/display/redirect\n :alt: Develop\n.. image:: https://ci.eionet.europa.eu/buildStatus/icon?job=eea/eea.converter/master\n :target: https://ci.eionet.europa.eu/job/eea/job/eea.converter/job/master/display/redirect\n :alt: Master\n\n\nIntroduction\n============\nThis package provides utilities to convert images and PDF files\nusing `ImageMagick`_. It also provides a generic /download.pdf browser view that\nallow your users to download Plone pages as PDF files with custom PDF cover,\ndisclaimer and back cover (requires `wkhtmltopdf`_ system-package\ninstalled on your server).\n\n\nMain features\n=============\n- Download Plone/Zope content as PDF files with custom PDF cover, table of contents, etc;\n- Provide utilities to extract PDF cover as image (using `PyPDF2`_ and `ImageMagick`_);\n- Provide utilities to extract metadata from PDF (using `PyPDF2`_);\n- Provide utilities to update PDF metadata (using `PyPDF2`_).\n\n\nInstallation\n============\n\n- Make sure you have `wkhtmltopdf`_ 0.12.1+ installed or install it via `zc.buildout`_\n- Make sure you have `ImageMagick`_ 6.3.7+ installed or install it via `zc.buildout`_\n- Make sure you have an OS environment called EEACONVERTER_TEMP within your\n buildout if you have zope instances over more than one physical server.\n- Add eea.converter to your eggs section in your buildout and re-run buildout.\n You can download a sample buildout from\n https://github.com/collective/eea.converter/tree/master/buildouts/plone4\n\nGetting started\n===============\n\n1. Try http://localhost:8080/Plone/front-page/download.pdf\n\n\nCustomize output PDF\n====================\n\nCover\n-----\nProvide custom browser:page called *@@pdf.cover*::\n\n \n\nDisclaimer\n----------\nFirst page after PDF Cover containing author details and copyrights.\nProvide custom browser:page called *@@pdf.cover*::\n\n \n\nBody\n----\nProvide custom browser:page called *@@pdf.body*::\n\n \n\nBack Cover\n----------\nProvide custom browser:page called *@@pdf.cover.back*::\n\n \n\nTable of contents\n-----------------\nTo enable Table of contents provide an empty browser:page called *@@pdf.toc*::\n\n \n\nOptions\n-------\n\nFor PDF cover you'll have to provide a named adapter like::\n\n \n\nSame for PDF disclaimer::\n\n \n\nOr for PDF back cover::\n\n \n\nFor PDF body you'll have to provide a named adapter like::\n\n \n\nFor global PDF options provide an unamed adapter like::\n\n \n\nAlso add custom print.css for your needs. See more at `eea.pdf`_\n\nRestrict access and async\n=========================\nIn order to restrict access to /download.pdf you'll have to provide a\nmulti-adapter named pdf.support with a method called **can_download**\nlike::\n\n \n\nSame for asynchronous download, define a method called **async**.\nSee default implementation within eea.converter.browser.app.support or add an\nenvironment var called EEACONVERTER_ASYNC within your buildout.cfg::\n\n [instance]\n ...\n environment-vars =\n EEACONVERTER_ASYNC True\n\n\nContent rules\n=============\nThis package uses Plone Content-rules to notify users by email when an\nasynchronous job is done. Thus 3 custom content-rules will be added within\nPlone > Site Setup > Content-rules\n\n.. warning ::\n\n As these content-rules are triggered by an asynchronous job, while\n you customize the email template for these content-rules,\n please **DO NOT USE OTHER** string substitutions **that the ones** that start\n with **$download_** as you'll break the download chain.\n Also if you disable these content-rules the users will never know when the\n file is ready and what is the link where they can download the output document.\n\nExport succeeded\n----------------\nNotify the person who requested a PDF/ePub export that the document\nsuccessfully exported and provide a link to the downloadable file.\n\nExport failed\n-------------\nNotify the person who requested a PDF/ePub export that the export failed.\n\nExport failed (admin)\n---------------------\nNotify admin that there were issues while exporting PDF/ePub\n\n\nContent rules email string substitution\n=======================================\nIn order to be able to easily customize emails sent by this package the following\ncustom email template string substitutions can be made\n\n\n${download_came_from_url}\n-------------------------\nThe absolute URL of the Plone object which is downloaded as PDF/ePub\n\n${download_email}\n-----------------\nEmail address of the user that triggered the download as PDF/ePub action\n\n${download_error}\n-----------------\nError traceback when download as PDF/ePub job fails\n\n${download_from_email}\n----------------------\nSite Admin email address customizable via Plone > Site Setup > Mail\n\n${download_from_name}\n---------------------\nSite Admin name customizable via Plone > Site Setup > Mail\n\n${download_title}\n-----------------\nTitle of the Plone object which is downloaded as PDF/ePub\n\n${download_url}\n---------------\nThe absolute URL where the generated output PDF/ePub can be downloaded\n\n${download_type}\n----------------\nDownload type: PDF/ePub\n\n\nDependencies\n============\n\n.. note ::\n\n These are not hard dependencies. You can use all features of eea.converter or\n just the ones that you need.\n\n.. _imagemagick:\n\n* ImageMagick (6.3.7+)::\n\n yum install ImageMagick\n apt-get install imagemagick\n\n.. _rsvg-converter:\n\n* rsvg-convert (2.40.16+)::\n\n yum install rsvg-convert\n apt-get install librsvg2-bin\n\n.. _wkhtmltopdf:\n\n* wkhtmltopdf (0.12.1+):\n\n `Download and install `_\n\n* `eea.pdf`_ (optional for advanced PDF export)\n* `eea.epub`_ (optional for ePub export)\n\n\nSource code\n===========\n\nLatest source code (Zope 2 compatible):\n - `Plone Collective on Github `_\n - `EEA on Github `_\n\n\nDocumentation\n=============\n\nSee the **doc** directory in this package.\n\n\nCopyright and license\n=====================\nThe Initial Owner of the Original Code is European Environment Agency (EEA).\nAll Rights Reserved.\n\nThe EEA Exhibit (the Original Code) is free software;\nyou can redistribute it and/or modify it under the terms of the GNU\nGeneral Public License as published by the Free Software Foundation;\neither version 2 of the License, or (at your option) any later\nversion.\n\nMore details under docs/License.txt\n\n\nFunding\n=======\n\nEEA_ - European Environment Agency (EU)\n\n.. _EEA: https://www.eea.europa.eu/\n.. _`plone.recipe.zope2instance`: https://pypi.python.org/pypi/plone.recipe.zope2instance\n.. _`zc.buildout`: https://pypi.python.org/pypi/zc.buildout\n.. _`eea.pdf`: https://eea.github.com/docs/eea.pdf\n.. _`eea.epub`: https://eea.github.com/docs/eea.epub\n.. _`PyPDF2`: https://pypi.python.org/pypi/PyPDF2/1.25.1\n\nChangelog\n=========\n\n12.8 - (2019-10-11)\n--------------------------\n* Feature: Support zoom level and aspect ratio for SVG image conversion\n [avoinea refs #109515]\n\n12.7 - (2019-01-28)\n--------------------------\n* Jenkins: Add sonarqube step\n [avoinea refs #101552]\n\n12.6 - (2019-01-17)\n--------------------------\n* Change: Revert cover colorspace to sRGB\n [avoinea refs #101483]\n\n12.5 - (2018-12-05)\n--------------------------\n* Change: Update cover colorspace to CMYK to work with ghostscript 9.26+\n [avoinea refs #99812]\n\n12.4 - (2018-08-28)\n--------------------------\n* Feature: Use rsvg-convert to convert SVG to PNG or fallback to ImageMagick\n [avoinea refs #97843]\n\n12.3 - (2018-08-22)\n--------------------------\n* Change: Update to wkhtmltopdf 0.12.4 (add ----disable-smart-shrinking option)\n [avoinea refs #97586]\n* Change: updated URLs pointing to eea.europa.eu with https://\n [alecghica refs #95849]\n* Change: fix tests to run on Plone 4.3.17\n [alecghica refs #96974]\n\n12.2 - (2018-04-20)\n-------------------\n* Change: Possibility to group download info within AsyncInfo wrapper\n [avoinea]\n\n12.1 - (2017-12-12)\n-------------------\n* Change: Replace eeacms/zptlint with eeacms/plone-test:4 zptlint\n [avoinea refs #90415]\n\n12.0 - (2017-11-07)\n-------------------\n* Change: Remove Sphinx generated documentation\n [petchesi-iulian refs #88212]\n* Change: improved logging\n [alecghica refs #88578]\n\n11.9 - (2017-06-26)\n-------------------\n* Change: Remove hard-dependency on plone.stringinterp\n [avoinea]\n* Bug fix: Fixed imagemagick convert command, added colorspace parameter\n and page number parameter\n [zoltan_andras refs #85638]\n\n11.8 - (2017-05-22)\n-------------------\n* Change: fixed PyLint warnings and errors\n [valipod refs #84949]\n\n11.7 - (2017-05-15)\n-------------------\n* Change: fixed PyLint warnings and errors\n [eduard-fironda refs #84949]\n\n11.6 - (2017-05-08)\n-------------------\n* Change: removed pdf.header title values if we print within collection.pdf.body\n since printing multiple pages will result in wrong title as soon as we print\n the next object\n [ichim-david refs #84084]\n\n11.5 - (2017-04-24)\n-------------------\n* Change: updated package information\n [eduard-fironda]\n\n11.4 - (2017-03-20)\n-------------------\n* Bug fix: fixed pdf.footer and pdf.header title enconding issues,\n when subpage has content that needed to be escaped\n [ichim-david refs #80861]\n\n11.3 - (2017-01-17)\n-------------------\n* Bug fix: Remove hard dependency to CMFPlone introduced in v11.2\n [avoinea]\n\n11.2 - (2017-01-17)\n-------------------\n* Feature: added internationalization on \"Contents\" appearing in PDF TOC\n [irina-botez]\n\n11.1 - (2016-11-07)\n-------------------\n* Feature: Added pdf_custom_fixes to pdf.toc.pt in case this template would need\n custom css fixes\n [ichim-david refs #78802]\n\n11.0 - (2016-10-14)\n-------------------\n* Change: changed styling of pdf.toc headers\n [ichim-david refs #77476]\n\n10.9 - (2016-10-06)\n-------------------\n* Bug fix: Fixed regression bug introduced within version 10.8 about\n custom Content-Rules string substitions defined by this package.\n [voineali refs #77581]\n\n10.8 - (2016-10-03)\n-------------------\n* Change: Use IContextWrapper from plone.stringinterp intead of custom one\n [avoinea]\n\n10.7 - (2016-05-19)\n-------------------\n* Change: pylint fixes\n [ichim-david refs #71940]\n\n10.6 - (2016-03-31)\n-------------------\n* Cleanup: Cleanup pdftk specific code\n [avoinea]\n* Bug fix: Warn if EEACONVERTER_TEMP is not set and fallback to CLIENT_HOME/tmp\n instead of crashing entire application\n [avoinea]\n\n10.5 - (2016-02-15)\n-------------------\n* Bug fix: in the \"Contents\" section, avoid the text to split between pages\n [danielm-gh refs #67840]\n\n10.4 - (2016-02-03)\n-------------------\n* Bug fix: text (country names) in the \"Contents\" section doesn't split between\n pages\n [danielm-gh refs #67840]\n\n10.3 - (2015-12-11)\n-------------------\n* Change: Fixed wkhtmltox dependency on centos\n [voineali refs #31324]\n\n10.2 - (2015-12-07)\n-------------------\n* Change: Added system depenedencies within setup.py\n [voineali refs #27406]\n\n10.1 - (2015-10-22)\n-------------------\n* Bug Fix; add -flatten option to fix #28943. It's prevent transparence cover\n [lucas refs #28943]\n\n10.0 - (2015-09-10)\n-------------------\n* Feature: Added utility to update PDF metadata. Moved from eea.reports\n [voineali refs #28522]\n* Feature: Added utility to extract metadata from PDF. Moved from eea.reports\n [voineali refs #28522]\n* Feature: Added utility to extract cover image from PDF. Moved from eea.reports\n [voineali refs #28522]\n* Change: Drop pdftk dependency and use pure Python PyPDF2 package\n [voineali refs #28522]\n\n9.6 - (2015-08-18)\n------------------\n* Change: added pdf_custom_fixes.css loaded by pdf.header and pdf.footer\n in case there is a need for quickfixes\n [ichimdav refs #27537]\n* Bug fix: fixed pdf.footer title and page number when used on indicators\n [ichimdav refs #27537]\n\n9.5 - (2015-07-28)\n------------------\n* Change: modified pdf.toc.pt styles in order to avoid page break when\n outputting the list items with the toc entries\n [ichimdav refs #27475]\n* Bug fix: Update modification time for exported PDF/ePub files in order for\n the cleanup cron-job to know not to delete PDFs/ePubs files that\n were recently requested.\n [voineali refs #27513]\n\n9.4 - (2015-05-26)\n------------------\n* Bug fix: Keep Job within wk.py for backward compatibility\n [voineali refs #25755]\n\n9.3 - (2015-05-05)\n------------------\n* Change: changed footer and header templates in order to preserve template\n logic when using static headers and footer\n [ichimdav refs #23904]\n\n9.2 - (2015-04-02)\n------------------\n* Feature: added the possibility to limit the header tags that appear within\n the table of contents\n [ichimdav refs #24351]\n\n9.1 - (2015-03-17)\n------------------\n* Change: Switched to curl in the jenkins builds install script\n [olimpiurob refs #22402]\n* Change: Changed fetch url for jenkins builds install script to the install\n script from the main EEA CPB repository\n [olimpiurob refs #22402]\n\n9.0 - (2015-02-25)\n------------------\n* Bug fix: Fixed UnicodeDecodeError within download.pdf template\n [voineali refs #23338]\n* Cleanup: Remove deprecated **make_pdf_cover** from download.pdf\n [voineali refs #22971]\n* Change: Moved async API from eea.pdf to eea.converter in order to reuse it\n for other async jobs (e.g. eea.epub)\n [voineali refs #22971]\n\n8.7 - (2015-02-16)\n------------------\n* Feature: Update ISupport API with async and email methods\n [voineali refs #22971]\n* Feature: Added possibility to use specific ZPT macro while exporting PDF body\n (e.g. content-core)\n [voineali refs #22686]\n\n8.6 - (2014-12-23)\n------------------\n* Bug fix: Use *with* statement with temporary files in order to ensure that they\n are safely closed before exit\n [voineali refs #22080]\n* Bug fix: While creating authentication cookie-jar, also be aware of\n CDN resources\n [voineali refs #22080]\n\n8.5 - (2014-12-02)\n------------------\n* Bug fix: Added possibility to define shared temporary directory using os.env\n EEACONVERTER_TEMP in order to avoid surprises while using together with zc.async\n [voineali refs #21958]\n\n8.4 - (2014-11-28)\n------------------\n* Bug fix: Fixed duplicate cookies when printing collection header/footer by\n using wkhtmltopdf more stable --cookie-jar option than --cookie. This also\n fixed blank page at the beginning of PDF introduced in previous version\n [voineali refs #21958]\n\n8.3 - (2014-11-20)\n------------------\n* Bug fix: Fixed table of contents page alignment\n [voineali refs #21628]\n* Bug fix: Fixed duplicate cookies when printing collection header/footer\n [voineali refs #21628]\n\n8.2 - (2014-10-15)\n------------------\n* Bug fix: Protect against random wkhtmltopdf Segmentation fault errors and\n retry 3 times to re-generate PDF\n [voineali refs #21149]\n\n8.1 - (2014-10-01)\n------------------\n* Change: Prefix temporary files with package name: eea.converter.\n [voineali refs #21100]\n\n8.0 - (2014-09-15)\n------------------\n* Feature: Possibility to run a PDF conversion job in safe mode (default) or not\n (raise all errors)\n [voineali refs #20845]\n* Change: Changed download.pdf API in order to allow dry-run used by async jobs\n [voineali refs #20843]\n* Change: Made @@pdf.support/can_download accessible from URL\n [voineali refs #20846]\n\n7.1 - (2014-08-12)\n------------------\n* Bug fix: Align PDF Table of Contents trailing dotted with page number\n [voineali refs #20431]\n* Bug fix: Fix long PDF header and footer texts and align left or right\n according with page parity\n [voineali refs #20431]\n* Feature: Added i18n translations\n [voineali refs #20431]\n* Feature: Added possibility to avoid truncated sentences in description\n [voineali refs #20456]\n* Feature: Enabled javascript by default within PDF export.\n [voineali refs #20459]\n* Feature: Added API to restrict access to download.pdf\n [voineali refs #20436]\n\n7.0 - (2014-07-15)\n------------------\n* Feature: Added Table of Contents support\n [voineali refs #20268]\n* Cleanup: Remove collective.sendaspdf dependency\n [voineali refs #20268]\n\n6.8 - (2014-06-06)\n------------------\n* Feature: Added PDF Back Cover support\n [voineali refs #19882]\n* Feature: Added PDF Disclaimer support (the first page after cover containing\n author details and copyrights)\n [voineali refs #19882]\n\n6.7 - (2014-03-10)\n------------------\n* Bug fix: Do not add table of content on PDF cover\n [voineali refs #18630]\n* Change: pass a doctype to the header pdf template in order to workaround\n wkhtmltopdf 0.12 issue which fails to insert the header without it\n [ichim-david refs #18550]\n\n6.6 - (2014-01-21)\n------------------\n* Bug fix: removed wrongly added blockquotes within README.rst\n [ichim-david refs #18064]\n* Feature: adding Sphinx-generated documentation in Page Template format\n [batradav refs #9502]\n\n6.5 - (2013-10-22)\n------------------\n* Bug fix: return first page on pdf to image conversion; refactor cover\n [simiamih refs #16799]\n\n6.4 - (2013-10-07)\n------------------\n* Feature: Added utility method to truncate text by the number of characters\n without cutting words at the end\n [voineali refs #16946]\n* Feature: Added utility method to convert relative urls to absolute urls\n [voineali refs #16946]\n\n6.3 - (2013-10-04)\n------------------\n* Bug fix: Fixed PDF cover asking for credentials for non-published documents\n [voineali refs #14904]\n* Feature: Added custom PDF html-header and html-footer in order to easily\n customize them (just override @@pdf.header and @@pdf.footer for your contexts)\n [voineali refs #16802]\n\n6.2 - (2013-09-23)\n------------------\n* Feature: Export HTML to PDF with custom cover (requires collective.sendaspdf)\n [voineali refs #14904]\n\n6.1 - (2013-02-25)\n------------------\n* Feature: added information for contributors\n [ciobabog refs #13892]\n* Add Windows support for close_fds parameter of Popen\n [erral #1]\n\n6.0 - (2012-10-08)\n------------------\n* Fixed dependencies, cleanup and make the package run on a clean Zope\n [ghicaale #5426]\n\n1.1 - (2012-06-12)\n------------------\n* Added watermark utility\n [szabozo0]\n\n1.0 - (2012-03-05)\n------------------\n* Initial release\n [voineali]", "description_content_type": "text/x-rst", "docs_url": null, "download_url": "https://pypi.python.org/pypi/eea.converter", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/collective/eea.converter", "keywords": "EEA converter imagemagick utility Add-ons Plone Zope", "license": "GPL", "maintainer": "", "maintainer_email": "", "name": "eea.converter", "package_url": "https://pypi.org/project/eea.converter/", "platform": "", "project_url": "https://pypi.org/project/eea.converter/", "project_urls": { "Download": "https://pypi.python.org/pypi/eea.converter", "Homepage": "https://github.com/collective/eea.converter" }, "release_url": "https://pypi.org/project/eea.converter/12.8/", "requires_dist": null, "requires_python": "", "summary": "SVG, PNG, PDF converters using external tools as ImageMagick", "version": "12.8" }, "last_serial": 5959908, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "2e5cb46817ce79a43d84c57e38e1de39", "sha256": "dc23d03b368e762ecc8dab852c26aa89a185c7c33d1c21575b826644638efcdb" }, "downloads": -1, "filename": "eea.converter-1.0.zip", "has_sig": false, "md5_digest": "2e5cb46817ce79a43d84c57e38e1de39", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18814, "upload_time": "2012-04-02T14:51:08", "url": "https://files.pythonhosted.org/packages/40/2e/d0dc5d0a245db22f0c0492dbae7ed251ce89fc00d89aa0cf1f730f8fc7a7/eea.converter-1.0.zip" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "66196a52bc54c07245523627c1a308db", "sha256": "3596d4c7de4e7a3b18fbd68cf0854d41ac2c727ac9b4ea168fdee9b90cc0de92" }, "downloads": -1, "filename": "eea.converter-1.1.zip", "has_sig": false, "md5_digest": "66196a52bc54c07245523627c1a308db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19524, "upload_time": "2012-06-13T11:19:27", "url": "https://files.pythonhosted.org/packages/9d/31/2651ab74f35d43248f91a2016f813d37ce0e8a064d66c8e2102fa9e28b2f/eea.converter-1.1.zip" } ], "10.0": [ { "comment_text": "", "digests": { "md5": "fd8c4d71eaac63cedbd4583393b75aad", "sha256": "635923a00cf14171e7769b714a30bb8f09c87c525f7f5bdee3fa708cb85aa807" }, "downloads": -1, "filename": "eea.converter-10.0.zip", "has_sig": false, "md5_digest": "fd8c4d71eaac63cedbd4583393b75aad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 509845, "upload_time": "2015-09-14T12:40:33", "url": "https://files.pythonhosted.org/packages/1e/8a/a237abc1b2af2b743784782683b5614ab2f77af677aac289a6fc59c6b472/eea.converter-10.0.zip" } ], "10.1": [ { "comment_text": "", "digests": { "md5": "ebfd5c6a66af08b34f37e137b95533dd", "sha256": "1bad34efde27d4eb5ab0b9d349c191fa9fe3f36598c959592b679e90bbfbec4d" }, "downloads": -1, "filename": "eea.converter-10.1.zip", "has_sig": false, "md5_digest": "ebfd5c6a66af08b34f37e137b95533dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 510086, "upload_time": "2015-10-26T14:04:17", "url": "https://files.pythonhosted.org/packages/c3/b3/709acc8ad2c11c44a8655131e4fb94dc495e7c4d1ec198c928ef89a6c18f/eea.converter-10.1.zip" } ], "10.2": [ { "comment_text": "", "digests": { "md5": "138365c86841ae97128b353ac546d747", "sha256": "6ddd2ac90192286b4327a9a07a1d36d8ee74b0572722ba6d9311ab40ae054e3e" }, "downloads": -1, "filename": "eea.converter-10.2.zip", "has_sig": false, "md5_digest": "138365c86841ae97128b353ac546d747", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 510322, "upload_time": "2015-12-09T18:50:12", "url": "https://files.pythonhosted.org/packages/63/0f/4f5e02648d55b2ed047bbda67e50b41ae70dfd129c1bd72785eaefdccb02/eea.converter-10.2.zip" } ], "10.3": [ { "comment_text": "", "digests": { "md5": "7d504a71b09f08d777f6b2cef885fed2", "sha256": "7115dbe054c93352e0acea4da53c383b0ae32ea486e7edd64291561281c4cf10" }, "downloads": -1, "filename": "eea.converter-10.3.zip", "has_sig": false, "md5_digest": "7d504a71b09f08d777f6b2cef885fed2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 510419, "upload_time": "2015-12-11T13:05:57", "url": "https://files.pythonhosted.org/packages/42/d4/c09549b6f656916194ac85a1b136a07735c43606a241c52563ad3fa9fd1d/eea.converter-10.3.zip" } ], "10.4": [ { "comment_text": "", "digests": { "md5": "fd09e7ce498fe0ba54673d55ab0852a2", "sha256": "cb0e43d8581f0bd688db3b2d19f4ead351f180e48bf6e3f449bf0589b82ad44f" }, "downloads": -1, "filename": "eea.converter-10.4.zip", "has_sig": false, "md5_digest": "fd09e7ce498fe0ba54673d55ab0852a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 510672, "upload_time": "2016-02-04T09:27:37", "url": "https://files.pythonhosted.org/packages/b5/02/d4f13b59be5c722f6da1d0e7de9ab98abbc89fe1e9184f3e7ab0b377115b/eea.converter-10.4.zip" } ], "10.5": [ { "comment_text": "", "digests": { "md5": "fa8e2bb0d6cf2729ec1dfd87fbf27730", "sha256": "b7fb2642a0beef48de3f24950fe70a46e90e8b6e22f263eb2df905bb00b39d03" }, "downloads": -1, "filename": "eea.converter-10.5.zip", "has_sig": false, "md5_digest": "fa8e2bb0d6cf2729ec1dfd87fbf27730", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 495212, "upload_time": "2016-02-17T20:53:39", "url": "https://files.pythonhosted.org/packages/d9/0f/5fb4523cbc0da5080c81d15914890192dbfeb7a7c74f14875f0a10e14214/eea.converter-10.5.zip" } ], "10.6": [ { "comment_text": "", "digests": { "md5": "23cd30bfda2d6482f0691da7d66798ad", "sha256": "a25f926731835c4d813d2128fb1c97d2e027267d261671b5a9656873fd8a0906" }, "downloads": -1, "filename": "eea.converter-10.6.zip", "has_sig": false, "md5_digest": "23cd30bfda2d6482f0691da7d66798ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 511324, "upload_time": "2016-04-01T15:18:58", "url": "https://files.pythonhosted.org/packages/90/0a/9b4c1a5ecd06af232bdb9dba9c773aadabf7214178450c1ad86ac8fb42c3/eea.converter-10.6.zip" } ], "10.7": [], "10.8": [ { "comment_text": "", "digests": { "md5": "0965d0be49f29c7de556398c5fa5173d", "sha256": "051003c0a3d9e6ede71fcb57e78ef8bda53e43825da5a63aea6d06e4c4ee9517" }, "downloads": -1, "filename": "eea.converter-10.8.zip", "has_sig": false, "md5_digest": "0965d0be49f29c7de556398c5fa5173d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 511388, "upload_time": "2016-10-03T16:00:24", "url": "https://files.pythonhosted.org/packages/2e/40/c20c6a4ce41edf25333f943e2215c98bd6df56bcea0425a9d20e84b84a1b/eea.converter-10.8.zip" } ], "10.9": [ { "comment_text": "", "digests": { "md5": "32604e7c009c158ae33dae06c5262e81", "sha256": "48e0c2e106dcf20d3c03c30694c80dde97beafd6434dc0247d01eec6a249d26b" }, "downloads": -1, "filename": "eea.converter-10.9.zip", "has_sig": false, "md5_digest": "32604e7c009c158ae33dae06c5262e81", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 511573, "upload_time": "2016-10-06T14:46:01", "url": "https://files.pythonhosted.org/packages/bf/c9/76e8644cfc4ae93ac2821709eb7b22f6f6cc2e1ec7850cd968938b2561b0/eea.converter-10.9.zip" } ], "11.0": [ { "comment_text": "", "digests": { "md5": "c1b357a2425c8b534223fc077f46032a", "sha256": "da7ec3650598073f525c4edc091e88916ea5040177df62b455257db145dbf4f4" }, "downloads": -1, "filename": "eea.converter-11.0.zip", "has_sig": false, "md5_digest": "c1b357a2425c8b534223fc077f46032a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 511640, "upload_time": "2016-10-26T13:14:13", "url": "https://files.pythonhosted.org/packages/8e/f7/cacc88a8290511588fc387cedeaea9782ee64503cd9fe9c7c376026371c4/eea.converter-11.0.zip" } ], "11.1": [ { "comment_text": "", "digests": { "md5": "0f03ee76fff20e51c46120baf458d7bf", "sha256": "2036290e63348e33fbda458b5692e80a129f73c89ef9fffe4806781b2840fd35" }, "downloads": -1, "filename": "eea.converter-11.1.zip", "has_sig": false, "md5_digest": "0f03ee76fff20e51c46120baf458d7bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 496300, "upload_time": "2016-11-10T07:38:51", "url": "https://files.pythonhosted.org/packages/e7/e7/ba229091a0c4528353cc3cd370f80b351acc2f6126a56bc01fdfb75d73ad/eea.converter-11.1.zip" } ], "11.2": [ { "comment_text": "", "digests": { "md5": "206c810ba28198a8261afa51b41fc421", "sha256": "e7de7f86a32a371e6529e1573e036cc494f66576d954c7a8de9518cc535586e1" }, "downloads": -1, "filename": "eea.converter-11.2.zip", "has_sig": false, "md5_digest": "206c810ba28198a8261afa51b41fc421", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 512201, "upload_time": "2017-01-17T19:10:32", "url": "https://files.pythonhosted.org/packages/f9/e7/18e96fc2870e4fd5c31710f554737b1ce21421fef7b70f2acae09e9183b0/eea.converter-11.2.zip" } ], "11.3": [ { "comment_text": "", "digests": { "md5": "be62861899350da6e7f7f9dc8416caeb", "sha256": "303ce2ec0cf503231e6bd1aeef1488736f1d18e7f935fe9df1dc397b0c74f6f4" }, "downloads": -1, "filename": "eea.converter-11.3.zip", "has_sig": false, "md5_digest": "be62861899350da6e7f7f9dc8416caeb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 521065, "upload_time": "2017-01-17T19:11:23", "url": "https://files.pythonhosted.org/packages/3c/2a/d6457f2d44648a1acf22ee51e89e76b7f0fc3238374a78caaaffe475ad41/eea.converter-11.3.zip" } ], "11.4": [ { "comment_text": "", "digests": { "md5": "d087a31838a6b9aa3fe5e84499043149", "sha256": "27916883c7e5828a24590b1e32c1b1c85e2e158845bfde02608002e500073afd" }, "downloads": -1, "filename": "eea.converter-11.4.zip", "has_sig": false, "md5_digest": "d087a31838a6b9aa3fe5e84499043149", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 521278, "upload_time": "2017-03-22T13:26:54", "url": "https://files.pythonhosted.org/packages/96/69/ae0398b74895ebf2cf7411d3d9e2f844f6be88bb67880913ec311e7b64ba/eea.converter-11.4.zip" } ], "11.5": [ { "comment_text": "", "digests": { "md5": "93a34a2fe807b98d506541882241f0b6", "sha256": "5ffd0cbebe3f2ac2d7d51beabff4ea3c8f5a21fd555e59950fb1c1e4bfd4382d" }, "downloads": -1, "filename": "eea.converter-11.5.zip", "has_sig": false, "md5_digest": "93a34a2fe807b98d506541882241f0b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 521353, "upload_time": "2017-05-02T08:05:08", "url": "https://files.pythonhosted.org/packages/75/e4/8ad05f7209cf16a6b83c39bb84e11b046f46ab9dfb6a2d220af74037d0d8/eea.converter-11.5.zip" } ], "11.6": [ { "comment_text": "", "digests": { "md5": "406f21bed89c548051a53d9eac5296a8", "sha256": "74d0c981aa7bc2ca5489188844bbd500bb855a00511f52a63e8982889df7d331" }, "downloads": -1, "filename": "eea.converter-11.6.zip", "has_sig": false, "md5_digest": "406f21bed89c548051a53d9eac5296a8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 521718, "upload_time": "2017-05-22T13:21:38", "url": "https://files.pythonhosted.org/packages/a5/f6/e9521ede4c5086c4ecdf1edd0dfc4539fd1c7d36be9cf88018ed5caf636a/eea.converter-11.6.zip" } ], "11.7": [ { "comment_text": "", "digests": { "md5": "bd7104d264cc641f12ca2e586ec165ae", "sha256": "795bd8748070c735099b9df828704b9c9c61ec5aed6a79ff63ef9d8652f4be9c" }, "downloads": -1, "filename": "eea.converter-11.7.zip", "has_sig": false, "md5_digest": "bd7104d264cc641f12ca2e586ec165ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 521817, "upload_time": "2017-05-22T13:21:56", "url": "https://files.pythonhosted.org/packages/ac/cd/a9cdade435cf6f325ca950c9f5bfda49b8766c48456edc998b29566a45a1/eea.converter-11.7.zip" } ], "11.8": [ { "comment_text": "", "digests": { "md5": "540773d2e74eb142b179522f91dac816", "sha256": "0246aa1fca6f28789c06a8eed7d06a067cc94d6d51f9c22820ab6db8144e13be" }, "downloads": -1, "filename": "eea.converter-11.8.zip", "has_sig": false, "md5_digest": "540773d2e74eb142b179522f91dac816", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 521848, "upload_time": "2017-05-22T14:42:10", "url": "https://files.pythonhosted.org/packages/65/5f/d337a369f28d3ec87827bad3e93f3adcd3842a3bd5b4fef8db776ac70e8b/eea.converter-11.8.zip" } ], "11.9": [ { "comment_text": "", "digests": { "md5": "aba3b84759dcc59f3d8053029eb8b7ad", "sha256": "0ca719e1e71f3db4948a9b33e1b475e8a25f31ab14a5978aa5cb979b85790fbe" }, "downloads": -1, "filename": "eea.converter-11.9.zip", "has_sig": false, "md5_digest": "aba3b84759dcc59f3d8053029eb8b7ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 522110, "upload_time": "2017-07-18T09:34:12", "url": "https://files.pythonhosted.org/packages/6f/c6/6c5c95c11ffb472f5e7f0a726702a57ad822ddec7991bf67eb697e0fedcd/eea.converter-11.9.zip" } ], "12.0": [ { "comment_text": "", "digests": { "md5": "06ecdeaa21a7877fd7787f88b5d3ad41", "sha256": "d5ef4c2073b7f87d8e20252117c5a4f6c8dc2e3987a85f9283ba4d8bf9e8e77d" }, "downloads": -1, "filename": "eea.converter-12.0.zip", "has_sig": false, "md5_digest": "06ecdeaa21a7877fd7787f88b5d3ad41", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 414413, "upload_time": "2017-11-08T13:02:13", "url": "https://files.pythonhosted.org/packages/4e/69/3942e5727446a56f21965f7e64637f65c01f668e394750359b3713f04edf/eea.converter-12.0.zip" } ], "12.1": [ { "comment_text": "", "digests": { "md5": "7c5df758dd26459d1b8942d206e271d6", "sha256": "b11de97729ddaec14a00b766f3eff8da101e3a6d600fa22dd7dc4507f8701d62" }, "downloads": -1, "filename": "eea.converter-12.1.zip", "has_sig": false, "md5_digest": "7c5df758dd26459d1b8942d206e271d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 414270, "upload_time": "2018-02-23T16:08:57", "url": "https://files.pythonhosted.org/packages/74/fc/3ae3d542a0248bfc42c32ff0aef6d9ab2e5173b61bcaa0e46784e551be73/eea.converter-12.1.zip" } ], "12.2": [ { "comment_text": "", "digests": { "md5": "31589c7e2c745e94653a05cceecf8e92", "sha256": "22912cf8724f850667c857399e475dc5e9f6e1f309018a317c515df0e132d6b2" }, "downloads": -1, "filename": "eea.converter-12.2.zip", "has_sig": false, "md5_digest": "31589c7e2c745e94653a05cceecf8e92", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 430650, "upload_time": "2018-04-24T09:37:56", "url": "https://files.pythonhosted.org/packages/84/55/70be5dde047d47eeeccacf9a7e24fdc84086551dfcb9973cbd798f9c69fb/eea.converter-12.2.zip" } ], "12.3": [ { "comment_text": "", "digests": { "md5": "fc404141a956ef8207fc93e4ff4beba1", "sha256": "9e2c4fad1a2277d946cc20fd9dabd1b83036e89b72e62121e97800debd2efc62" }, "downloads": -1, "filename": "eea.converter-12.3.zip", "has_sig": false, "md5_digest": "fc404141a956ef8207fc93e4ff4beba1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 415411, "upload_time": "2018-08-24T11:58:31", "url": "https://files.pythonhosted.org/packages/a1/3d/dc9c0aa987d204bb96fae73cc86a265879799075c5a2b04204a906656ec1/eea.converter-12.3.zip" } ], "12.4": [ { "comment_text": "", "digests": { "md5": "c68aebeae369b47f05b7faaa46a32e79", "sha256": "71b747b1f05c7606fab1681cbcb08d638b8b756dec2e9346b8b199aa20921d50" }, "downloads": -1, "filename": "eea.converter-12.4.zip", "has_sig": false, "md5_digest": "c68aebeae369b47f05b7faaa46a32e79", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 415803, "upload_time": "2018-08-29T14:10:22", "url": "https://files.pythonhosted.org/packages/dd/c3/6abba6789e980779387dcb6322fc0a73f6179dfb42ae792102c7c456c340/eea.converter-12.4.zip" } ], "12.5": [ { "comment_text": "", "digests": { "md5": "06b5bb5a7f55d9646c2dfe7b661df3a0", "sha256": "890ed2c794bc83da049509a23c1299086672fce9b38263827618d06c01de4e35" }, "downloads": -1, "filename": "eea.converter-12.5.zip", "has_sig": false, "md5_digest": "06b5bb5a7f55d9646c2dfe7b661df3a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 415954, "upload_time": "2018-12-05T13:43:42", "url": "https://files.pythonhosted.org/packages/d4/d5/651cd9341f14236ede67b281bcaf1a8c11a1cd5812968afec4bcce7cb4d4/eea.converter-12.5.zip" } ], "12.6": [ { "comment_text": "", "digests": { "md5": "4942b5bd8cc7b03db10c17530d106602", "sha256": "b228f702b11f6a8e7d5ef8a97c2240a60ba5680097217dcb786bfb04e9cdfc9f" }, "downloads": -1, "filename": "eea.converter-12.6.zip", "has_sig": false, "md5_digest": "4942b5bd8cc7b03db10c17530d106602", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 416416, "upload_time": "2019-01-21T17:13:38", "url": "https://files.pythonhosted.org/packages/81/27/819af5d90c04d66a7da37422d3135e5f9de7431755a405299a79df6f3234/eea.converter-12.6.zip" } ], "12.7": [ { "comment_text": "", "digests": { "md5": "9684efd6d6b741ed8f6e4267145c98ec", "sha256": "b603d35f4a2349d432614372aaf4dacc0d052c03e32137360dfd7f09df7791bd" }, "downloads": -1, "filename": "eea.converter-12.7.zip", "has_sig": false, "md5_digest": "9684efd6d6b741ed8f6e4267145c98ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 416713, "upload_time": "2019-01-29T14:32:33", "url": "https://files.pythonhosted.org/packages/1e/c7/778f32b476f919f33233856ee7eb94ad8fc92f57200a7cb69398f78269e0/eea.converter-12.7.zip" } ], "12.8": [ { "comment_text": "", "digests": { "md5": "e1353e68f8ee71e6e6e60f7d2d516ca2", "sha256": "ca74c4da73a9b02aec9bcf6d22575105f051e397bcdf089b99812a3e8fccae45" }, "downloads": -1, "filename": "eea.converter-12.8.zip", "has_sig": false, "md5_digest": "e1353e68f8ee71e6e6e60f7d2d516ca2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 426667, "upload_time": "2019-10-11T11:48:52", "url": "https://files.pythonhosted.org/packages/31/c5/c65d883511cb4eecdf906f463f4a8ef582cf1c7faada187d0109c55511a6/eea.converter-12.8.zip" } ], "6.0": [ { "comment_text": "", "digests": { "md5": "6c15775bff0d926ba311bef44c77f4d2", "sha256": "9f628e330d4d49bf1e35bc9de4bd33d2846ae193552cca1931a2e2b60cf90a5f" }, "downloads": -1, "filename": "eea.converter-6.0.zip", "has_sig": false, "md5_digest": "6c15775bff0d926ba311bef44c77f4d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24010, "upload_time": "2012-10-08T14:19:55", "url": "https://files.pythonhosted.org/packages/b2/1d/fecec8d0abfa80f37083341fc1e6b2d925ef3aed57ac13ea149633cf70bf/eea.converter-6.0.zip" } ], "6.1": [ { "comment_text": "", "digests": { "md5": "30e5c14d5a618170ded821234ea0c986", "sha256": "8fffd040105d5ce3fdf8ce0ecd324064895334ab1e4305632f0f145b2de4ea29" }, "downloads": -1, "filename": "eea.converter-6.1.zip", "has_sig": false, "md5_digest": "30e5c14d5a618170ded821234ea0c986", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24796, "upload_time": "2013-02-27T09:54:30", "url": "https://files.pythonhosted.org/packages/b5/be/c45a202f72fa512107ff147b36cdc3d05103c5765de5312429412d814c7d/eea.converter-6.1.zip" } ], "6.2": [ { "comment_text": "", "digests": { "md5": "7a42e53a52356b47fe935d14af5ba444", "sha256": "e22d90bcf2591384e3da2484e29d8819c6204041d27c845525d4b0c886b1e64c" }, "downloads": -1, "filename": "eea.converter-6.2.zip", "has_sig": false, "md5_digest": "7a42e53a52356b47fe935d14af5ba444", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32202, "upload_time": "2013-09-25T09:57:31", "url": "https://files.pythonhosted.org/packages/f6/14/34dfd5538c76c4aed083ea8f8e75e7762405f71e365a5238d62ab2f7afec/eea.converter-6.2.zip" } ], "6.3": [ { "comment_text": "", "digests": { "md5": "f470611e03640d0b5ee5921665a4ef55", "sha256": "a63e21095d5a5df3905356c6cdd118b32f17b23adb3939fa4e81584e5db37ad1" }, "downloads": -1, "filename": "eea.converter-6.3.zip", "has_sig": false, "md5_digest": "f470611e03640d0b5ee5921665a4ef55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34862, "upload_time": "2013-10-07T13:30:24", "url": "https://files.pythonhosted.org/packages/7f/98/6f0aec5a5f8b6cd3fe23f8d97bd43fc55a2026cb30626ef7824c6e9ec8a4/eea.converter-6.3.zip" } ], "6.4": [ { "comment_text": "", "digests": { "md5": "3502077b2928a025250b1ca4eb8838d3", "sha256": "cf05438d0468b38635a48b247b1e6ba64ad28ce95114a45bcc1599428947e193" }, "downloads": -1, "filename": "eea.converter-6.4.zip", "has_sig": false, "md5_digest": "3502077b2928a025250b1ca4eb8838d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36318, "upload_time": "2013-10-07T13:31:07", "url": "https://files.pythonhosted.org/packages/9a/9a/2c6d2c8ac308ac5746cffb5f83d476cc63b758466a5eab3983851d9f7f98/eea.converter-6.4.zip" } ], "6.5": [ { "comment_text": "", "digests": { "md5": "67ccc93aa9f5700d4acdfa030f508830", "sha256": "1febb8e757fef357c5f37b5d6b799f2a5f9bdba0fa69ebac49f1b6b985fd71c2" }, "downloads": -1, "filename": "eea.converter-6.5.zip", "has_sig": false, "md5_digest": "67ccc93aa9f5700d4acdfa030f508830", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36803, "upload_time": "2013-10-25T15:16:56", "url": "https://files.pythonhosted.org/packages/dc/62/ba70deb51a6a70d39a560f1227411e44bd8eb6e37295ce569ce91b963f5b/eea.converter-6.5.zip" } ], "6.6": [ { "comment_text": "", "digests": { "md5": "07dae58844d3c895cb5a59d73b74191b", "sha256": "2af844f39c349e0eef552cc3c5ef3a15b3842035bd90a8c26d83fee232d9669c" }, "downloads": -1, "filename": "eea.converter-6.6.zip", "has_sig": false, "md5_digest": "07dae58844d3c895cb5a59d73b74191b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 118907, "upload_time": "2014-01-23T08:59:31", "url": "https://files.pythonhosted.org/packages/ce/7f/60c4e811a9e5a60510422c1d406a864fa48cf6e60e463b50ed1c9d845f4f/eea.converter-6.6.zip" } ], "6.7": [ { "comment_text": "", "digests": { "md5": "5130dac94b96633faa879aea90259034", "sha256": "f1ae0a1d6033e05294362ca271650b5b2aea7548ff432ac6c47144a4a367726a" }, "downloads": -1, "filename": "eea.converter-6.7.zip", "has_sig": false, "md5_digest": "5130dac94b96633faa879aea90259034", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 116973, "upload_time": "2014-03-17T07:26:47", "url": "https://files.pythonhosted.org/packages/78/7e/48c676853c83e1d7cb061997dd369fd3cf530c834056e905d34d49169de9/eea.converter-6.7.zip" } ], "6.8": [ { "comment_text": "", "digests": { "md5": "ac0e20f2d8f23d640121494c7aa5d2fc", "sha256": "7318cf168efd966a9031c0e306b6a3c712fc6d8c1a8eae67d4b08dd384078462" }, "downloads": -1, "filename": "eea.converter-6.8.zip", "has_sig": false, "md5_digest": "ac0e20f2d8f23d640121494c7aa5d2fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 119211, "upload_time": "2014-06-11T11:36:30", "url": "https://files.pythonhosted.org/packages/33/4f/96a7127e965a3bf35428697590e936e8a899bdcf4a1f4aecee513455579d/eea.converter-6.8.zip" } ], "7.0": [ { "comment_text": "", "digests": { "md5": "0f29915b29d3ff9ec73f314334e0dd0a", "sha256": "766e14f3f590e44fc89234d797f2f260baafc5c527cebc21d32e20fdbe66e229" }, "downloads": -1, "filename": "eea.converter-7.0.zip", "has_sig": false, "md5_digest": "0f29915b29d3ff9ec73f314334e0dd0a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 123923, "upload_time": "2014-07-17T09:20:16", "url": "https://files.pythonhosted.org/packages/07/09/a90b75c596225d898215c9ca1075856b5deb285b2c76ca80d7b3fb73b0f8/eea.converter-7.0.zip" } ], "7.1": [ { "comment_text": "", "digests": { "md5": "43b4aa3940bb340cf613b57504ce0e8e", "sha256": "552e6ea00e39364cf810ed12b345cfc6125d63f064327952266a0098c15e6488" }, "downloads": -1, "filename": "eea.converter-7.1.zip", "has_sig": false, "md5_digest": "43b4aa3940bb340cf613b57504ce0e8e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 159359, "upload_time": "2014-08-13T10:38:51", "url": "https://files.pythonhosted.org/packages/66/02/1c3de253f8de4066d9d56dcad5d98b70f359eece14d34b12b81dfea9ad64/eea.converter-7.1.zip" } ], "8.0": [ { "comment_text": "", "digests": { "md5": "49e19eb9bc66ff086db7107e7c240146", "sha256": "5f0a58160b95d899ac85ae9ac2647ad3b295542a0ec07a744a148ae585fbf130" }, "downloads": -1, "filename": "eea.converter-8.0.zip", "has_sig": false, "md5_digest": "49e19eb9bc66ff086db7107e7c240146", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 160315, "upload_time": "2014-09-16T13:30:46", "url": "https://files.pythonhosted.org/packages/d3/d0/48b4423f4cdb863ed07ff41dceea5cbfe5e79c417dc484a075be3f7c3d9d/eea.converter-8.0.zip" } ], "8.1": [ { "comment_text": "", "digests": { "md5": "6de482abd3499bac965ec0b63234e8d6", "sha256": "4817336803fd39d866d75a4bb7985ffc6b06d46f8e723f2a5f2d46c82aa8b4a9" }, "downloads": -1, "filename": "eea.converter-8.1.zip", "has_sig": false, "md5_digest": "6de482abd3499bac965ec0b63234e8d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 160451, "upload_time": "2014-10-02T12:20:15", "url": "https://files.pythonhosted.org/packages/49/c8/6e74b91d0e721f4bddc95bb3138d5c81d3d10dbb36d9ed57480a563059b3/eea.converter-8.1.zip" } ], "8.2": [ { "comment_text": "", "digests": { "md5": "067e12bf20e9b2b4dc2893ae67769b12", "sha256": "9aeb287d4d161e5e8e215a98db3d8eff12dc12f7f86251535288e9b3f46f6f25" }, "downloads": -1, "filename": "eea.converter-8.2.zip", "has_sig": false, "md5_digest": "067e12bf20e9b2b4dc2893ae67769b12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 171441, "upload_time": "2014-10-20T08:27:45", "url": "https://files.pythonhosted.org/packages/c0/0e/f5180e0fc2638a3d8cabdfc76800fcf600dc914fd5f58c7c5bb1b4430cd8/eea.converter-8.2.zip" } ], "8.3": [ { "comment_text": "", "digests": { "md5": "cc725b94ed698eabe5088a8abd889e4d", "sha256": "a9ffcf22136b90eeb04b846838595508c48319de67a76478b78099f20dd29796" }, "downloads": -1, "filename": "eea.converter-8.3.zip", "has_sig": false, "md5_digest": "cc725b94ed698eabe5088a8abd889e4d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 171636, "upload_time": "2014-11-21T15:44:32", "url": "https://files.pythonhosted.org/packages/4b/56/4ddd84257ed89fb3b2b0c613e2bf2e5667bc2e0f67f96c585ba19d9acc1d/eea.converter-8.3.zip" } ], "8.4": [ { "comment_text": "", "digests": { "md5": "ef63457a62d5448f4453ba39534fb1cc", "sha256": "b2fd2c98c43e10494856c19af760e50ef8f6afa8fb185b392a1791d17185a2e2" }, "downloads": -1, "filename": "eea.converter-8.4.zip", "has_sig": false, "md5_digest": "ef63457a62d5448f4453ba39534fb1cc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 172164, "upload_time": "2014-12-02T16:06:37", "url": "https://files.pythonhosted.org/packages/a0/85/4fe7f423e930fc5cb6a19ec7a969ebbe09db9e5bb11f5ae36617f323a073/eea.converter-8.4.zip" } ], "8.5": [ { "comment_text": "", "digests": { "md5": "a3657326fd5a717bb9ad7b4c3f642617", "sha256": "348e284429fc1d1b8f46bcf8f0cd19c4906cd4b02d2eab32fe67a21b2d4a158e" }, "downloads": -1, "filename": "eea.converter-8.5.zip", "has_sig": false, "md5_digest": "a3657326fd5a717bb9ad7b4c3f642617", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 173219, "upload_time": "2014-12-08T14:13:03", "url": "https://files.pythonhosted.org/packages/ad/e3/2db2ea399585f0e8f06f11c3ca8a8a983ce13e38e0c562adf7cd06577f2d/eea.converter-8.5.zip" } ], "8.6": [ { "comment_text": "", "digests": { "md5": "c1ed24fbabcb6310cec217e725a0e1d3", "sha256": "853dc8ae68b28772fdd97159a83bd1a0aff165ed5289749d3c4606b4fde09401" }, "downloads": -1, "filename": "eea.converter-8.6.zip", "has_sig": false, "md5_digest": "c1ed24fbabcb6310cec217e725a0e1d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 173761, "upload_time": "2014-12-23T15:11:52", "url": "https://files.pythonhosted.org/packages/d4/7e/eebbfff3c14b6b7570731046cc4420f55fdba5da8f45c304616f112f805f/eea.converter-8.6.zip" } ], "8.7": [ { "comment_text": "", "digests": { "md5": "4dd083052695ad7893c54cb7eb73ddfe", "sha256": "4ea52bded174ae18e225a85a06b712716b9960332ac4b3af641857d25919e949" }, "downloads": -1, "filename": "eea.converter-8.7.zip", "has_sig": false, "md5_digest": "4dd083052695ad7893c54cb7eb73ddfe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 174488, "upload_time": "2015-02-18T08:52:48", "url": "https://files.pythonhosted.org/packages/67/9a/a746351140d9823c06654e5814fa056f4ac4eee8bfe335b92e8aeef5cf29/eea.converter-8.7.zip" } ], "9.0": [ { "comment_text": "", "digests": { "md5": "5d371a5d9d4fccc5e1d47c3b66f34af7", "sha256": "e9618a658f24ea78c9e7955555532dc22dcfb983228fb2dcc06092566d6fb715" }, "downloads": -1, "filename": "eea.converter-9.0.zip", "has_sig": false, "md5_digest": "5d371a5d9d4fccc5e1d47c3b66f34af7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 187551, "upload_time": "2015-02-26T13:40:14", "url": "https://files.pythonhosted.org/packages/65/83/9581b0a1365add8d1fd348a73bb360527c8cdc61f5b22c4d02e82b32eac3/eea.converter-9.0.zip" } ], "9.1": [ { "comment_text": "", "digests": { "md5": "4fa9721631d46353048bf6b11b8e7293", "sha256": "f342f6ead2150f0005c620f27a018107fbbe751984b006ac2c1eb6409b57b7b1" }, "downloads": -1, "filename": "eea.converter-9.1.zip", "has_sig": false, "md5_digest": "4fa9721631d46353048bf6b11b8e7293", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 187848, "upload_time": "2015-03-19T07:45:28", "url": "https://files.pythonhosted.org/packages/66/3d/adbaf9ae6ed37b24545e44110e0831e9f457d86ec02a5fb9755a403937cd/eea.converter-9.1.zip" } ], "9.2": [ { "comment_text": "", "digests": { "md5": "4bd2a810f2a2d0707836d3e8d4524d34", "sha256": "95a83b0ac3a684302f680d978052b603eead6ce592b88f8f65a179721746223d" }, "downloads": -1, "filename": "eea.converter-9.2.zip", "has_sig": false, "md5_digest": "4bd2a810f2a2d0707836d3e8d4524d34", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 188160, "upload_time": "2015-04-06T07:23:45", "url": "https://files.pythonhosted.org/packages/b4/44/5398709cdb40b382e78e6d241f00e8c629c6154a3cf7636d0111c1432f73/eea.converter-9.2.zip" } ], "9.3": [ { "comment_text": "", "digests": { "md5": "b1d10adb68039aa8da7e9e3782809fd8", "sha256": "559a81edcd65a205138398372075b024f9a8c48a97771e479d69c1e14c221175" }, "downloads": -1, "filename": "eea.converter-9.3.zip", "has_sig": false, "md5_digest": "b1d10adb68039aa8da7e9e3782809fd8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 188792, "upload_time": "2015-05-13T06:53:08", "url": "https://files.pythonhosted.org/packages/9b/32/532b3a5c8af0b94979de9f2bd8b75a1ad1552ac41527b49b6a56eb73ca45/eea.converter-9.3.zip" } ], "9.4": [ { "comment_text": "", "digests": { "md5": "95aa5441217bec9bcf073cee935bac11", "sha256": "59b578afa9c88a717c60fe0c4f369a3e87c5ddff5f21459414e4880dc05186f9" }, "downloads": -1, "filename": "eea.converter-9.4.zip", "has_sig": false, "md5_digest": "95aa5441217bec9bcf073cee935bac11", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 188977, "upload_time": "2015-05-28T06:40:15", "url": "https://files.pythonhosted.org/packages/3c/85/44b63b7ceb3c22e6533c686213c8d07287566dc7cf1d74fccbff8cd43a92/eea.converter-9.4.zip" } ], "9.5": [ { "comment_text": "", "digests": { "md5": "a96be0dbf7f132cd407d7124faad142e", "sha256": "80f1bd2a5001f4582b64846df98bcabc5bd57f5ee168c24871bdd874b4d05c10" }, "downloads": -1, "filename": "eea.converter-9.5.zip", "has_sig": false, "md5_digest": "a96be0dbf7f132cd407d7124faad142e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 189545, "upload_time": "2015-08-05T12:10:33", "url": "https://files.pythonhosted.org/packages/dd/d2/4919517b8326eaf20d2d61b7bf0e8df1a7564c6b80f6238b4ef9fa617b04/eea.converter-9.5.zip" } ], "9.6": [ { "comment_text": "", "digests": { "md5": "40e78d8647f348de07a39a0a35bef841", "sha256": "abeb44cc38a4eda480d9de7c2892d23204f52c76cc20ec391b33a9683a62cab7" }, "downloads": -1, "filename": "eea.converter-9.6.zip", "has_sig": false, "md5_digest": "40e78d8647f348de07a39a0a35bef841", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 174687, "upload_time": "2015-08-31T14:56:25", "url": "https://files.pythonhosted.org/packages/dd/d2/35f6f6fa9818a9f1af0ebe428e253ea2e0ac8195cc6062e21cacd66a1878/eea.converter-9.6.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "e1353e68f8ee71e6e6e60f7d2d516ca2", "sha256": "ca74c4da73a9b02aec9bcf6d22575105f051e397bcdf089b99812a3e8fccae45" }, "downloads": -1, "filename": "eea.converter-12.8.zip", "has_sig": false, "md5_digest": "e1353e68f8ee71e6e6e60f7d2d516ca2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 426667, "upload_time": "2019-10-11T11:48:52", "url": "https://files.pythonhosted.org/packages/31/c5/c65d883511cb4eecdf906f463f4a8ef582cf1c7faada187d0109c55511a6/eea.converter-12.8.zip" } ] }