{ "info": { "author": "Andreas Jung", "author_email": "info@zopyx.com", "bugtrack_url": null, "classifiers": [ "Programming Language :: Python" ], "description": "zopyx.convert2\n==============\n\nThe ``zopyx.convert2`` package helps you to convert HTML to PDF, RTF, ODT, DOCX\nand WML using XSL-FO technology or using PrinceXML. This package is used as the\nlow-level API for zopyx.smartprintng.core.\n\n\nRequirements\n------------\n\n- Java 1.5.0 or higher (FOP 0.94 requires Java 1.6 or higher)\n\n- `csstoxslfo`__ (included)\n\n__ http://www.re.be/css2xslfo\n\n- `XFC-4.0`__ (XMLMind) for ODT, RTF, DOCX and WML support (if needed)\n\n__ http://www.xmlmind.com/foconverter\n\n- `XINC 2.0`__ (Lunasil) for PDF support (commercial)\n\n__ http://www.lunasil.com/products.html\n\n- or `FOP 0.94`__ (Apache project) for PDF support (free)\n\n__ http://xmlgraphics.apache.org/fop/download.html#dist-type \n\n- or `PrinceXML`__ (commercial) for PDF support \n\n__ http://www.princexml.com\n\nInstallation\n------------\n\n- install ``zopyx.convert2`` either using ``easy_install`` or by downloading the sources from the Python Cheeseshop. \n This will install automatically the Beautifulsoup and Elementree modules if necessary.\n- the environment variable *$XFC_DIR* must be set and point to the root of your XFC installation directory\n- the environment variable *$XINC_HOME* must be set and to point to the root of your XINC installation directory\n- the environment variable *$FOP_HOME* must be set and point to the root of your FOP installation directory\n- the 'prince' binary must be in the $PATH if you are using PrinceXML\n\nSupported platforms\n-------------------\n\nWindows, Unix\n\n\nSource code\n-----------\n\n- https://github.com/zopyx/zopyx.convert2\n\nBug tracker\n-----------\n\n- https://github.com/zopyx/zopyx.convert2/issues\n\nUsage\n-----\n\nSome examples from the Python command-line::\n\n from zopyx.convert2 import Converter\n C = Converter('/path/to/some/file.html')\n pdf_filename = C('pdf-xinc')['output_filename'] # using XINC\n pdf2_filename = C('pdf-pisa')['output_filename'] # using PISA\n pdf3_filename = C('pdf-fop')['output_filename'] # using FOP\n pdf4_filename = C('pdf-prince')['output_filename'] # using FOP\n rtf_filename = C('rtf-xfc')['output_filename'] \n pdt_filename = C('odt-xfc')['output_filename']\n wml_filename = C('wml-xfc')['output_filename']\n docx_filename = C('docx-xfc')['output_filename']\n\nA very simple command-line converter is also available::\n\n html-convert --format rtf --output foo.rtf sample.html\n\n\n`html-convert` has a --test option that will convert some\nsample HTML. If everything is ok then you should see something like that::\n\n >html-convert --test\n Entering testmode\n pdf: /tmp/tmpuOb37m.html -> /tmp/tmpuOb37m.pdf\n rtf: /tmp/tmpuOb37m.html -> /tmp/tmpuOb37m.rtf\n docx: /tmp/tmpuOb37m.html -> /tmp/tmpuOb37m.docx\n odt: /tmp/tmpuOb37m.html -> /tmp/tmpuOb37m.odt\n wml: /tmp/tmpuOb37m.html -> /tmp/tmpuOb37m.wml\n pdf: /tmp/tmpZ6PGo9.html -> /tmp/tmpZ6PGo9.pdf\n rtf: /tmp/tmpZ6PGo9.html -> /tmp/tmpZ6PGo9.rtf\n docx: /tmp/tmpZ6PGo9.html -> /tmp/tmpZ6PGo9.docx\n odt: /tmp/tmpZ6PGo9.html -> /tmp/tmpZ6PGo9.odt\n wml: /tmp/tmpZ6PGo9.html -> /tmp/tmpZ6PGo9.wml\n\n\nHow zopyx.convert2 works internally\n-----------------------------------\n\n- The source HTML file is converted to XHTML using mxTidy\n- the XHTML file is converted to FO using the great \"csstoxslfo\" converter\n written by Werner Donne.\n- the FO file is passed either to the external XINC or XFC converter to \n generated the desired output format\n- all converters are based on Java technology make the conversion solution\n highly portable across operating system (including Windows)\n\nEnvironment variables\n---------------------\n\nThe following environment variables can be used to resolve OS or distribution\nspecific problems:\n\n``ZOPYX_CONVERT_SHELL`` - defaults to ``sh`` and is used to as shell command to\nexecute external converters\n\n``ZOPYX_CONVERT_EXECUTION_MODE`` - default to ``process`` and refers to the\nmethod of Python executing external command (by default using the ``process`` module.\nOther value: ``system``, ``commands``\n\n\nKnown issues\n------------\n\n- If you are using zopyx.convert2 together with FOP: use the latest FOP 0.94\n only. Don't use any packaged FOP version like the one from MacPorts which is\n known to be broken. \n\n- Ensure that you have read the ``csstoxslfo`` documentation. ``csstoxslfo`` has\n several requirements about the HTML markup. Don't expect that it is the ultimate\n HTML converter. Any questions regarding the necessary markup are documented in the \n ``csstoxslfo`` documentation and will not be answered. \n\nAuthor\n------\n\n``zopyx.convert2`` was written by Andreas Jung for ZOPYX Ltd., Tuebingen, Germany.\n\n\nLicense\n-------\n\n``zopyx.convert2`` is published under the Zope Public License (ZPL 2.1).\nSee LICENSE.txt.\n\n\nContact\n-------\n\n| ZOPYX Ltd.\n| Charlottenstr. 37/1\n| D-72070 Tuebingen, Germany\n| info@zopyx.com\n| www.zopyx.com\n\nChanges:\n========\n\nChangelog\n=========\n\n2.4.5 (2012-11-05)\n------------------\n- fixed typo\n\n2.4.4 (2012-11-05)\n------------------\n- creating tidyed file inside the existing folder instead\n of in $TMPDIR. This error caused that some style files \n could not we loaded with PDFreactor\n\n2.4.3 (2012-06-20)\n------------------\n- fixed logger (mis-)usage\n- fixed API documentation \n\n2.4.2 (2012-01-01)\n------------------\n- experimental support for PDFreactor\n\n2.4.1 (2011-11-11)\n------------------\n- fixed BeautifulSoup dependency\n\n2.4 (2011-11-07)\n------------------\n- documentation updated in order to reflect changes\n to the first public release of the Plone Client Connector\n\n2.3.2 (2011-08-23)\n------------------\n- added support for %(WORKDIR)s substitution in Calibre converter\n\n2.3.1 (2011-06-15)\n------------------\n- support for PISA (pdf-pisa-bin) - requires that 'pisa'\n is found in the $PATH\n \n2.3.0 (2011-06-05)\n------------------\n- support for PISA (pdf-pisa)\n \n2.2.5 (2011-04-03)\n------------------\n- calibre converter now honors the commandlineoptions.txt file\n\n2.2.4 (2010-12-16)\n------------------\n- stripping of BASE tag for XFC-based converters \n\n2.2.3 (2010-08-16)\n------------------\n- made stripping of the BASE tag specific to pdf-fop\n\n2.2.2 (2010-08-15)\n------------------\n- pdf-fop converter not registered properly\n\n2.2.1 (2010-07-19)\n------------------\n- support $ZOPYX_CONVERT_SHELL \n\n2.2.0 (2010-05-15)\n------------------\n- dedicated ConversionError exception added\n\n2.1.1 (2010-02-19)\n------------------\n- relaxed tidy check for existence of images\n\n2.1.0 (2009-09-05)\n------------------\n- Calibre integration\n- API change: convert() now returns a richer dict with all related\n conversion results\n\n2.0.4 (2009-07-07)\n--------------------\n- pinned BeautifulSoup 3.0.x\n\n2.0.3 (2009-07-05)\n--------------------\n- fix in fop.py\n\n2.0.2 (2009-06-02)\n--------------------\n- fixed broken path for test data files\n\n2.0.1 (2009-06-02)\n--------------------\n- added environment variable ZOPYX_CONVERT_EXECUTE_METHOD to control the usage\n of the process module vs. os.system() (in case of hanging Java processes).\n Possible values: 'process' (default), 'system'\n\n2.0.0 (2009-05-14)\n--------------------\n- final release\n\n2.0.0b3 (25.12.2008)\n--------------------\n- tidy: rewrite image references relative to the html\n file to be converted\n\n2.0.0b2 (05.10.2008)\n--------------------\n- fixed some import errors\n- now working with zopyx.smartprintng.core\n\n2.0.0b1 (04.10.2008)\n--------------------\n- initial release\n- complete new reimplementation of zopyx.convert\n- added support for PrinceXML", "description_content_type": null, "docs_url": "https://pythonhosted.org/zopyx.convert2/", "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://pypi.python.org/pypi/zopyx.convert2", "keywords": null, "license": "ZPL (see LICENSE.txt)", "maintainer": null, "maintainer_email": null, "name": "zopyx.convert2", "package_url": "https://pypi.org/project/zopyx.convert2/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/zopyx.convert2/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://pypi.python.org/pypi/zopyx.convert2" }, "release_url": "https://pypi.org/project/zopyx.convert2/2.4.6/", "requires_dist": null, "requires_python": null, "summary": "A Python interface for the conversion of HTML to PDF, RTF, DOCX, WML and ODT) - belongs to zopyx.smartprintng.core", "version": "2.4.6" }, "last_serial": 1952724, "releases": { "2.0.0": [ { "comment_text": "", "digests": { "md5": "cad0fa54d0c8658f97137f3c6ff087e7", "sha256": "4fe8a41f5bf66737d6efb5f604714c3678a28f5ba0914b73ecae7cd603cb4f30" }, "downloads": -1, "filename": "zopyx.convert2-2.0.0.tar.gz", "has_sig": false, "md5_digest": "cad0fa54d0c8658f97137f3c6ff087e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 350157, "upload_time": "2009-05-14T15:31:27", "url": "https://files.pythonhosted.org/packages/21/27/d5c85a698d67c271643ca2ce31021a54b6c75fb558cd61c5924a2c056116/zopyx.convert2-2.0.0.tar.gz" } ], "2.0.0b1": [ { "comment_text": "", "digests": { "md5": "5f69e72b9627e552c51d3bda11aa8c6f", "sha256": "da5e43ba9bdd5748a3c5968c49959bade8fecdba4da10af7d0f0cb55951b83bd" }, "downloads": -1, "filename": "zopyx.convert2-2.0.0b1.tar.gz", "has_sig": false, "md5_digest": "5f69e72b9627e552c51d3bda11aa8c6f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 350625, "upload_time": "2008-10-04T17:28:24", "url": "https://files.pythonhosted.org/packages/d7/9e/4d32af89bd4cbc86a2add7ea519d7d7bd5a0f21241a6e6dc89e398e7a168/zopyx.convert2-2.0.0b1.tar.gz" } ], "2.0.0b2": [ { "comment_text": "", "digests": { "md5": "7ca7026c943175cb72e8bf638feef3b0", "sha256": "28e2f3ff844419651a06f9e63ed6d4f38a009fd61ecd134f1203387946bba77a" }, "downloads": -1, "filename": "zopyx.convert2-2.0.0b2.tar.gz", "has_sig": false, "md5_digest": "7ca7026c943175cb72e8bf638feef3b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 348094, "upload_time": "2008-10-05T06:46:51", "url": "https://files.pythonhosted.org/packages/ea/6e/41dd432e541ff28522017f9a0418b08ca88950b655e7f2b694099ed416be/zopyx.convert2-2.0.0b2.tar.gz" } ], "2.0.0b3": [ { "comment_text": "", "digests": { "md5": "972b1f353b27f6a0ac00c310c9ce3bb6", "sha256": "7b63e3bb116696e7bbe000c608edc0f465f59a59c299de08683a1fa2f93000c5" }, "downloads": -1, "filename": "zopyx.convert2-2.0.0b3.tar.gz", "has_sig": false, "md5_digest": "972b1f353b27f6a0ac00c310c9ce3bb6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 349959, "upload_time": "2008-12-25T08:33:39", "url": "https://files.pythonhosted.org/packages/b6/43/304998ca7f6e297e720eb228ae8176601f01cdfaadc2fb875a0c09914d59/zopyx.convert2-2.0.0b3.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "3a80b1e9e1d56cf004adc1c2c3195f62", "sha256": "ad503df27c9849bef7fec1ee2e6a9d48574ec58731b928f4978346e2f3b116e1" }, "downloads": -1, "filename": "zopyx.convert2-2.0.1.tar.gz", "has_sig": false, "md5_digest": "3a80b1e9e1d56cf004adc1c2c3195f62", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 347471, "upload_time": "2009-06-02T15:44:48", "url": "https://files.pythonhosted.org/packages/c8/5e/d8d589edc2173ae8a8cfd34c33dca7d88de39de912758d717a2a8b2f695d/zopyx.convert2-2.0.1.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "901c2ab2f587af48777edfc9556f15df", "sha256": "3a19b64a973f1396223b8b5aa22730f318567e9b3a83423593e53625d33fa603" }, "downloads": -1, "filename": "zopyx.convert2-2.0.2.tar.gz", "has_sig": false, "md5_digest": "901c2ab2f587af48777edfc9556f15df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 350486, "upload_time": "2009-06-02T17:34:17", "url": "https://files.pythonhosted.org/packages/67/a0/931686c193306fcc726b9051206c3edcdea22aff8029b91e8821c61cf759/zopyx.convert2-2.0.2.tar.gz" } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "399c49c768bddb3e7c88048eaac6b656", "sha256": "40672f42a444134deea942e2f9930f8b2e990e68bd77f02cfc07282c70b6640e" }, "downloads": -1, "filename": "zopyx.convert2-2.0.3.tar.gz", "has_sig": false, "md5_digest": "399c49c768bddb3e7c88048eaac6b656", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 347671, "upload_time": "2009-07-05T14:25:33", "url": "https://files.pythonhosted.org/packages/d6/ef/b07996f95e425a0efd8b090cf9f73ef0f6ae85dc1f0658c0265dc1ab95ee/zopyx.convert2-2.0.3.tar.gz" } ], "2.0.4": [ { "comment_text": "", "digests": { "md5": "56fe8b1a53ca3ad66894911ef6d4d183", "sha256": "be9e72dd6d8af32207e43ef771819d357ea84600909ffed506d676fa1989d52f" }, "downloads": -1, "filename": "zopyx.convert2-2.0.4.tar.gz", "has_sig": false, "md5_digest": "56fe8b1a53ca3ad66894911ef6d4d183", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 347719, "upload_time": "2009-07-07T16:08:56", "url": "https://files.pythonhosted.org/packages/da/2b/5e4d82a8680561c8df640de2dd64926279515bb57dcc56f6a98b900330fb/zopyx.convert2-2.0.4.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "dcbea8b4c7d99bdafa385630ac177c6c", "sha256": "4a95fe5559f412dee694a78442591a82e94fbb2de27d235606a0d71cc114b034" }, "downloads": -1, "filename": "zopyx.convert2-2.1.0.tar.gz", "has_sig": false, "md5_digest": "dcbea8b4c7d99bdafa385630ac177c6c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 346710, "upload_time": "2009-09-05T14:58:39", "url": "https://files.pythonhosted.org/packages/a8/3c/bfb3212ff558fb118e8f3cb5f51a3ca6b1b3eab1d90b7da92bb2049bc040/zopyx.convert2-2.1.0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "4f208f7e057c3131fb16fecaf8baa03b", "sha256": "7a9cad9fc04fad149fd9e18ffa56382c464919435ed406c95db2eab8bc1cb91a" }, "downloads": -1, "filename": "zopyx.convert2-2.1.1.tar.gz", "has_sig": false, "md5_digest": "4f208f7e057c3131fb16fecaf8baa03b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 346805, "upload_time": "2010-02-19T16:45:22", "url": "https://files.pythonhosted.org/packages/f3/3d/c1a7c9cb264eee5d31241d554a9913e7aed162555eac4c5a84a280b8961d/zopyx.convert2-2.1.1.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "cd911d1792226f5b186c23b2a5d60ebe", "sha256": "9e08eb55dbb61cbe06ab3d9ede7cd341314c416e65c6f4933e220f335498aab3" }, "downloads": -1, "filename": "zopyx.convert2-2.2.0.tar.gz", "has_sig": false, "md5_digest": "cd911d1792226f5b186c23b2a5d60ebe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 348594, "upload_time": "2010-05-15T16:21:36", "url": "https://files.pythonhosted.org/packages/dc/6c/9c7a32bb31153fb1213f88aab4473c8fb260f5e32a1f1a5afb65e5bc3fa1/zopyx.convert2-2.2.0.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "58ce70f93ef1435f68acd3f2a4edebb4", "sha256": "e23ad2733209a5bf24220ab73d934c6934f1438ff630967e4c7b954959b75f8d" }, "downloads": -1, "filename": "zopyx.convert2-2.2.1.tar.gz", "has_sig": false, "md5_digest": "58ce70f93ef1435f68acd3f2a4edebb4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 348870, "upload_time": "2010-07-19T07:31:47", "url": "https://files.pythonhosted.org/packages/16/ad/0cdaa52729044ec0dec89874f60531dd0b046567f32cf67c1100ef57b1eb/zopyx.convert2-2.2.1.tar.gz" } ], "2.2.2": [ { "comment_text": "", "digests": { "md5": "0f844dee90bf981149ee174bf0de0552", "sha256": "82ecbc0cb7bb064d773b336480b8327e9d2317c8e1e2427d22573177e36612cb" }, "downloads": -1, "filename": "zopyx.convert2-2.2.2.tar.gz", "has_sig": false, "md5_digest": "0f844dee90bf981149ee174bf0de0552", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 351004, "upload_time": "2010-08-15T10:35:32", "url": "https://files.pythonhosted.org/packages/b2/01/66dc93d4904bbf2fab7e41c32dfdc2dfa9cd95e7d06815c13e3ebfdecf1a/zopyx.convert2-2.2.2.tar.gz" } ], "2.2.3": [ { "comment_text": "", "digests": { "md5": "b2bf8c9bac19d74cde4655cf200c8d0f", "sha256": "acab37f06a8be0de47443ebb0a6e346406ea9bb0f1d3f33a611069b4bd4d3a17" }, "downloads": -1, "filename": "zopyx.convert2-2.2.3.tar.gz", "has_sig": false, "md5_digest": "b2bf8c9bac19d74cde4655cf200c8d0f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 351165, "upload_time": "2010-08-16T14:35:47", "url": "https://files.pythonhosted.org/packages/e6/ca/99e34e6511a5e97de5fb542409553c8f87364899dea3ff9539501c1a4a0d/zopyx.convert2-2.2.3.tar.gz" } ], "2.2.4": [ { "comment_text": "", "digests": { "md5": "2f6967037041b65557e8aa6d497348fc", "sha256": "ae748bb71341c697ea5c73aff69fb85de641ca21768dc683d3e4ff310873e6d6" }, "downloads": -1, "filename": "zopyx.convert2-2.2.4.tar.gz", "has_sig": false, "md5_digest": "2f6967037041b65557e8aa6d497348fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 352053, "upload_time": "2010-12-16T12:34:40", "url": "https://files.pythonhosted.org/packages/91/e2/4cacfda53a35f5e1ef698c1c05e45d7366176adfd983e362b052496304b6/zopyx.convert2-2.2.4.tar.gz" } ], "2.2.5": [ { "comment_text": "", "digests": { "md5": "eee5de0b79ab88de1591db7e41ce6277", "sha256": "c7ccf2b90a4c38508b4d0fb07726cf7dfd7fcc0fceb288081f7945a4d48e0140" }, "downloads": -1, "filename": "zopyx.convert2-2.2.5.tar.gz", "has_sig": false, "md5_digest": "eee5de0b79ab88de1591db7e41ce6277", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 352238, "upload_time": "2011-04-03T15:01:20", "url": "https://files.pythonhosted.org/packages/dd/bc/73b67a41163d0e81155a67199b6554119c5a16421cf8f81735559eb778d8/zopyx.convert2-2.2.5.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "3e85a9688875c178d7354f28f2e91887", "sha256": "43c25aba228e414503a45639f9f70188a04d161bf39d09833bdba97961bf7525" }, "downloads": -1, "filename": "zopyx.convert2-2.3.0.tar.gz", "has_sig": false, "md5_digest": "3e85a9688875c178d7354f28f2e91887", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 347924, "upload_time": "2011-06-05T17:01:53", "url": "https://files.pythonhosted.org/packages/70/27/9415904c8e7dbb2c362047e115ec8c9d57bc68d2f7feec690fb4f2027e98/zopyx.convert2-2.3.0.tar.gz" } ], "2.3.1": [ { "comment_text": "", "digests": { "md5": "57b72dc9e6d641385ef2200bb93c447a", "sha256": "702e6b9548151a0c47ca2307e0ed62c37cdb78f733a0fcc38c0b448c8e9acdb1" }, "downloads": -1, "filename": "zopyx.convert2-2.3.1.zip", "has_sig": false, "md5_digest": "57b72dc9e6d641385ef2200bb93c447a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 365818, "upload_time": "2011-06-15T10:01:35", "url": "https://files.pythonhosted.org/packages/4f/d5/b5ac584fc2be74791224f958cc97777c0d927935adaf9693bd7405474c9a/zopyx.convert2-2.3.1.zip" } ], "2.3.2": [ { "comment_text": "", "digests": { "md5": "74ace8b637f3121fc6ccdc6905739469", "sha256": "ad60e93603698c9bf32fda3528b5a11bea353270db60b74ff853be474bbc0b9c" }, "downloads": -1, "filename": "zopyx.convert2-2.3.2.zip", "has_sig": false, "md5_digest": "74ace8b637f3121fc6ccdc6905739469", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 365960, "upload_time": "2011-08-23T12:45:09", "url": "https://files.pythonhosted.org/packages/0c/7d/f3afe98e4951fd717eedd3f53ba8588707edba220b6927a571cda0405f35/zopyx.convert2-2.3.2.zip" } ], "2.3.2.1": [ { "comment_text": "", "digests": { "md5": "05c6c3455c4774322f2ae66a136ca398", "sha256": "3e8a7b8e6e7e029dae8862ae4bc23508eed0ed8994b24c39ec56538553455594" }, "downloads": -1, "filename": "zopyx.convert2-2.3.2.1.zip", "has_sig": false, "md5_digest": "05c6c3455c4774322f2ae66a136ca398", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 366136, "upload_time": "2011-08-23T13:46:40", "url": "https://files.pythonhosted.org/packages/f8/15/26f16b7600913709787843f40339648234ab620ff2d7f985240759ae4ed3/zopyx.convert2-2.3.2.1.zip" } ], "2.4": [ { "comment_text": "", "digests": { "md5": "db4e24878dad84336e6ec5da3a6af2e5", "sha256": "bfc46c8c49486dc11af65eb33cd80a8aed493c3f749cbf2be239ab145a169bf1" }, "downloads": -1, "filename": "zopyx.convert2-2.4.zip", "has_sig": false, "md5_digest": "db4e24878dad84336e6ec5da3a6af2e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 365691, "upload_time": "2011-11-07T18:04:08", "url": "https://files.pythonhosted.org/packages/0a/f7/2ae3b3966e6a58ac0879f1c376d3805337a1120edb33f390a36363dd2164/zopyx.convert2-2.4.zip" } ], "2.4.1": [ { "comment_text": "", "digests": { "md5": "801e22e1564069f91acef2d263b78953", "sha256": "5b8f338b4b0cb210be114c3cec96dbaf62029e6515f5b9a119e3396b9eff7bd7" }, "downloads": -1, "filename": "zopyx.convert2-2.4.1.zip", "has_sig": false, "md5_digest": "801e22e1564069f91acef2d263b78953", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 365932, "upload_time": "2011-11-11T00:36:09", "url": "https://files.pythonhosted.org/packages/2e/d3/89096059e96a3962d2f24c2223007d428afc9ea7c8508f7820847cf5bf85/zopyx.convert2-2.4.1.zip" } ], "2.4.2": [ { "comment_text": "", "digests": { "md5": "9cde9bca4e90e2b3c8de9195e0a51715", "sha256": "9be31dd47a33fc9d8b8b75cb5401ba67187419b1aabc8cd4ce395bd34bd1aaf9" }, "downloads": -1, "filename": "zopyx.convert2-2.4.2.zip", "has_sig": false, "md5_digest": "9cde9bca4e90e2b3c8de9195e0a51715", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 369967, "upload_time": "2011-11-13T15:55:47", "url": "https://files.pythonhosted.org/packages/e6/1b/38ca3aa80d22c259873a6d1d52372e981598c7874f69d81da29d4c3fe62a/zopyx.convert2-2.4.2.zip" } ], "2.4.2.1": [ { "comment_text": "", "digests": { "md5": "766a73afa169f0a675927e3a86ccf813", "sha256": "85de88203f5c7c432c8f94fd6dd78dfe652b101f4f273276ca7f16923a3178d2" }, "downloads": -1, "filename": "zopyx.convert2-2.4.2.1.zip", "has_sig": false, "md5_digest": "766a73afa169f0a675927e3a86ccf813", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 372251, "upload_time": "2011-11-13T16:42:33", "url": "https://files.pythonhosted.org/packages/c7/0c/8792c45ca949d69428583f04ce0c1333be650ba7e84554de522624988412/zopyx.convert2-2.4.2.1.zip" } ], "2.4.3": [ { "comment_text": "", "digests": { "md5": "dd997646e310e9187518ed3bf1e46aa2", "sha256": "4d42e02e5bf7857c2c4e01079e15213bc38bebf5e0139e73f95dc7cbe7148c8e" }, "downloads": -1, "filename": "zopyx.convert2-2.4.3.zip", "has_sig": false, "md5_digest": "dd997646e310e9187518ed3bf1e46aa2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 373224, "upload_time": "2012-06-20T20:03:31", "url": "https://files.pythonhosted.org/packages/b4/3a/8249e3dd7b40a096f956ca1db9c300858410b23439bdb8989de708aceb1d/zopyx.convert2-2.4.3.zip" } ], "2.4.4": [ { "comment_text": "", "digests": { "md5": "6907d2e03ddc0624ad2247a3ae641bdc", "sha256": "252d619fece85263df5c6ad819d2e15dec947e03683b7c5794246220e7801cd9" }, "downloads": -1, "filename": "zopyx.convert2-2.4.4.zip", "has_sig": false, "md5_digest": "6907d2e03ddc0624ad2247a3ae641bdc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 373465, "upload_time": "2012-11-05T11:54:35", "url": "https://files.pythonhosted.org/packages/c2/ab/093591e2df94ee27adaed4e7632d263c99a6b4bc0f18c51aab57c5287a62/zopyx.convert2-2.4.4.zip" } ], "2.4.5": [ { "comment_text": "", "digests": { "md5": "ccc2f5ec996cec9d65ca59e9fa2f645e", "sha256": "2044dc3b502e4733b8a2c96b28a918d01468b5b279f8d59ecf0c619318779ff4" }, "downloads": -1, "filename": "zopyx.convert2-2.4.5.zip", "has_sig": false, "md5_digest": "ccc2f5ec996cec9d65ca59e9fa2f645e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 373478, "upload_time": "2012-11-05T12:20:22", "url": "https://files.pythonhosted.org/packages/14/38/f40ef4cae96d1ef890f7ca1dc03ab5fa6caa2d3edddc892e367e8879b8b9/zopyx.convert2-2.4.5.zip" } ], "2.4.6": [ { "comment_text": "", "digests": { "md5": "504853a8bdba24a7a86fe40a2603d5bf", "sha256": "e0ce28d6ec8e8e09597879b34007d18f420121819c35743b6e490074c5e8531f" }, "downloads": -1, "filename": "zopyx.convert2-2.4.6.zip", "has_sig": false, "md5_digest": "504853a8bdba24a7a86fe40a2603d5bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 373521, "upload_time": "2016-02-12T10:12:13", "url": "https://files.pythonhosted.org/packages/73/b9/b76cbd7e097187315f0117dcc241ae4983275e5b7ae4531d8a6d34de60b3/zopyx.convert2-2.4.6.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "504853a8bdba24a7a86fe40a2603d5bf", "sha256": "e0ce28d6ec8e8e09597879b34007d18f420121819c35743b6e490074c5e8531f" }, "downloads": -1, "filename": "zopyx.convert2-2.4.6.zip", "has_sig": false, "md5_digest": "504853a8bdba24a7a86fe40a2603d5bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 373521, "upload_time": "2016-02-12T10:12:13", "url": "https://files.pythonhosted.org/packages/73/b9/b76cbd7e097187315f0117dcc241ae4983275e5b7ae4531d8a6d34de60b3/zopyx.convert2-2.4.6.zip" } ] }