{ "info": { "author": "Stanislas Guerra", "author_email": "stanislas.guerra@gmail.com", "bugtrack_url": null, "classifiers": [ "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Multimedia :: Graphics", "Topic :: Printing", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "==========\nSimpleIDML\n==========\n\n.. image:: https://coveralls.io/repos/Starou/SimpleIDML/badge.png\n :target: https://coveralls.io/r/Starou/SimpleIDML\n\n.. image:: https://img.shields.io/pypi/v/simpleidml.svg\n :target: https://pypi.python.org/pypi/SimpleIDML\n\n.. image:: https://img.shields.io/pypi/pyversions/simpleidml.svg\n :target: https://pypi.python.org/pypi/SimpleIDML/\n :alt: Supported Python versions\n\n.. image:: https://img.shields.io/pypi/l/simpleidml.svg\n :target: https://pypi.python.org/pypi/SimpleIDML/\n :alt: License\n\n.. image:: https://travis-ci.org/Starou/SimpleIDML.svg\n :target: https://travis-ci.org/Starou/SimpleIDML\n :alt: Travis C.I.\n\nInstallation\n============\n\nUse ``pip``:\n\n.. code-block:: bash\n\n pip install SimpleIDML\n\nOr:\n\n.. code-block:: bash\n\n python setup.py build\n sudo python setup.py install\n\nPython support\n--------------\n\n- Python 2: 2.7.x\n- Python 3: 3.5+\n\nAny questions?\n--------------\n\nhttps://groups.google.com/forum/#!forum/simpleidml-users\n\nDevelopers\n----------\n\n.. code-block:: bash\n\n vagrant up\n vagrant ssh\n cd tests\n python runtests.py\n\nA Python 3 virtualenv is activated at login but you can switch to Python 2.7:\n\n.. code-block:: bash\n\n source ~/venv_py2/bin/activate\n\n\nWhat is SimpleIDML?\n===================\n\nSimpleIDML is a Python library to manipulate Adobe\u00ae InDesign\u00ae IDML file. The main purpose being\nthe ability to compose IDML files together and produce complex documents from simple pieces and\nto separate the data from the structure.\n\nThe philosophy behind SimpleIDML is to keep separated the content and the structure and to use XML\nfiles to feed your documents by using the XML Structure in InDesign.\nKeeping this isolation is important to ease the debugging and to keep track of what is going on.\n\nI urge you to take a look in the *regressiontests* directory for real-world examples.\n\nUses cases - success story(ies)\n===============================\n\nLe Figaro - FigaroClassifieds\n-----------------------------\n\nSimpleIDML is used in production at *Le Figaro* aside in-house tools managing the content of\nClassifieds Ads magazines like *Propri\u00e9t\u00e9s de France* or *Belles Maisons \u00e0 louer*.\nThese tools produces XML files describing the page layout (which IDML templates and sub-templates\nto use) and the page content.\nThe XML files feed another tool - the one using SimpleIDML - that compose the final page.\n\nThe steps of the (simplified) process of composition are:\n\n1. Get the main IDML template (the page) ;\n2. Ad the sub-templates (the ads) into the page template ;\n3. Import the content into the final IDML file ;\n4. Edit the file in InDesign ;\n5. Push the changesets back to the content management application and update the database.\n\nThere is a lot of cool features in this application. You can update a part of a page already or\npartially composed for example.\n\nArchitecture\n''''''''''''\n\nThese applications are web-applications. The communication is done by web-services feeding a task\nqueue (RabbitMQ/Celery).\n\nThe performances are quite good. Composing a document require a fraction of a second.\n\nWhat are IDML files?\n====================\n\nIDML (*InDesign Markup Language*) files are a Zip archives (Adobe calls them packages) storing\nessentially XML files. Adobe made a descent job because those files can completely express the\ncontent of the native (binary) documents.\nThis is a small revolution in the print world when it comes to automatically process files in both\nways from templates and database (Round-trip) without using proprietary server-edition of\nPublishing Software.\n\nWhat does SimpleIDML do?\n========================\n\nPackage exploration\n-------------------\n\nYou can discover the structure of your IDML files:\n\n.. code-block:: python\n\n >>> from simple_idml import idml\n >>> my_idml_package = idml.IDMLPackage(\"/path/to/my_main_document.idml\")\n >>> my_idml_package.spreads\n [u'Spreads/Spread_ub6.xml', u'Spreads/Spread_ubc.xml', u'Spreads/Spread_uc3.xml']\n >>> my_idml_package.stories\n [u'Stories/Story_u139.xml', u'Stories/Story_u11b.xml',\n u'Stories/Story_u102.xml', u'Stories/Story_ue4.xml']\n\nSome attributes are *lxml.etree* Elements or Documents:\n\n.. code-block:: python\n\n >>> my_package.font_families\n [,\n ,\n ,\n ]\n >>> [e.get(\"Name\") for e in my_package.font_families]\n ['Minion Pro', 'Myriad Pro', 'Kozuka Mincho Pro', 'Vollkorn']\n\n >>> my_package.xml_structure\n \n >>> from lxml import etree\n >>> # print my_package.xml_structure_pretty() is a shortcut for:\n >>> print etree.tostring(my_package.xml_structure, pretty_print=True)\n \n
\n \n \n <subtitle Self=\"di2i3i1i2\"/>\n </Story>\n <content XMLContent=\"u11b\" Self=\"di2i3i2\"/>\n <illustration XMLContent=\"u135\" Self=\"di2i3i3\"/>\n <description XMLContent=\"u139\" Self=\"di2i3i4\"/>\n </article>\n <article XMLContent=\"udb\" Self=\"di2i4\"/>\n <article XMLContent=\"udd\" Self=\"di2i5\"/>\n <advertise XMLContent=\"udf\" Self=\"di2i6\"/>\n </Root>\n\n\n``xml_structure`` attribute is a representation of the XML Structure of your InDesign XML-ready\ndocument (The one you want to use to populate the content with data from an external XML file\nhaving the same structure).\n\n\nBuild package\n-------------\n\nThere is a convenient script to create a IDML package from a flat directory called\n*simpleidml_create_package_from_dir.py* which should be in your PATH.\n\n\nCompose document\n----------------\n\n**Important**: You should always use a ``with`` context when using side-effect methods on\n``IDMLPackage`` instances returning new instances.\n\n\nFor example, the following is bad because ``my_doc`` initial instance reference is lost and\nthe associated file cannot be properly closed. This may rise an exception on Windows platform\nif you try to ``os.unlink()`` an unclosed file.\n\n.. code-block:: python\n\n from simple_idml import idml\n my_doc = idml.IDMLPackage(\"/path/to/my_main_document.idml\")\n my_doc = my_doc.prefix(\"main\")\n\nInstead, use:\n\n.. code-block:: python\n\n from simple_idml import idml\n my_doc = idml.IDMLPackage(\"/path/to/my_main_document.idml\")\n with my_doc.prefix(\"main\") as f:\n # some code.\n\nInsert elements\n'''''''''''''''\n\nUsing the XML Structure you can ask SimpleIDML to insert into a document at a XML tag the content\nof another XML tag from another document. The tag paths are expressed using XPath_ syntax.\nNote that you should always make a copy of your idml files before altering them with\n``shutil.copy2(src, dst)`` for instance and prefix your document before using ``insert_idml()``\nto avoid reference collisions.\n\n.. code-block:: python\n\n >>> from simple_idml import idml\n >>> idml_main = idml.IDMLPackage(\"/path/to/my_main_document.idml\")\n >>> idml_module = idml.IDMLPackage(\"/path/to/my_small_document.idml\")\n\n >>> with idml_main.prefix(\"main\") as p_idml_main, \\\n >>> idml_module.prefix(\"article\") as p_idml_article:\n\n >>> with p_idml_main.insert_idml(p_idml_article, at=\"/Root/article[3]\",\n only=\"/Root/module[1]\") as f:\n >>> f.stories\n ['Stories/Story_article1u188.xml', 'Stories/Story_article1u19f.xml',\n 'Stories/Story_article1u1db.xml', 'Stories/Story_mainu102.xml',\n 'Stories/Story_mainu11b.xml', 'Stories/Story_mainu139.xml',\n 'Stories/Story_mainue4.xml']\n\n\n >>> print f.xml_structure_pretty()\n <Root Self=\"maindi2\">\n <article XMLContent=\"mainu102\" Self=\"maindi2i3\">\n <Story XMLContent=\"mainue4\" Self=\"maindi2i3i1\">\n <title Self=\"maindi2i3i1i1\"/>\n <subtitle Self=\"maindi2i3i1i2\"/>\n </Story>\n <content XMLContent=\"mainu11b\" Self=\"maindi2i3i2\"/>\n <illustration XMLContent=\"mainu135\" Self=\"maindi2i3i3\"/>\n <description XMLContent=\"mainu139\" Self=\"maindi2i3i4\"/>\n </article>\n <article XMLContent=\"mainudb\" Self=\"maindi2i4\"/>\n <article Self=\"maindi2i5\">\n <module XMLContent=\"article1u1db\" Self=\"article1di3i12\">\n <main_picture XMLContent=\"article1u182\" Self=\"article1di3i12i1\"/>\n <headline XMLContent=\"article1u188\" Self=\"article1di3i12i2\"/>\n <Story XMLContent=\"article1u19f\" Self=\"article1di3i12i3\">\n <article Self=\"article1di3i12i3i2\"/>\n <informations Self=\"article1di3i12i3i1\"/>\n </Story>\n </module>\n </article>\n <advertise XMLContent=\"mainudf\" Self=\"maindi2i6\"/>\n </Root>\n\n\nCombine pages\n'''''''''''''\n\nYou may need to gather pages from severals documents into a single one:\n\n.. code-block:: python\n\n >>> edito_idml_file = IDMLPackage(\"magazineA-edito.idml\")\n >>> courrier_idml_file = IDMLPackage(\"magazineA-courrier-des-lecteurs.idml\")\n\n >>> # Always start by prefixing packages to avoid collision.\n >>> with edito_idml_file.prefix(\"edito\") as p_edito,\\\n >>> courrier_idml_file.prefix(\"courrier\") as p_courrier:\n >>> len(edito_idml_file.pages)\n 2\n\n >>> new_idml = p_edito.add_page_from_idml(p_courrier,\n ... page_number=1,\n ... at=\"/Root\",\n ... only=\"/Root/page[1]\")\n >>> len(new_idml.pages)\n 3\n\n # The XML Structure has integrated the new file.\n >>> print etree.tostring(new_idml.xml_structure, pretty_print=True)\n <Root Self=\"editodi2\">\n <page Self=\"editodi2ib\">\n <article Self=\"editodi2ibif\">\n <Story XMLContent=\"editoue4\" Self=\"editodi2ibifi1f\">\n <title Self=\"editodi2ibifi1fi1\"/>\n <subtitle Self=\"editodi2ibifi1fi2\"/>\n </Story>\n <content XMLContent=\"editou11b\" Self=\"editodi2ibifi1e\"/>\n </article>\n </page>\n <page Self=\"editodi2i10\">\n <advertise XMLContent=\"editou1de\" Self=\"editodi2i10i23\"/>\n </page>\n <page Self=\"courrierdi2ib\">\n <title XMLContent=\"courrieru1b2\" Self=\"courrierdi2ibi34\"/>\n <article XMLContent=\"courrieru1c9\" Self=\"courrierdi2ibi33\"/>\n <article XMLContent=\"courrieru1e0\" Self=\"courrierdi2ibi32\"/>\n <article XMLContent=\"courrieru1fb\" Self=\"courrierdi2ibi31\"/>\n <article XMLContent=\"courrieru212\" Self=\"courrierdi2ibi30\"/>\n </page>\n </Root>\n\n\nThere is a convenient method to add several pages at once:\n\n.. code-block:: python\n\n >>> edito_idml_file = IDMLPackage(\"magazineA-edito.idml\")\n >>> courrier_idml_file = IDMLPackage(\"magazineA-courrier-des-lecteurs.idml\")\n >>> bloc_notes_idml_file = IDMLPackage(\"magazineA-bloc-notes.idml\")\n\n >>> with edito_idml_file.prefix(\"edito\") as p_edito,\\\n >>> courrier_idml_file.prefix(\"courrier\") as p_courrier,\\\n >>> bloc_notes_idml_file.prefix(\"blocnotes\") as p_bloc_notes:\n\n >>> packages_to_add = [\n ... (p_courrier, 1, \"/Root\", \"/Root/page[1]\"),\n ... (p_bloc_notes, 1, \"/Root\", \"/Root/page[1]\"),\n ... ]\n\n >>> new_idml = p_edito.add_pages_from_idml(packages_to_add)\n >>> len(new_idml.pages)\n 4\n >>> new_idml.spreads\n ['Spreads/Spread_editoub6.xml',\n 'Spreads/Spread_editoubc.xml',\n 'Spreads/Spread_editoubd.xml']\n\n\nImport/Export XML\n-----------------\n\nExporting as XML:\n\n.. code-block:: python\n\n >>> idml_file = IDMLPackage(\"path/to/file.idml\")\n >>> print idml_file.export_xml()\n <Root>\n <module>\n <main_picture/>\n <headline>Hello world!</headline>\n <Story>\n <article>Lorem ipsum dolor sit amet, ...</article>\n <informations>Lorem ipsum dolor sit amet,</informations>\n </Story>\n </module>\n </Root>\n\nYou can as well import XML file into your InDesign\u00ae documents. The following rules applies:\n\n- A node having the attribute ``simpleidml-setcontent=\"false\"`` will not update the content of the\n corresponding element into the idml document (but its children will be updated).\n- A node having the attribute ``simpleidml-ignorecontent\"true\"`` will not update the content of the\n corresponding element into the idml document **and** its children.\n- In a *ignorecontent* context the content of a child node can be turned on with the\n ``simpleidml-forcecontent=\"true\"`` flag.\n- Images references are passed by the *href* attribute. An empty value will remove the\n corresponding page items into the document.\n- Nested tag will be created if they are mapped with a *character-style*.\n- The style applied to the newly created tag is a combinaison of the parent character-styles and\n the mapped one.\n\nPlease take a look into the tests for in-depth examples.\n\nImport PDF\n----------\n\nA block can be used as a placeholder for a PDF file:\n\n.. code-block:: python\n\n >>> with IDMLPackage(\"my_package.idml\") as idml_file:\n >>> with idml_file.import_pdf(\"file:/path/to/file.pdf\", at=\"/Root/modules/module[2]\") as f:\n >>> f.export_xml()\n\nUse InDesign server SOAP interface to convert a file\n----------------------------------------------------\n\nThis require an *InDesign Server* and a directory that it can access in read/write.\nThe same directory must be accessible by the client either by the filesystem or by FTP.\nThe ``formats`` parameter is a list (of dicts) of formats you want your file to be exported into.\nThe supported formats are ``jpeg``, ``idml``, ``pdf``, ``indd`` and ``zip`` (this one\nreturning a zipped InDesign package).\n\nYou can provide exports parameters using the ``params`` key. The list of supported parameters\ncan be found with a ``simpleidml_indesign_save_as.py --help`` command.\n\n\nHere some snippets:\n\n.. code-block:: python\n\n from simple_idml.indesign import indesign\n\n response = indesign.save_as(\"/path_to_file.idml\", [{\"fmt\": \"indd\"}],\n \"http://url-to-indesign-server:port\",\n \"/path/to/client/workdir\",\n \"/path/to/indesign-server/workdir\")[0]\n with open(\"my_file.indd\", \"w+\") as f:\n f.write(response)\n\n response = indesign.save_as(\"/path_to_file.indd\", [{\"fmt\": \"idml\"}],\n \"http://url-to-indesign-server:port\",\n \"/path/to/client/workdir\",\n \"/path/to/indesign-server/workdir\")[0]\n with open(\"my_file.idml\", \"w+\") as f:\n f.write(response)\n\n response = indesign.save_as(\"/path_to_file.indd\", [{\n \"fmt\": \"pdf\",\n \"params\": {\"colorSpace\": \"CMYK\"},\n }],\n \"http://url-to-indesign-server:port\",\n \"/path/to/client/workdir\",\n \"/path/to/indesign-server/workdir\")[0]\n with open(\"my_file.pdf\", \"w+\") as f:\n f.write(response)\n\nThe response is a list of string because you can pass a list of formats\nand so generate several exports in a row (if performances matter):\n\n.. code-block:: python\n\n from simple_idml.indesign import indesign\n pdf_response, jpeg_response, zip_response = indesign.save_as(\n \"/path_to_file.indd\",\n [{\"fmt\": \"pdf\"}, {\"fmt\": \"jpeg\"}, {\"fmt\": \"zip\"}],\n \"http://url-to-indesign-server:port\",\n \"/path/to/client/workdir\",\n \"/path/to/indesign-server/workdir\")\n\nIf the InDesign Server instance runs on a Windows machine, set the\n``indesign_server_path_style`` parameter to ``\"windows\"``.\n\nIf the client access to the working directory *via* FTP, you must specify that\nin the ``ftp_params`` parameter:\n\n\n.. code-block:: python\n\n {\n 'auth': (\"ftp://ftp.foo.org\", \"user_account\", \"s3cret-pa55word\"),\n 'passive': False,\n 'keepalive': True, # False by default (optional)\n 'keepalive_interval': 30, # set socket.TCP_KEEPINTVL (optional)\n 'keepalive_idle': 45, # set socket.TCP_KEEPIDLE (optional)\n 'polite': False, # Unilaterally close ftp connection (optional)\n }\n\nA script (``simpleidml_indesign_save_as``) that wraps that function should be installed\nin your PATH.\n\n\nRevisions\n=========\n\n1.0.5\n-----\n\nBug fixes\n'''''''''\n\n- Fixed ``indesign.save_as()`` in Python 3 where the jsx file was opened\n in text mode instead of binary.\n\n1.0.3\n-----\n\n- Use setuptools instead of distutils for a better integration with Pypi.\n\n1.0.0\n-----\n\nNew features\n''''''''''''\n\n- Added support for Python 3\n\nBackward incompatibilities\n''''''''''''''''''''''''''\n\n- Removed support for Python 2.6\n\n0.92.9\n------\n\nNew features\n''''''''''''\n\n- Added ``simpleidml_indesign_profiles.py`` script to list the available joboptions\n files on the InDesign Server using the SOAP interface.\n\nBug fixes\n'''''''''\n\n- Fix working directory cleaning of the SOAP server when an exception is raised.\n ``indesign.save_as()`` may be backward incompatible since the returned list\n may contains some ``None`` (instead of raising an exception before returning\n anything).\n- Give the list of available profiles (joboptions files) on the InDesign Server\n if the given 'pdfExportPresetName' is not found.\n\nBackward incompatibilities\n''''''''''''''''''''''''''\n\n- ``indesign.close_all_documents()`` has been replace the ``CloseAllDocuments`` class\n and its ``.execute()`` method.\n- Some util functions that wrap the basic file manipulations to manage the case of\n a ftp access to those files have been moved from indesign.py to a new ftp.py module.\n\n0.92.8\n------\n\nNew features\n''''''''''''\n\n- Added ``IDMLPackage.import_pdf()`` method.\n\n\nBug fixes\n'''''''''\n\n- Fix ``bleedMarks`` in export.jsx.\n\n0.92.7\n------\n\nBug fixes\n'''''''''\n\n- FillTint wasn't managed.\n- Force ``lxml < 4`` in dependencies.\n\n0.92.6\n------\n\nBug fixes\n'''''''''\n\n- Catch errors when InDesign SOAP server fails to complete a task and raise\n an exception.\n\n0.92.5\n------\n\nBug fixes\n'''''''''\n\n- Handle <PDF> in `IDMLPackage._get_item_translation_for_insert()`\n\n0.92.4\n------\n\nBug fixes\n'''''''''\n\n- Fix issue #11: Parent CharacterStyle not applied in import_xml() in some cases.\n\n0.92.2\n------\n\nNew features\n''''''''''''\n\n- More ftp parameters for `indesign.save_as()` function. Hardcoded socket parameters are now\n modifiable. And you can set the flag `polite` to `False` if you encounter hanging problem\n on `ftp.quit()` as I do. Being unpolite calls an unilateral and rude `ftp.close()`.\n Please upgrade your code with explicite values if you rely on the previous default\n behavior.\n\n0.92.1\n------\n\nBug fixes\n'''''''''\n\n- ``indesign.save_as()`` uses a dedicated temporary working directory to avoid\n concurrent access on files.\n- Added a logger to ``indesign.save_as()`` ('simpleidml.indesign') and some debug messages.\n- Fixed hanging ``ftp.retrbinary()`` in ``indesign.save_as()`` calls by tuning the socket.\n\n0.91.8\n------\n\nNew features\n''''''''''''\n\n- Added support for PDF export presets in ``indesign.save_as()``.\n\n0.91.7\n------\n\nNew features\n''''''''''''\n\n- Added ``IMDLPackage.merge_layers(with_name)`` (Refs#7).\n- Added a new script ``simpleidml_indesign_close_all_documents.py``.\n\nBug fixes\n'''''''''\n\n- In ``IDMLPackage.insert_idml()``, Elements from the same layer (but not tagged in the structure)\n are now added in the Spread of the document of destination.\n- Better support for Windows platform.\n- Fixed character style mapping with tag when using insert_idml.\n- Fixed Export XML in some edge case.\n- Added parameters to ``simpleidml_indesign_save_as`` when exporting to PDF.\n\nBackward incompatibilities\n''''''''''''''''''''''''''\n\n- ``indesign.save_as()`` formats parameters is now a list of dictionaries.\n\n0.91.6\n------\n\nNew features\n''''''''''''\n\n- Add the ``simpleidml-ignorecontent`` and ``simpleidml-forcecontent`` tags (XML attributes)\n allowing one to carefully exclude a node and its children during the import XML process.\n- ``indesign.save_as()`` now works with a client working directory over a FTP.\n This require ``wget`` to be on your system if you want to create zip packages.\n\n\nBackward incompatibilities\n''''''''''''''''''''''''''\n\n- ``indesign.save_as()`` require both a client workdir and a server workdir parameter.\n\n0.91.5.5\n--------\n\nBugfixes\n''''''''\n\n- <EPS> elements in Spread weren't handled correctly.\n- All spread elements were added in the destination package when using ``insert_idml()``.\n\n\n0.91.3\n------\n\nNew features\n''''''''''''\n\nAdd a SOAP client to call a InDesign server to get INDD file and export in various\nformats.\n\n0.91.2\n------\n\nNew features\n''''''''''''\n\n- Ticket #20 - Suffix layers.\n\nBackward incompatibilities\n''''''''''''''''''''''''''\n\n- Ticket #22 - IDMLPackage.import_xml() parameter is a XML string and not a file object.\n\nBugfixes\n''''''''\n\nTickets #19, #21 (orphan layers), #23 (AssertXMLEqual), #24 (import_xml() failure).\n\n\n.. _XPath: http://en.wikipedia.org/wiki/XPath", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/Starou/SimpleIDML", "keywords": "", "license": "BSD Licence", "maintainer": "", "maintainer_email": "", "name": "SimpleIDML", "package_url": "https://pypi.org/project/SimpleIDML/", "platform": "", "project_url": "https://pypi.org/project/SimpleIDML/", "project_urls": { "Homepage": "https://github.com/Starou/SimpleIDML" }, "release_url": "https://pypi.org/project/SimpleIDML/1.0.6/", "requires_dist": null, "requires_python": "", "summary": "A library to manipulate Adobe(r) IDML(r) files.", "version": "1.0.6" }, "last_serial": 5686652, "releases": { "0.91.2": [ { "comment_text": "", "digests": { "md5": "9df39b7342aaa03e0cfbc53951c2e29d", "sha256": "ec438d57afebfef067cc8ac46e8dbcb97a99dc4132b19265857519f6d92b653c" }, "downloads": -1, "filename": "SimpleIDML-0.91.2.tar.gz", "has_sig": false, "md5_digest": "9df39b7342aaa03e0cfbc53951c2e29d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 531492, "upload_time": "2013-10-24T12:47:29", "url": "https://files.pythonhosted.org/packages/8d/84/196a539e74d31085a5fc5a2afa10177156dd4fd0a8df4cc28848d22f7c1f/SimpleIDML-0.91.2.tar.gz" } ], "0.91.3": [ { "comment_text": "", "digests": { "md5": "1f20866f32a17e8f276a9862e8141e94", "sha256": "e9864389edf387072642d28be7b72958461d4c64a3a754c6cd2278d6a4229294" }, "downloads": -1, "filename": "SimpleIDML-0.91.3.tar.gz", "has_sig": false, "md5_digest": "1f20866f32a17e8f276a9862e8141e94", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 503507, "upload_time": "2014-09-10T11:29:18", "url": "https://files.pythonhosted.org/packages/fe/12/a453fd57a9b5daf5d0408b13fc00a01f9ffeef1d345940326aa3600bc034/SimpleIDML-0.91.3.tar.gz" } ], "0.91.4": [ { "comment_text": "", "digests": { "md5": "d9c2d7e2a0db4b0afe83f7ca037ec027", "sha256": "393d9ecd412c27770bbb35dc7bfd953614f932da1b0f9210d6bef4e77987e9e3" }, "downloads": -1, "filename": "SimpleIDML-0.91.4.tar.gz", "has_sig": false, "md5_digest": "d9c2d7e2a0db4b0afe83f7ca037ec027", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 504444, "upload_time": "2014-09-10T11:37:02", "url": "https://files.pythonhosted.org/packages/67/60/9f507a37501ce2585334554bdadf80a3f598694ad33767afd12cec3c6bd5/SimpleIDML-0.91.4.tar.gz" } ], "0.91.5": [ { "comment_text": "", "digests": { "md5": "59a728eecefd0cb08cd7b3bdda700360", "sha256": "85aad8fe36ed89b3f3e764ee2059bad79760956a06a8298dfc35c7cd0e678bbb" }, "downloads": -1, "filename": "SimpleIDML-0.91.5.tar.gz", "has_sig": false, "md5_digest": "59a728eecefd0cb08cd7b3bdda700360", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 535608, "upload_time": "2014-09-12T08:22:32", "url": "https://files.pythonhosted.org/packages/a7/fb/a39b3e0361b3069f394eb4a1511c3f68fca31acaf3b166f1cace4ac1baf7/SimpleIDML-0.91.5.tar.gz" } ], "0.91.6": [ { "comment_text": "", "digests": { "md5": "bc70abc048fee480dba807728461cd37", "sha256": "2b8c0d380b820e9a542d830b0536e364e439a93d4e2745013f3dd35f8ba00cc5" }, "downloads": -1, "filename": "SimpleIDML-0.91.6.tar.gz", "has_sig": false, "md5_digest": "bc70abc048fee480dba807728461cd37", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1129364, "upload_time": "2014-10-22T08:25:06", "url": "https://files.pythonhosted.org/packages/ae/57/d21067ee32e45ed51b6d0ddcc834400fd6f2644a696b095baf1140235f2a/SimpleIDML-0.91.6.tar.gz" } ], "0.91.7": [ { "comment_text": "", "digests": { "md5": "ed88c7f8b6862fb9268e86b6f5d7f502", "sha256": "09ffcd68536150506d748be2e124386bf75c55c3d5f628f7b02d8ebac8d25562" }, "downloads": -1, "filename": "SimpleIDML-0.91.7.tar.gz", "has_sig": false, "md5_digest": "ed88c7f8b6862fb9268e86b6f5d7f502", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1217807, "upload_time": "2014-12-22T07:58:29", "url": "https://files.pythonhosted.org/packages/b9/1f/7da018aab98e2ff115c7e97db691a30aaed42d8e6e71c69304f45da3fa0f/SimpleIDML-0.91.7.tar.gz" } ], "0.91.9": [ { "comment_text": "", "digests": { "md5": "d1360318bdc1a5ecab4aa77feb48e04c", "sha256": "1dfcb8847426fb438fa49de19446c54fa1e11b65851a8b360faa43708cfe69ef" }, "downloads": -1, "filename": "SimpleIDML-0.91.9.tar.gz", "has_sig": false, "md5_digest": "d1360318bdc1a5ecab4aa77feb48e04c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1219179, "upload_time": "2015-03-18T10:14:26", "url": "https://files.pythonhosted.org/packages/a5/cf/b063e95c6899a00df253a85c9668dc435be71f6a1cefb51e4e3eb56864d5/SimpleIDML-0.91.9.tar.gz" } ], "0.92.0": [ { "comment_text": "", "digests": { "md5": "e4053f2af5540b1f5517d670bfe3e4e7", "sha256": "d761e6cefb3a81a670d34ddb6c83deaf6e90b993e55b0853fad19cc7992d6c99" }, "downloads": -1, "filename": "SimpleIDML-0.92.0.tar.gz", "has_sig": false, "md5_digest": "e4053f2af5540b1f5517d670bfe3e4e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1219195, "upload_time": "2015-04-02T10:26:38", "url": "https://files.pythonhosted.org/packages/ed/7a/c277298f029d29e4b16561a20271c8180ba3db819651dffb6c6a05c6bc60/SimpleIDML-0.92.0.tar.gz" } ], "0.92.2": [ { "comment_text": "", "digests": { "md5": "00e08cca25a2596aef4428bb7d2a77f7", "sha256": "55f2d66dad1efa30702fa98db145eb216560a00fa70d008c2a21140105937be4" }, "downloads": -1, "filename": "SimpleIDML-0.92.2.tar.gz", "has_sig": false, "md5_digest": "00e08cca25a2596aef4428bb7d2a77f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1220330, "upload_time": "2015-07-13T08:45:34", "url": "https://files.pythonhosted.org/packages/9f/68/1738698760cc88e9bd07018c165824b13bcd3bf0cfa0010d0b1c6b27ef08/SimpleIDML-0.92.2.tar.gz" } ], "0.92.4": [ { "comment_text": "", "digests": { "md5": "c1265be3b4c3cf3e8c9ebc003f5c5d51", "sha256": "ecb67b49c9791f3bbb29c4e3101d597d2ef67ebf1a4472a15bf661a9bbcefee2" }, "downloads": -1, "filename": "SimpleIDML-0.92.4.tar.gz", "has_sig": false, "md5_digest": "c1265be3b4c3cf3e8c9ebc003f5c5d51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1220795, "upload_time": "2016-01-26T16:12:07", "url": "https://files.pythonhosted.org/packages/e1/54/a03129e9a5aa9f51b5d33dc877c6ce3631cb792048716ed30c2495bad3ac/SimpleIDML-0.92.4.tar.gz" } ], "0.92.5": [ { "comment_text": "", "digests": { "md5": "e1ad86cf3cf2043300065733f3e13d87", "sha256": "b6db1d9af681e89b1a05e5a5297957daede23581e2a0323f8026a22a4de3bed1" }, "downloads": -1, "filename": "SimpleIDML-0.92.5.tar.gz", "has_sig": false, "md5_digest": "e1ad86cf3cf2043300065733f3e13d87", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1221468, "upload_time": "2016-05-12T13:47:45", "url": "https://files.pythonhosted.org/packages/df/51/5401a090ef0501fd3e023db0a6fc7c937d31489a4c5215273e32fe4fa8eb/SimpleIDML-0.92.5.tar.gz" } ], "0.92.6": [ { "comment_text": "", "digests": { "md5": "f4632f71ea799877d5a7c6cb22ead8a9", "sha256": "339f09a797ec9bd0832d8e9d798e5fdadd76c8b353027ab56fa4cc3b40cd191f" }, "downloads": -1, "filename": "SimpleIDML-0.92.6.tar.gz", "has_sig": false, "md5_digest": "f4632f71ea799877d5a7c6cb22ead8a9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1221694, "upload_time": "2016-09-15T12:31:03", "url": "https://files.pythonhosted.org/packages/9a/f0/50839c90e817c00f716c2718badda3d0f8d24c4bc87cd6471bfcc20f9ce6/SimpleIDML-0.92.6.tar.gz" } ], "0.92.7": [ { "comment_text": "", "digests": { "md5": "9bc88f6a7eff4fcb815be76b4eeea7f3", "sha256": "02b0a6ed2a01cdd0e8daa2e82730745265fb8f959333ebd3ae3cd1a7bfd23dc2" }, "downloads": -1, "filename": "SimpleIDML-0.92.7.tar.gz", "has_sig": false, "md5_digest": "9bc88f6a7eff4fcb815be76b4eeea7f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1221762, "upload_time": "2017-10-04T12:23:32", "url": "https://files.pythonhosted.org/packages/78/f9/92374953982f8eb86b32d88eb8e75223413d7aae4f701fe1e739c03a2f73/SimpleIDML-0.92.7.tar.gz" } ], "0.92.8": [ { "comment_text": "", "digests": { "md5": "1b61cb8f8fab7fc8a128260f9a1b7646", "sha256": "84a64f8087fea7280d43eddd61ebabab5d69b665b8d1d7e7b6efd1157293f42b" }, "downloads": -1, "filename": "SimpleIDML-0.92.8.tar.gz", "has_sig": false, "md5_digest": "1b61cb8f8fab7fc8a128260f9a1b7646", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1271291, "upload_time": "2017-10-27T14:21:06", "url": "https://files.pythonhosted.org/packages/fd/df/1cec6cb0dcc7847642ee196f414f5ca849dce8739985888c7f3f4b09a86e/SimpleIDML-0.92.8.tar.gz" } ], "0.92.9": [ { "comment_text": "", "digests": { "md5": "60c596f960e984c2026049c3a6b1b480", "sha256": "758b6da4075671ce8594aa3159f80ef2069ff7e18d2cdf06551c546b43abf2db" }, "downloads": -1, "filename": "SimpleIDML-0.92.9.tar.gz", "has_sig": false, "md5_digest": "60c596f960e984c2026049c3a6b1b480", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1267827, "upload_time": "2017-12-05T15:50:22", "url": "https://files.pythonhosted.org/packages/be/ba/1e54fe0bdd20531149af72fcb90c8392f9088f6e1092cba2021df50bad8f/SimpleIDML-0.92.9.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "49d4087aba27fe1ba1334bc4e59db261", "sha256": "c8e63b561fbbc7fdc8164f9ff6445dc1748f0759986a82ca8fee7c0cf94546b6" }, "downloads": -1, "filename": "SimpleIDML-1.0.0.tar.gz", "has_sig": false, "md5_digest": "49d4087aba27fe1ba1334bc4e59db261", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1275671, "upload_time": "2018-01-22T08:45:50", "url": "https://files.pythonhosted.org/packages/e3/82/aa6addc00b15ff5bb4d4fb214b256fd81c39e4a5dd5d07b9ca80e94b3101/SimpleIDML-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "f3a7faa124b915a12a176c71779389d9", "sha256": "2c3ef6edc85696830d7728c0698b28d313e6c01c530c468a79e88410b759f1dc" }, "downloads": -1, "filename": "SimpleIDML-1.0.1.tar.gz", "has_sig": false, "md5_digest": "f3a7faa124b915a12a176c71779389d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1275072, "upload_time": "2018-02-01T08:54:30", "url": "https://files.pythonhosted.org/packages/b9/8a/72f81d325ed65a3e8dd5734ae7f3d031730c6f1e1c89f407420e352de0ff/SimpleIDML-1.0.1.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "4f413f89fbc21147539ff4dc9b375898", "sha256": "b83c353a399c1e41f04cf549fbc68a62d297c7e7dff6920a9eafe39c8587a1dc" }, "downloads": -1, "filename": "SimpleIDML-1.0.3.tar.gz", "has_sig": false, "md5_digest": "4f413f89fbc21147539ff4dc9b375898", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1241963, "upload_time": "2018-11-20T14:16:50", "url": "https://files.pythonhosted.org/packages/55/38/ff5037877a77e7116ba4b7d0698caef00f321ccde16f7df00bd5621bce21/SimpleIDML-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "36e0ab213bda744382f496641cebffb0", "sha256": "dd26be35d199e98ab57a2e68cf91ddc56fcd34ccc94cd450185620510f75ba48" }, "downloads": -1, "filename": "SimpleIDML-1.0.4.tar.gz", "has_sig": false, "md5_digest": "36e0ab213bda744382f496641cebffb0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4769907, "upload_time": "2018-12-17T16:07:02", "url": "https://files.pythonhosted.org/packages/50/ed/e36bc2be5600642c8ffc0e31f40db5fb58bee5904962b5ae8587dbad7e3d/SimpleIDML-1.0.4.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "dafb87a2a41d97f58c5d637a73deb954", "sha256": "7af769e3e7ec8f7984cc4e32adb776d49823615b65ca6d802e21452b7c60d29a" }, "downloads": -1, "filename": "SimpleIDML-1.0.5.tar.gz", "has_sig": false, "md5_digest": "dafb87a2a41d97f58c5d637a73deb954", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4770065, "upload_time": "2019-01-23T13:09:06", "url": "https://files.pythonhosted.org/packages/20/92/c22fb4c02931dcde64e001ee9155c8bd6109674f4615a72dbc5bd8ca2fb6/SimpleIDML-1.0.5.tar.gz" } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "ac38fbd0f058943ce2c3d23f6abf035c", "sha256": "63f2a112ef51d019eec69e8f70957a2ffe0590d0b6322ddc0556cd0a89144843" }, "downloads": -1, "filename": "SimpleIDML-1.0.6.tar.gz", "has_sig": false, "md5_digest": "ac38fbd0f058943ce2c3d23f6abf035c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4770115, "upload_time": "2019-08-16T09:17:17", "url": "https://files.pythonhosted.org/packages/88/51/c33a0934a7a0896842e3e27fb9057dc22d16fa54a8a54ecad295a1f65d72/SimpleIDML-1.0.6.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ac38fbd0f058943ce2c3d23f6abf035c", "sha256": "63f2a112ef51d019eec69e8f70957a2ffe0590d0b6322ddc0556cd0a89144843" }, "downloads": -1, "filename": "SimpleIDML-1.0.6.tar.gz", "has_sig": false, "md5_digest": "ac38fbd0f058943ce2c3d23f6abf035c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4770115, "upload_time": "2019-08-16T09:17:17", "url": "https://files.pythonhosted.org/packages/88/51/c33a0934a7a0896842e3e27fb9057dc22d16fa54a8a54ecad295a1f65d72/SimpleIDML-1.0.6.tar.gz" } ] }