{ "info": { "author": "Tom", "author_email": "tom@tomforb.es", "bugtrack_url": null, "classifiers": [ "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3 :: Only" ], "description": "Wordinserter\n============\n\n|Build Status| |image1| |image2| |image3| |image4|\n\nThis module allows you to insert HTML into a Word Document, as well as\nallowing you to programmatically build word documents in pure Python\n(Python 3.x only at the moment). After running\n``pip install wordinserter`` you can use the ``wordinserter`` CLI to\nquickly generate test documents:\n\n.. code:: bash\n\n # Download https://raw.githubusercontent.com/orf/wordinserter/master/tests/docs/table_widths.html\n wordinserter table_widths.html --style=\"table { background-color: red }\"\n\nThis should open Word and insert three tables, each of them styled with\na red background.\n\nThe library is stable and has been used to generate tens of thousands of\nreports, and currently supports many features (all controlled through\nHTML):\n\n- Common tags, including tables, lists, code blocks, images,\n hyperlinks, footnotes, headers, paragraphs, styles (``b`` ``i``\n ``em``)\n- Named bookmarks in documents via element ``id`` attributes\n- A subset of CSS for elements, with more that can be easily added as\n needed\n- Including document-wide stylesheets while adding elements\n- In-built syntax highlighting for ``
`` and ```` blocks\n- Supports complex merged tables, with rowspans and colspans\n- Arbitrarily nested lists of differing types (bullet, numbered, roman\n numerals)\n- Hyperlinks to bookmarks within the document using classic links or\n using Word 'fields'\n- Images, with support for footnotes, 404 and embedded base64 data-uri\n images\n- Basic whitespace handling\n\nThere is a `comparison\ndocument `__\nshowing the output of WordInserter against Chrome, check it out to see\nwhat the library can do.\n\nAPI\n===\n\nThe API is really simple to use:\n\n.. code:: python\n\n from wordinserter import parse, insert\n\n operations = parse(html, parser=\"html\")\n insert(operations, document=document, constants=constants)\n\nInserting HTML into a Word document is a two step process: first the\ninput has to be parsed into a sequence of operations, which is then\n*inserted* into a Word document. This library currently only supports\ninserting using the Word COM interface which means it is Windows\nspecific at the moment.\n\nBelow is a more complex example including starting word that will insert\na representation of the HTML code into the new word document, including\nthe image, caption and list.\n\n.. code:: python\n\n from wordinserter import insert, parse\n from comtypes.client import CreateObject\n\n # This opens Microsoft Word and creates a new document.\n word = CreateObject(\"Word.Application\")\n word.Visible = True # Don't set this to True in production!\n document = word.Documents.Add()\n from comtypes.gen import Word as constants\n\n html = \"\"\"\n This is a title
\n 
\n This is some text in a paragraph
\n \n - Boo! I am a list
\n
\n \"\"\"\n\n # Parse the HTML into a list of operations then feed them into insert.\n operations = parse(html, parser=\"html\")\n insert(operations, document=document, constants=constants)\n\nWhat's with the constants part? Wordinserter is agnostic to the COM\nlibrary you use. Each library exposes constant values that are needed by\nWordinserter in a different way: the pywin32 library exposes it as\nwin32com.client.constants whereas the comtypes library exposes them as a\nmodule that resides in comtypes.gen. Rather than guess which one you are\nusing Wordinserter requires you to pass the right one in explicitly. If\nyou need to mix different constant groups you can use the\n``CombinedConstants`` class:\n\n.. code:: python\n\n from wordinserter.utils import CombinedConstants\n from comtypes.gen import Word as word_constants\n from comtypes.gen import Office as office_constants\n\n constants = CombinedConstants(word_constants, office_constants)\n\nInstall\n~~~~~~~\n\nGet it `from PyPi here `__,\nusing ``pip install wordinserter``. This has been built with word 2010\nand 2013, older versions may produce different results.\n\nSupported Operations\n--------------------\n\nWordInserter currently supports a range of different operations,\nincluding code blocks, font size/colors, images, hyperlinks, numbered\nand bullet lists, table borders and padding.\n\nStylesheets?\n^^^^^^^^^^^^\n\nWordinserter has support for stylesheets! Every element can be styled\nwith inline styles (``style='whatever'``) but this gets tedious at\nscale. You can pass CSS stylesheets to the ``parse`` function:\n\n.. code:: python\n\n html = \"Hello Word
\"\n stylesheet = \"\"\"\n .mystyle {\n color: red;\n }\n \"\"\"\n\n operations = parse(html, parser=\"html\", stylesheets=[stylesheet])\n insert(operations, document=document, constants=constants)\n\nThis will render \"Hello Word\" in red. Inheritance is respected, so child\nstyles override parent ones.\n\nWhy aren't my lists showing up properly?\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nThere are two ways people write lists in HTML, one with each sub-list as\na child of the parent list, or as a child of a list element. Below is a\nsample of the two different ways, both of which display correctly in all\nbrowsers:\n\n.. code:: html\n\n \n - \n I'm a list element\n
\n \n - I'm a sub list!
\n
\n
\n\n.. code:: html\n\n \n - \n I'm a list element\n
\n - I'm a sub list!
\n
\n \n
\n\nThe second way is correct according to the HTML specification. ``lxml``\nparses the first structure incorrectly in some cases, which leads to\nweird list behavior. There isn't much this library can do about that, so\nmake sure your lists are in the second format.\n\nOne other thing to note: Word does not support lists with mixed\nlist-types on a single level. i.e this HTML will render incorrectly:\n\n.. code:: html\n\n \n - \n
- Unordered List On Level #1
\n - Ordered List On Level #1
\n
\n
\n\n.. |Build Status| image:: https://travis-ci.org/orf/wordinserter.svg?branch=master\n :target: https://travis-ci.org/orf/wordinserter\n.. |image1| image:: https://img.shields.io/pypi/v/wordinserter.svg\n :target: https://pypi.python.org/pypi/wordinserter\n.. |image2| image:: https://img.shields.io/pypi/l/wordinserter.svg\n :target: https://pypi.python.org/pypi/wordinserter\n.. |image3| image:: https://img.shields.io/pypi/format/wordinserter.svg\n :target: https://pypi.python.org/pypi/wordinserter\n.. |image4| image:: https://img.shields.io/pypi/pyversions/wordinserter.svg\n :target: https://pypi.python.org/pypi/wordinserter\n\n",
"description_content_type": "",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/orf/wordinserter",
"keywords": "",
"license": "MIT",
"maintainer": "",
"maintainer_email": "",
"name": "wordinserter",
"package_url": "https://pypi.org/project/wordinserter/",
"platform": "",
"project_url": "https://pypi.org/project/wordinserter/",
"project_urls": {
"Homepage": "https://github.com/orf/wordinserter"
},
"release_url": "https://pypi.org/project/wordinserter/1.1.3/",
"requires_dist": [
"BeautifulSoup4",
"cssutils",
"requests",
"webcolors",
"pygments",
"lxml",
"contexttimer",
"docopt"
],
"requires_python": "",
"summary": "Render HTML and Markdown to a specific portion of a word document",
"version": "1.1.3"
},
"last_serial": 4993508,
"releases": {
"0.5.1": [
{
"comment_text": "",
"digests": {
"md5": "cc77576311dc4ad25fc2f483906cbd98",
"sha256": "68126ea3778934ab00ab3436f80f910e76ad9599213b1c6240d573552b52f8d0"
},
"downloads": -1,
"filename": "wordinserter-0.5.1.zip",
"has_sig": false,
"md5_digest": "cc77576311dc4ad25fc2f483906cbd98",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11974,
"upload_time": "2015-05-24T19:35:55",
"url": "https://files.pythonhosted.org/packages/43/02/fd84b49ff94ae3ac2a23e6f98678c9afd0ee2908351b5553fb60117d675e/wordinserter-0.5.1.zip"
}
],
"0.6": [
{
"comment_text": "",
"digests": {
"md5": "2cc235d34682be84bd904b68c24b10ae",
"sha256": "0860c7acee7a957f9428e783d8be504a31a76e15f82cb26e4035ea8a015b45a4"
},
"downloads": -1,
"filename": "wordinserter-0.6.tar.gz",
"has_sig": false,
"md5_digest": "2cc235d34682be84bd904b68c24b10ae",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11167,
"upload_time": "2016-02-16T09:57:38",
"url": "https://files.pythonhosted.org/packages/8d/5b/94f0807b9ed6bfa190b0a0c853b5dd1e7698c41f09e555cd300210affac3/wordinserter-0.6.tar.gz"
}
],
"0.6.1": [
{
"comment_text": "",
"digests": {
"md5": "510111a3071a2c12545b199292bca583",
"sha256": "f1a121017035df83f60b63b224a544f1e0b15a6453bc1bcfd653388b5a90e4b8"
},
"downloads": -1,
"filename": "wordinserter-0.6.1.tar.gz",
"has_sig": false,
"md5_digest": "510111a3071a2c12545b199292bca583",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11339,
"upload_time": "2016-02-16T10:29:29",
"url": "https://files.pythonhosted.org/packages/cb/02/834addac812a587b6590cfe8f7f2caca08ce9a8206bb5e839d06d61e9a9e/wordinserter-0.6.1.tar.gz"
}
],
"0.6.10": [
{
"comment_text": "",
"digests": {
"md5": "0ef6d4b71b78decd64e17e4bd6ef6b91",
"sha256": "d809bc045092312c1e822ac3521c246686f8f76ebbcfeea866dc74bd86a1835a"
},
"downloads": -1,
"filename": "wordinserter-0.6.10.tar.gz",
"has_sig": false,
"md5_digest": "0ef6d4b71b78decd64e17e4bd6ef6b91",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11749,
"upload_time": "2016-02-25T12:10:07",
"url": "https://files.pythonhosted.org/packages/11/fd/a7bbf93797d565ad93c329b5b74f69463f2c37b432edba65cc0214ae297d/wordinserter-0.6.10.tar.gz"
}
],
"0.6.11": [
{
"comment_text": "",
"digests": {
"md5": "2cb879457673a268d960ab006483fa9c",
"sha256": "fd59119dabdc16a00debadeadc56d4a101ebfcc1ff82fabe08792033a5edb2db"
},
"downloads": -1,
"filename": "wordinserter-0.6.11.tar.gz",
"has_sig": false,
"md5_digest": "2cb879457673a268d960ab006483fa9c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11779,
"upload_time": "2016-02-29T10:53:22",
"url": "https://files.pythonhosted.org/packages/c4/28/8997820ff1d1065f51c9ebe02d7a51a27c13625ae388bdfa1c22df462251/wordinserter-0.6.11.tar.gz"
}
],
"0.6.12": [
{
"comment_text": "",
"digests": {
"md5": "e31e8c3a6119e942d97dfbb7fd8c401f",
"sha256": "4791828d7491483f80453b72071509074dddf601d7edae73ba71588f3e2b593b"
},
"downloads": -1,
"filename": "wordinserter-0.6.12.tar.gz",
"has_sig": false,
"md5_digest": "e31e8c3a6119e942d97dfbb7fd8c401f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11796,
"upload_time": "2016-03-02T15:12:27",
"url": "https://files.pythonhosted.org/packages/18/a5/26ff34acc54b67690c8fa33051de840e49da4d84d22c9c28f96f4b4beaf5/wordinserter-0.6.12.tar.gz"
}
],
"0.6.13": [
{
"comment_text": "",
"digests": {
"md5": "86e9232ef804adf6b819b2c3f60b768e",
"sha256": "3c12bfccb0ebbf3e575a309946bbbf2250ec0d3149e268efbcce05a3a14bb9f7"
},
"downloads": -1,
"filename": "wordinserter-0.6.13.tar.gz",
"has_sig": false,
"md5_digest": "86e9232ef804adf6b819b2c3f60b768e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11855,
"upload_time": "2016-03-02T15:37:03",
"url": "https://files.pythonhosted.org/packages/e5/3e/86ef3f01773f6652f655a60bcb79d267403c4acd53a4f647519cac86ec48/wordinserter-0.6.13.tar.gz"
}
],
"0.6.2": [
{
"comment_text": "",
"digests": {
"md5": "9a8aba5d2d52c04f2aef162de5531b0f",
"sha256": "9e92e453628df0964139f9a0f1b8a7a7fd7f71b5dc1a5e064a82883e47c01929"
},
"downloads": -1,
"filename": "wordinserter-0.6.2.tar.gz",
"has_sig": false,
"md5_digest": "9a8aba5d2d52c04f2aef162de5531b0f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11013,
"upload_time": "2016-02-16T10:31:47",
"url": "https://files.pythonhosted.org/packages/94/82/10763869ad6191e9d6e45fe18f3ba3b0cf1d0857e98f1fd7e4d9e0e3597c/wordinserter-0.6.2.tar.gz"
}
],
"0.6.5": [
{
"comment_text": "",
"digests": {
"md5": "7951314b4ac059530e1a7f079f53e5f4",
"sha256": "05a6ca790e77cf2dee922312dd26eaeaae2e253870bac3099527014591ba1784"
},
"downloads": -1,
"filename": "wordinserter-0.6.5.tar.gz",
"has_sig": false,
"md5_digest": "7951314b4ac059530e1a7f079f53e5f4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11039,
"upload_time": "2016-02-16T10:54:58",
"url": "https://files.pythonhosted.org/packages/2e/d5/573017dfbc45d06ec6ffaeb2117f7d9d3c6e89519626ac31a28012c452c2/wordinserter-0.6.5.tar.gz"
}
],
"0.6.6": [
{
"comment_text": "",
"digests": {
"md5": "d02178817b97fcaa5c20c91c19d1e0b1",
"sha256": "2b4a8c6aef44a61ad21dafe8b0386468e82a13fde7ee223629ef0d47b4bc5186"
},
"downloads": -1,
"filename": "wordinserter-0.6.6.tar.gz",
"has_sig": false,
"md5_digest": "d02178817b97fcaa5c20c91c19d1e0b1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11221,
"upload_time": "2016-02-16T11:40:17",
"url": "https://files.pythonhosted.org/packages/b8/27/ce69d2dde2bbc33a8aff471d1c3a60d9f6e2a3b0a9fdb1171311050429c7/wordinserter-0.6.6.tar.gz"
}
],
"0.6.7": [
{
"comment_text": "",
"digests": {
"md5": "0d25079fd70401506d6752d1decb1ef6",
"sha256": "427f924f8693774c045f5c01298683054b4af55d2f97577ab8ba2d8b7f9df7c7"
},
"downloads": -1,
"filename": "wordinserter-0.6.7.tar.gz",
"has_sig": false,
"md5_digest": "0d25079fd70401506d6752d1decb1ef6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11250,
"upload_time": "2016-02-16T12:08:12",
"url": "https://files.pythonhosted.org/packages/31/da/6c1d8b00de3fa29d3ea591a6292de5bea246ac72cec51d12cf780ef12caf/wordinserter-0.6.7.tar.gz"
}
],
"0.6.9": [
{
"comment_text": "",
"digests": {
"md5": "9c781e11c7cd95c334bf5af2faa282f6",
"sha256": "92673b4f41217ac6454d35c158e919c2dfff5d4f2952431bbc88f03657bb7401"
},
"downloads": -1,
"filename": "wordinserter-0.6.9.tar.gz",
"has_sig": false,
"md5_digest": "9c781e11c7cd95c334bf5af2faa282f6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11608,
"upload_time": "2016-02-23T15:19:20",
"url": "https://files.pythonhosted.org/packages/21/e0/49a734655b2dec2af6592d5b78d41c1e207029b0081abdfa048435963b85/wordinserter-0.6.9.tar.gz"
}
],
"0.6.9.1": [
{
"comment_text": "",
"digests": {
"md5": "75d9f7a6b636ddbabbd1cc8bcf8ec3e5",
"sha256": "9289ea7ddbb6d87662b383b10ad56259b8d5b5cff1ae120a32bf862722d25a6d"
},
"downloads": -1,
"filename": "wordinserter-0.6.9.1.tar.gz",
"has_sig": false,
"md5_digest": "75d9f7a6b636ddbabbd1cc8bcf8ec3e5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11627,
"upload_time": "2016-02-24T16:08:01",
"url": "https://files.pythonhosted.org/packages/77/70/78751363aa84c1a91ab99185de354acedff6f244bc6f041317b613e11f61/wordinserter-0.6.9.1.tar.gz"
}
],
"0.7": [
{
"comment_text": "",
"digests": {
"md5": "a9620809f3e8318eee411224af82b5eb",
"sha256": "482ffe0179df167506a983d809508157808bfb8997ce148323ead97cc5b23fcb"
},
"downloads": -1,
"filename": "wordinserter-0.7.tar.gz",
"has_sig": false,
"md5_digest": "a9620809f3e8318eee411224af82b5eb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12029,
"upload_time": "2016-03-07T15:40:24",
"url": "https://files.pythonhosted.org/packages/dc/ac/3b330da9ebb0a231bf1e92e93f7313da84ae45af3826e71a138ecdfa68ad/wordinserter-0.7.tar.gz"
}
],
"0.7.1": [
{
"comment_text": "",
"digests": {
"md5": "e5d67430318ef355b2c4bbd5983cee56",
"sha256": "8b80a4ea02cb4569df2a83400b44293e5e0b387990f22a6ad6ccb6f2f155e436"
},
"downloads": -1,
"filename": "wordinserter-0.7.1.tar.gz",
"has_sig": false,
"md5_digest": "e5d67430318ef355b2c4bbd5983cee56",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12004,
"upload_time": "2016-03-07T15:59:27",
"url": "https://files.pythonhosted.org/packages/0b/da/c72c7c76ea846739f9102b5ef2210ba97c29f592d8ed2495b3ca2087cf81/wordinserter-0.7.1.tar.gz"
}
],
"0.7.2": [
{
"comment_text": "",
"digests": {
"md5": "7fa95fd29b0c6da8350aa277cd934584",
"sha256": "c9248b74ce170aaf403595084da9bf696cb9cc144757fd5b44f03f15c239e95d"
},
"downloads": -1,
"filename": "wordinserter-0.7.2.tar.gz",
"has_sig": false,
"md5_digest": "7fa95fd29b0c6da8350aa277cd934584",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12013,
"upload_time": "2016-03-09T15:53:59",
"url": "https://files.pythonhosted.org/packages/b5/3c/fe657c86ab97beb9d76e11fe5c9030a106e62f183415b2fd7e01f62ad9ab/wordinserter-0.7.2.tar.gz"
}
],
"0.7.3": [
{
"comment_text": "",
"digests": {
"md5": "9d52de183198671da65a9362aac0c9f3",
"sha256": "8b048e641e19c79e9834d18c9e31c1075a78e82ac297ef8ece3f4c4f330c34e0"
},
"downloads": -1,
"filename": "wordinserter-0.7.3.tar.gz",
"has_sig": false,
"md5_digest": "9d52de183198671da65a9362aac0c9f3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12086,
"upload_time": "2016-03-09T17:11:37",
"url": "https://files.pythonhosted.org/packages/f4/59/31166c64838c95e89338774593889be1d8c0fa3ef6effd807fec7b41251d/wordinserter-0.7.3.tar.gz"
}
],
"0.7.4": [
{
"comment_text": "",
"digests": {
"md5": "1c63e456ff528932008b17cb5fee1be4",
"sha256": "f0a0e18be920be10672b3edb81c996c3e0739640c0c20dacd7078e42a252df75"
},
"downloads": -1,
"filename": "wordinserter-0.7.4.tar.gz",
"has_sig": false,
"md5_digest": "1c63e456ff528932008b17cb5fee1be4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12100,
"upload_time": "2016-03-10T16:52:15",
"url": "https://files.pythonhosted.org/packages/f5/6b/034dcffd17986eab2801244f2ffa93a0061218015b935fb71ee2bddbba91/wordinserter-0.7.4.tar.gz"
}
],
"0.7.5": [
{
"comment_text": "",
"digests": {
"md5": "37570aa53d291fbc3142db1326f47bd1",
"sha256": "c10ee3ffb5b2978c08fa7ead2de94766aea92452b2691fdb46cc57df08c3bc60"
},
"downloads": -1,
"filename": "wordinserter-0.7.5.tar.gz",
"has_sig": false,
"md5_digest": "37570aa53d291fbc3142db1326f47bd1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12122,
"upload_time": "2016-03-15T11:26:08",
"url": "https://files.pythonhosted.org/packages/cb/73/c131ab098aca0825ac3217a8f3dfebf0c3dfcbc81d38ff2f68c0554bf4b5/wordinserter-0.7.5.tar.gz"
}
],
"0.7.6": [
{
"comment_text": "",
"digests": {
"md5": "52d944c50e55d3fd9c8a7cb11cfba2a8",
"sha256": "25b294344a84e529b6daedf0bd309cbec8e29d08e347c9b1d1a03b118b91ea2d"
},
"downloads": -1,
"filename": "wordinserter-0.7.6.tar.gz",
"has_sig": false,
"md5_digest": "52d944c50e55d3fd9c8a7cb11cfba2a8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12121,
"upload_time": "2016-03-21T13:03:19",
"url": "https://files.pythonhosted.org/packages/ff/6f/6389695dc3e3666795af462855c81f2906a24863476c74ad482c6fed3e08/wordinserter-0.7.6.tar.gz"
}
],
"0.7.7": [
{
"comment_text": "",
"digests": {
"md5": "d7d3177a643e44a1880de28638849e08",
"sha256": "f58b6901d0e44805b9ea9461acd4d4f72afe212ae62c41189bf420931c39d793"
},
"downloads": -1,
"filename": "wordinserter-0.7.7.tar.gz",
"has_sig": false,
"md5_digest": "d7d3177a643e44a1880de28638849e08",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12148,
"upload_time": "2016-03-21T15:18:46",
"url": "https://files.pythonhosted.org/packages/cb/11/b00b9fa35a4dc7c529e2780dd2cff250b6026ac8cb411db6b8acda7feea2/wordinserter-0.7.7.tar.gz"
}
],
"0.7.7.1": [
{
"comment_text": "",
"digests": {
"md5": "aa1d04487bc11b5de8f0b5a4923c3963",
"sha256": "09eaec53903ec67d71301b0a298966aea57e102b7bd16e7985f54d55da5ba9e5"
},
"downloads": -1,
"filename": "wordinserter-0.7.7.1.tar.gz",
"has_sig": false,
"md5_digest": "aa1d04487bc11b5de8f0b5a4923c3963",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12149,
"upload_time": "2016-03-21T15:22:07",
"url": "https://files.pythonhosted.org/packages/3e/cb/d9b5423027434ecb5cf537da6a588a5ecc91ae5701a0e38b2e689c8d37f5/wordinserter-0.7.7.1.tar.gz"
}
],
"0.7.8": [
{
"comment_text": "",
"digests": {
"md5": "e008998aa02290024b6e3f927d629283",
"sha256": "f013d39110e9b511ec2f506c0712996a7e4b4849fadd6ee21e00868a3523d730"
},
"downloads": -1,
"filename": "wordinserter-0.7.8.tar.gz",
"has_sig": false,
"md5_digest": "e008998aa02290024b6e3f927d629283",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12146,
"upload_time": "2016-03-21T15:23:11",
"url": "https://files.pythonhosted.org/packages/de/f9/d9732c8a6f3857cbb5e4c52082f5dea38af1b5fd96e242a08053a71fa843/wordinserter-0.7.8.tar.gz"
}
],
"0.7.9": [
{
"comment_text": "",
"digests": {
"md5": "c92372cb3aa9f306e929e0445d9fa468",
"sha256": "ccd6a4a463b939272c6f12b005e66ee9da744e4610062256a700f9e32402ccf2"
},
"downloads": -1,
"filename": "wordinserter-0.7.9.tar.gz",
"has_sig": false,
"md5_digest": "c92372cb3aa9f306e929e0445d9fa468",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12182,
"upload_time": "2016-03-22T16:38:45",
"url": "https://files.pythonhosted.org/packages/d9/3e/0688bcb73e8f3f8ecb9722dcead3173000747a8fd59a287f82f82b028355/wordinserter-0.7.9.tar.gz"
}
],
"0.8": [
{
"comment_text": "",
"digests": {
"md5": "179c0767a5b98e8824542a6aee5c24aa",
"sha256": "a81da98d10e373aa2d76f0f37b00585b8e46ab70657f296317cf26c0147eeb14"
},
"downloads": -1,
"filename": "wordinserter-0.8.tar.gz",
"has_sig": false,
"md5_digest": "179c0767a5b98e8824542a6aee5c24aa",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12172,
"upload_time": "2016-03-24T16:43:18",
"url": "https://files.pythonhosted.org/packages/8a/f9/4c6c9c9787d99a9e1a2b3807d854807a00d8c9616c1a20a52f5f7a292ffd/wordinserter-0.8.tar.gz"
}
],
"0.8.1": [
{
"comment_text": "",
"digests": {
"md5": "74ed52feb874a0290f8e01bc17661bf5",
"sha256": "cf9aa214b774fa467de5d52d192b0867d2642b1c6efec9d143dbd92c53283326"
},
"downloads": -1,
"filename": "wordinserter-0.8.1.tar.gz",
"has_sig": false,
"md5_digest": "74ed52feb874a0290f8e01bc17661bf5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12778,
"upload_time": "2016-04-11T12:12:43",
"url": "https://files.pythonhosted.org/packages/66/9c/ac3325d8377b2d8ec59c82e4ae6104f6be35cc80f9f2b55b62b46e0eda5d/wordinserter-0.8.1.tar.gz"
}
],
"0.8.2": [
{
"comment_text": "",
"digests": {
"md5": "4694da20a945e7a694490b913722e2a9",
"sha256": "f6389256fb1cf840ef7f281234c7487888a13ca8bb8fc00d08fd33aa044d219b"
},
"downloads": -1,
"filename": "wordinserter-0.8.2.tar.gz",
"has_sig": false,
"md5_digest": "4694da20a945e7a694490b913722e2a9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12779,
"upload_time": "2016-04-14T15:51:21",
"url": "https://files.pythonhosted.org/packages/d6/31/1d0228df44849abec4fe985f5bb78dec316bc380554f2ca6a26b8fb89b91/wordinserter-0.8.2.tar.gz"
}
],
"0.8.3": [
{
"comment_text": "",
"digests": {
"md5": "34212e0a0928fa4dc06f9c779528b245",
"sha256": "aa212f8ffaf6a0b73dae779bd0646e1b10e5c32b6b8858d0739fd0e65c99b5f0"
},
"downloads": -1,
"filename": "wordinserter-0.8.3.tar.gz",
"has_sig": false,
"md5_digest": "34212e0a0928fa4dc06f9c779528b245",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12806,
"upload_time": "2016-04-14T16:15:59",
"url": "https://files.pythonhosted.org/packages/e2/94/ad01bb1e1c651ea7a740cfa795fc346dd781829fbd09252157e6c8569de0/wordinserter-0.8.3.tar.gz"
}
],
"0.8.4": [
{
"comment_text": "",
"digests": {
"md5": "02e2c9bb008d90e53329f90e2ec9e526",
"sha256": "a569e0d499406c299b200fd81fb3b4a68dfc65f5d761f6fe31c567ac0e1891c3"
},
"downloads": -1,
"filename": "wordinserter-0.8.4.tar.gz",
"has_sig": false,
"md5_digest": "02e2c9bb008d90e53329f90e2ec9e526",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12873,
"upload_time": "2016-04-15T16:04:38",
"url": "https://files.pythonhosted.org/packages/9c/b9/acac3b95a68bbacb36eb5ba25d827873f0ef7bd4b4557cdd06c3d92e8e63/wordinserter-0.8.4.tar.gz"
}
],
"0.8.5": [
{
"comment_text": "",
"digests": {
"md5": "5144a658bfe88f480361b56501fa3c4b",
"sha256": "33070076ae76f336f7aaf48ce7a35c6efed8f765a9cda3e6eda766855a1ec62a"
},
"downloads": -1,
"filename": "wordinserter-0.8.5.tar.gz",
"has_sig": false,
"md5_digest": "5144a658bfe88f480361b56501fa3c4b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12817,
"upload_time": "2016-04-18T09:11:35",
"url": "https://files.pythonhosted.org/packages/c4/2e/8aeacc3ba2ff1aabce769de129693909753a684338a4d9ee349ab474e052/wordinserter-0.8.5.tar.gz"
}
],
"0.8.6": [
{
"comment_text": "",
"digests": {
"md5": "fbed56929e19ef0ae4d06b6f6041b3fd",
"sha256": "73127f9b632d503b9ae8bcc9060cc855cf3415624efb5fca1147eff361c6df47"
},
"downloads": -1,
"filename": "wordinserter-0.8.6.tar.gz",
"has_sig": false,
"md5_digest": "fbed56929e19ef0ae4d06b6f6041b3fd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13175,
"upload_time": "2016-04-20T15:04:55",
"url": "https://files.pythonhosted.org/packages/79/8a/03303a5d88f9b266c908f937542f9876245f19f615deea1cd588ae5f09ab/wordinserter-0.8.6.tar.gz"
}
],
"0.8.7": [
{
"comment_text": "",
"digests": {
"md5": "3ca4d706fe9a37ae0f4d9172a876eea1",
"sha256": "ceacc53280a6c677906f51556c177229314b6c44b7ac7982fcf5bc5e3bc0abb4"
},
"downloads": -1,
"filename": "wordinserter-0.8.7.tar.gz",
"has_sig": false,
"md5_digest": "3ca4d706fe9a37ae0f4d9172a876eea1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13454,
"upload_time": "2016-04-21T09:57:25",
"url": "https://files.pythonhosted.org/packages/38/ad/3816246408ace5b5181b068c27685f78f4f65038ca0440508d772566963f/wordinserter-0.8.7.tar.gz"
}
],
"0.8.8": [
{
"comment_text": "",
"digests": {
"md5": "840e4e1ebc8fb29173545b8367a19aee",
"sha256": "341778e53aa0936ad30137ec09b8073e8f921174559594826a55f718673c897a"
},
"downloads": -1,
"filename": "wordinserter-0.8.8.tar.gz",
"has_sig": false,
"md5_digest": "840e4e1ebc8fb29173545b8367a19aee",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 35756,
"upload_time": "2016-04-28T12:46:26",
"url": "https://files.pythonhosted.org/packages/91/57/681810b971161b9b97aa0a2a97b413e3799a0e0fd1822f34b1f7e76ddecb/wordinserter-0.8.8.tar.gz"
}
],
"0.9": [
{
"comment_text": "",
"digests": {
"md5": "87164432fac496e567c9beb5b467c4f2",
"sha256": "50ea51e76997633896432cac6886e5aa4e5fac2d2534f826d899d7818a39cbf0"
},
"downloads": -1,
"filename": "wordinserter-0.9.tar.gz",
"has_sig": false,
"md5_digest": "87164432fac496e567c9beb5b467c4f2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 35983,
"upload_time": "2016-05-06T09:32:52",
"url": "https://files.pythonhosted.org/packages/a3/54/2da322b4a43297b8730049d8a9b18148d11f96251576af792e77a1b91265/wordinserter-0.9.tar.gz"
}
],
"0.9.1": [
{
"comment_text": "",
"digests": {
"md5": "56ed74dadef2cfb5060f271dea0f10a9",
"sha256": "aa7933e812f3b0156b82885d62ed0725c36bf2668916f1c81fb04e4582b793a9"
},
"downloads": -1,
"filename": "wordinserter-0.9.1.tar.gz",
"has_sig": false,
"md5_digest": "56ed74dadef2cfb5060f271dea0f10a9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 35901,
"upload_time": "2016-05-09T11:52:57",
"url": "https://files.pythonhosted.org/packages/eb/c8/c7237146b3e56bd878d7d7fd32062a20dce8c96457930225d86ae0609851/wordinserter-0.9.1.tar.gz"
}
],
"0.9.2": [],
"0.9.2.1": [
{
"comment_text": "",
"digests": {
"md5": "b95cd03ffb2c247efc2ce1755e700448",
"sha256": "6bd62a304cc31be9202874feb645d40bc1dfedc8a085f26de8f0b48311c461a4"
},
"downloads": -1,
"filename": "wordinserter-0.9.2.1.tar.gz",
"has_sig": false,
"md5_digest": "b95cd03ffb2c247efc2ce1755e700448",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 36012,
"upload_time": "2016-05-10T09:24:11",
"url": "https://files.pythonhosted.org/packages/a1/63/c69b6b7fba963233474a3d7888002f76f31d133a124011764ee1ac81369a/wordinserter-0.9.2.1.tar.gz"
}
],
"0.9.2.2": [
{
"comment_text": "",
"digests": {
"md5": "e198a2c0c27be10e34fd1fad811bc94f",
"sha256": "f96948bb9130368524f3e03da766706f4e20eabaaab4318b3eca94fcd09960a7"
},
"downloads": -1,
"filename": "wordinserter-0.9.2.2.tar.gz",
"has_sig": false,
"md5_digest": "e198a2c0c27be10e34fd1fad811bc94f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 36023,
"upload_time": "2016-05-12T12:26:58",
"url": "https://files.pythonhosted.org/packages/c2/10/2f68d9852b469fbb94472ad03514c9aa02fcc19d3b73c6eed6f0446aa22b/wordinserter-0.9.2.2.tar.gz"
}
],
"0.9.2.4": [
{
"comment_text": "",
"digests": {
"md5": "b568831f3d67c6d9e126e6aef1e5ede9",
"sha256": "59f7fb55abcdceed6b014e14fd9d4d29dff9c7d178c16d0eb96b47de7cd109b9"
},
"downloads": -1,
"filename": "wordinserter-0.9.2.4.tar.gz",
"has_sig": false,
"md5_digest": "b568831f3d67c6d9e126e6aef1e5ede9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 36070,
"upload_time": "2016-05-16T13:17:44",
"url": "https://files.pythonhosted.org/packages/6a/c0/3cb333ba5bc066a6a6b77eb3fb8397b875ad03903a297b4254733687e02d/wordinserter-0.9.2.4.tar.gz"
}
],
"0.9.2.5": [
{
"comment_text": "",
"digests": {
"md5": "5c10b4b81069795d74a2a9f886bb13d3",
"sha256": "2d4bdc3e506635542e074803efbdcbb81cfe6f0d755adedddbaeb54eb27900bd"
},
"downloads": -1,
"filename": "wordinserter-0.9.2.5.tar.gz",
"has_sig": false,
"md5_digest": "5c10b4b81069795d74a2a9f886bb13d3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 36099,
"upload_time": "2016-05-17T13:59:32",
"url": "https://files.pythonhosted.org/packages/05/ca/33f1f9342ae074d7f8e44740cfc16380ec59cce94fb4b9ca224189a5ef1d/wordinserter-0.9.2.5.tar.gz"
}
],
"0.9.2.6": [
{
"comment_text": "",
"digests": {
"md5": "02ff41adc142160b0e1b69e81f5caf86",
"sha256": "363ba6d3a2d9b6cc715287cdc7c8f68cea00f082279ed7ef2de47b6c5078f5fb"
},
"downloads": -1,
"filename": "wordinserter-0.9.2.6.tar.gz",
"has_sig": false,
"md5_digest": "02ff41adc142160b0e1b69e81f5caf86",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 35528,
"upload_time": "2016-06-22T22:13:46",
"url": "https://files.pythonhosted.org/packages/41/f8/26a5d3fbca6f698dae3efa17bd06710ec7a68deb431d6265e6ce28232d02/wordinserter-0.9.2.6.tar.gz"
}
],
"0.9.2.7": [
{
"comment_text": "",
"digests": {
"md5": "12e821056d62fba219044e38ca2d2d48",
"sha256": "9de23af21d304eecd36f6b41656cdd525c64b92f4db1583719c2b2331182fb38"
},
"downloads": -1,
"filename": "wordinserter-0.9.2.7.zip",
"has_sig": false,
"md5_digest": "12e821056d62fba219044e38ca2d2d48",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 35226,
"upload_time": "2016-07-06T13:14:35",
"url": "https://files.pythonhosted.org/packages/e2/a9/8db1c3cadddc4a172950fa49071730dde6cade9d0c5996f0aee18cc002bc/wordinserter-0.9.2.7.zip"
}
],
"0.9.3": [
{
"comment_text": "",
"digests": {
"md5": "8babf12891b75d77894e960d6bde1e64",
"sha256": "957e276bbb6ee7ec27556458b921a1735de53297ea27c9746967d5d22ab7d58f"
},
"downloads": -1,
"filename": "wordinserter-0.9.3.zip",
"has_sig": false,
"md5_digest": "8babf12891b75d77894e960d6bde1e64",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 35645,
"upload_time": "2016-07-22T12:47:52",
"url": "https://files.pythonhosted.org/packages/9f/8d/dc4828d343713ee6f6165e9df4700c5395b8c9677eacc6f496ca077af96b/wordinserter-0.9.3.zip"
}
],
"0.9.4": [
{
"comment_text": "",
"digests": {
"md5": "de57fdaf9333d10a0c48668a92e07f5c",
"sha256": "e55dfa240ba88eb4ca1696c571c9d3776c874b1ca981b72b556e6f84e8202e3d"
},
"downloads": -1,
"filename": "wordinserter-0.9.4.tar.gz",
"has_sig": false,
"md5_digest": "de57fdaf9333d10a0c48668a92e07f5c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30618,
"upload_time": "2016-08-26T13:57:56",
"url": "https://files.pythonhosted.org/packages/4c/d5/0a3c48e33489eb5b8acd6efc1121bfd8bcfa01bb347493d108dd1cb121b5/wordinserter-0.9.4.tar.gz"
}
],
"0.9.4.1": [
{
"comment_text": "",
"digests": {
"md5": "b7ba88706a611936257a097a84705b7a",
"sha256": "7cac79e8a80d3b41b46a47ad060dcaaf3ad67d45055cb333a6bb0908af1c2d68"
},
"downloads": -1,
"filename": "wordinserter-0.9.4.1.tar.gz",
"has_sig": false,
"md5_digest": "b7ba88706a611936257a097a84705b7a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30631,
"upload_time": "2016-09-15T16:01:54",
"url": "https://files.pythonhosted.org/packages/b6/05/508f244764c4bd87199aae30b48771c42917816c9f2c4da101990ac841a9/wordinserter-0.9.4.1.tar.gz"
}
],
"0.9.4.2": [
{
"comment_text": "",
"digests": {
"md5": "47a7a300999986d3d5abc6b2cb0c889a",
"sha256": "bc787e7d2eb5595829e1bee406dd93576b3f7819ddcecf6c15bf5f13aca1f5b8"
},
"downloads": -1,
"filename": "wordinserter-0.9.4.2.tar.gz",
"has_sig": false,
"md5_digest": "47a7a300999986d3d5abc6b2cb0c889a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30661,
"upload_time": "2016-09-16T08:54:26",
"url": "https://files.pythonhosted.org/packages/3f/80/af64070421d89def2cde3b4aef67779ace14eca83e43734e9286d60cfb4a/wordinserter-0.9.4.2.tar.gz"
}
],
"0.9.4.3": [
{
"comment_text": "",
"digests": {
"md5": "9ae76094d77661855beb9724ba7f8691",
"sha256": "29546c368bc6b4797906642be521f7af97104d5ecbd0cd2c34c846affc85441e"
},
"downloads": -1,
"filename": "wordinserter-0.9.4.3.tar.gz",
"has_sig": false,
"md5_digest": "9ae76094d77661855beb9724ba7f8691",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30749,
"upload_time": "2016-10-13T13:03:50",
"url": "https://files.pythonhosted.org/packages/96/82/398849e53f395bfc614f3cd55a88f33603685b1314980900a2db9475cfbd/wordinserter-0.9.4.3.tar.gz"
}
],
"0.9.4.4": [
{
"comment_text": "",
"digests": {
"md5": "ac1a3478bab31d62daa65d227423b5ef",
"sha256": "a26c4ef1cb162c7e566ad1ba7ec77b5307b0a250ff71f2de07fe3e207d236767"
},
"downloads": -1,
"filename": "wordinserter-0.9.4.4.tar.gz",
"has_sig": false,
"md5_digest": "ac1a3478bab31d62daa65d227423b5ef",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30752,
"upload_time": "2016-10-17T12:22:56",
"url": "https://files.pythonhosted.org/packages/1b/f4/2823a6d656ad6bae062374760ddbc91111422c860b1f618739d0cdfc8bdf/wordinserter-0.9.4.4.tar.gz"
}
],
"0.9.4.5": [
{
"comment_text": "",
"digests": {
"md5": "99f642b6d8f726cc920f35e0e9954854",
"sha256": "6a7c506cc6604357c3a792061898ea21cf2b344ea9cd05b8d140e32059816864"
},
"downloads": -1,
"filename": "wordinserter-0.9.4.5-py3-none-any.whl",
"has_sig": false,
"md5_digest": "99f642b6d8f726cc920f35e0e9954854",
"packagetype": "bdist_wheel",
"python_version": "3.5",
"requires_python": null,
"size": 35361,
"upload_time": "2017-04-19T11:05:06",
"url": "https://files.pythonhosted.org/packages/71/0d/b5fa356b22fd886c214f1a586d32f6326605977544c7b42979f955984e97/wordinserter-0.9.4.5-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "8d3c50e6621756abfb5fdbcb2e5afe97",
"sha256": "7f53860a2d949483af723dcc2945743d9e1e7a2b5a0bb1e5b1f1d49eb127e87d"
},
"downloads": -1,
"filename": "wordinserter-0.9.4.5.tar.gz",
"has_sig": false,
"md5_digest": "8d3c50e6621756abfb5fdbcb2e5afe97",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30823,
"upload_time": "2017-04-19T11:05:07",
"url": "https://files.pythonhosted.org/packages/ba/cc/14b5e43c1220cb2cbd330cb172d58909218e5a0cdb323a87907408a5a71b/wordinserter-0.9.4.5.tar.gz"
}
],
"0.9.4.6": [
{
"comment_text": "",
"digests": {
"md5": "89a128a50765c0e4fe8c0283f8b21ed4",
"sha256": "9bb418fddf1f5012236073bea4a7e14a4738e7bb14a956f53c28616c95879dc9"
},
"downloads": -1,
"filename": "wordinserter-0.9.4.6-py3-none-any.whl",
"has_sig": false,
"md5_digest": "89a128a50765c0e4fe8c0283f8b21ed4",
"packagetype": "bdist_wheel",
"python_version": "3.5",
"requires_python": null,
"size": 35411,
"upload_time": "2017-04-19T11:15:20",
"url": "https://files.pythonhosted.org/packages/51/d3/906fe12480971586bc32d673dc19293e992eeee0e9daf5c1333b8f078d79/wordinserter-0.9.4.6-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "ac30a640367c999520bd7e4962a8f824",
"sha256": "c1474a1c413e90dd5f3dd986200d34d883a9ae7c1a1c6dced536165e7402e52f"
},
"downloads": -1,
"filename": "wordinserter-0.9.4.6.tar.gz",
"has_sig": false,
"md5_digest": "ac30a640367c999520bd7e4962a8f824",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30862,
"upload_time": "2017-04-19T11:15:22",
"url": "https://files.pythonhosted.org/packages/f2/06/0bd53669a71f11cd88e9532e0613dc6149a2c18a37a53b10b70129d65d75/wordinserter-0.9.4.6.tar.gz"
}
],
"0.9.5": [
{
"comment_text": "",
"digests": {
"md5": "9285ea4a79e018a28d4012593620b6da",
"sha256": "8de871248c6fc34b8adff6013a08c6772416d75d0ba2eaf8129625657a935f64"
},
"downloads": -1,
"filename": "wordinserter-0.9.5-py3-none-any.whl",
"has_sig": false,
"md5_digest": "9285ea4a79e018a28d4012593620b6da",
"packagetype": "bdist_wheel",
"python_version": "3.5",
"requires_python": null,
"size": 35443,
"upload_time": "2017-04-20T13:03:29",
"url": "https://files.pythonhosted.org/packages/83/b3/cd595b0718657ab43a6abe3cda2869d8a073d60efa667a38a4f05285bf7a/wordinserter-0.9.5-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "d78836b3ed761779c092cd6c13c61139",
"sha256": "81fd6aea596f56ed8c321f8743cca8cd07df8f265cac2d524e34549e55d5283f"
},
"downloads": -1,
"filename": "wordinserter-0.9.5.tar.gz",
"has_sig": false,
"md5_digest": "d78836b3ed761779c092cd6c13c61139",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30934,
"upload_time": "2017-04-20T13:03:31",
"url": "https://files.pythonhosted.org/packages/25/18/abd5eadb647cd505d3d9f0496fe892526473fab8125c708906a60e360e40/wordinserter-0.9.5.tar.gz"
}
],
"0.9.5.1": [
{
"comment_text": "",
"digests": {
"md5": "835898ec81edb3a384a72a1ad3520e9e",
"sha256": "ba96725800fb83537fbd6e29e5bd6851c27cd0c0105be6e0c939325caa37852e"
},
"downloads": -1,
"filename": "wordinserter-0.9.5.1-py2-none-any.whl",
"has_sig": false,
"md5_digest": "835898ec81edb3a384a72a1ad3520e9e",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 35501,
"upload_time": "2017-04-21T13:01:08",
"url": "https://files.pythonhosted.org/packages/8a/ab/ae90154c20fcc7093bfdaaee3a0928855e468b3fe694916c0029056bb0c9/wordinserter-0.9.5.1-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "14ff6ee12f152d8d0f03a0740f9a7966",
"sha256": "adbff51388363c23b6bc15f798cb40a742593d9690830b87e8e3e6df42ae9c5f"
},
"downloads": -1,
"filename": "wordinserter-0.9.5.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "14ff6ee12f152d8d0f03a0740f9a7966",
"packagetype": "bdist_wheel",
"python_version": "3.5",
"requires_python": null,
"size": 35502,
"upload_time": "2017-04-21T13:01:15",
"url": "https://files.pythonhosted.org/packages/6b/10/e0d236ec2cb6884181fb12c75aa37ec5c6c73ec0a3c1300ad2fe8669ea54/wordinserter-0.9.5.1-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "f1a9e025e263cdec703de9957cfd9fcb",
"sha256": "119c3ba5cd37a4348f9ebfa31e78aa44aeed1650c908e3106880f111cd3a909b"
},
"downloads": -1,
"filename": "wordinserter-0.9.5.1.tar.gz",
"has_sig": false,
"md5_digest": "f1a9e025e263cdec703de9957cfd9fcb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30963,
"upload_time": "2017-04-21T13:01:18",
"url": "https://files.pythonhosted.org/packages/be/ae/69d14525257b8e74f2501de594c2588dc0547eb43bdf05ae82101f8ff36a/wordinserter-0.9.5.1.tar.gz"
}
],
"0.9.6": [
{
"comment_text": "",
"digests": {
"md5": "d9abf6544c721879df059d58da9846b7",
"sha256": "57ee5cc370fb0b7b57cd794b8f2527cec8924d0042ef4f0335e26a65f8c75d0b"
},
"downloads": -1,
"filename": "wordinserter-0.9.6-py2-none-any.whl",
"has_sig": false,
"md5_digest": "d9abf6544c721879df059d58da9846b7",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 35557,
"upload_time": "2017-05-03T15:35:04",
"url": "https://files.pythonhosted.org/packages/4a/d2/88ef7e47b9799ef669a7f7350aa7ae051e06b263e771c0e16dae0accf929/wordinserter-0.9.6-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "00b2757a0c9cfd1c5ee1307e3e533a76",
"sha256": "4983f8756fe485db1a486929df4ce5db923d8711e81fa2b5a9322a946d5eae8c"
},
"downloads": -1,
"filename": "wordinserter-0.9.6.tar.gz",
"has_sig": false,
"md5_digest": "00b2757a0c9cfd1c5ee1307e3e533a76",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31042,
"upload_time": "2017-05-03T15:35:06",
"url": "https://files.pythonhosted.org/packages/ba/97/32f746a1cdca963ecdc540e7f6fc7ee0613f368ee57b01513dca8c2d6ae7/wordinserter-0.9.6.tar.gz"
}
],
"0.9.6.1": [
{
"comment_text": "",
"digests": {
"md5": "ad7a705fdeb601ff8ae2c9daeb4b3e51",
"sha256": "3becf01f60f3dffad81b78292e3f591643c567122fdf3e6f2ec33b464f4622c2"
},
"downloads": -1,
"filename": "wordinserter-0.9.6.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "ad7a705fdeb601ff8ae2c9daeb4b3e51",
"packagetype": "bdist_wheel",
"python_version": "3.5",
"requires_python": null,
"size": 35635,
"upload_time": "2017-05-11T10:18:46",
"url": "https://files.pythonhosted.org/packages/bd/f1/35518fc911da3198c6a579426b72be5a437059bcc6e9442dda1438452b79/wordinserter-0.9.6.1-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "604d933315ed4446dd0555b24e4cd6d8",
"sha256": "6dfac91d198637f38327979462f14d048260cc9733b5b19f9f5107adcab30d80"
},
"downloads": -1,
"filename": "wordinserter-0.9.6.1.tar.gz",
"has_sig": false,
"md5_digest": "604d933315ed4446dd0555b24e4cd6d8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31082,
"upload_time": "2017-05-11T10:18:51",
"url": "https://files.pythonhosted.org/packages/58/11/3a4d17defa6fa4e9faefae227d148028bfabb942e304d739398c8639f3fe/wordinserter-0.9.6.1.tar.gz"
}
],
"1.0.2": [
{
"comment_text": "",
"digests": {
"md5": "895e5ef326b64bf93c81c2ae5407c45d",
"sha256": "cc3bbeca594aa0e00b03f1c3d5c923dcfbe5935b2dd19b8525ee24150892cda4"
},
"downloads": -1,
"filename": "wordinserter-1.0.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "895e5ef326b64bf93c81c2ae5407c45d",
"packagetype": "bdist_wheel",
"python_version": "3.5",
"requires_python": null,
"size": 43929,
"upload_time": "2017-06-21T15:16:00",
"url": "https://files.pythonhosted.org/packages/b7/88/5e65d807d43e81cbac3d713f0a755f71c4469a3a253df026990930ba3d73/wordinserter-1.0.2-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "9c5a713bad4b375dffd4c2c71b40ec87",
"sha256": "5d61561501308c32376bba38ff3edff5e2c3ff7120ee3572d537d1962bc1065f"
},
"downloads": -1,
"filename": "wordinserter-1.0.2.tar.gz",
"has_sig": false,
"md5_digest": "9c5a713bad4b375dffd4c2c71b40ec87",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 37510,
"upload_time": "2017-06-21T15:15:58",
"url": "https://files.pythonhosted.org/packages/45/2c/a303a4ba2f2046362cdbec93e57d2552b5f77537f8f0af289ae9d0c2ca29/wordinserter-1.0.2.tar.gz"
}
],
"1.0.3": [
{
"comment_text": "",
"digests": {
"md5": "d7ab68eda64c53ee0b1b5e08b9c3595e",
"sha256": "800b0ed399302c8dc8a07f38377d412dcb924f0632595137f3c41897b87e9a3d"
},
"downloads": -1,
"filename": "wordinserter-1.0.3-py3-none-any.whl",
"has_sig": false,
"md5_digest": "d7ab68eda64c53ee0b1b5e08b9c3595e",
"packagetype": "bdist_wheel",
"python_version": "3.5",
"requires_python": null,
"size": 44182,
"upload_time": "2017-06-23T11:48:20",
"url": "https://files.pythonhosted.org/packages/32/15/7ea51dcefef202b2781923d8d963a480c7008056de0df486776283a377a7/wordinserter-1.0.3-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "3ad3a1fed1dbdf244823db4d8ed0c4cb",
"sha256": "873f82bde428616e90fbe83838d04789b2a2394405ed6e15ce4a56490c151a0c"
},
"downloads": -1,
"filename": "wordinserter-1.0.3.tar.gz",
"has_sig": false,
"md5_digest": "3ad3a1fed1dbdf244823db4d8ed0c4cb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 37770,
"upload_time": "2017-06-23T11:48:18",
"url": "https://files.pythonhosted.org/packages/cb/e8/fb412a06dac910a0eaf01bbbcd4461fdf64146c63c39acf9e400f932b451/wordinserter-1.0.3.tar.gz"
}
],
"1.0.4": [
{
"comment_text": "",
"digests": {
"md5": "1bfb2795839239826a88c701c85263b8",
"sha256": "a83c97b193f047d16e343ce26a84af55422e7eaac1090df61c6d8d49c4729b8a"
},
"downloads": -1,
"filename": "wordinserter-1.0.4-py3-none-any.whl",
"has_sig": false,
"md5_digest": "1bfb2795839239826a88c701c85263b8",
"packagetype": "bdist_wheel",
"python_version": "3.5",
"requires_python": null,
"size": 44252,
"upload_time": "2017-06-23T12:35:20",
"url": "https://files.pythonhosted.org/packages/23/60/080ad43813baeb316801783d587bcba65cdbda198c076541360ca53f5873/wordinserter-1.0.4-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "84d5c63a496119555b5a5c0bd67557cc",
"sha256": "fd54bb4f8a22a437928837ddfe3603fc0d25f1c4cf5a59f1e7c86652806f7054"
},
"downloads": -1,
"filename": "wordinserter-1.0.4.tar.gz",
"has_sig": false,
"md5_digest": "84d5c63a496119555b5a5c0bd67557cc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 37829,
"upload_time": "2017-06-23T12:35:18",
"url": "https://files.pythonhosted.org/packages/ce/9b/3d05cf75d0348fdb236544b272a6a27d925e0db2178fae8249982b80a842/wordinserter-1.0.4.tar.gz"
}
],
"1.0.6": [
{
"comment_text": "",
"digests": {
"md5": "99a7cfcefc4422095316ac47332b624b",
"sha256": "29457f027f1c74166ece56a73b76a785fd7bd03da19655c309d07671a7401cf7"
},
"downloads": -1,
"filename": "wordinserter-1.0.6-py3-none-any.whl",
"has_sig": false,
"md5_digest": "99a7cfcefc4422095316ac47332b624b",
"packagetype": "bdist_wheel",
"python_version": "3.5",
"requires_python": null,
"size": 44380,
"upload_time": "2017-06-28T12:46:31",
"url": "https://files.pythonhosted.org/packages/63/a1/e88c597a3b6215615fd589db2cfbcad161877cc67906dc0a9e5ce398f1e1/wordinserter-1.0.6-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "e4f084e492039a8c42f664916fadd764",
"sha256": "02c3eded457323cecd8bb84a0d397398a5172719a4ee9b8c25ee9919ccc4eb46"
},
"downloads": -1,
"filename": "wordinserter-1.0.6.tar.gz",
"has_sig": false,
"md5_digest": "e4f084e492039a8c42f664916fadd764",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 37956,
"upload_time": "2017-06-28T12:46:29",
"url": "https://files.pythonhosted.org/packages/31/36/97c7df72d483d0ecf017586be94d9e314d2903031222a37cf9a6f983f435/wordinserter-1.0.6.tar.gz"
}
],
"1.0.7": [
{
"comment_text": "",
"digests": {
"md5": "448f39b8d9ad0a1517bfca879b578e2a",
"sha256": "90a78cdaca1210a0afffebfbdcaaae63ef15ea8422d8e899df5c95698dc06996"
},
"downloads": -1,
"filename": "wordinserter-1.0.7-py3-none-any.whl",
"has_sig": false,
"md5_digest": "448f39b8d9ad0a1517bfca879b578e2a",
"packagetype": "bdist_wheel",
"python_version": "3.5",
"requires_python": null,
"size": 44340,
"upload_time": "2017-06-29T16:40:31",
"url": "https://files.pythonhosted.org/packages/e3/c3/3068055abd7d46e12bce02e9261394b9afb8a91090fe943ff056b71ce322/wordinserter-1.0.7-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "784440c1c5a87eed447b840e8b4ddfb7",
"sha256": "7d5c24b1e7a9ac261472d37c63158b56f55b629460c82a30a153b387ce54cbeb"
},
"downloads": -1,
"filename": "wordinserter-1.0.7.tar.gz",
"has_sig": false,
"md5_digest": "784440c1c5a87eed447b840e8b4ddfb7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 37921,
"upload_time": "2017-06-29T16:40:29",
"url": "https://files.pythonhosted.org/packages/fa/b0/76cb4403417d245fe46f448ea20c6f359514d2aa0ecc4856fe4f5280d1c4/wordinserter-1.0.7.tar.gz"
}
],
"1.0.8": [
{
"comment_text": "",
"digests": {
"md5": "687a2539d97ccdf118620a6a0f82e294",
"sha256": "dfcee84b685ffc474adb78e36b0866b27f73a8d6ecfa6346f72b187cbf03f3ef"
},
"downloads": -1,
"filename": "wordinserter-1.0.8-py3-none-any.whl",
"has_sig": false,
"md5_digest": "687a2539d97ccdf118620a6a0f82e294",
"packagetype": "bdist_wheel",
"python_version": "3.5",
"requires_python": null,
"size": 44367,
"upload_time": "2017-08-30T16:35:24",
"url": "https://files.pythonhosted.org/packages/74/a8/028a4fb55135d0d77b6bfb84c5f70b806ee97d3ed2c2b08afb006ded60f3/wordinserter-1.0.8-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "996a5a848b172dc0106a38531444f6fb",
"sha256": "340e7c27e0a0e5f176f594ce6c20a70d5a15de7abe51c28c84e1f293aba1826d"
},
"downloads": -1,
"filename": "wordinserter-1.0.8.tar.gz",
"has_sig": false,
"md5_digest": "996a5a848b172dc0106a38531444f6fb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 37943,
"upload_time": "2017-08-30T16:35:22",
"url": "https://files.pythonhosted.org/packages/bd/7c/6355f028be063f16a6f5663b481f9c003bc6f4433e030ae955f2f3f942a8/wordinserter-1.0.8.tar.gz"
}
],
"1.0.9": [
{
"comment_text": "",
"digests": {
"md5": "9def042a92cfde144809a86131ad757e",
"sha256": "1f9bc2dd8df56329a72cb9e9984acf095349ddba90672c62eb5503dd97eb782a"
},
"downloads": -1,
"filename": "wordinserter-1.0.9-py3-none-any.whl",
"has_sig": false,
"md5_digest": "9def042a92cfde144809a86131ad757e",
"packagetype": "bdist_wheel",
"python_version": "3.6",
"requires_python": null,
"size": 44428,
"upload_time": "2018-01-09T00:56:37",
"url": "https://files.pythonhosted.org/packages/a8/56/765066c92256034d571d2940d542f0f2d670f6435f444cdac9ed49e8996c/wordinserter-1.0.9-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "d7ef1453cc7e073c55b4032c8a1221c2",
"sha256": "bd5a8a8e0469b0e6120b80c3e7300a9c31374b8e8f419831bbf0d83f8ab75393"
},
"downloads": -1,
"filename": "wordinserter-1.0.9.tar.gz",
"has_sig": false,
"md5_digest": "d7ef1453cc7e073c55b4032c8a1221c2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 38980,
"upload_time": "2018-01-09T00:56:36",
"url": "https://files.pythonhosted.org/packages/e0/6f/c38f12c93a3726e09290661a81d2a4df5718b41cb52c2178a92f24e2e9fc/wordinserter-1.0.9.tar.gz"
}
],
"1.1.0": [
{
"comment_text": "",
"digests": {
"md5": "b07b80b41d54779a56b41c33a14a034d",
"sha256": "7af172ddbfa61c2c2d4961f66ebc48b7091656f0590a06066bbcceca57191c0e"
},
"downloads": -1,
"filename": "wordinserter-1.1.0-py2-none-any.whl",
"has_sig": false,
"md5_digest": "b07b80b41d54779a56b41c33a14a034d",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 40906,
"upload_time": "2018-05-25T15:34:53",
"url": "https://files.pythonhosted.org/packages/ee/25/03812dc5ef3eca8c065be4b7e4b52e6d395011595a4ec04b1d98270242bb/wordinserter-1.1.0-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "25f28fd13fbca7955aa2203d3a6839b7",
"sha256": "4cccb27e0e8d22d757c96ce45bf9c1661d2fd3e100bdbfb7f23e5b440892b39a"
},
"downloads": -1,
"filename": "wordinserter-1.1.0.tar.gz",
"has_sig": false,
"md5_digest": "25f28fd13fbca7955aa2203d3a6839b7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 39079,
"upload_time": "2018-05-25T15:34:50",
"url": "https://files.pythonhosted.org/packages/b8/66/1f66684903e89b79f9a9f637f34514cee98726bb509bc91d8fb7fab5bb43/wordinserter-1.1.0.tar.gz"
}
],
"1.1.1": [
{
"comment_text": "",
"digests": {
"md5": "4304dfcd61375de9ffd9e64fb35135b8",
"sha256": "07705d405e02a51c5f4ba0d5a4c00f3e6469b30aa99c4fd0f95490234436a942"
},
"downloads": -1,
"filename": "wordinserter-1.1.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "4304dfcd61375de9ffd9e64fb35135b8",
"packagetype": "bdist_wheel",
"python_version": "3.6",
"requires_python": null,
"size": 40937,
"upload_time": "2018-08-01T20:58:14",
"url": "https://files.pythonhosted.org/packages/1a/29/2d024af108f4f57938135731084faa9732793715ef4d208fbd58187f2a6f/wordinserter-1.1.1-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "35995322338ad4df94fc6db8864d2f23",
"sha256": "d1cd2e5d437835f147b1d81925c3b5eb75b345cef8621ab5a68a46510ed71f11"
},
"downloads": -1,
"filename": "wordinserter-1.1.1.tar.gz",
"has_sig": false,
"md5_digest": "35995322338ad4df94fc6db8864d2f23",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 39104,
"upload_time": "2018-08-01T20:58:11",
"url": "https://files.pythonhosted.org/packages/36/fa/8a7f0e675390d9ef3878e04fc53e4138f83767db4c2a48f5e48a0a75222c/wordinserter-1.1.1.tar.gz"
}
],
"1.1.2": [
{
"comment_text": "",
"digests": {
"md5": "15020ffab6fe48485b11c0bcc7489890",
"sha256": "46db210f62e37acf3d61d94f298125bff218f8701685f55f876328b960fed0be"
},
"downloads": -1,
"filename": "wordinserter-1.1.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "15020ffab6fe48485b11c0bcc7489890",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 41715,
"upload_time": "2018-11-01T22:23:57",
"url": "https://files.pythonhosted.org/packages/04/2f/bd3208bdad721f323ea01903f449697d1cf8985642c1bf373e67e23986b5/wordinserter-1.1.2-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "40dd955e75ec876bf3bb5fbff7e88013",
"sha256": "0cb4a7450d40973f1dcbb3c76ac93bdfcd84aa83cbbf7a120d6ee409cf88c8a0"
},
"downloads": -1,
"filename": "wordinserter-1.1.2.tar.gz",
"has_sig": false,
"md5_digest": "40dd955e75ec876bf3bb5fbff7e88013",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41874,
"upload_time": "2018-11-01T22:24:00",
"url": "https://files.pythonhosted.org/packages/ed/70/5d841f1c3548b2d0572f17c6d339b2cb23bc9f68b02e212bae92f80c2aca/wordinserter-1.1.2.tar.gz"
}
],
"1.1.3": [
{
"comment_text": "",
"digests": {
"md5": "99a39735d8840fd6cdfc8ad3019d625b",
"sha256": "80db754f8343620745205dfe3a0bb1acbfd0e7e1f0e84ed7c9d58627f3d4143a"
},
"downloads": -1,
"filename": "wordinserter-1.1.3-py3-none-any.whl",
"has_sig": false,
"md5_digest": "99a39735d8840fd6cdfc8ad3019d625b",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 42591,
"upload_time": "2019-03-27T15:42:03",
"url": "https://files.pythonhosted.org/packages/42/e8/cfede79814a1b8699943504d80a90131d62007a187e60fb035db0538c4a6/wordinserter-1.1.3-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "e4b68c72df503f6378328f90048801b6",
"sha256": "a51316c532df1b43a30d939bb18c4d8551cdefcbc03c574225273b3be06ee91e"
},
"downloads": -1,
"filename": "wordinserter-1.1.3.tar.gz",
"has_sig": false,
"md5_digest": "e4b68c72df503f6378328f90048801b6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41936,
"upload_time": "2019-03-27T15:42:07",
"url": "https://files.pythonhosted.org/packages/c6/1d/2dc1f86e411d1236e6fdde2b6c884c058cf06645083231381364bb42588c/wordinserter-1.1.3.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "99a39735d8840fd6cdfc8ad3019d625b",
"sha256": "80db754f8343620745205dfe3a0bb1acbfd0e7e1f0e84ed7c9d58627f3d4143a"
},
"downloads": -1,
"filename": "wordinserter-1.1.3-py3-none-any.whl",
"has_sig": false,
"md5_digest": "99a39735d8840fd6cdfc8ad3019d625b",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 42591,
"upload_time": "2019-03-27T15:42:03",
"url": "https://files.pythonhosted.org/packages/42/e8/cfede79814a1b8699943504d80a90131d62007a187e60fb035db0538c4a6/wordinserter-1.1.3-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "e4b68c72df503f6378328f90048801b6",
"sha256": "a51316c532df1b43a30d939bb18c4d8551cdefcbc03c574225273b3be06ee91e"
},
"downloads": -1,
"filename": "wordinserter-1.1.3.tar.gz",
"has_sig": false,
"md5_digest": "e4b68c72df503f6378328f90048801b6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41936,
"upload_time": "2019-03-27T15:42:07",
"url": "https://files.pythonhosted.org/packages/c6/1d/2dc1f86e411d1236e6fdde2b6c884c058cf06645083231381364bb42588c/wordinserter-1.1.3.tar.gz"
}
]
}