{ "info": { "author": "Andreas Jung", "author_email": "info@zopyx.com", "bugtrack_url": null, "classifiers": [ "Programming Language :: Python" ], "description": "=======================================\nA Python interface to XSL-FO libraries. \n=======================================\n\nThe zopyx.convert package helps you to convert HTML to PDF, RTF, ODT, DOCX and\nWML using XSL-FO technology.\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- `BeautifulSoup`__ (will be installed automatically through easy_install. See Installation.)\n\n__ http://www.crummy.com/software/BeautifulSoup/\n \n- `ElementTree`__ (will be installed automatically through easy_install. See Installation.)\n\n__ http://effbot.org/zone/element-index.html\n\nInstallation\n============\n\n- install **zopyx.convert** 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\nSupported platforms\n===================\n\nWindows, Unix\n\n\nSubversion repository\n=====================\n\n- http://svn-public.zopyx.com/viewvc/python-projects/zopyx.convert/trunk/\n\n\nUsage\n=====\n\nSome examples from the Python command-line::\n\n from zopyx.convert import Converter\n C = Converter('/path/to/some/file.html')\n pdf_filename = C('pdf') # using XINC\n pdf2_filename = C('pdf2') # using FOP\n rtf_filename = C('rtf')\n pdt_filename = C('odt')\n wml_filename = C('wml')\n docx_filename = C('docx')\n\nA very simple command-line converter is also available::\n\n xslfo-convert --format rtf --output foo.rtf sample.html\n\n\n`xslfo-convert` has a --test option that will convert some\nsample HTML. If everything is ok then you should see something like that::\n\n >xslfo-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.convert 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\nKnown issues\n============\n\n- If you are using zopyx.convert 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.convert** was written by Andreas Jung for ZOPYX Ltd. & Co. KG, Tuebingen, Germany.\n\n\nLicense\n=======\n\n**zopyx.convert** is published under the Zope Public License 2.1 (ZPL).\nSee LICENSE.txt.\n\n\nContact\n=======\n\n| ZOPYX Ltd. & Co. KG\n| c/o Andreas Jung, \n| Charlottenstr. 37/1\n| D-72070 Tuebingen, Germany\n| E-mail: info at zopyx dot com\n| Web: http://www.zopyx.com\n\nChanges:\n========\n\n1.1.11 (07.06.2009)\n------------------\n- moved code repository to svn.zope.org\n- changed license to ZPL\n\n1.1.10 (29.05.2009)\n------------------\n- support for USE_OS_SYSTEM environment variable (as workaround\n for hanging Java processes)\n\n1.1.9 (04.01.2009)\n------------------\n- fixed packaging issue\n\n1.1.8 (26.06.2008)\n------------------\n- changed logging levels\n- reorganized files\n\n1.1.7 (20.06.2008)\n------------------\n- better support for csstoxslfo commandline options\n\n1.1.6 (19.04.2008)\n------------------\n- call 'fop' using bash\n- better logger configuration\n- minor code cleanup \n\n1.1.5 (01.03.2008)\n------------------\n\n- updated documentation\n\n1.1.4 (05.02.2008)\n------------------\n\n- remove duplicate ID attributes\n\n1.1.3 (31.01.2008)\n------------------\n\n- clearified Java requirements for FOP\n\n1.1.2 (22.01.2008)\n------------------\n\n- removed some nasty debugging code\n\n1.1.1 (22.01.2008)\n------------------\n\n- supporting FOP on Windows\n \n1.1.0 (20.01.2008)\n------------------\n\n- support for free FOP PDF converter\n\n\n1.0.6 (14.10.2007)\n------------------\n\n- html2fo: added workaround for generated FO code for\n PRE tags\n\n1.0.5 (05.10.2007)\n------------------\n\n- minor bugfixes\n\n1.0.4 (05.10.2007)\n------------------\n\n- Windows support added\n\n1.0.3 (04.10.2007)\n------------------\n\n- passing -Duser.language=en to java in order to \n prevent corrupted FO code caused by locales\n\n\n1.0.2 (03.10.2007)\n------------------\n\n- bugfix\n\n1.0.1 (03.10.2007)\n------------------\n\n- added --test option to command-line frontend\n\n\n1.0.0 (30.09.2007)\n------------------\n\n- update to css2xslfo V 1.5.0\n\n- official 1.0.0 release\n\n0.5.0 (09.09.2007)\n------------------\n\n- replaced mxTidy related code with the BeautifulSoup\n module (no longer requires any compiling)\n\n- html2fo checks the existence of images\n\n\n0.4.9 (25.07.2007)\n------------------\n\n- support for utidy lib (which is the preferred tidy library).\n Using mx.Tidy only as fallback\n\n0.4.8 (unreleased)\n------------------\n\n- unreleased\n\n0.4.7 (08.07.2007)\n------------------\n\n- reSTified documentation\n\n0.4.6 (08.07.2007)\n------------------\n\n- fixes in availableFormats()\n\n0.4.5 (07.07.2007)\n------------------\n\n- various FO fixes\n\n0.4.4 (06.07.2007)\n------------------\n\n- using logging module\n\n0.4.3 (05.07.2007)\n------------------\n\n- html2fo: using ElementTree for most FO modifications\n\n0.4.2 (30.06.2007)\n------------------\n\n- converting page-break-after: always back into break-after: page\n\n0.4.1 (24.06.2007)\n------------------\n\n- various fixes \n\n0.4.0 (24.06.2007)\n------------------\n\n- added zope interfaces\n- converters are now classes\n- added unittests\n\n0.3.1 (18.06.2007)\n------------------\n\n- html2fo() and the converter constructor got a new 'encoding' \n parameter in order to specify the input encoding of the \n HTML file. This parameter will be passed down to Tidy in order\n to perform a proper conversion of non-ascii characters.\n\n0.3.0 (unreleased)\n------------------\n\n- using subprocess module of Python\n- new Convert() class for high-level XSLFO access\n- logger added\n- better checks for XINC, XFC\n- updated documentation\n\n\n0.2.0 (16.06.2007)\n------------------\n\n- PDF support added\n- command line interface added\n- mxTidy integration\n\n\n0.1.0 (16.06.2007)\n------------------\n\n- initial release", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://cheeseshop.python.org/pypi/zopyx.convert", "keywords": null, "license": "ZPL 2.1 (see LICENSE.txt)", "maintainer": null, "maintainer_email": null, "name": "zopyx.convert", "package_url": "https://pypi.org/project/zopyx.convert/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/zopyx.convert/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://cheeseshop.python.org/pypi/zopyx.convert" }, "release_url": "https://pypi.org/project/zopyx.convert/1.1.11/", "requires_dist": null, "requires_python": null, "summary": "A Python interface to XSL-FO libraries (Conversion HTML to PDF, RTF, DOCX, WML and ODT)", "version": "1.1.11" }, "last_serial": 802415, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "650aaddbba1a89166438f57a9aa61f83", "sha256": "9967c1773697c692f3e1325a17c4773d901610d99722fbe8957d55b07437271c" }, "downloads": -1, "filename": "zopyx.convert-0.1-py2.4.egg", "has_sig": false, "md5_digest": "650aaddbba1a89166438f57a9aa61f83", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 369504, "upload_time": "2007-06-16T12:56:34", "url": "https://files.pythonhosted.org/packages/1a/b4/40dbed3ed5058b88999a6b99be4c60f9d1f95e475020c1404c331a2cc412/zopyx.convert-0.1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "e31e5c114b5b87e22a097ec74e0d2e75", "sha256": "8e27433613dd782c59c3dd56a5becd06922e89a7373bc11594d8ac40982fc448" }, "downloads": -1, "filename": "zopyx.convert-0.1-py2.5.egg", "has_sig": false, "md5_digest": "e31e5c114b5b87e22a097ec74e0d2e75", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 369490, "upload_time": "2007-06-16T12:56:44", "url": "https://files.pythonhosted.org/packages/51/c4/a70ef04c14059cbbfb4873aaaa0ab4711786677c92ee03fbbb273fc2cd50/zopyx.convert-0.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "0083484a3ae83a12d3af662df77c336f", "sha256": "5e3fa89153305f6a72287b2dafbc9005678b73a02cf97dbdf12b213fd67161eb" }, "downloads": -1, "filename": "zopyx.convert-0.1.tar.gz", "has_sig": false, "md5_digest": "0083484a3ae83a12d3af662df77c336f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 364174, "upload_time": "2007-06-16T12:56:54", "url": "https://files.pythonhosted.org/packages/45/75/a55b49221e941fb9ed102f606ef50c92fe1d23c8798097c95fa01f6d19db/zopyx.convert-0.1.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "4752fffa0cb3cf42429d11d8ee2514ca", "sha256": "8ab67e7a7628f8f85542a8d5c363cff886c87fc1e9e59eff15e94c95a189a500" }, "downloads": -1, "filename": "zopyx.convert-0.1.1-py2.4.egg", "has_sig": false, "md5_digest": "4752fffa0cb3cf42429d11d8ee2514ca", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 373890, "upload_time": "2007-06-16T15:41:30", "url": "https://files.pythonhosted.org/packages/28/f1/60bd3d18658d4bc6326b828c28181479816468d63ecc8c453edfd3dbc58f/zopyx.convert-0.1.1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "5b010a59056e325e4377e0daffbce9bf", "sha256": "b4896a0879157006ea651eb366561bac27d5e2082bebb71ca51dc2e0e27b53e2" }, "downloads": -1, "filename": "zopyx.convert-0.1.1-py2.5.egg", "has_sig": false, "md5_digest": "5b010a59056e325e4377e0daffbce9bf", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 373828, "upload_time": "2007-06-16T15:41:39", "url": "https://files.pythonhosted.org/packages/94/9d/f87fde5776b9c75d23860c5e70672d1e0c13fe1314fecc8d35e8b14f3416/zopyx.convert-0.1.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "b8ee56e19ed07333bb3d52edc9ea4701", "sha256": "d94d4aad03971df281d78cf77bc84d1e80c67e71194e57e846fb914fc7474394" }, "downloads": -1, "filename": "zopyx.convert-0.1.1.tar.gz", "has_sig": false, "md5_digest": "b8ee56e19ed07333bb3d52edc9ea4701", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 365340, "upload_time": "2007-06-16T15:41:51", "url": "https://files.pythonhosted.org/packages/a1/46/59dcf8f1a1319f27273f9e471b1bc440fc8626f0b3f22b109780a9a69845/zopyx.convert-0.1.1.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "077e9e408c6675d89ca13f8dc2b42afe", "sha256": "dab4a5fc45e40097220f279e097c024a9bb4c9a02533fb5c0e75bd1ce609df17" }, "downloads": -1, "filename": "zopyx.convert-0.2.0-py2.4.egg", "has_sig": false, "md5_digest": "077e9e408c6675d89ca13f8dc2b42afe", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 373888, "upload_time": "2007-06-16T15:43:09", "url": "https://files.pythonhosted.org/packages/b0/ef/161a1a6be969bdf3c00d5fbed75926b329bbd4a5c7be18aa4597f15c15f3/zopyx.convert-0.2.0-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "12fc284411a926bef0e822efb3d5e731", "sha256": "b714bd581dcc0f866baa97cefba91d9a61f864dd1b73722b086d513902e7036c" }, "downloads": -1, "filename": "zopyx.convert-0.2.0-py2.5.egg", "has_sig": false, "md5_digest": "12fc284411a926bef0e822efb3d5e731", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 373826, "upload_time": "2007-06-16T15:43:14", "url": "https://files.pythonhosted.org/packages/11/82/c0db1ff9ca7998ad0142b1e86661fa2bc226e564d0b8264ee71efcc7b843/zopyx.convert-0.2.0-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "b1d29866ab249e6657c0dc05c3c3e4d1", "sha256": "e2f23e82505bfe497f2fe64a552a9c238c52582351eb109452e6fc19aa5aecb8" }, "downloads": -1, "filename": "zopyx.convert-0.2.0.tar.gz", "has_sig": false, "md5_digest": "b1d29866ab249e6657c0dc05c3c3e4d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 365347, "upload_time": "2007-06-16T15:43:19", "url": "https://files.pythonhosted.org/packages/25/c8/15faf63341434c5aad3f9215dc52a24091feb630967e87db7b9086af925e/zopyx.convert-0.2.0.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "200e484b3c12eaa40e9009bd2263a35e", "sha256": "bb56a01320ea5f92570379aef748d06ff9ee1ab9f36a04586b339c645e758a50" }, "downloads": -1, "filename": "zopyx.convert-0.3.0-py2.4.egg", "has_sig": false, "md5_digest": "200e484b3c12eaa40e9009bd2263a35e", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 378665, "upload_time": "2007-06-17T09:54:27", "url": "https://files.pythonhosted.org/packages/69/c1/419e6f10891507d760c7709b254b2b2792c57f92b5add960f6985245f3a7/zopyx.convert-0.3.0-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "1d87cb90dfef7c683fd60cebada49fe1", "sha256": "55eba0fe8e8f110bc82beb0c8eb288ee31829e9ae5bb1a038617c639aecbe760" }, "downloads": -1, "filename": "zopyx.convert-0.3.0-py2.5.egg", "has_sig": false, "md5_digest": "1d87cb90dfef7c683fd60cebada49fe1", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 378558, "upload_time": "2007-06-17T09:54:33", "url": "https://files.pythonhosted.org/packages/f6/ec/86f91cfb7517349e280c4f2f5d495cfd197b9fc4940c45cfde3920fb2720/zopyx.convert-0.3.0-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "5f98215d95b3ce8f8834bcea9528f46f", "sha256": "af206784dc0a54c42c1ca65cf47ed387c15aef09a4ae4c697034c225ae4a7b21" }, "downloads": -1, "filename": "zopyx.convert-0.3.0.tar.gz", "has_sig": false, "md5_digest": "5f98215d95b3ce8f8834bcea9528f46f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 367033, "upload_time": "2007-06-17T09:54:39", "url": "https://files.pythonhosted.org/packages/23/6a/d9f6ea93f9c58c0412cf5198753ba6641c84cbbd994668e0e5c7e466e57c/zopyx.convert-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "8035146ea17978276fa7f77a05fd6160", "sha256": "fa5bc2b431e2e379ff2b62f4a4ca2150c6851623f5eca146e5d7ebc719a6a917" }, "downloads": -1, "filename": "zopyx.convert-0.3.1-py2.4.egg", "has_sig": false, "md5_digest": "8035146ea17978276fa7f77a05fd6160", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 379488, "upload_time": "2007-06-18T10:47:33", "url": "https://files.pythonhosted.org/packages/91/84/274647ea1aeb80299eb1ab2b4f03748afaed19b528b29545c7600bd5b533/zopyx.convert-0.3.1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "22f413fd9a012ad257d420e7be77115f", "sha256": "636f72e295a35aab5544c4bdc4f8c28654150070b6ecef8f3af8b6fd29c33930" }, "downloads": -1, "filename": "zopyx.convert-0.3.1-py2.5.egg", "has_sig": false, "md5_digest": "22f413fd9a012ad257d420e7be77115f", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 379371, "upload_time": "2007-06-18T10:47:39", "url": "https://files.pythonhosted.org/packages/d0/8a/7739d6d1f0d384fa3e33cef5324d422da88481af160f6173e6bab9f92f5f/zopyx.convert-0.3.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "09f162ac412d93d591d3e0006e2adf9c", "sha256": "44b27c4aa13271e9d9ec44536c772ad4e2da36f165be7d3d0aeb8cf3613f145b" }, "downloads": -1, "filename": "zopyx.convert-0.3.1.tar.gz", "has_sig": false, "md5_digest": "09f162ac412d93d591d3e0006e2adf9c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 367467, "upload_time": "2007-06-18T10:47:45", "url": "https://files.pythonhosted.org/packages/15/5a/1669960f605c08d004e21444761027dc308e24494f1b37d6e0baac57f287/zopyx.convert-0.3.1.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "512d40169ae07de7a1984d8033944209", "sha256": "dae189959f8180c38464973d6b219f9b9adb3f66c543655900b045906361447e" }, "downloads": -1, "filename": "zopyx.convert-0.4.0-py2.4.egg", "has_sig": false, "md5_digest": "512d40169ae07de7a1984d8033944209", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 384206, "upload_time": "2007-06-24T12:19:52", "url": "https://files.pythonhosted.org/packages/a9/a1/945407177b6136425dfc2c1da21c11f77f54922ef15d1384f98a7117e610/zopyx.convert-0.4.0-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "52fea8cdf812aa0d79ba51a359f2c51a", "sha256": "cb024f7c4a6f18962d6799bd5eeb94881348026e997153d9cf278fab8d544a78" }, "downloads": -1, "filename": "zopyx.convert-0.4.0-py2.5.egg", "has_sig": false, "md5_digest": "52fea8cdf812aa0d79ba51a359f2c51a", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 384008, "upload_time": "2007-06-24T12:20:01", "url": "https://files.pythonhosted.org/packages/19/30/901f402598617cd23350b044806e73baa82a4e613155d77c494a59d77823/zopyx.convert-0.4.0-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "d193c0c5806f8a826519d2dcf08958ce", "sha256": "f1b88c77b22604c05b979de26dc10f2e14692a244316735aa45388f5b7334146" }, "downloads": -1, "filename": "zopyx.convert-0.4.0.tar.gz", "has_sig": false, "md5_digest": "d193c0c5806f8a826519d2dcf08958ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 368652, "upload_time": "2007-06-24T12:20:21", "url": "https://files.pythonhosted.org/packages/cd/90/ada28b684bd637da34e4788780575ccdcb9d3d2775eb65b1951f8cb1a750/zopyx.convert-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "78704743d3a6457e2f5476a38b277330", "sha256": "d0264f4eea859865e597527c5c6acab6e247e8d5eb6b08aa416d514783af4fae" }, "downloads": -1, "filename": "zopyx.convert-0.4.1-py2.4.egg", "has_sig": false, "md5_digest": "78704743d3a6457e2f5476a38b277330", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 386540, "upload_time": "2007-06-27T16:10:43", "url": "https://files.pythonhosted.org/packages/01/7d/424c416de832d0fc55d7fd3fa009d6366700f971245d27637139865a1b57/zopyx.convert-0.4.1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "23ffd864aa6731a3183d53f7bc73cfb4", "sha256": "57d9a15703a75eff562bfffe4122db94993c8f2308c3aac0e630c5f7d0be34c9" }, "downloads": -1, "filename": "zopyx.convert-0.4.1-py2.5.egg", "has_sig": false, "md5_digest": "23ffd864aa6731a3183d53f7bc73cfb4", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 386325, "upload_time": "2007-06-27T16:10:50", "url": "https://files.pythonhosted.org/packages/71/0a/13cdd6740c4ad30e000642283785bb6c3d17af677398ba8a58aa7e7e58f1/zopyx.convert-0.4.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "515c085ad3bc85408d5614599b88a123", "sha256": "d5d3f5b3b97a9bc9e087c8cf68c8bdf7f18638bdb7b530119b1021ba7a06735d" }, "downloads": -1, "filename": "zopyx.convert-0.4.1.tar.gz", "has_sig": false, "md5_digest": "515c085ad3bc85408d5614599b88a123", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 369812, "upload_time": "2007-06-27T16:10:56", "url": "https://files.pythonhosted.org/packages/ca/b0/ebbae26004499ee74075764a9e3792b11a2b6d0e4966faddf0f5ab90eb1e/zopyx.convert-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "8dea44f47d9061f7dfe54c345b3e89a8", "sha256": "f8ad541c864c018b2679793a122ff0bb03e0d1c2609f4b21c68cdaf972bcc8cc" }, "downloads": -1, "filename": "zopyx.convert-0.4.2-py2.4.egg", "has_sig": false, "md5_digest": "8dea44f47d9061f7dfe54c345b3e89a8", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 386682, "upload_time": "2007-06-30T10:32:57", "url": "https://files.pythonhosted.org/packages/aa/d1/fbceefdfdcf6ab6c1e3fe4c321eddfbec874531cdd8f365c1e0beec7702d/zopyx.convert-0.4.2-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "94841f25addf6c470e881971daa79f0e", "sha256": "3bf48f4b87b58af3ebb9c21ae6ea69b2a2e519e45b0823bd1038d1630e9277a4" }, "downloads": -1, "filename": "zopyx.convert-0.4.2-py2.5.egg", "has_sig": false, "md5_digest": "94841f25addf6c470e881971daa79f0e", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 386467, "upload_time": "2007-06-30T10:33:03", "url": "https://files.pythonhosted.org/packages/48/22/6159c0352bced0569d45b7bdc7d59f7e4e8c9c09bc07541722f3cd595cca/zopyx.convert-0.4.2-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "52cb45d65780fb24516e5fcf3cb3e693", "sha256": "2fed90d5827fd9f138bb5eea008ebced03e328ede0bb312d3c8f80ca5fda3f84" }, "downloads": -1, "filename": "zopyx.convert-0.4.2.tar.gz", "has_sig": false, "md5_digest": "52cb45d65780fb24516e5fcf3cb3e693", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 369920, "upload_time": "2007-06-30T10:33:09", "url": "https://files.pythonhosted.org/packages/ef/32/93f3d035de42b337b322d98e2ea601317b19b4faa6f7bae02bba15aff567/zopyx.convert-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "a94de36c4286048c57c472d8a6492ac5", "sha256": "63f7f12fdb0a85e71d82a17e554eb1398d7caeb2d71d2bfb1e69b03267d2dc85" }, "downloads": -1, "filename": "zopyx.convert-0.4.3-py2.4.egg", "has_sig": false, "md5_digest": "a94de36c4286048c57c472d8a6492ac5", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 387179, "upload_time": "2007-07-04T14:43:54", "url": "https://files.pythonhosted.org/packages/50/b5/f3939d4262b4f454c75f4969e0ee108f33c3dfa597462edd1f7d7b9b73a5/zopyx.convert-0.4.3-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "046ff937dddf0c3735b08f5a5d6f115b", "sha256": "f0556a9f0747402b3741653100d691fedd680d8b3df4e8fba02c42846e5b3545" }, "downloads": -1, "filename": "zopyx.convert-0.4.3-py2.5.egg", "has_sig": false, "md5_digest": "046ff937dddf0c3735b08f5a5d6f115b", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 386938, "upload_time": "2007-07-04T14:51:50", "url": "https://files.pythonhosted.org/packages/29/00/c26108d216410e5d0980ad2632e46b7e017852bf96bdc7b40fdd5347b4ef/zopyx.convert-0.4.3-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "cf8cfc6178cc71308defa2ce896386ab", "sha256": "eb35b1445c56c04108c5c8b37f7c858c659a65c197592b550890881a165cd655" }, "downloads": -1, "filename": "zopyx.convert-0.4.3.tar.gz", "has_sig": false, "md5_digest": "cf8cfc6178cc71308defa2ce896386ab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 370126, "upload_time": "2007-07-04T14:52:50", "url": "https://files.pythonhosted.org/packages/87/c4/9ba205b842b6a620b31393c9b6b3bfa7a438bcb1550cb642f9fbe84f7ab3/zopyx.convert-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "fa610b2161ec08cb4f5710eb123245c8", "sha256": "eeae0cc5d47df86da97a58e6a55f68f5a579dbd190d3bd463bcd063edc9b9db4" }, "downloads": -1, "filename": "zopyx.convert-0.4.4-py2.4.egg", "has_sig": false, "md5_digest": "fa610b2161ec08cb4f5710eb123245c8", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 387305, "upload_time": "2007-07-06T19:31:06", "url": "https://files.pythonhosted.org/packages/f0/b4/0e6c5975405c7482d2bedf9dd0b9eb29012cd0acc4662a20a649887afeb9/zopyx.convert-0.4.4-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "537eca4ffb7078a2b9c973b6ec8034cc", "sha256": "ffec762df1d3411eb95ba9a79d61e5eb982de0db327b0c8491adfdd55d0d7cd5" }, "downloads": -1, "filename": "zopyx.convert-0.4.4-py2.5.egg", "has_sig": false, "md5_digest": "537eca4ffb7078a2b9c973b6ec8034cc", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 387056, "upload_time": "2007-07-06T19:31:12", "url": "https://files.pythonhosted.org/packages/3b/0d/b2e7dc5c7cffbe537b19dae113857de202bb34727174d7ca09fa3b82ece1/zopyx.convert-0.4.4-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "2bd896df01ee5ab2ebfe5c9f023b92bd", "sha256": "325f6bdbe63de1028fb9314488096deee33cb0cc244d65214b14bb29265cb84b" }, "downloads": -1, "filename": "zopyx.convert-0.4.4.tar.gz", "has_sig": false, "md5_digest": "2bd896df01ee5ab2ebfe5c9f023b92bd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 370162, "upload_time": "2007-07-06T19:31:16", "url": "https://files.pythonhosted.org/packages/d4/11/ab0b2fb590ea441c9244eed68e167841274ce38437f86b415d9d564ab07b/zopyx.convert-0.4.4.tar.gz" } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "c304fe8fc406c3a5df1d10d40199cccc", "sha256": "588da665f659e9451323927cb264edc67e32805d8baf029f2e85101eb2f738a2" }, "downloads": -1, "filename": "zopyx.convert-0.4.5-py2.4.egg", "has_sig": false, "md5_digest": "c304fe8fc406c3a5df1d10d40199cccc", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 387646, "upload_time": "2007-07-07T14:22:15", "url": "https://files.pythonhosted.org/packages/58/d0/24d72ca309982da472454458189b5db5ae55f50b906042cec811841e6b91/zopyx.convert-0.4.5-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "1f924df7c73af3030e064fe9e3a6fe95", "sha256": "3c5f900e3bf91c6a29c8c5ae9b8d698bfeea1c9e06df062b3a670fecd21a0963" }, "downloads": -1, "filename": "zopyx.convert-0.4.5-py2.5.egg", "has_sig": false, "md5_digest": "1f924df7c73af3030e064fe9e3a6fe95", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 387402, "upload_time": "2007-07-07T14:22:21", "url": "https://files.pythonhosted.org/packages/77/19/a0843f720343ad14959fa2ec940b3f2b05e6fb85645a5e2c2683bf8d7dfa/zopyx.convert-0.4.5-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "e5b848ec83931a40ed21615ab7774bb1", "sha256": "7d6d02d1929f5cc0b079964f8d42941d5068a4c1adeffd95c934fd3bb0824d4c" }, "downloads": -1, "filename": "zopyx.convert-0.4.5.tar.gz", "has_sig": false, "md5_digest": "e5b848ec83931a40ed21615ab7774bb1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 370261, "upload_time": "2007-07-07T14:22:26", "url": "https://files.pythonhosted.org/packages/60/c8/d9bf3255a06f244e51b451fa9d13c2713e1ef96b63728fadba8365a27fa3/zopyx.convert-0.4.5.tar.gz" } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "6bdb8b875fa8885b3cd1448d7cfa5528", "sha256": "98a1ad86b5d276173e1d3dc07f8f6ce59df25fe083b554be7aa241be6b9f6113" }, "downloads": -1, "filename": "zopyx.convert-0.4.6-py2.4.egg", "has_sig": false, "md5_digest": "6bdb8b875fa8885b3cd1448d7cfa5528", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 387699, "upload_time": "2007-07-08T08:47:40", "url": "https://files.pythonhosted.org/packages/6b/fd/361375833fc133376f3f71f00acba923057eaa3fd318cb666b06fc0f5552/zopyx.convert-0.4.6-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "0da5178fac93e729d0e8b338aa025d76", "sha256": "efcc98ac216586e94b145de860f67f3475017f837e7529de97ef19d9b7490ca2" }, "downloads": -1, "filename": "zopyx.convert-0.4.6-py2.5.egg", "has_sig": false, "md5_digest": "0da5178fac93e729d0e8b338aa025d76", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 387455, "upload_time": "2007-07-08T08:47:45", "url": "https://files.pythonhosted.org/packages/4f/97/be114057e10d4681efb5cab3d276ba4c86975c9c2f9a4dbd54c3133b1623/zopyx.convert-0.4.6-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "bb650cf163b1e6b46e42bc8c3c12e4fb", "sha256": "c8172d09b9681cf236ea608d4c4b4fab73a0b2519564b45b1783433cff7daf0f" }, "downloads": -1, "filename": "zopyx.convert-0.4.6.tar.gz", "has_sig": false, "md5_digest": "bb650cf163b1e6b46e42bc8c3c12e4fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 370328, "upload_time": "2007-07-08T08:47:50", "url": "https://files.pythonhosted.org/packages/a4/5d/cee45f8fa06c9f774c3322183328223ff8e3d35b378c35d3813dfd2c94d9/zopyx.convert-0.4.6.tar.gz" } ], "0.4.7": [ { "comment_text": "", "digests": { "md5": "1e8221cf0b21c9eeb5ca95a4837eba76", "sha256": "76dbd473b9b90122611095f08af77d462f62d46c063038909195b40df925f046" }, "downloads": -1, "filename": "zopyx.convert-0.4.7-py2.4.egg", "has_sig": false, "md5_digest": "1e8221cf0b21c9eeb5ca95a4837eba76", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 387815, "upload_time": "2007-07-08T11:11:54", "url": "https://files.pythonhosted.org/packages/8a/35/1378f21696d7e488220ed7220e23a6c45a508200d78517e0be609002fc88/zopyx.convert-0.4.7-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "2802c0df286b9ee62f2788bbe6d3b1bf", "sha256": "3cab8b8e2d23e42dfe53f899466e37f9c884e6c8c10d8c4e55eaba5db3187b4e" }, "downloads": -1, "filename": "zopyx.convert-0.4.7-py2.5.egg", "has_sig": false, "md5_digest": "2802c0df286b9ee62f2788bbe6d3b1bf", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 387571, "upload_time": "2007-07-08T11:11:59", "url": "https://files.pythonhosted.org/packages/ac/4e/69edc795209f60436afec7aa11a9bd01c3f4240c80fafafbb22891acc0e7/zopyx.convert-0.4.7-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "36db28c83486f2a7142dc40e5e81bd45", "sha256": "126d14c8855110e48d2ce57905cb5ca02269a121ea660afd6b151e60bb301323" }, "downloads": -1, "filename": "zopyx.convert-0.4.7.tar.gz", "has_sig": false, "md5_digest": "36db28c83486f2a7142dc40e5e81bd45", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 370516, "upload_time": "2007-07-08T11:12:04", "url": "https://files.pythonhosted.org/packages/4b/9d/ead944ed3239a76bf1ecbc6d23ae2ec03534035443f1270555a796d0e0d2/zopyx.convert-0.4.7.tar.gz" } ], "0.4.8": [ { "comment_text": "", "digests": { "md5": "d1954ac0d3e08578d7733d8b0d0ed506", "sha256": "f108e22b1bff661a5b193dd726429b24cef124581bd2e2ccfe8dbf08feafb2a5" }, "downloads": -1, "filename": "zopyx.convert-0.4.8-py2.4.egg", "has_sig": false, "md5_digest": "d1954ac0d3e08578d7733d8b0d0ed506", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 387349, "upload_time": "2007-07-19T15:36:19", "url": "https://files.pythonhosted.org/packages/60/f6/4172080efc9955d37ed56fb971db0363a140ccd00c0404fd19f5a6df57c6/zopyx.convert-0.4.8-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "e61e17470b3a478d2e52ba7475cbe112", "sha256": "5505c96c10e20179928bffea9e6c02acb72b4e29d670cb58cbe4cd0ac75fcd74" }, "downloads": -1, "filename": "zopyx.convert-0.4.8-py2.5.egg", "has_sig": false, "md5_digest": "e61e17470b3a478d2e52ba7475cbe112", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 387106, "upload_time": "2007-07-19T15:36:30", "url": "https://files.pythonhosted.org/packages/32/45/ce891652e1ea9f62e94f22771db854b3e65d94ef649d726112e2eac78ce5/zopyx.convert-0.4.8-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "7dd4641dba3eea0a07e8980e90febf0d", "sha256": "cce288c308489d76c558f5aa68a34cc729662f7a51c93e33596686697cbba0f9" }, "downloads": -1, "filename": "zopyx.convert-0.4.8.tar.gz", "has_sig": false, "md5_digest": "7dd4641dba3eea0a07e8980e90febf0d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 371445, "upload_time": "2007-07-19T15:36:04", "url": "https://files.pythonhosted.org/packages/d3/76/3b0ceacad01c159e06882e3d8c35b289dc403198f5ea9b10f2031e904367/zopyx.convert-0.4.8.tar.gz" } ], "0.4.9": [ { "comment_text": "", "digests": { "md5": "32735199fb9fa4e7f9b9ad1bd696179f", "sha256": "8604e55b7cea3bb7df17d9819c811d2192eb067519c165ed0fc65acaf9a943e6" }, "downloads": -1, "filename": "zopyx.convert-0.4.9-py2.4.egg", "has_sig": false, "md5_digest": "32735199fb9fa4e7f9b9ad1bd696179f", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 387708, "upload_time": "2007-07-25T09:45:22", "url": "https://files.pythonhosted.org/packages/0d/03/8e9993df4457b9ceb002a6137061c91e48c7d0793383d9a50de470a3b7ae/zopyx.convert-0.4.9-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "d726dd24e10850283387b7fd51a776fb", "sha256": "51701baa0b493a3bbb5109698db3776b65836ccbcb38e16865d1100ed4827fb8" }, "downloads": -1, "filename": "zopyx.convert-0.4.9-py2.5.egg", "has_sig": false, "md5_digest": "d726dd24e10850283387b7fd51a776fb", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 387459, "upload_time": "2007-07-25T09:45:37", "url": "https://files.pythonhosted.org/packages/05/c6/4c5fae6e1b6b39b32127adec79426800088123bf152d0f774bef582e8405/zopyx.convert-0.4.9-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "6b1b786f7472c09f6981f98e3996e1f5", "sha256": "d032176c0f61c9f9e30c8b0532874c31ae9314bea4d82bb90208708fc345aec0" }, "downloads": -1, "filename": "zopyx.convert-0.4.9.tar.gz", "has_sig": false, "md5_digest": "6b1b786f7472c09f6981f98e3996e1f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 371667, "upload_time": "2007-07-25T09:45:50", "url": "https://files.pythonhosted.org/packages/eb/92/cd79698a265cbc4253c71961ae17f6812de225a95fc1cdf5ce3b9f3e3be3/zopyx.convert-0.4.9.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "010e8ad5e541cd6a344f8cae3096c4ef", "sha256": "1bca4d96e7133c9c655ccb3233ec6f3608b09df7c981c5ac5b81e3e06a64859b" }, "downloads": -1, "filename": "zopyx.convert-0.5.0-py2.4.egg", "has_sig": false, "md5_digest": "010e8ad5e541cd6a344f8cae3096c4ef", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 388386, "upload_time": "2007-09-09T11:06:46", "url": "https://files.pythonhosted.org/packages/3c/93/ddb8720c1b045145a3574f67f6e718c712423f55c98dddd17dce8b0fb2fb/zopyx.convert-0.5.0-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "4ad45647814a57fe4acb58228773467e", "sha256": "26bf0b54aad33dbc8f07817225ee0363e75d089d8951b71f09c2d19b84893af8" }, "downloads": -1, "filename": "zopyx.convert-0.5.0-py2.5.egg", "has_sig": false, "md5_digest": "4ad45647814a57fe4acb58228773467e", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 388122, "upload_time": "2007-09-09T11:07:03", "url": "https://files.pythonhosted.org/packages/7d/88/d7a7a23159e1bddaaaa20efaa603d24573dd3833936e0f46a1481037e795/zopyx.convert-0.5.0-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "624bf852afa43f40fcc3ab8d0741f709", "sha256": "dcce5770a6a78bd6adfe8a512b835c22172dcf9cdda3523a37aa6c3046aa75f6" }, "downloads": -1, "filename": "zopyx.convert-0.5.0.tar.gz", "has_sig": false, "md5_digest": "624bf852afa43f40fcc3ab8d0741f709", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 375234, "upload_time": "2007-09-09T11:07:13", "url": "https://files.pythonhosted.org/packages/5c/e3/5ff2442b9798d90d9dee63c5023e9d219c07f19aa10555aa6b4cda1a468d/zopyx.convert-0.5.0.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "858b16dd9280856bd8cec6fd5322b63d", "sha256": "cd23ee8576cd9a5eb06ccce2112787c619b4d442029e0e251bfa60b7dc414cba" }, "downloads": -1, "filename": "zopyx.convert-1.0.0-py2.4.egg", "has_sig": false, "md5_digest": "858b16dd9280856bd8cec6fd5322b63d", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 369443, "upload_time": "2007-09-29T09:32:48", "url": "https://files.pythonhosted.org/packages/ba/b9/c283d22b838d4cbe09e26e2db8210b3b5b3ebe0513b34a1a7d394e1693c7/zopyx.convert-1.0.0-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "0717ba3b02f0bdf808349ec619e8b816", "sha256": "d6c97dc5ded835a637457e008beab8b05f744ec4abe3596922c018fe553708d0" }, "downloads": -1, "filename": "zopyx.convert-1.0.0.tar.gz", "has_sig": false, "md5_digest": "0717ba3b02f0bdf808349ec619e8b816", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 353110, "upload_time": "2007-09-29T09:32:57", "url": "https://files.pythonhosted.org/packages/02/24/a4462669347d596ced868494eb2292ce8d4bb7add06520cd331de82c128c/zopyx.convert-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "56aa53f23e4a4c231cf7d5f654e9e854", "sha256": "9f282a2ba596f92b3ccc184b1ecbdf98a97c78e9a0e0dbbe6074b69a93f9e5c1" }, "downloads": -1, "filename": "zopyx.convert-1.0.1-py2.4.egg", "has_sig": false, "md5_digest": "56aa53f23e4a4c231cf7d5f654e9e854", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 370104, "upload_time": "2007-10-03T08:40:50", "url": "https://files.pythonhosted.org/packages/d5/57/ac07b98bd1e245f4f9cd29f325fe2a30cce55b7375e4ec6dc307601f658d/zopyx.convert-1.0.1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "0a48e1671ad6e17e516705b408657706", "sha256": "1037a13418140ac463d5b29d9aab756789d57c59ddda958e70af67db6f4a7586" }, "downloads": -1, "filename": "zopyx.convert-1.0.1.tar.gz", "has_sig": false, "md5_digest": "0a48e1671ad6e17e516705b408657706", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 353364, "upload_time": "2007-10-03T08:41:12", "url": "https://files.pythonhosted.org/packages/59/fa/fe775a356aa61a587cacbca4c2f76f0ce42697fb61c6d0763dca749638e9/zopyx.convert-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "f6c5769386fd9cda9f931b99a801c7ce", "sha256": "658a13f408288db1aea3272e405ddbbfb3274d6194b2ae2572160080f418d171" }, "downloads": -1, "filename": "zopyx.convert-1.0.2-py2.4.egg", "has_sig": false, "md5_digest": "f6c5769386fd9cda9f931b99a801c7ce", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 370565, "upload_time": "2007-10-03T08:59:35", "url": "https://files.pythonhosted.org/packages/92/af/21000cd6d5ff972a1f58439974abf9983aec4bf0818e52f411492e9cb92c/zopyx.convert-1.0.2-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "207292c6131310dedce6df14fb0ca060", "sha256": "51027a53893bd48b7e0fdf0d6a9ff5874ba5c23c6b633c1ce164231251cebd57" }, "downloads": -1, "filename": "zopyx.convert-1.0.2.tar.gz", "has_sig": false, "md5_digest": "207292c6131310dedce6df14fb0ca060", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 353447, "upload_time": "2007-10-03T08:59:21", "url": "https://files.pythonhosted.org/packages/f2/73/a5d60bdc8306a0d51e25f36a2bdca65b73a7818b0c8fd1f125ff8b2462a8/zopyx.convert-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "68973b419bacdf1e536c54d2f27cd368", "sha256": "16aa851c59eae862aa8a69cb8b34482fe4bbb64a03155cefbc15fd141424b61f" }, "downloads": -1, "filename": "zopyx.convert-1.0.3-py2.4.egg", "has_sig": false, "md5_digest": "68973b419bacdf1e536c54d2f27cd368", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 370710, "upload_time": "2007-10-04T12:03:59", "url": "https://files.pythonhosted.org/packages/49/82/1179ef0a2a332eef183d6dc7bbfb7d40ece3d185c6a61045d4f9f0b39414/zopyx.convert-1.0.3-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "cd14d46da63cad120be39abaf4b616de", "sha256": "4fb24cbe20d31181b5bbfdcadf8f7b3436cb8423edbc0cacdacc6f5fd0197711" }, "downloads": -1, "filename": "zopyx.convert-1.0.3.tar.gz", "has_sig": false, "md5_digest": "cd14d46da63cad120be39abaf4b616de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 353567, "upload_time": "2007-10-04T12:03:20", "url": "https://files.pythonhosted.org/packages/b9/6f/c13a328ddfa6b8a49bb078b4d5ebd3a8cd9d81414b28936c6a5c27d61a7e/zopyx.convert-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "9612e79f76060292851287e103930b6b", "sha256": "4dabdb78562f211974869525035a264d1fa258ed01c587b0d8caf36bcf1a92cf" }, "downloads": -1, "filename": "zopyx.convert-1.0.4-py2.4.egg", "has_sig": false, "md5_digest": "9612e79f76060292851287e103930b6b", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 371008, "upload_time": "2007-10-05T11:02:19", "url": "https://files.pythonhosted.org/packages/5b/8b/dd1c9c5fd6db8a9ea2470315ccedede6c087e23f0f7855ea8367dec62026/zopyx.convert-1.0.4-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "1836a2af8885dea4a17590176bfe5601", "sha256": "74b27dfffa254d9a483ddf6d2eb9d06d656bf5998832423effa21cd9625f5bf7" }, "downloads": -1, "filename": "zopyx.convert-1.0.4.tar.gz", "has_sig": false, "md5_digest": "1836a2af8885dea4a17590176bfe5601", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 353689, "upload_time": "2007-10-05T11:02:28", "url": "https://files.pythonhosted.org/packages/f9/b5/0c9f258ee27308e08fe4e4b022dbd2ea3681f78d5178f7817a34afa2a90b/zopyx.convert-1.0.4.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "0e9300f0e5daa3a89d0731ad7eb2d17f", "sha256": "27bb7108db3f217a964df958050d82580b9d45696fb95536da754b0710e29cac" }, "downloads": -1, "filename": "zopyx.convert-1.0.5-py2.4.egg", "has_sig": false, "md5_digest": "0e9300f0e5daa3a89d0731ad7eb2d17f", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 370965, "upload_time": "2007-10-05T14:14:14", "url": "https://files.pythonhosted.org/packages/f8/02/2a0391c4faf8850a58de061952215903d8ed92124cd92899d70764e5da42/zopyx.convert-1.0.5-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "f23b7ad58f2c5604f991f8745817648a", "sha256": "54205cb60622a2be920883b75b5b290f36ec62ee42c9353723eba85e812c3b57" }, "downloads": -1, "filename": "zopyx.convert-1.0.5.tar.gz", "has_sig": false, "md5_digest": "f23b7ad58f2c5604f991f8745817648a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 353687, "upload_time": "2007-10-05T14:14:23", "url": "https://files.pythonhosted.org/packages/bb/fc/e7b33755d9c484e5516ebcba7d7a597c20cd16deb644bec946cfa32707cf/zopyx.convert-1.0.5.tar.gz" } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "49949952b8a18c80607d2e0ff0b429ed", "sha256": "a464cbed54ad863f13307f3adebefaa77b745b6134fe15693a9cccc0330c5892" }, "downloads": -1, "filename": "zopyx.convert-1.0.6-py2.4.egg", "has_sig": false, "md5_digest": "49949952b8a18c80607d2e0ff0b429ed", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 371693, "upload_time": "2007-10-14T15:39:25", "url": "https://files.pythonhosted.org/packages/14/4a/2664c073ec5c6032c77aadc160d902f10b2a84ee47a4518e49ae05003934/zopyx.convert-1.0.6-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "1a0c5d3f00210a710a566fd08d0d8cdd", "sha256": "e88fb25dc052a7c3a2402f43e367ae5d22aabf27383585dc81a99e8fa8182715" }, "downloads": -1, "filename": "zopyx.convert-1.0.6.tar.gz", "has_sig": false, "md5_digest": "1a0c5d3f00210a710a566fd08d0d8cdd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 355016, "upload_time": "2007-10-14T15:39:29", "url": "https://files.pythonhosted.org/packages/85/00/ffa1da4e4f57c9152c0910650b6e9921c51a8b1561a4e3b75934d779a748/zopyx.convert-1.0.6.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "0853b1197d2516f61aba8219f9f4d889", "sha256": "1fea86e6eb9de73005792b4af1ca5ac988f077333c5b36fdeeb97ac33fcb5e21" }, "downloads": -1, "filename": "zopyx.convert-1.1.0-py2.4.egg", "has_sig": false, "md5_digest": "0853b1197d2516f61aba8219f9f4d889", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 373337, "upload_time": "2008-01-20T12:10:52", "url": "https://files.pythonhosted.org/packages/2d/b2/835589899d4371f402cb04dd9c2f361b5ae152207e635e3d6a1605aa0efd/zopyx.convert-1.1.0-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "f94f90893995f38118496454cdb49de2", "sha256": "7a41010d54811e97e8f45804bb15cf0c24dcac3fae4a11f4c79450b37ac15502" }, "downloads": -1, "filename": "zopyx.convert-1.1.0-py2.5.egg", "has_sig": false, "md5_digest": "f94f90893995f38118496454cdb49de2", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 373028, "upload_time": "2008-01-20T12:11:31", "url": "https://files.pythonhosted.org/packages/45/3e/075c6a6bf9282abf4146ebc98c61e173a973e9722bdf0e4449e5932795b8/zopyx.convert-1.1.0-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "4835686c661fd9ca9d19f5b4c3486594", "sha256": "2186f27c2564242794f3df3f2aaee5545462df877cd9d80a9579faecdb7bbfb3" }, "downloads": -1, "filename": "zopyx.convert-1.1.0.tar.gz", "has_sig": false, "md5_digest": "4835686c661fd9ca9d19f5b4c3486594", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 355010, "upload_time": "2008-01-20T12:11:10", "url": "https://files.pythonhosted.org/packages/09/67/7fb9c44ec7de1ee2d9d086752a6141dc18aac814814cce45ca8377a7795d/zopyx.convert-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "4552dbd042178124f5a17522772fac9a", "sha256": "30b5c428571b4de61aac90104c1fe8bab690b9d948dee82058d7646f9f2f5c50" }, "downloads": -1, "filename": "zopyx.convert-1.1.1-py2.4.egg", "has_sig": false, "md5_digest": "4552dbd042178124f5a17522772fac9a", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 373508, "upload_time": "2008-01-22T05:35:11", "url": "https://files.pythonhosted.org/packages/27/80/ddc4d59708c22a755cbe8a5ce825ba5780d901192a1d4ad48b0520dc129d/zopyx.convert-1.1.1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "1274faa24933fba5367ce5448fc0c9b5", "sha256": "a05c3086120d409c14a0764bba385019a6337dc987a1fa25ddb47fb4744f1ed9" }, "downloads": -1, "filename": "zopyx.convert-1.1.1-py2.5.egg", "has_sig": false, "md5_digest": "1274faa24933fba5367ce5448fc0c9b5", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 373193, "upload_time": "2008-01-22T05:35:30", "url": "https://files.pythonhosted.org/packages/39/d4/a051d7cc902ed2b40ed0f174f6656bc18be6f410e678f3bb4706b6c51065/zopyx.convert-1.1.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "8fdc3355f108899702c43d8566d575a0", "sha256": "4b25c74c941622d8d751c91ddeead842d54f292ae4cea10af7e832fe1651cd79" }, "downloads": -1, "filename": "zopyx.convert-1.1.1.tar.gz", "has_sig": false, "md5_digest": "8fdc3355f108899702c43d8566d575a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 355090, "upload_time": "2008-01-22T05:34:57", "url": "https://files.pythonhosted.org/packages/01/ea/7049e38bb471ca614d46630fca6cffce2d6bd8fd38aeaf1c29c5f574a469/zopyx.convert-1.1.1.tar.gz" } ], "1.1.10": [ { "comment_text": "", "digests": { "md5": "d59cc73f01c728ad8bd03d3dd8c1c33c", "sha256": "9fe19f270c41cff1d579c713f835c155f0123f61b05e1d763eaa587bcf1aa529" }, "downloads": -1, "filename": "zopyx.convert-1.1.10.tar.gz", "has_sig": false, "md5_digest": "d59cc73f01c728ad8bd03d3dd8c1c33c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 359212, "upload_time": "2009-05-29T14:00:12", "url": "https://files.pythonhosted.org/packages/5b/8f/64cc0044b0164ecdb11b044454f233d80fb61b37747a19f6e6d63eb4a0ca/zopyx.convert-1.1.10.tar.gz" } ], "1.1.11": [ { "comment_text": "", "digests": { "md5": "41811a6170b3468208d6feb87a520d75", "sha256": "e2f414ee4f1de8ad6f70d26a4e52afccf8ec0e5d5dbf50cbb227bee1dd6d0cc0" }, "downloads": -1, "filename": "zopyx.convert-1.1.11.tar.gz", "has_sig": false, "md5_digest": "41811a6170b3468208d6feb87a520d75", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 349932, "upload_time": "2009-06-07T10:29:04", "url": "https://files.pythonhosted.org/packages/aa/01/fd39cb8368b510cfcd42f246be499d70ab32ea4dfdfca613f3dda4181a22/zopyx.convert-1.1.11.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "928eceffb61e1df30b1ba29ac471f692", "sha256": "c27ddeb42ecbd4e7fc5f9112f8bd83b451d154fd9b04cc0af99abcea1f9e646b" }, "downloads": -1, "filename": "zopyx.convert-1.1.2-py2.4.egg", "has_sig": false, "md5_digest": "928eceffb61e1df30b1ba29ac471f692", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 373548, "upload_time": "2008-01-22T06:49:05", "url": "https://files.pythonhosted.org/packages/d7/4a/1f48dd2a79167bc9538b06df81a25e793906b1cd4cd898d9066f0c77e765/zopyx.convert-1.1.2-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "11e60e7586879afdb9dfa363917815a7", "sha256": "6c7c5e69a88af23fbf0e35a15f820f0ffec617e5bfbe343278342fd269d78733" }, "downloads": -1, "filename": "zopyx.convert-1.1.2-py2.5.egg", "has_sig": false, "md5_digest": "11e60e7586879afdb9dfa363917815a7", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 373231, "upload_time": "2008-01-22T06:49:13", "url": "https://files.pythonhosted.org/packages/9c/2a/c544d3841307c4c36256f0edfc2128709c74650c1db96c4aa7b45d2fed43/zopyx.convert-1.1.2-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "2665f53f9ec3b74fac54b6cf09e3b7e8", "sha256": "bb0401328574053e86272575d67f2f98351ec2a049117ae3f820825322b75aef" }, "downloads": -1, "filename": "zopyx.convert-1.1.2.tar.gz", "has_sig": false, "md5_digest": "2665f53f9ec3b74fac54b6cf09e3b7e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 355133, "upload_time": "2008-01-22T06:48:54", "url": "https://files.pythonhosted.org/packages/c1/cd/9a3fd484f55218db4dbf3008367b6676930bb4794849abcbcb8723bdbe8a/zopyx.convert-1.1.2.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "e12aea692a1d00aab10dff9457dbfa05", "sha256": "83700f39a5a1778794450e55def33b2d5bc59d2c97f22f79feec68c697531ef2" }, "downloads": -1, "filename": "zopyx.convert-1.1.3-py2.4.egg", "has_sig": false, "md5_digest": "e12aea692a1d00aab10dff9457dbfa05", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 373655, "upload_time": "2008-01-31T11:30:51", "url": "https://files.pythonhosted.org/packages/85/dc/2edbd55b4a70d96d8f103a0abbe9b5d9e6288ef1832ec37d6ff63e97ae2b/zopyx.convert-1.1.3-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "3637eed9d76732c0a37afe164a65291b", "sha256": "67db4fa1a6e8d896d26bb1be132e4cc31f53b37e7054667f0dd8ca37558074e9" }, "downloads": -1, "filename": "zopyx.convert-1.1.3-py2.5.egg", "has_sig": false, "md5_digest": "3637eed9d76732c0a37afe164a65291b", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 373337, "upload_time": "2008-01-31T11:31:01", "url": "https://files.pythonhosted.org/packages/b0/8e/8efb8a502dbad5a86e50a5a5e94899d9d239bde493438d613177cea9e20b/zopyx.convert-1.1.3-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "e09bd5cb23c2b72362f91cada73a151e", "sha256": "f28793a89e3140ff5e20de345d8352cec407456b344082b910ea16d05ad2525f" }, "downloads": -1, "filename": "zopyx.convert-1.1.3.tar.gz", "has_sig": false, "md5_digest": "e09bd5cb23c2b72362f91cada73a151e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 355245, "upload_time": "2008-01-31T11:27:59", "url": "https://files.pythonhosted.org/packages/e9/33/a7ef66b6ab86de8150b7b3cc45d296a31e5299b6e6591cef8a05a489d5a8/zopyx.convert-1.1.3.tar.gz" } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "026fdfb6fc9b6565b03b9bdd4ae1ccf7", "sha256": "30559ab2fc9511b0f7f5297251c3b5fe68b5fea5be31ab076ee01a81e545041f" }, "downloads": -1, "filename": "zopyx.convert-1.1.4-py2.4.egg", "has_sig": false, "md5_digest": "026fdfb6fc9b6565b03b9bdd4ae1ccf7", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 374406, "upload_time": "2008-02-05T18:29:29", "url": "https://files.pythonhosted.org/packages/d1/ac/55fe814563bce52c78b1d9d05639012140d35b2305f79722c9f04f0a7f6e/zopyx.convert-1.1.4-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "5350101cfa69a6264f2f139c63a2de3f", "sha256": "2c19b810c99d9cc416298e0c60c8ea59fcf8f9b6e93be909746b99477d4e846c" }, "downloads": -1, "filename": "zopyx.convert-1.1.4-py2.5.egg", "has_sig": false, "md5_digest": "5350101cfa69a6264f2f139c63a2de3f", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 374095, "upload_time": "2008-02-05T18:29:46", "url": "https://files.pythonhosted.org/packages/08/ab/a52d0a80026217ee026fedc40442a962ff0fe6399547e462547b37e12b9b/zopyx.convert-1.1.4-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "9c7d23f667c525a82a85cf07171a0b71", "sha256": "8cda0b6be82bd6ec104cacc717639e416647538801fd72f13bf81535a027807d" }, "downloads": -1, "filename": "zopyx.convert-1.1.4.tar.gz", "has_sig": false, "md5_digest": "9c7d23f667c525a82a85cf07171a0b71", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 355747, "upload_time": "2008-02-05T18:29:17", "url": "https://files.pythonhosted.org/packages/dd/0f/07ff2db7a75354a916501e2a1cd9dd3f2bcf1ce8abc766659c12db3daad3/zopyx.convert-1.1.4.tar.gz" } ], "1.1.5": [ { "comment_text": "", "digests": { "md5": "6dca6d773c95ae9744b76d75fbd80cb4", "sha256": "f1b765a765210580ce1140c2862a83e7cb56124c54adede4d296f136bd2b98eb" }, "downloads": -1, "filename": "zopyx.convert-1.1.5-py2.4.egg", "has_sig": false, "md5_digest": "6dca6d773c95ae9744b76d75fbd80cb4", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 374616, "upload_time": "2008-03-01T08:47:51", "url": "https://files.pythonhosted.org/packages/e8/a4/c8cc465ee47f4c735fa02707e9421ec375cc67e3327d3ea2b6284fd2c6af/zopyx.convert-1.1.5-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "dfc235fcd53570a72052918a21f5435a", "sha256": "78014025aaaa0e6fe87bc509c74a32e3db2d43e8e0661a7c18af63634968c34c" }, "downloads": -1, "filename": "zopyx.convert-1.1.5.tar.gz", "has_sig": false, "md5_digest": "dfc235fcd53570a72052918a21f5435a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 357747, "upload_time": "2008-03-01T08:47:56", "url": "https://files.pythonhosted.org/packages/c9/b6/127f2ce43bb9e5b1c699bbaab5dcab387172a6bec71fe5af9619bac00bfb/zopyx.convert-1.1.5.tar.gz" } ], "1.1.6": [ { "comment_text": "", "digests": { "md5": "f4d160c13024bd72ccf6653e83cce708", "sha256": "6b233e861b8ddef562e403fde269927c8268bfc2de46a300c5a50f11701ca312" }, "downloads": -1, "filename": "zopyx.convert-1.1.6-py2.4.egg", "has_sig": false, "md5_digest": "f4d160c13024bd72ccf6653e83cce708", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 374870, "upload_time": "2008-04-19T11:27:22", "url": "https://files.pythonhosted.org/packages/f7/e1/edfa8fe17e4e4ccb1755636779b2cb60725576b66c970966ede85fc974b5/zopyx.convert-1.1.6-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "84e80718c6f4143f98bf4213e7efa863", "sha256": "0672ecb69ddb4d4b298c6657cb4f8c36d292e6562f179d9cee5e4a44920ebe6a" }, "downloads": -1, "filename": "zopyx.convert-1.1.6.tar.gz", "has_sig": false, "md5_digest": "84e80718c6f4143f98bf4213e7efa863", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 358498, "upload_time": "2008-04-19T11:27:27", "url": "https://files.pythonhosted.org/packages/85/58/a43ffcf9bed139254c6fb7bbe14a7ece3fb258d4671a0654b6f7b55c307d/zopyx.convert-1.1.6.tar.gz" } ], "1.1.7": [ { "comment_text": "", "digests": { "md5": "4d86493c00d1a8d8161afde803ab1c6f", "sha256": "7afe08c5e5576d34846a4e1503b0a25cabeb8598c0fcf6738f2b4340b95cd6b6" }, "downloads": -1, "filename": "zopyx.convert-1.1.7-py2.4.egg", "has_sig": false, "md5_digest": "4d86493c00d1a8d8161afde803ab1c6f", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 375019, "upload_time": "2008-06-22T11:39:42", "url": "https://files.pythonhosted.org/packages/3d/06/bba8d11325c3db23a51c76e2968531380b302323b6f91af03dc250977ff0/zopyx.convert-1.1.7-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "ddd3b668a9598fa1bb55fdb978d1ec9a", "sha256": "29d50457aca6ec962563f1c9017928b747d719407920a595208dda62d6fc15af" }, "downloads": -1, "filename": "zopyx.convert-1.1.7.tar.gz", "has_sig": false, "md5_digest": "ddd3b668a9598fa1bb55fdb978d1ec9a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 358609, "upload_time": "2008-06-22T11:39:46", "url": "https://files.pythonhosted.org/packages/5e/dc/9d9f9ba3fd7cc19c5887a3624c8be8688c6d216c802b5cb4bf1b899bfe76/zopyx.convert-1.1.7.tar.gz" } ], "1.1.8": [ { "comment_text": "", "digests": { "md5": "5e1ed71211d32e39f6117cf1cf28c973", "sha256": "c08165cf2e28b162b39085fff95b971921407c95c7f3b7ed4b822b5f66bd007e" }, "downloads": -1, "filename": "zopyx.convert-1.1.8-py2.4.egg", "has_sig": false, "md5_digest": "5e1ed71211d32e39f6117cf1cf28c973", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 375047, "upload_time": "2008-06-28T09:39:32", "url": "https://files.pythonhosted.org/packages/1b/d3/f0376cbd86cf2740357092f2c8420d0acdeb6018d039f7113ba689646777/zopyx.convert-1.1.8-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "48358b488b96a79ab32561307b48518d", "sha256": "f07f7438625a24abf9790335a5beef0ef65e6c1cd16bb64d2bcded07ee0ebf02" }, "downloads": -1, "filename": "zopyx.convert-1.1.8.tar.gz", "has_sig": false, "md5_digest": "48358b488b96a79ab32561307b48518d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 358662, "upload_time": "2008-06-28T09:39:37", "url": "https://files.pythonhosted.org/packages/fe/ea/b7cfb4149d77a6bcb17a25e59506604d4a81eb02d780113ab9c86b294f19/zopyx.convert-1.1.8.tar.gz" } ], "1.1.9": [ { "comment_text": "", "digests": { "md5": "ace12edaac2f08c106b479e222e5bace", "sha256": "e40334326e9b73e0390257992a7b52d67e73ee478ae89313e809eef67e5e18f7" }, "downloads": -1, "filename": "zopyx.convert-1.1.9.tar.gz", "has_sig": false, "md5_digest": "ace12edaac2f08c106b479e222e5bace", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 360789, "upload_time": "2009-01-04T16:58:08", "url": "https://files.pythonhosted.org/packages/33/87/f13f22e397d1b2eefccecd7f7ce1b7e93947a3030fd16a613b1a35449ca6/zopyx.convert-1.1.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "41811a6170b3468208d6feb87a520d75", "sha256": "e2f414ee4f1de8ad6f70d26a4e52afccf8ec0e5d5dbf50cbb227bee1dd6d0cc0" }, "downloads": -1, "filename": "zopyx.convert-1.1.11.tar.gz", "has_sig": false, "md5_digest": "41811a6170b3468208d6feb87a520d75", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 349932, "upload_time": "2009-06-07T10:29:04", "url": "https://files.pythonhosted.org/packages/aa/01/fd39cb8368b510cfcd42f246be499d70ab32ea4dfdfca613f3dda4181a22/zopyx.convert-1.1.11.tar.gz" } ] }