{ "info": { "author": "Michael Williamson", "author_email": "mike@zwobble.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "Mammoth .docx to HTML converter\n===============================\n\nMammoth is designed to convert .docx documents, such as those created by\nMicrosoft Word, and convert them to HTML. Mammoth aims to produce simple\nand clean HTML by using semantic information in the document, and\nignoring other details. For instance, Mammoth converts any paragraph\nwith the style ``Heading 1`` to ``h1`` elements, rather than attempting\nto exactly copy the styling (font, text size, colour, etc.) of the\nheading.\n\nThere's a large mismatch between the structure used by .docx and the\nstructure of HTML, meaning that the conversion is unlikely to be perfect\nfor more complicated documents. Mammoth works best if you only use\nstyles to semantically mark up your document.\n\nThe following features are currently supported:\n\n- Headings.\n\n- Lists.\n\n- Customisable mapping from your own docx styles to HTML. For instance,\n you could convert ``WarningHeading`` to ``h1.warning`` by providing\n an appropriate style mapping.\n\n- Tables. The formatting of the table itself, such as borders, is\n currently ignored, but the formatting of the text is treated the same\n as in the rest of the document.\n\n- Footnotes and endnotes.\n\n- Images.\n\n- Bold, italics, underlines, strikethrough, superscript and subscript.\n\n- Links.\n\n- Line breaks.\n\n- Text boxes. The contents of the text box are treated as a separate\n paragraph that appears after the paragraph containing the text box.\n\n- Comments.\n\nInstallation\n------------\n\n::\n\n pip install mammoth\n\nOther supported platforms\n-------------------------\n\n- `JavaScript `__, both the\n browser and node.js. Available `on\n npm `__.\n\n- `WordPress `__.\n\n- `Java/JVM `__. Available\n `on Maven\n Central `__.\n\n- `.NET `__. Available\n `on NuGet `__.\n\nUsage\n-----\n\nCLI\n~~~\n\nYou can convert docx files by passing the path to the docx file and the\noutput file. For instance:\n\n::\n\n mammoth document.docx output.html\n\nIf no output file is specified, output is written to stdout instead.\n\nThe output is an HTML fragment, rather than a full HTML document,\nencoded with UTF-8. Since the encoding is not explicitly set in the\nfragment, opening the output file in a web browser may cause Unicode\ncharacters to be rendered incorrectly if the browser doesn't default to\nUTF-8.\n\nImages\n^^^^^^\n\nBy default, images are included inline in the output HTML. If an output\ndirectory is specified by ``--output-dir``, the images are written to\nseparate files instead. For instance:\n\n::\n\n mammoth document.docx --output-dir=output-dir\n\nExisting files will be overwritten if present.\n\nStyles\n^^^^^^\n\nA custom style map can be read from a file using ``--style-map``. For\ninstance:\n\n::\n\n mammoth document.docx output.html --style-map=custom-style-map\n\nWhere ``custom-style-map`` looks something like:\n\n::\n\n p[style-name='Aside Heading'] => div.aside > h2:fresh\n p[style-name='Aside Text'] => div.aside > p:fresh\n\nMarkdown\n^^^^^^^^\n\nUsing ``--output-format=markdown`` will cause Markdown to be generated.\nFor instance:\n\n::\n\n mammoth document.docx --output-format=markdown\n\nMarkdown support is still in its early stages, so you may find some\nfeatures are unsupported.\n\nLibrary\n~~~~~~~\n\nBasic conversion\n^^^^^^^^^^^^^^^^\n\nTo convert an existing .docx file to HTML, pass a file-like object to\n``mammoth.convert_to_html``. The file should be opened in binary mode.\nFor instance:\n\n.. code:: python\n\n import mammoth\n\n with open(\"document.docx\", \"rb\") as docx_file:\n result = mammoth.convert_to_html(docx_file)\n html = result.value # The generated HTML\n messages = result.messages # Any messages, such as warnings during conversion\n\nYou can also extract the raw text of the document by using\n``mammoth.extract_raw_text``. This will ignore all formatting in the\ndocument. Each paragraph is followed by two newlines.\n\n.. code:: python\n\n with open(\"document.docx\", \"rb\") as docx_file:\n result = mammoth.extract_raw_text(docx_file)\n text = result.value # The raw text\n messages = result.messages # Any messages\n\nCustom style map\n^^^^^^^^^^^^^^^^\n\nBy default, Mammoth maps some common .docx styles to HTML elements. For\ninstance, a paragraph with the style name ``Heading 1`` is converted to\na ``h1`` element. You can pass in a custom map for styles by passing an\noptions object with a ``style_map`` property as a second argument to\n``convert_to_html``. A description of the syntax for style maps can be\nfound in the section \"Writing style maps\". For instance, if paragraphs\nwith the style name ``Section Title`` should be converted to ``h1``\nelements, and paragraphs with the style name ``Subsection Title`` should\nbe converted to ``h2`` elements:\n\n.. code:: python\n\n import mammoth\n\n style_map = \"\"\"\n p[style-name='Section Title'] => h1:fresh\n p[style-name='Subsection Title'] => h2:fresh\n \"\"\"\n\n with open(\"document.docx\", \"rb\") as docx_file:\n result = mammoth.convert_to_html(docx_file, style_map=style_map)\n\nUser-defined style mappings are used in preference to the default style\nmappings. To stop using the default style mappings altogether, pass\n``include_default_style_map=False``:\n\n.. code:: python\n\n result = mammoth.convert_to_html(docx_file, style_map=style_map, include_default_style_map=False)\n\nCustom image handlers\n^^^^^^^^^^^^^^^^^^^^^\n\nBy default, images are converted to ```` elements with the source\nincluded inline in the ``src`` attribute. This behaviour can be changed\nby setting the ``convert_image`` argument to an `image\nconverter <#image-converters>`__ .\n\nFor instance, the following would replicate the default behaviour:\n\n.. code:: python\n\n def convert_image(image):\n with image.open() as image_bytes:\n encoded_src = base64.b64encode(image_bytes.read()).decode(\"ascii\")\n \n return {\n \"src\": \"data:{0};base64,{1}\".format(image.content_type, encoded_src)\n }\n\n mammoth.convert_to_html(docx_file, convert_image=mammoth.images.img_element(convert_image))\n\nBold\n^^^^\n\nBy default, bold text is wrapped in ```` tags. This behaviour\ncan be changed by adding a style mapping for ``b``. For instance, to\nwrap bold text in ```` tags:\n\n.. code:: python\n\n style_map = \"b => em\"\n\n with open(\"document.docx\", \"rb\") as docx_file:\n result = mammoth.convert_to_html(docx_file, style_map=style_map)\n\nItalic\n^^^^^^\n\nBy default, italic text is wrapped in ```` tags. This behaviour can\nbe changed by adding a style mapping for ``i``. For instance, to wrap\nitalic text in ```` tags:\n\n.. code:: python\n\n style_map = \"i => strong\"\n\n with open(\"document.docx\", \"rb\") as docx_file:\n result = mammoth.convert_to_html(docx_file, style_map=style_map)\n\nUnderline\n^^^^^^^^^\n\nBy default, the underlining of any text is ignored since underlining can\nbe confused with links in HTML documents. This behaviour can be changed\nby adding a style mapping for ``u``. For instance, suppose that a source\ndocument uses underlining for emphasis. The following will wrap any\nexplicitly underlined source text in ```` tags:\n\n.. code:: python\n\n import mammoth\n\n style_map = \"u => em\"\n\n with open(\"document.docx\", \"rb\") as docx_file:\n result = mammoth.convert_to_html(docx_file, style_map=style_map)\n\nStrikethrough\n^^^^^^^^^^^^^\n\nBy default, strikethrough text is wrapped in ```` tags. This\nbehaviour can be changed by adding a style mapping for ``strike``. For\ninstance, to wrap strikethrough text in ```` tags:\n\n.. code:: python\n\n style_map = \"strike => del\"\n\n with open(\"document.docx\", \"rb\") as docx_file:\n result = mammoth.convert_to_html(docx_file, style_map=style_map)\n\nComments\n^^^^^^^^\n\nBy default, comments are ignored. To include comments in the generated\nHTML, add a style mapping for ``comment-reference``. For instance:\n\n.. code:: python\n\n style_map = \"comment-reference => sup\"\n\n with open(\"document.docx\", \"rb\") as docx_file:\n result = mammoth.convert_to_html(docx_file, style_map=style_map)\n\nComments will be appended to the end of the document, with links to the\ncomments wrapped using the specified style mapping.\n\nAPI\n~~~\n\n``mammoth.convert_to_html(fileobj, **kwargs)``\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nConverts the source document to HTML.\n\n- ``fileobj``: a file-like object containing the source document. Files\n should be opened in binary mode.\n\n- ``style_map``: a string to specify the mapping of Word styles to\n HTML. See the section \"Writing style maps\" for a description of the\n syntax.\n\n- ``include_embedded_style_map``: by default, if the document contains\n an embedded style map, then it is combined with the default style\n map. To ignore any embedded style maps, pass\n ``include_embedded_style_map=False``.\n\n- ``include_default_style_map``: by default, the style map passed in\n ``style_map`` is combined with the default style map. To stop using\n the default style map altogether, pass\n ``include_default_style_map=False``.\n\n- ``convert_image``: by default, images are converted to ````\n elements with the source included inline in the ``src`` attribute.\n Set this argument to an `image converter <#image-converters>`__ to\n override the default behaviour.\n\n- ``ignore_empty_paragraphs``: by default, empty paragraphs are\n ignored. Set this option to ``False`` to preserve empty paragraphs in\n the output.\n\n- ``id_prefix``: a string to prepend to any generated IDs, such as\n those used by bookmarks, footnotes and endnotes. Defaults to an empty\n string.\n\n- ``transform_document``: if set, this function is applied to the\n document read from the docx file before the conversion to HTML. The\n API for document transforms should be considered unstable. See\n `document transforms <#document-transforms>`__.\n\n- Returns a result with the following properties:\n\n- ``value``: the generated HTML\n\n- ``messages``: any messages, such as errors and warnings, generated\n during the conversion\n\n``mammoth.convert_to_markdown(fileobj, **kwargs)``\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nConverts the source document to Markdown. This behaves the same as\n``convert_to_html``, except that the ``value`` property of the result\ncontains Markdown rather than HTML.\n\n``mammoth.extract_raw_text(fileobj)``\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nExtract the raw text of the document. This will ignore all formatting in\nthe document. Each paragraph is followed by two newlines.\n\n- ``fileobj``: a file-like object containing the source document. Files\n should be opened in binary mode.\n\n- Returns a result with the following properties:\n\n- ``value``: the raw text\n\n- ``messages``: any messages, such as errors and warnings\n\n``mammoth.embed_style_map(fileobj, style_map)``\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nEmbeds the style map ``style_map`` into ``fileobj``. When Mammoth reads\na file object, it will use the embedded style map.\n\n- ``fileobj``: a file-like object containing the source document. Files\n should be opened for reading and writing in binary mode.\n\n- ``style_map``: the style map to embed.\n\n- Returns ``None``.\n\nMessages\n^^^^^^^^\n\nEach message has the following properties:\n\n- ``type``: a string representing the type of the message, such as\n ``\"warning\"``\n\n- ``message``: a string containing the actual message\n\nImage converters\n^^^^^^^^^^^^^^^^\n\nAn image converter can be created by calling\n``mammoth.images.img_element(func)``. This creates an ```` element\nfor each image in the original docx. ``func`` should be a function that\nhas one argument ``image``. This argument is the image element being\nconverted, and has the following properties:\n\n- ``open()``: open the image file. Returns a file-like object.\n\n- ``content_type``: the content type of the image, such as\n ``image/png``.\n\n``func`` should return a ``dict`` of attributes for the ````\nelement. At a minimum, this should include the ``src`` attribute. If any\nalt text is found for the image, this will be automatically added to the\nelement's attributes.\n\nFor instance, the following replicates the default image conversion:\n\n.. code:: python\n\n def convert_image(image):\n with image.open() as image_bytes:\n encoded_src = base64.b64encode(image_bytes.read()).decode(\"ascii\")\n \n return {\n \"src\": \"data:{0};base64,{1}\".format(image.content_type, encoded_src)\n }\n\n mammoth.images.img_element(convert_image)\n\n``mammoth.images.data_uri`` is the default image converter.\n\nWMF images are not handled by default by Mammoth. The recipes directory\ncontains `an example of how they can be converted using\nLibreOffice `__,\nalthough the fidelity of the conversion depends entirely on LibreOffice.\n\nDocument transforms\n~~~~~~~~~~~~~~~~~~~\n\n**The API for document transforms should be considered unstable, and may\nchange between any versions. If you rely on this behaviour, you should\npin to a specific version of Mammoth, and test carefully before\nupdating.**\n\nMammoth allows a document to be transformed before it is converted. For\ninstance, suppose that document has not been semantically marked up, but\nyou know that any centre-aligned paragraph should be a heading. You can\nuse the ``transform_document`` argument to modify the document\nappropriately:\n\n.. code:: python\n\n import mammoth.transforms\n\n def transform_paragraph(element):\n if element.alignment == \"center\" and not element.style_id:\n return element.copy(style_id=\"Heading2\")\n else:\n return element\n\n transform_document = mammoth.transforms.paragraph(transform_paragraph)\n\n mammoth.convert_to_html(fileobj, transform_document=transform_document)\n\nOr if you want paragraphs that have been explicitly set to use monospace\nfonts to represent code:\n\n.. code:: python\n\n import mammoth.documents\n import mammoth.transforms\n\n _monospace_fonts = set([\"courier new\"])\n\n def transform_paragraph(paragraph):\n runs = mammoth.transforms.get_descendants_of_type(paragraph, mammoth.documents.Run)\n if runs and all(run.font and run.font.lower() in _monospace_fonts for run in runs):\n return paragraph.copy(style_id=\"code\", style_name=\"Code\")\n else:\n return paragraph\n\n convert_to_html(\n fileobj,\n transform_document=mammoth.transforms.paragraph(transform_paragraph),\n style_map=\"p[style-name='Code'] => pre:separator('\\n')\",\n )\n\n``mammoth.transforms.paragraph(transform_paragraph)``\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nReturns a function that can be used as the ``transform_document``\nargument. This will apply the function ``transform_paragraph`` to each\nparagraph element. ``transform_paragraph`` should return the new\nparagraph.\n\n``mammoth.transforms.run(transform_run)``\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nReturns a function that can be used as the ``transform_document``\nargument. This will apply the function ``transform_run`` to each run\nelement. ``transform_run`` should return the new run.\n\n``mammoth.transforms.get_descendants(element)``\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nGets all descendants of an element.\n\n``mammoth.transforms.get_descendants_of_type(element, type)``\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nGets all descendants of a particular type of an element. For instance,\nto get all runs within an element ``paragraph``:\n\n.. code:: python\n\n import mammoth.documents\n import mammoth.transforms\n\n runs = mammoth.transforms.get_descendants_of_type(paragraph, documents.Run);\n\nWriting style maps\n------------------\n\nA style map is made up of a number of style mappings separated by new\nlines. Blank lines and lines starting with ``#`` are ignored.\n\nA style mapping has two parts:\n\n- On the left, before the arrow, is the document element matcher.\n- On the right, after the arrow, is the HTML path.\n\nWhen converting each paragraph, Mammoth finds the first style mapping\nwhere the document element matcher matches the current paragraph.\nMammoth then ensures the HTML path is satisfied.\n\nFreshness\n~~~~~~~~~\n\nWhen writing style mappings, it's helpful to understand Mammoth's notion\nof freshness. When generating, Mammoth will only close an HTML element\nwhen necessary. Otherwise, elements are reused.\n\nFor instance, suppose one of the specified style mappings is\n``p[style-name='Heading 1'] => h1``. If Mammoth encounters a .docx\nparagraph with the style name ``Heading 1``, the .docx paragraph is\nconverted to a ``h1`` element with the same text. If the next .docx\nparagraph also has the style name ``Heading 1``, then the text of that\nparagraph will be appended to the *existing* ``h1`` element, rather than\ncreating a new ``h1`` element.\n\nIn most cases, you'll probably want to generate a new ``h1`` element\ninstead. You can specify this by using the ``:fresh`` modifier:\n\n``p[style-name='Heading 1'] => h1:fresh``\n\nThe two consective ``Heading 1`` .docx paragraphs will then be converted\nto two separate ``h1`` elements.\n\nReusing elements is useful in generating more complicated HTML\nstructures. For instance, suppose your .docx contains asides. Each aside\nmight have a heading and some body text, which should be contained\nwithin a single ``div.aside`` element. In this case, style mappings\nsimilar to ``p[style-name='Aside Heading'] => div.aside > h2:fresh`` and\n``p[style-name='Aside Text'] => div.aside > p:fresh`` might be helpful.\n\nDocument element matchers\n~~~~~~~~~~~~~~~~~~~~~~~~~\n\nParagraphs, runs and tables\n^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nMatch any paragraph:\n\n::\n\n p\n\nMatch any run:\n\n::\n\n r\n\nMatch any table:\n\n::\n\n table\n\nTo match a paragraph, run or table with a specific style, you can\nreference the style by name. This is the style name that is displayed in\nMicrosoft Word or LibreOffice. For instance, to match a paragraph with\nthe style name ``Heading 1``:\n\n::\n\n p[style-name='Heading 1']\n\nYou can also match a style name by prefix. For instance, to match a\nparagraph where the style name starts with ``Heading``:\n\n::\n\n p[style-name^='Heading']\n\nStyles can also be referenced by style ID. This is the ID used\ninternally in the .docx file. To match a paragraph or run with a\nspecific style ID, append a dot followed by the style ID. For instance,\nto match a paragraph with the style ID ``Heading1``:\n\n::\n\n p.Heading1\n\nBold\n^^^^\n\nMatch explicitly bold text:\n\n::\n\n b\n\nNote that this matches text that has had bold explicitly applied to it.\nIt will not match any text that is bold because of its paragraph or run\nstyle.\n\nItalic\n^^^^^^\n\nMatch explicitly italic text:\n\n::\n\n i\n\nNote that this matches text that has had italic explicitly applied to\nit. It will not match any text that is italic because of its paragraph\nor run style.\n\nUnderline\n^^^^^^^^^\n\nMatch explicitly underlined text:\n\n::\n\n u\n\nNote that this matches text that has had underline explicitly applied to\nit. It will not match any text that is underlined because of its\nparagraph or run style.\n\nStrikethough\n^^^^^^^^^^^^\n\nMatch explicitly struckthrough text:\n\n::\n\n strike\n\nNote that this matches text that has had strikethrough explicitly\napplied to it. It will not match any text that is struckthrough because\nof its paragraph or run style.\n\nSmall caps\n^^^^^^^^^^\n\nMatch explicitly small caps text:\n\n::\n\n small-caps\n\nNote that this matches text that has had small caps explicitly applied\nto it. It will not match any text that is small caps because of its\nparagraph or run style.\n\nHTML paths\n~~~~~~~~~~\n\nSingle elements\n^^^^^^^^^^^^^^^\n\nThe simplest HTML path is to specify a single element. For instance, to\nspecify an ``h1`` element:\n\n::\n\n h1\n\nTo give an element a CSS class, append a dot followed by the name of the\nclass:\n\n::\n\n h1.section-title\n\nTo require that an element is fresh, use ``:fresh``:\n\n::\n\n h1:fresh\n\nModifiers must be used in the correct order:\n\n::\n\n h1.section-title:fresh\n\nSeparators\n^^^^^^^^^^\n\nTo specify a separator to place between the contents of paragraphs that\nare collapsed together, use ``:separator('SEPARATOR STRING')``.\n\nFor instance, suppose a document contains a block of code where each\nline of code is a paragraph with the style ``Code Block``. We can write\na style mapping to map such paragraphs to ``
`` elements:\n\n::\n\n    p[style-name='Code Block'] => pre\n\nSince ``pre`` isn't marked as ``:fresh``, consecutive ``pre`` elements\nwill be collapsed together. However, this results in the code all being\non one line. We can use ``:separator`` to insert a newline between each\nline of code:\n\n::\n\n    p[style-name='Code Block'] => pre:separator('\\n')\n\nNested elements\n^^^^^^^^^^^^^^^\n\nUse ``>`` to specify nested elements. For instance, to specify ``h2``\nwithin ``div.aside``:\n\n::\n\n    div.aside > h2\n\nYou can nest elements to any depth.\n",
        "description_content_type": "",
        "docs_url": null,
        "download_url": "",
        "downloads": {
            "last_day": -1,
            "last_month": -1,
            "last_week": -1
        },
        "home_page": "http://github.com/mwilliamson/python-mammoth",
        "keywords": "docx word office clean html markdown md",
        "license": "",
        "maintainer": "",
        "maintainer_email": "",
        "name": "mammoth",
        "package_url": "https://pypi.org/project/mammoth/",
        "platform": "",
        "project_url": "https://pypi.org/project/mammoth/",
        "project_urls": {
            "Homepage": "http://github.com/mwilliamson/python-mammoth"
        },
        "release_url": "https://pypi.org/project/mammoth/1.4.9/",
        "requires_dist": null,
        "requires_python": "",
        "summary": "Convert Word documents from docx to simple and clean HTML and Markdown",
        "version": "1.4.9"
    },
    "last_serial": 4951501,
    "releases": {
        "0.1.0": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "2a45296b6bfd3198129c57b8a889c9b1",
                    "sha256": "0e8c5f446f9842e70d8cf8d88f0c6cb5a1917a4cd6e0c76256918120f31dab39"
                },
                "downloads": -1,
                "filename": "mammoth-0.1.0.tar.gz",
                "has_sig": false,
                "md5_digest": "2a45296b6bfd3198129c57b8a889c9b1",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 12249,
                "upload_time": "2013-12-14T18:27:38",
                "url": "https://files.pythonhosted.org/packages/d8/77/bd8c9b634e3b5313f9118561af2a1f96e02120e978474177e125a6f9f13a/mammoth-0.1.0.tar.gz"
            }
        ],
        "0.1.1": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "0871119f329a12fd8826d1aa674ed5c0",
                    "sha256": "1f6fc1ccdc5ba3afc3985f6c1cfbffb492912f455d2115dc28716a3c07b18b3b"
                },
                "downloads": -1,
                "filename": "mammoth-0.1.1.tar.gz",
                "has_sig": false,
                "md5_digest": "0871119f329a12fd8826d1aa674ed5c0",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 10788,
                "upload_time": "2013-12-16T15:23:41",
                "url": "https://files.pythonhosted.org/packages/34/b4/869183fda09f4a0b183f1f4dd350fc5f0ba0ed734ac0591e8426d2196e94/mammoth-0.1.1.tar.gz"
            }
        ],
        "0.1.2": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "400c48bdb4b8d9d338ab0443aeb80366",
                    "sha256": "e1e22eca2b2b3730c12a49f01dd47095a56a103b85c62970a61bfa2d0c8cb973"
                },
                "downloads": -1,
                "filename": "mammoth-0.1.2.tar.gz",
                "has_sig": false,
                "md5_digest": "400c48bdb4b8d9d338ab0443aeb80366",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 12862,
                "upload_time": "2013-12-17T20:29:19",
                "url": "https://files.pythonhosted.org/packages/53/3e/9002bbaf6c94bf0073c280b257d6a65bf7bc986ba84ac41df2209ccfdf64/mammoth-0.1.2.tar.gz"
            }
        ],
        "0.1.3": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "9cb00c761990e54086babe94d72a9087",
                    "sha256": "8abe9c79c81221c4918ae1b8007edd6905cea53dfbf628dcf5ed184307afb409"
                },
                "downloads": -1,
                "filename": "mammoth-0.1.3.tar.gz",
                "has_sig": false,
                "md5_digest": "9cb00c761990e54086babe94d72a9087",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 12862,
                "upload_time": "2013-12-17T20:30:51",
                "url": "https://files.pythonhosted.org/packages/47/93/93e048ead508e953b0f35d88e2e163717beca38e811b1f71675135501c18/mammoth-0.1.3.tar.gz"
            }
        ],
        "0.1.4": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "b516497c30383beba01b80f8566997c4",
                    "sha256": "f5521e2a3fba1169a9037ab31e28c68d40589223226f7cf4e549a31bd68d72e6"
                },
                "downloads": -1,
                "filename": "mammoth-0.1.4.tar.gz",
                "has_sig": false,
                "md5_digest": "b516497c30383beba01b80f8566997c4",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 11371,
                "upload_time": "2013-12-23T23:56:12",
                "url": "https://files.pythonhosted.org/packages/98/d0/04dbb6ad2aefbbba58323212113327dd74e6d1f83d4d336753c481c542ca/mammoth-0.1.4.tar.gz"
            }
        ],
        "0.1.5": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "5a7b4030a5b93b07b1b9edbdf39d2014",
                    "sha256": "11708c5c8dc51b3e79c60e7a4c742818700bcebaeb6e14c4a7c4d1a869d5edd1"
                },
                "downloads": -1,
                "filename": "mammoth-0.1.5.tar.gz",
                "has_sig": false,
                "md5_digest": "5a7b4030a5b93b07b1b9edbdf39d2014",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 11398,
                "upload_time": "2013-12-24T15:59:14",
                "url": "https://files.pythonhosted.org/packages/56/69/d8772e3add4b608a09c497809f804469c97dc0e1d535ec23a22c7f4a3ab1/mammoth-0.1.5.tar.gz"
            }
        ],
        "0.3.0": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "58154d6b37af4ac9bb307a6a8abed74c",
                    "sha256": "5ff3e24dab61731fc1390b2702161e69e68e3831d30dbcb0dac8efe8edd92999"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.0.tar.gz",
                "has_sig": false,
                "md5_digest": "58154d6b37af4ac9bb307a6a8abed74c",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 15002,
                "upload_time": "2014-07-05T14:47:20",
                "url": "https://files.pythonhosted.org/packages/26/1e/580f990a66dceb2243b7b9671e0dbec6bf17d53a3b3d8bec2dffcbf73f93/mammoth-0.3.0.tar.gz"
            }
        ],
        "0.3.1": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "de4359e3ed25744d7a171606e9bfc016",
                    "sha256": "2c43b205bae36a7699782140a18c7b42e461160626fc2bd6755b28aea343c3ab"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.1.tar.gz",
                "has_sig": false,
                "md5_digest": "de4359e3ed25744d7a171606e9bfc016",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 15255,
                "upload_time": "2014-07-06T16:38:59",
                "url": "https://files.pythonhosted.org/packages/c0/e8/eb7d0370ff580793c6c47ba85e5722f87fc63b3ce8474e910a86b600a75e/mammoth-0.3.1.tar.gz"
            }
        ],
        "0.3.10": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "6b7a299ee3dfab7b73e6aeb58b742702",
                    "sha256": "d7c097e9b249c3885f0509d2dc6d0b2f6372ce367ff01ec0465436c9ab109fe4"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.10.tar.gz",
                "has_sig": false,
                "md5_digest": "6b7a299ee3dfab7b73e6aeb58b742702",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 21207,
                "upload_time": "2015-02-08T21:30:31",
                "url": "https://files.pythonhosted.org/packages/ba/cd/e1fa0f0c3b2169a75ebb46ee8db8b72075148d655302256b37e3482dcae1/mammoth-0.3.10.tar.gz"
            }
        ],
        "0.3.11": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "71d7a1823e9daaed3b6a00f4482a0a98",
                    "sha256": "e4be693883166941f26b9c511b53a1f5d50467a8a2661f0ce5682d40ac308f73"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.11.tar.gz",
                "has_sig": false,
                "md5_digest": "71d7a1823e9daaed3b6a00f4482a0a98",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 21490,
                "upload_time": "2015-02-11T20:37:02",
                "url": "https://files.pythonhosted.org/packages/50/03/bc6ad036647c041b654e573e7063e5a989cef8310452b1115b184e6d45b4/mammoth-0.3.11.tar.gz"
            }
        ],
        "0.3.12": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "c2f19aaf7cdbf7c30f0ca4c9fcccb604",
                    "sha256": "89e5dba4c0a50ca419e29a22c4dc06a685271be7a9b54850382a8b9edbbf9e2b"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.12.tar.gz",
                "has_sig": false,
                "md5_digest": "c2f19aaf7cdbf7c30f0ca4c9fcccb604",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 21533,
                "upload_time": "2015-04-08T17:22:22",
                "url": "https://files.pythonhosted.org/packages/d9/53/afc5c69d659d92ff0c222372efdf29e6c741d1d00b55ca3badb492b81092/mammoth-0.3.12.tar.gz"
            }
        ],
        "0.3.14": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "6d1aa864973c9b14c34aa8db415d8917",
                    "sha256": "00d8a59bc0c649d13e5bc9df5f23878108f96ab9268fd9bd21fa151bbcce3b2c"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.14.tar.gz",
                "has_sig": false,
                "md5_digest": "6d1aa864973c9b14c34aa8db415d8917",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 21656,
                "upload_time": "2015-05-17T15:33:25",
                "url": "https://files.pythonhosted.org/packages/14/4f/1b6647b70390e05f5e10134f5183233726fda831973d239364824deff0a0/mammoth-0.3.14.tar.gz"
            }
        ],
        "0.3.15": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "68dfca07c71beed6daae7e69a6ed0d9c",
                    "sha256": "61e5b43cb57e8a21e91c029a30dccc90b41da9f5eea74e3b8f9d388d3a70b81f"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.15.tar.gz",
                "has_sig": false,
                "md5_digest": "68dfca07c71beed6daae7e69a6ed0d9c",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 21674,
                "upload_time": "2015-05-24T08:58:34",
                "url": "https://files.pythonhosted.org/packages/8a/7b/3c53b08c4efdd7cd8cd214e033d4ef87a08727fa99db28ccaf04c32b6666/mammoth-0.3.15.tar.gz"
            }
        ],
        "0.3.16": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "43e139125009184724af1252231bb550",
                    "sha256": "1a2b434261ea75d7c34e252a1411f5633f661fd97748b8d2b1d57f7eb3451061"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.16.tar.gz",
                "has_sig": false,
                "md5_digest": "43e139125009184724af1252231bb550",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 22313,
                "upload_time": "2015-06-15T14:16:04",
                "url": "https://files.pythonhosted.org/packages/b4/3d/6e0d186455c1d304d24d07617333524b14f70a90dff48fcd71296ed400dd/mammoth-0.3.16.tar.gz"
            }
        ],
        "0.3.17": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "44a17fcaaeef1d099c8ae70f8e97f454",
                    "sha256": "df9e2723a8908f99d27dbd5e1bbc8956fa039233db06e27a3f49411eb8299c43"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.17.tar.gz",
                "has_sig": false,
                "md5_digest": "44a17fcaaeef1d099c8ae70f8e97f454",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 23132,
                "upload_time": "2015-06-17T14:58:38",
                "url": "https://files.pythonhosted.org/packages/13/e5/c1e28aae8f70feae76f203c6c6e6faf9fab6f0bf77b48c507154f36564dc/mammoth-0.3.17.tar.gz"
            }
        ],
        "0.3.18": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "bb7d5ba11c1f83ef7a462b07cdd0d2aa",
                    "sha256": "de099df363d06b27785fd3e26aee38483f1bad1b7b35151e77facc5366d91ef8"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.18.tar.gz",
                "has_sig": false,
                "md5_digest": "bb7d5ba11c1f83ef7a462b07cdd0d2aa",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 23365,
                "upload_time": "2015-07-04T12:54:42",
                "url": "https://files.pythonhosted.org/packages/f1/77/35b7c1033a881451c1116c2ace414322e09e3ffbf71eb242460eb4a1fbdb/mammoth-0.3.18.tar.gz"
            }
        ],
        "0.3.19": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "67000633dd754a96a223bb0ca062149f",
                    "sha256": "9932c0bd09465e5117d4f9306c1bf5b96fab2cae80097a444e1c02e686951333"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.19.tar.gz",
                "has_sig": false,
                "md5_digest": "67000633dd754a96a223bb0ca062149f",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 23454,
                "upload_time": "2015-07-15T15:25:01",
                "url": "https://files.pythonhosted.org/packages/6c/af/fe34a5436ce8fad98f3a602eb9854c552e2d544824155b968b925910ad0b/mammoth-0.3.19.tar.gz"
            }
        ],
        "0.3.2": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "78ac3383a051966ee46f1712a37c16ea",
                    "sha256": "d06313df72642dc7437727a894f137ab96cf8ceff3e5de1927b01f508cdf78d9"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.2.tar.gz",
                "has_sig": false,
                "md5_digest": "78ac3383a051966ee46f1712a37c16ea",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 16004,
                "upload_time": "2014-07-06T17:07:14",
                "url": "https://files.pythonhosted.org/packages/eb/0c/7745ed59a965044ebc1b33a57fad1d34d6ab176af78a026f04190fc2d367/mammoth-0.3.2.tar.gz"
            }
        ],
        "0.3.20": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "ecc7b36d7d205e90c2b283e7af2cf6bb",
                    "sha256": "64da6f1817d0204ab7c1ef84002e2ad3a86bdfb0649ef8abb6ffbc12e2cff795"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.20.tar.gz",
                "has_sig": false,
                "md5_digest": "ecc7b36d7d205e90c2b283e7af2cf6bb",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 24053,
                "upload_time": "2015-07-20T17:58:41",
                "url": "https://files.pythonhosted.org/packages/5d/f2/82392da3c71b5716f3524cc344f2f190664fb1e5912fc3213f9399f1468a/mammoth-0.3.20.tar.gz"
            }
        ],
        "0.3.21": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "ccd6abb0c0ba5cb8eeda29b27ddd650b",
                    "sha256": "18c2e7acf6aa7aacd5956dc398d39560a4fe464cbf1f7e31e5295aa118d668f7"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.21.tar.gz",
                "has_sig": false,
                "md5_digest": "ccd6abb0c0ba5cb8eeda29b27ddd650b",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 24187,
                "upload_time": "2015-08-04T20:59:39",
                "url": "https://files.pythonhosted.org/packages/68/86/b38e05c1ef0960d4fca5daf1cbab5df09c4995996da41fc62e7bb9eeefbe/mammoth-0.3.21.tar.gz"
            }
        ],
        "0.3.22": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "8a24517195c8ec450a7fccdc99b953ff",
                    "sha256": "e5e8d1bb536377ff489a4d15c828cce53a20894824630755c549d1ee9f711149"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.22.tar.gz",
                "has_sig": false,
                "md5_digest": "8a24517195c8ec450a7fccdc99b953ff",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 24592,
                "upload_time": "2015-08-20T19:43:04",
                "url": "https://files.pythonhosted.org/packages/9a/f2/12aeafa16adb7419e60b70cd08deb16871e627b28d166fd44f48b8de2006/mammoth-0.3.22.tar.gz"
            }
        ],
        "0.3.23": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "106e0a213269a711ad3f82309e46b1e8",
                    "sha256": "85e1b404d3f066336fa4d06f90c6b61938403b941c7561ff81c0e3c4b8473b17"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.23.tar.gz",
                "has_sig": false,
                "md5_digest": "106e0a213269a711ad3f82309e46b1e8",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 24619,
                "upload_time": "2015-08-20T20:30:10",
                "url": "https://files.pythonhosted.org/packages/cf/cb/ece03272a2f7d2e64b7c18039c596341981985728fcba0bb0f9a3fa5362f/mammoth-0.3.23.tar.gz"
            }
        ],
        "0.3.24": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "946f59b14c0e6329a3af9af621bf1b08",
                    "sha256": "5721a89f6003851fc3383276b0817cefc349279ed5e2b3e01a6c4757e57e02da"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.24.tar.gz",
                "has_sig": false,
                "md5_digest": "946f59b14c0e6329a3af9af621bf1b08",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 25787,
                "upload_time": "2015-09-12T16:47:44",
                "url": "https://files.pythonhosted.org/packages/6b/00/a466cdd150df54e78713a4c486057b3783bdcc581f80ebfd7301a01f37c5/mammoth-0.3.24.tar.gz"
            }
        ],
        "0.3.25": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "3dd39034748115da2e5676d007b7d460",
                    "sha256": "ccb638f792411f51f9a840e60edcb607a342a56a0006ce7b61de1f4ba7b91473"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.25.tar.gz",
                "has_sig": false,
                "md5_digest": "3dd39034748115da2e5676d007b7d460",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 25835,
                "upload_time": "2015-12-10T20:25:19",
                "url": "https://files.pythonhosted.org/packages/fe/9b/8ad6263fd006a4381bc08936a2812d5cf878ce24ebc410991b6c63ff29b3/mammoth-0.3.25.tar.gz"
            }
        ],
        "0.3.26": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "6f74b3df5de787b7ec48fd5ff8dbf003",
                    "sha256": "21b67755f5b2bffad1f34ca07a4de9ec0008031b5c6eca22735a43c0b11a5b7e"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.26.tar.gz",
                "has_sig": false,
                "md5_digest": "6f74b3df5de787b7ec48fd5ff8dbf003",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 23062,
                "upload_time": "2015-12-26T11:30:39",
                "url": "https://files.pythonhosted.org/packages/58/ac/e5876824eae2876ceb328a8a2717757015f1b21c0f34263a6887db4ee45d/mammoth-0.3.26.tar.gz"
            }
        ],
        "0.3.27": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "db9bbbcf2cbe5cc1656651b008c0bb0f",
                    "sha256": "b55e88103b4612aa40114bb604c472d7620983ebe25f6ad070188bf6562eee12"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.27.tar.gz",
                "has_sig": false,
                "md5_digest": "db9bbbcf2cbe5cc1656651b008c0bb0f",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 26157,
                "upload_time": "2016-01-03T00:19:40",
                "url": "https://files.pythonhosted.org/packages/75/59/bab78809c5384348d3f662a1ed4a012b9613d3cdc5fe9ae11476a4cd1583/mammoth-0.3.27.tar.gz"
            }
        ],
        "0.3.29": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "aa8bddeadc943930dee75e9908580960",
                    "sha256": "93b5937c8c27e9ab8f203bf4ad1130f0e259d7201bbb227127188c703bcfefa6"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.29.tar.gz",
                "has_sig": false,
                "md5_digest": "aa8bddeadc943930dee75e9908580960",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 23456,
                "upload_time": "2016-02-05T18:55:56",
                "url": "https://files.pythonhosted.org/packages/0a/c6/b7fef6026317607cbd4e22a0e61408a1eb9a972ecd626c575e21ccc2b5da/mammoth-0.3.29.tar.gz"
            }
        ],
        "0.3.3": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "9fcb188d92f37b264df61d5bfbd691b0",
                    "sha256": "4e86d0666451068905d609e3da9606dea9697df1df5716c57e74fb353c77e645"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.3.tar.gz",
                "has_sig": false,
                "md5_digest": "9fcb188d92f37b264df61d5bfbd691b0",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 16967,
                "upload_time": "2014-07-08T10:18:26",
                "url": "https://files.pythonhosted.org/packages/21/b1/b817faa7dc203de048c0a2c2dd96e3d73342c057ac36417c6ecb5bd008e5/mammoth-0.3.3.tar.gz"
            }
        ],
        "0.3.30": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "cc5f8139dcb7e2cc9534dc1d621af436",
                    "sha256": "5ccd0897f35ecb75d8b826f5832d68f8cef613fbeaebeb6938a6e9cd45afc810"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.30.tar.gz",
                "has_sig": false,
                "md5_digest": "cc5f8139dcb7e2cc9534dc1d621af436",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 26705,
                "upload_time": "2016-02-25T19:16:56",
                "url": "https://files.pythonhosted.org/packages/76/f3/e07ed1f23bc13c6ee23081aae28f2f1208fedb22d7e92bae16be0b97f1ba/mammoth-0.3.30.tar.gz"
            }
        ],
        "0.3.31": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "9af49441c9dc461ebebfedfa1512c492",
                    "sha256": "5775a7f80449b057aa92be538a0d0658a86279303750d138290594c435d39051"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.31.tar.gz",
                "has_sig": false,
                "md5_digest": "9af49441c9dc461ebebfedfa1512c492",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 27278,
                "upload_time": "2016-03-15T23:28:25",
                "url": "https://files.pythonhosted.org/packages/1d/63/ccc1d0d7d6cf988fc418b0041c27a29ddad993e26ee10eb3b5e9ff53b297/mammoth-0.3.31.tar.gz"
            }
        ],
        "0.3.4": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "5f771892493b5d6a5706aed55d66b5dc",
                    "sha256": "7e78b22ba5d5adf94754b164d0bb95279dccbc8ae009008c16b5630925ba7e72"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.4.tar.gz",
                "has_sig": false,
                "md5_digest": "5f771892493b5d6a5706aed55d66b5dc",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 17427,
                "upload_time": "2014-07-18T14:25:46",
                "url": "https://files.pythonhosted.org/packages/81/d0/0f4a321f568927fdc5cb135ddc19fd2d65577a6ad038b181714631cad07a/mammoth-0.3.4.tar.gz"
            }
        ],
        "0.3.5": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "8b9f19fc85240dce87837456749f04a7",
                    "sha256": "83faf789c569537f3ae030cf4b9c415eedeca5f8b65b1199279ef3faafc7ca5c"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.5.tar.gz",
                "has_sig": false,
                "md5_digest": "8b9f19fc85240dce87837456749f04a7",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 17547,
                "upload_time": "2014-08-05T15:49:05",
                "url": "https://files.pythonhosted.org/packages/6e/3e/972f505e8a9dfa4346b4414fd8b9c056200b30f76b0ba6fbdb4f96b80e83/mammoth-0.3.5.tar.gz"
            }
        ],
        "0.3.6": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "8c23f83c7bdeac0b6d4e2f9437d74994",
                    "sha256": "165c83918604a920b576112cb50e000c37e14f7fbc529650a9b2d95e563a9784"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.6.tar.gz",
                "has_sig": false,
                "md5_digest": "8c23f83c7bdeac0b6d4e2f9437d74994",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 18571,
                "upload_time": "2014-08-31T09:44:53",
                "url": "https://files.pythonhosted.org/packages/7c/4c/8257a5a0c998692dc0113fc3c79c4f18cdca6d89c590871244431f7b8979/mammoth-0.3.6.tar.gz"
            }
        ],
        "0.3.7": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "abb0bf79a58828e66fcb1637f33ab79f",
                    "sha256": "6fb455cb4ed2e6fff6737beb2e70a3585da9a4b0c747ffa0938d7c352b48c120"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.7.tar.gz",
                "has_sig": false,
                "md5_digest": "abb0bf79a58828e66fcb1637f33ab79f",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 18775,
                "upload_time": "2014-09-27T16:25:35",
                "url": "https://files.pythonhosted.org/packages/1f/7d/6fc39c10bb73ecc7aeec6f6b0aba62bd9f035a8259a7ee5fd371c236cc36/mammoth-0.3.7.tar.gz"
            }
        ],
        "0.3.8": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "3f5543940dc3ad9c70d511fec70ccbfd",
                    "sha256": "66357d286c299378f654c1a97f9f02fd5dcbe36a5cb5cef3612b3c4a89324657"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.8.tar.gz",
                "has_sig": false,
                "md5_digest": "3f5543940dc3ad9c70d511fec70ccbfd",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 18994,
                "upload_time": "2015-01-21T19:45:13",
                "url": "https://files.pythonhosted.org/packages/22/da/2ace57ed4d7455f994f94d3fc40d5d92ce7e2378a4c8f8560f28fa081379/mammoth-0.3.8.tar.gz"
            }
        ],
        "0.3.9": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "33acb6b3c9dcd12ada3c195ccada7420",
                    "sha256": "24690d8112498fae8adb3e4787aa8d5008e92535a441a3593a32d2bf47b0cec0"
                },
                "downloads": -1,
                "filename": "mammoth-0.3.9.tar.gz",
                "has_sig": false,
                "md5_digest": "33acb6b3c9dcd12ada3c195ccada7420",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 19362,
                "upload_time": "2015-01-28T17:23:28",
                "url": "https://files.pythonhosted.org/packages/63/90/0de251ab1e4a8bc4a63c2986d2517a79139fe42f4585e8af88dc173c48f7/mammoth-0.3.9.tar.gz"
            }
        ],
        "1.0.0": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "7cd40090185f80524392d4f604cec1a8",
                    "sha256": "76c1076e8da2c034399d3ffc317c8aee89ea65441c2d204c1844cf3ca0c45b7b"
                },
                "downloads": -1,
                "filename": "mammoth-1.0.0.tar.gz",
                "has_sig": false,
                "md5_digest": "7cd40090185f80524392d4f604cec1a8",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 27373,
                "upload_time": "2016-04-02T16:33:54",
                "url": "https://files.pythonhosted.org/packages/cf/9c/5eb2893063a107b3141be8d524b7b4cf9bc7379a1cec06291eadc9c1fa09/mammoth-1.0.0.tar.gz"
            }
        ],
        "1.0.1": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "685e61d1add6c37422d042eb4dceb9d6",
                    "sha256": "a3ffb60f41138f19abb05a4e34f0a05cb929d981fdfddbb96bc995bc8bf226ec"
                },
                "downloads": -1,
                "filename": "mammoth-1.0.1.tar.gz",
                "has_sig": false,
                "md5_digest": "685e61d1add6c37422d042eb4dceb9d6",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 24430,
                "upload_time": "2016-04-19T22:00:41",
                "url": "https://files.pythonhosted.org/packages/59/dc/a534d664bdf45940a87ff1a47e62543cd10cb72b50b83aa7f558cbad4c30/mammoth-1.0.1.tar.gz"
            }
        ],
        "1.0.2": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "e0ff85bf82ed1d2b768044947dad6737",
                    "sha256": "5015656f82b9d0268dcf319abfcda305ef23ae6db5db13c9a9512c6dd37110cc"
                },
                "downloads": -1,
                "filename": "mammoth-1.0.2.tar.gz",
                "has_sig": false,
                "md5_digest": "e0ff85bf82ed1d2b768044947dad6737",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 27796,
                "upload_time": "2016-05-02T10:54:12",
                "url": "https://files.pythonhosted.org/packages/bd/17/f659395cf5586e21c2d3321ed272003db176e8a86cd322dd53e4116c5c4c/mammoth-1.0.2.tar.gz"
            }
        ],
        "1.0.3": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "d38b489f9f87538f03021ca4fc1085a1",
                    "sha256": "cfb903eb390053d6d60c63a8b7fa3870a7cb9fc2d8ce8c5136ce3cdd458d3d1a"
                },
                "downloads": -1,
                "filename": "mammoth-1.0.3-py2.py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "d38b489f9f87538f03021ca4fc1085a1",
                "packagetype": "bdist_wheel",
                "python_version": "2.7",
                "requires_python": null,
                "size": 39192,
                "upload_time": "2016-06-07T21:11:31",
                "url": "https://files.pythonhosted.org/packages/aa/86/f8537530517d04f1009d8964c0d7cccd7877837111c2684ce04d95d371d9/mammoth-1.0.3-py2.py3-none-any.whl"
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "3292191932b82916002f83d11da8f363",
                    "sha256": "d2bf2e38f91bb694a77d589777d0feaa18f4ea51c67963ef4ca2795ad553b721"
                },
                "downloads": -1,
                "filename": "mammoth-1.0.3.tar.gz",
                "has_sig": false,
                "md5_digest": "3292191932b82916002f83d11da8f363",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 28498,
                "upload_time": "2016-05-12T21:39:59",
                "url": "https://files.pythonhosted.org/packages/13/81/23e395a4f3d0f4c92112bf0e84ed07ef025d1fb19905151cf5239620b306/mammoth-1.0.3.tar.gz"
            }
        ],
        "1.0.4": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "212303a73dc60762338b36281a15cf0b",
                    "sha256": "759dd1cbcb208e6828af9075a86a35c5c384f5397e6b76a2966913a655b26836"
                },
                "downloads": -1,
                "filename": "mammoth-1.0.4-py2.py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "212303a73dc60762338b36281a15cf0b",
                "packagetype": "bdist_wheel",
                "python_version": "2.7",
                "requires_python": null,
                "size": 39213,
                "upload_time": "2016-06-20T18:37:29",
                "url": "https://files.pythonhosted.org/packages/28/05/79195d371aeeea7b1d3bf2e94b8f5125a3184428f8b3608ed6293eb486ac/mammoth-1.0.4-py2.py3-none-any.whl"
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "2a31a7d6995e91d1a66f78fd8e45e17c",
                    "sha256": "3b763ba49c774fa66c4c04afe4cdce33f1e25bc8b49bdd7776a8585952c6bd51"
                },
                "downloads": -1,
                "filename": "mammoth-1.0.4.tar.gz",
                "has_sig": false,
                "md5_digest": "2a31a7d6995e91d1a66f78fd8e45e17c",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 30679,
                "upload_time": "2016-06-20T18:37:24",
                "url": "https://files.pythonhosted.org/packages/78/56/c987a1610af0d8a4ba5729b5f7e13630abc9016596d0f1e213cf482462c5/mammoth-1.0.4.tar.gz"
            }
        ],
        "1.1.0": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "070c8a623d9327fd5ef9a4a2afef3242",
                    "sha256": "7e5d8d8d481f4096176ac4c44a6fcbadbf2c7ace40cc408f55a7da13391b60e4"
                },
                "downloads": -1,
                "filename": "mammoth-1.1.0-py2.py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "070c8a623d9327fd5ef9a4a2afef3242",
                "packagetype": "bdist_wheel",
                "python_version": "2.7",
                "requires_python": null,
                "size": 40719,
                "upload_time": "2016-07-03T14:49:33",
                "url": "https://files.pythonhosted.org/packages/90/e4/e28b8ac8c766ad894a3a63bb8a694c7958cd2fb9e67729f913fc35d65c2c/mammoth-1.1.0-py2.py3-none-any.whl"
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "c5edc4997c34bd2cbe73728b9e6f776d",
                    "sha256": "1834fde4a6478214bca8c05d3d162f0aa13094770742bcc73baa84022e823146"
                },
                "downloads": -1,
                "filename": "mammoth-1.1.0.tar.gz",
                "has_sig": false,
                "md5_digest": "c5edc4997c34bd2cbe73728b9e6f776d",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 31947,
                "upload_time": "2016-07-03T14:49:28",
                "url": "https://files.pythonhosted.org/packages/ba/95/14fea0426f6eb9ce55d31eb36e3e93405eff2784039ef94616c37ede4156/mammoth-1.1.0.tar.gz"
            }
        ],
        "1.1.1": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "ca7598077ab3ce73f4b16acfa02d04bb",
                    "sha256": "8bbdb3089b14437c3267d3f52b030dd929fae29f0d4a980c77c5af42284403df"
                },
                "downloads": -1,
                "filename": "mammoth-1.1.1-py2.py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "ca7598077ab3ce73f4b16acfa02d04bb",
                "packagetype": "bdist_wheel",
                "python_version": "2.7",
                "requires_python": null,
                "size": 40674,
                "upload_time": "2016-07-07T21:37:50",
                "url": "https://files.pythonhosted.org/packages/de/61/990ba206e4055a1729fdc8136a8ba7882a35282dd6f302129bde0100c3ec/mammoth-1.1.1-py2.py3-none-any.whl"
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "b60274294b7b356d94dc5bb44078d18b",
                    "sha256": "cd54e52d14741beeeb8945e68a33718291a105b244df79d2771f9e5174e348bc"
                },
                "downloads": -1,
                "filename": "mammoth-1.1.1.tar.gz",
                "has_sig": false,
                "md5_digest": "b60274294b7b356d94dc5bb44078d18b",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 31916,
                "upload_time": "2016-07-07T21:37:46",
                "url": "https://files.pythonhosted.org/packages/15/ba/5f58b9f9de5f47c639a71cb6704662ae5ceb487609c5afa8f131b0b4aacf/mammoth-1.1.1.tar.gz"
            }
        ],
        "1.2.0": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "33782a41fc275dcc1bd9c65fd95e44a5",
                    "sha256": "1898ff7c160bf2e27629d03c2c31194f1c5167085eac4e6e6cca1eec9910f0d2"
                },
                "downloads": -1,
                "filename": "mammoth-1.2.0-py2.py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "33782a41fc275dcc1bd9c65fd95e44a5",
                "packagetype": "bdist_wheel",
                "python_version": "2.7",
                "requires_python": null,
                "size": 40696,
                "upload_time": "2016-09-02T22:28:13",
                "url": "https://files.pythonhosted.org/packages/2a/65/507bf7ebc2a3a4e2134da329033fed80660c467fa33c63f92320ea0bfb0d/mammoth-1.2.0-py2.py3-none-any.whl"
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "ce7c9ccc7c04d4ccb3dce3626c6aa532",
                    "sha256": "71d7a87348596362b59b399fb5ef7f92e8f7419fd020ca9299f1f243af1448a6"
                },
                "downloads": -1,
                "filename": "mammoth-1.2.0.tar.gz",
                "has_sig": false,
                "md5_digest": "ce7c9ccc7c04d4ccb3dce3626c6aa532",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 31946,
                "upload_time": "2016-09-02T22:28:10",
                "url": "https://files.pythonhosted.org/packages/21/d0/e4ca16b8a06d13a20f3a132c3e6d0d56c75156938f7b50526076c5a76c71/mammoth-1.2.0.tar.gz"
            }
        ],
        "1.2.1": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "44719f3b6e8a99315b3d91ea71200939",
                    "sha256": "b5626946ec78a1d9b5297199ff87f4c6978f0bb84752371f778fdc480e9cd65e"
                },
                "downloads": -1,
                "filename": "mammoth-1.2.1-py2.py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "44719f3b6e8a99315b3d91ea71200939",
                "packagetype": "bdist_wheel",
                "python_version": "2.7",
                "requires_python": null,
                "size": 40726,
                "upload_time": "2016-10-02T11:29:14",
                "url": "https://files.pythonhosted.org/packages/08/2e/3f226895731139d83290f0732c15929fe75c20c0d8d20ad9a84f48ba040a/mammoth-1.2.1-py2.py3-none-any.whl"
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "b7bd2b1f87b123c0ec378c6afd84fc5c",
                    "sha256": "2e4e52a225d70a7291a8825761951e337678e83de85cb992dfacd06e7d352c47"
                },
                "downloads": -1,
                "filename": "mammoth-1.2.1.tar.gz",
                "has_sig": false,
                "md5_digest": "b7bd2b1f87b123c0ec378c6afd84fc5c",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 31993,
                "upload_time": "2016-10-02T11:29:12",
                "url": "https://files.pythonhosted.org/packages/5b/81/bac6807b051ab85165de3d2aa2a5ee227a7e0e3f40f989536881731fbae2/mammoth-1.2.1.tar.gz"
            }
        ],
        "1.2.2": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "070c159f70d34b2abc76f5151a2d0b1e",
                    "sha256": "b7d3530c2a114b1b6927d4918695b2f9556c49ae106f7f0d026030290d8febe6"
                },
                "downloads": -1,
                "filename": "mammoth-1.2.2-py2.py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "070c159f70d34b2abc76f5151a2d0b1e",
                "packagetype": "bdist_wheel",
                "python_version": "2.7",
                "requires_python": null,
                "size": 40766,
                "upload_time": "2016-10-04T21:15:04",
                "url": "https://files.pythonhosted.org/packages/29/95/bb57cee409b1f7898d09db0fba29df7e9f8740f1466eed0053c12e37b8bf/mammoth-1.2.2-py2.py3-none-any.whl"
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "34f6af00e79b11809395d45f1dd00d21",
                    "sha256": "471b84e3a9ca49e8871d2f8179cb18008d9a883778e527d7e6b72126189a876d"
                },
                "downloads": -1,
                "filename": "mammoth-1.2.2.tar.gz",
                "has_sig": false,
                "md5_digest": "34f6af00e79b11809395d45f1dd00d21",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 32013,
                "upload_time": "2016-10-04T21:15:01",
                "url": "https://files.pythonhosted.org/packages/02/ac/021c07036692dc8bf9c531b1d2131dfabdf58834ba1ac33720d31423f38f/mammoth-1.2.2.tar.gz"
            }
        ],
        "1.3.0": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "62bf21cd0ee58b413b7b5b4374b80a69",
                    "sha256": "2e9882a734a8618dc042c40d9eb43d92ee1ba6ea7c3a71fc3c3cd628d7833df7"
                },
                "downloads": -1,
                "filename": "mammoth-1.3.0-py2.py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "62bf21cd0ee58b413b7b5b4374b80a69",
                "packagetype": "bdist_wheel",
                "python_version": "2.7",
                "requires_python": null,
                "size": 46619,
                "upload_time": "2016-11-29T22:29:24",
                "url": "https://files.pythonhosted.org/packages/2a/ed/eb837d39efb556544de2a2210b23277f419e990314dfd6cbc574cd1b1f7f/mammoth-1.3.0-py2.py3-none-any.whl"
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "ae2b3065b96efff648c79c4063dfaa2a",
                    "sha256": "6a290320da3b0a64cfa6ce13459e6a02c5abb968bf4d7ceeee0861ed07eb2c47"
                },
                "downloads": -1,
                "filename": "mammoth-1.3.0.tar.gz",
                "has_sig": false,
                "md5_digest": "ae2b3065b96efff648c79c4063dfaa2a",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 34022,
                "upload_time": "2016-11-29T22:29:21",
                "url": "https://files.pythonhosted.org/packages/fe/5f/7e751b65c8a05d6a2cfe80940db35d3cf172217c2bf922302032d2cd364e/mammoth-1.3.0.tar.gz"
            }
        ],
        "1.3.1": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "7fb99d384a79d08b0547d8b9af04c9ed",
                    "sha256": "55e267b7237086b3e0accfabbb6cb4855814fa80e9dbff9112f6e36d9b902a23"
                },
                "downloads": -1,
                "filename": "mammoth-1.3.1-py2.py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "7fb99d384a79d08b0547d8b9af04c9ed",
                "packagetype": "bdist_wheel",
                "python_version": "2.7",
                "requires_python": null,
                "size": 47012,
                "upload_time": "2017-01-23T20:30:41",
                "url": "https://files.pythonhosted.org/packages/d2/50/135608be537f75bbf37ea96fc091817b7d0a4c56ddc9ec118c5f50600dd7/mammoth-1.3.1-py2.py3-none-any.whl"
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "1acdea5322e93c6280278b312ecdf125",
                    "sha256": "29ef7bd2931b51ea54d8f65825dba1f7fa80bf69d40671a49abf5f099e729003"
                },
                "downloads": -1,
                "filename": "mammoth-1.3.1.tar.gz",
                "has_sig": false,
                "md5_digest": "1acdea5322e93c6280278b312ecdf125",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 34394,
                "upload_time": "2017-01-23T20:30:39",
                "url": "https://files.pythonhosted.org/packages/a6/43/8d2408ad4eff3246309403dd60a25cb8f2ce6beb3232a36a5ac174ec39bc/mammoth-1.3.1.tar.gz"
            }
        ],
        "1.3.2": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "5b60d751b9493bf213d570eb3ba2753b",
                    "sha256": "8e94cc753827ef5d899b4d28946f3afa7482db7a0ccb00e560fb9cb012fa9eed"
                },
                "downloads": -1,
                "filename": "mammoth-1.3.2-py2.py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "5b60d751b9493bf213d570eb3ba2753b",
                "packagetype": "bdist_wheel",
                "python_version": "2.7",
                "requires_python": null,
                "size": 47839,
                "upload_time": "2017-02-21T20:47:28",
                "url": "https://files.pythonhosted.org/packages/45/88/b6ac047f36d0be5ce9f69493d3cdd91daa27f342fdbba92de86b9f701295/mammoth-1.3.2-py2.py3-none-any.whl"
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "91dc06fc4aafbfc04b3b1d9d9b707e04",
                    "sha256": "71e06282256830e4cfe32f87e65d02ab4184902b781d271170bbd797d68c5dbf"
                },
                "downloads": -1,
                "filename": "mammoth-1.3.2.tar.gz",
                "has_sig": false,
                "md5_digest": "91dc06fc4aafbfc04b3b1d9d9b707e04",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 34901,
                "upload_time": "2017-02-21T20:47:26",
                "url": "https://files.pythonhosted.org/packages/37/e0/be77c9af1bad7f8bdebce41e92c4664237b50550b75908e6fb2a1ef2858e/mammoth-1.3.2.tar.gz"
            }
        ],
        "1.3.3": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "3048c02cdbe5fea97692255f56f92752",
                    "sha256": "3ed375791275a26eaedbed682022b69ae2ff718faf4b31d1dd1ba4192a53c1ee"
                },
                "downloads": -1,
                "filename": "mammoth-1.3.3-py2.py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "3048c02cdbe5fea97692255f56f92752",
                "packagetype": "bdist_wheel",
                "python_version": "2.7",
                "requires_python": null,
                "size": 47296,
                "upload_time": "2017-04-04T16:55:36",
                "url": "https://files.pythonhosted.org/packages/e0/a2/95bdd7f245727a92f6a1ccaf16f451e1cb9b0fd0e2211200ce372457f496/mammoth-1.3.3-py2.py3-none-any.whl"
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "2412a9b50dab26dbc8733587a4846bc3",
                    "sha256": "c1683523022996de6cc8afad54eeeb70bf84ef24601bf66e281ca80da81a19fd"
                },
                "downloads": -1,
                "filename": "mammoth-1.3.3.tar.gz",
                "has_sig": false,
                "md5_digest": "2412a9b50dab26dbc8733587a4846bc3",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 36342,
                "upload_time": "2017-04-04T16:55:34",
                "url": "https://files.pythonhosted.org/packages/61/33/8a5c825287a117e8d93aafd36b752a0525f123214fa229a82d539606686e/mammoth-1.3.3.tar.gz"
            }
        ],
        "1.3.4": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "5198a2e52047d69fce9df47804502f0f",
                    "sha256": "d42123bf6d1983d79cbd20d304323577302a5aab8afe276fe45bacf6815ac07a"
                },
                "downloads": -1,
                "filename": "mammoth-1.3.4-py2.py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "5198a2e52047d69fce9df47804502f0f",
                "packagetype": "bdist_wheel",
                "python_version": "2.7",
                "requires_python": null,
                "size": 49960,
                "upload_time": "2017-04-12T22:25:18",
                "url": "https://files.pythonhosted.org/packages/6b/cb/4aca18c516eedaf8f45a8715dc07fbe0ebfbae2c564f585f37b5f6f92f53/mammoth-1.3.4-py2.py3-none-any.whl"
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "63601a4b8965b7ac117d72df1e5a8205",
                    "sha256": "52a53e3c45057ea65d85bb3aa089d62c8638cad66059e5c8db686852500b3f20"
                },
                "downloads": -1,
                "filename": "mammoth-1.3.4.tar.gz",
                "has_sig": false,
                "md5_digest": "63601a4b8965b7ac117d72df1e5a8205",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 37078,
                "upload_time": "2017-04-12T22:25:15",
                "url": "https://files.pythonhosted.org/packages/c8/1d/f4ec54a80456e129891c754ab37d82d38539d3a7d11a410f4fb691e1422d/mammoth-1.3.4.tar.gz"
            }
        ],
        "1.3.5": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "b4bb96e0c7b7653b02c44a4dd678863c",
                    "sha256": "0feb31314e0fb3a356ef1ec8d9375f9cf52ca5ced0e643dccb5a43dcc0aa60cf"
                },
                "downloads": -1,
                "filename": "mammoth-1.3.5-py2.py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "b4bb96e0c7b7653b02c44a4dd678863c",
                "packagetype": "bdist_wheel",
                "python_version": "2.7",
                "requires_python": null,
                "size": 49964,
                "upload_time": "2017-04-22T14:58:17",
                "url": "https://files.pythonhosted.org/packages/2f/bb/e29bada9a0935c4455f1c245a8660cdb42597efef7620616916769df1582/mammoth-1.3.5-py2.py3-none-any.whl"
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "715ef8e39d9ae6891001a9202b521c91",
                    "sha256": "322e7f200a9c756139755c3087ac73d65e7cd3121a3e76f39fee70304e7e6b46"
                },
                "downloads": -1,
                "filename": "mammoth-1.3.5.tar.gz",
                "has_sig": false,
                "md5_digest": "715ef8e39d9ae6891001a9202b521c91",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 37079,
                "upload_time": "2017-04-22T14:58:15",
                "url": "https://files.pythonhosted.org/packages/74/21/1bb7f1cbf77fae7ebfa9dedaa532adff3d860e15ee95d25a301675bc74cd/mammoth-1.3.5.tar.gz"
            }
        ],
        "1.4.0": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "d9582d4be1e07fa21cc23ada04951a95",
                    "sha256": "e69c31814ad4fba882aefb90e6be0e1ac9e4f1543464d9d55cfd08040c6ed0d9"
                },
                "downloads": -1,
                "filename": "mammoth-1.4.0-py2.py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "d9582d4be1e07fa21cc23ada04951a95",
                "packagetype": "bdist_wheel",
                "python_version": "2.7",
                "requires_python": null,
                "size": 51207,
                "upload_time": "2017-05-30T11:02:50",
                "url": "https://files.pythonhosted.org/packages/4b/90/86f5c8992b843af5a1fe724d0c8b6acc75357526c51dd01e4173ebe8a141/mammoth-1.4.0-py2.py3-none-any.whl"
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "38c4f0bba9e60dfe9b3f3b4d96ab10de",
                    "sha256": "23f0a3c0e507681dd6e724238220a2bb303111bda3abfb8e26fdf3bf84e21f1f"
                },
                "downloads": -1,
                "filename": "mammoth-1.4.0.tar.gz",
                "has_sig": false,
                "md5_digest": "38c4f0bba9e60dfe9b3f3b4d96ab10de",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 38223,
                "upload_time": "2017-05-30T11:02:47",
                "url": "https://files.pythonhosted.org/packages/a1/c8/bce9aee4da4c0fd7896881a397628e9abc979e7d64b1d2650e78c3bad6b2/mammoth-1.4.0.tar.gz"
            }
        ],
        "1.4.1": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "9bd8bc11d6a1f2e805023483f1b09fbd",
                    "sha256": "465231df3dafb0b034524c5c0a1e4c0b2d3b3f23bba30e4e1fec961923ecb103"
                },
                "downloads": -1,
                "filename": "mammoth-1.4.1-py2.py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "9bd8bc11d6a1f2e805023483f1b09fbd",
                "packagetype": "bdist_wheel",
                "python_version": "2.7",
                "requires_python": null,
                "size": 51293,
                "upload_time": "2017-06-08T18:59:40",
                "url": "https://files.pythonhosted.org/packages/ea/83/c7a027bcfead3f9dc34ab2d3481fe34aa644fd27f758672276272942c333/mammoth-1.4.1-py2.py3-none-any.whl"
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "770f74f99a75de1ae6fc2ddda1460440",
                    "sha256": "ae2b48c479595e76b2c5b4184e3ddd63123614f40a41cf9687984bcf45fd16c1"
                },
                "downloads": -1,
                "filename": "mammoth-1.4.1.tar.gz",
                "has_sig": false,
                "md5_digest": "770f74f99a75de1ae6fc2ddda1460440",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 38310,
                "upload_time": "2017-06-08T18:59:38",
                "url": "https://files.pythonhosted.org/packages/c0/7b/a8d8a7aad5e9618108cadec5c240db576418eeaac64ef9f13827cab4dbc4/mammoth-1.4.1.tar.gz"
            }
        ],
        "1.4.2": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "effd3c456b8aa98f431069bc5fa0aab6",
                    "sha256": "dc4d76fa81f2324bcf4f2bd6a91bf0a48183f38c62a00a1b656ee9ee37a9ae18"
                },
                "downloads": -1,
                "filename": "mammoth-1.4.2-py2.py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "effd3c456b8aa98f431069bc5fa0aab6",
                "packagetype": "bdist_wheel",
                "python_version": "2.7",
                "requires_python": null,
                "size": 51297,
                "upload_time": "2017-07-14T21:03:50",
                "url": "https://files.pythonhosted.org/packages/6c/b9/aa9f758137c7f361210ac2106cc8f9d1ecf5a226a09a02c1c772c9a0cc08/mammoth-1.4.2-py2.py3-none-any.whl"
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "4433f2aaf1162d9ce971fabed519d545",
                    "sha256": "7191ea06aee2da99a531ee568dcd9056920efceb886bfdc71fbd42b8d17fd63f"
                },
                "downloads": -1,
                "filename": "mammoth-1.4.2.tar.gz",
                "has_sig": false,
                "md5_digest": "4433f2aaf1162d9ce971fabed519d545",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 38310,
                "upload_time": "2017-07-14T21:03:48",
                "url": "https://files.pythonhosted.org/packages/3a/e7/ea9bd31322150d42745f209221d9895424c844247d362e1cd76ac802b229/mammoth-1.4.2.tar.gz"
            }
        ],
        "1.4.3": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "32e2c8a168b91f59ec3fa55642d94a8e",
                    "sha256": "f3e639a623aa8913263e369d1acf9fd6eed92d3fbee702182980619d53f79406"
                },
                "downloads": -1,
                "filename": "mammoth-1.4.3-py2.py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "32e2c8a168b91f59ec3fa55642d94a8e",
                "packagetype": "bdist_wheel",
                "python_version": "2.7",
                "requires_python": null,
                "size": 51446,
                "upload_time": "2017-11-04T11:46:19",
                "url": "https://files.pythonhosted.org/packages/f7/ce/31c44ec3160e4cc2cae48842e06dc5547bd3ef9f55dc7d6727440fc2ea89/mammoth-1.4.3-py2.py3-none-any.whl"
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "8a380292ccd208144f343ad212e5625b",
                    "sha256": "4571f88bce82eaee26600302c9ebb4137da44cbfe0f97b70e1a0d6c2145bad06"
                },
                "downloads": -1,
                "filename": "mammoth-1.4.3.tar.gz",
                "has_sig": false,
                "md5_digest": "8a380292ccd208144f343ad212e5625b",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 38607,
                "upload_time": "2017-11-04T11:46:17",
                "url": "https://files.pythonhosted.org/packages/6b/86/452af6cba9743a408d7588f1a31895ec7c1b9c74d0a20fde43fe071859a8/mammoth-1.4.3.tar.gz"
            }
        ],
        "1.4.4": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "44c75b7dbef0cb3157828cb8f6ebe57c",
                    "sha256": "3e5b6bbd9bd8b25bfc204d73b0257ce86e592e5d2173ae3144e2d3a37fe9c7c2"
                },
                "downloads": -1,
                "filename": "mammoth-1.4.4-py2.py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "44c75b7dbef0cb3157828cb8f6ebe57c",
                "packagetype": "bdist_wheel",
                "python_version": "py2.py3",
                "requires_python": null,
                "size": 52558,
                "upload_time": "2018-01-27T17:56:56",
                "url": "https://files.pythonhosted.org/packages/a3/99/2cd00df8336775d0b4cd22008a100fa8ad8e353a6c1536af5eedf957c0f8/mammoth-1.4.4-py2.py3-none-any.whl"
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "03a8dec4e806c0b3e180c1ce2861156e",
                    "sha256": "162696d0cac88ee173f64e380fda13789b99d802f3661490c4881cb6aa3a86ed"
                },
                "downloads": -1,
                "filename": "mammoth-1.4.4.tar.gz",
                "has_sig": false,
                "md5_digest": "03a8dec4e806c0b3e180c1ce2861156e",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 39580,
                "upload_time": "2018-01-27T17:56:57",
                "url": "https://files.pythonhosted.org/packages/3f/47/bfebeee9af710a3579ba0cd3f0bc0670642010b5ac282c525355186bd623/mammoth-1.4.4.tar.gz"
            }
        ],
        "1.4.5": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "b834a79eb7d4bf0776634a3e01eae96f",
                    "sha256": "3bc31115f4f30896554d569704ce2a38b4a6df00bb6215972277e3d31dcf2049"
                },
                "downloads": -1,
                "filename": "mammoth-1.4.5-py2.py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "b834a79eb7d4bf0776634a3e01eae96f",
                "packagetype": "bdist_wheel",
                "python_version": "py2.py3",
                "requires_python": null,
                "size": 52567,
                "upload_time": "2018-04-02T09:04:24",
                "url": "https://files.pythonhosted.org/packages/4d/94/38d6b739ef76e45e1eb7bf9f16c5570315bd3678626a51c88ec4ccfdf9a6/mammoth-1.4.5-py2.py3-none-any.whl"
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "7b6771511a70fa11a51df11cbc9e5536",
                    "sha256": "7d1ad886f1ce1ca983eb202dc1bbf18862003a06975162ebf704010b3f4fa9fe"
                },
                "downloads": -1,
                "filename": "mammoth-1.4.5.tar.gz",
                "has_sig": false,
                "md5_digest": "7b6771511a70fa11a51df11cbc9e5536",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 39595,
                "upload_time": "2018-04-02T09:04:25",
                "url": "https://files.pythonhosted.org/packages/36/fd/a88bd721869f8455b9e11743ad629d8af28777d08e5246abf4cabbb316fb/mammoth-1.4.5.tar.gz"
            }
        ],
        "1.4.6": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "5805e1b58d7a9f0c2c3ff609e26a6d9b",
                    "sha256": "3ea42f2f6269ec6ebca99ebd8187063a894dc93b1354e517009bf134ca918445"
                },
                "downloads": -1,
                "filename": "mammoth-1.4.6-py2.py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "5805e1b58d7a9f0c2c3ff609e26a6d9b",
                "packagetype": "bdist_wheel",
                "python_version": "py2.py3",
                "requires_python": null,
                "size": 52569,
                "upload_time": "2018-05-12T17:35:05",
                "url": "https://files.pythonhosted.org/packages/db/7e/11d4489242199445bd3c139eb0d5d7b8753f5f3ad3a78f6dbf9aaa1df5c9/mammoth-1.4.6-py2.py3-none-any.whl"
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "7e62c37b80bafa26c87003147a942663",
                    "sha256": "a92b3c40cab445b933e8239f9655d96c6f4bff50e6787b233b7f2387e7f7393b"
                },
                "downloads": -1,
                "filename": "mammoth-1.4.6.tar.gz",
                "has_sig": false,
                "md5_digest": "7e62c37b80bafa26c87003147a942663",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 39585,
                "upload_time": "2018-05-12T17:35:06",
                "url": "https://files.pythonhosted.org/packages/3a/05/dac4bbe56e7f1d3cc168d5c44d9526ed3737be57aaf3d88d00c647de50c7/mammoth-1.4.6.tar.gz"
            }
        ],
        "1.4.7": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "e99ea9636b72872c5a666ecf3287c1e3",
                    "sha256": "7d838d6329bc72f709c5836b4431560577d78ccfeaaf4a16c47a921fff5f25c4"
                },
                "downloads": -1,
                "filename": "mammoth-1.4.7-py2.py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "e99ea9636b72872c5a666ecf3287c1e3",
                "packagetype": "bdist_wheel",
                "python_version": "2.7",
                "requires_python": null,
                "size": 52522,
                "upload_time": "2018-11-02T20:13:48",
                "url": "https://files.pythonhosted.org/packages/ba/c4/b948c028cc2ccdb3e9475c4993a38b26e3aea11faead251fd8d59edf1029/mammoth-1.4.7-py2.py3-none-any.whl"
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "6848772e84fe641dde9c7fa4250aed59",
                    "sha256": "f9995d23313966271a2b7c23ab09d6208049adc627cd285b02c7489085d1eb8e"
                },
                "downloads": -1,
                "filename": "mammoth-1.4.7.tar.gz",
                "has_sig": false,
                "md5_digest": "6848772e84fe641dde9c7fa4250aed59",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 39194,
                "upload_time": "2018-11-02T20:13:46",
                "url": "https://files.pythonhosted.org/packages/0f/42/a062fd8e937010fb6a3fd430d5f29b75e59071fc7420cc389595fcfab05f/mammoth-1.4.7.tar.gz"
            }
        ],
        "1.4.8": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "34246a36cb75d1918dfc9c7e730d8c05",
                    "sha256": "da27b336a70f051f54074cb8d49eeaa495c3d2b918511e294a06e35b87d6b424"
                },
                "downloads": -1,
                "filename": "mammoth-1.4.8-py2.py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "34246a36cb75d1918dfc9c7e730d8c05",
                "packagetype": "bdist_wheel",
                "python_version": "2.7",
                "requires_python": null,
                "size": 52500,
                "upload_time": "2019-01-27T09:41:19",
                "url": "https://files.pythonhosted.org/packages/e1/14/79096cb3c7e0b09791db08a523f4395873f97e4d3dd43f334f54b19c9978/mammoth-1.4.8-py2.py3-none-any.whl"
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "91e5f1b3339a6522a7717b2aef3a3ecd",
                    "sha256": "ea818611a421dc0f730f1359085b1a5f0533b1fc6f022482291c844917ea8e95"
                },
                "downloads": -1,
                "filename": "mammoth-1.4.8.tar.gz",
                "has_sig": false,
                "md5_digest": "91e5f1b3339a6522a7717b2aef3a3ecd",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 39193,
                "upload_time": "2019-01-27T09:41:17",
                "url": "https://files.pythonhosted.org/packages/52/d6/30c4264f921050f7af861597b85aea921a1d00068c05ec9eb601e11ed936/mammoth-1.4.8.tar.gz"
            }
        ],
        "1.4.9": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "a65b58094e22cdd10c94be9ad4b700ad",
                    "sha256": "7479ce976f9fdf4d2acfa8197a1d850288266145dd9665ae7d51035f370cd3ad"
                },
                "downloads": -1,
                "filename": "mammoth-1.4.9-py2.py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "a65b58094e22cdd10c94be9ad4b700ad",
                "packagetype": "bdist_wheel",
                "python_version": "2.7",
                "requires_python": null,
                "size": 52910,
                "upload_time": "2019-03-17T21:46:14",
                "url": "https://files.pythonhosted.org/packages/0d/eb/849d240a33911f50ab4029fdf3771e1f09d89c17f32c5149f127a55056fb/mammoth-1.4.9-py2.py3-none-any.whl"
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "90eedb85b63fb3febce63a22f7dfe09b",
                    "sha256": "35763b4323c626ab4f3365c440b2b9e8225d699a8b6aa786c69eaaadcc76f10f"
                },
                "downloads": -1,
                "filename": "mammoth-1.4.9.tar.gz",
                "has_sig": false,
                "md5_digest": "90eedb85b63fb3febce63a22f7dfe09b",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 39535,
                "upload_time": "2019-03-17T21:46:12",
                "url": "https://files.pythonhosted.org/packages/76/67/b69b104c858db5d5db856f48373310a21f666f88273557faeb5bc29c04d2/mammoth-1.4.9.tar.gz"
            }
        ]
    },
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "a65b58094e22cdd10c94be9ad4b700ad",
                "sha256": "7479ce976f9fdf4d2acfa8197a1d850288266145dd9665ae7d51035f370cd3ad"
            },
            "downloads": -1,
            "filename": "mammoth-1.4.9-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a65b58094e22cdd10c94be9ad4b700ad",
            "packagetype": "bdist_wheel",
            "python_version": "2.7",
            "requires_python": null,
            "size": 52910,
            "upload_time": "2019-03-17T21:46:14",
            "url": "https://files.pythonhosted.org/packages/0d/eb/849d240a33911f50ab4029fdf3771e1f09d89c17f32c5149f127a55056fb/mammoth-1.4.9-py2.py3-none-any.whl"
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "90eedb85b63fb3febce63a22f7dfe09b",
                "sha256": "35763b4323c626ab4f3365c440b2b9e8225d699a8b6aa786c69eaaadcc76f10f"
            },
            "downloads": -1,
            "filename": "mammoth-1.4.9.tar.gz",
            "has_sig": false,
            "md5_digest": "90eedb85b63fb3febce63a22f7dfe09b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 39535,
            "upload_time": "2019-03-17T21:46:12",
            "url": "https://files.pythonhosted.org/packages/76/67/b69b104c858db5d5db856f48373310a21f666f88273557faeb5bc29c04d2/mammoth-1.4.9.tar.gz"
        }
    ]
}