{ "info": { "author": "Juho Veps\u00e4l\u00e4inen", "author_email": "bebraw@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: System Administrators", "License :: OSI Approved :: MIT License", "Operating System :: POSIX", "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.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Text Processing", "Topic :: Text Processing :: Filters" ], "description": "pypandoc\n========\n\n|Build Status| |Appveyor Build Status| |GitHub Releases| |PyPI version|\n|conda version| |Development Status| |Python version| |License|\n\nPypandoc provides a thin wrapper for `pandoc `__, a\nuniversal document converter.\n\nInstallation\n------------\n\nPypandoc uses pandoc, so it needs an available installation of pandoc.\nFor some common cases (wheels, conda packages), pypandoc already\nincludes pandoc (and pandoc-citeproc) in it's prebuilt package.\n\nIf pandoc is already installed (i.e. pandoc is in the ``PATH``),\npypandoc uses the version with the higher version number, and if both\nare the same, the already installed version. See `Specifying the\nlocation of pandoc\nbinaries <#specifying-the-location-of-pandoc-binaries>`__ for more.\n\nTo use pandoc filters, you must have the relevant filters installed on\nyour machine.\n\nInstalling via pip\n~~~~~~~~~~~~~~~~~~\n\nInstall via ``pip install pypandoc``.\n\nPrebuilt `wheels for Windows and Mac OS\nX `__ include pandoc. If there\nis no prebuilt binary available, you have to `install pandoc\nyourself <#installing-pandoc-manually>`__.\n\nIf you use Linux and have `your own\nwheelhouse `__, you can\nbuild a wheel which include pandoc with\n``python setup.py download_pandoc; python setup.py bdist_wheel``. Be\naware that this works only on 64bit intel systems, as we only download\nit from the `official\nreleases `__.\n\nInstalling via conda\n~~~~~~~~~~~~~~~~~~~~\n\nPypandoc is included in\n`conda-forge `__. The conda packages\nwill also install the pandoc package, so pandoc is available in the\ninstallation.\n\nInstall via ``conda install -c conda-forge pypandoc``.\n\nYou can also add the channel to your conda config via\n``conda config --add channels conda-forge``. This makes it possible to\nuse ``conda install pypandoc`` directly and also lets you update via\n``conda update pypandoc``.\n\nInstalling pandoc\n~~~~~~~~~~~~~~~~~\n\nIf you don't get pandoc installed via a prebuild wheel which includes\npandoc or via the conda package dependencies, you need to install pandoc\nby yourself.\n\nInstalling pandoc via pypandoc\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nInstalling via pypandoc is possible on Windows, Mac OS X or Linux\n(Intel-based, 64-bit):\n\n.. code:: python\n\n # expects an installed pypandoc: pip install pypandoc\n from pypandoc.pandoc_download import download_pandoc\n # see the documentation how to customize the installation path\n # but be aware that you then need to include it in the `PATH`\n download_pandoc()\n\nThe default install location is included in the search path for pandoc,\nso you don't need to add it to the ``PATH``.\n\nBy default, the latest pandoc version is installed. If you want to\nspecify your own version, say 1.19.1, use\n``download_pandoc(version='1.19.1')`` instead.\n\nInstalling pandoc manually\n^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nInstalling manually via the system mechanism is also possible. Such\ninstallation mechanism make pandoc available on many more platforms:\n\n- Ubuntu/Debian: ``sudo apt-get install pandoc``\n- Fedora/Red Hat: ``sudo yum install pandoc``\n- Arch: ``sudo pacman -S pandoc``\n- Mac OS X with Homebrew:\n ``brew install pandoc pandoc-citeproc Caskroom/cask/mactex``\n- Machine with Haskell: ``cabal-install pandoc``\n- Windows: There is an installer available\n `here `__\n- `FreeBSD port `__\n- Or see `Pandoc - Installing\n pandoc `__\n\nBe aware that not all install mechanisms put pandoc in the ``PATH``, so\nyou either have to change the ``PATH`` yourself or set the full ``PATH``\nto pandoc in ``PYPANDOC_PANDOC``. See the next section for more\ninformation.\n\nSpecifying the location of pandoc binaries\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nYou can point to a specific pandoc version by setting the environment\nvariable ``PYPANDOC_PANDOC`` to the full ``PATH`` to the pandoc binary\n(``PYPANDOC_PANDOC=/home/x/whatever/pandoc`` or\n``PYPANDOC_PANDOC=c:\\pandoc\\pandoc.exe``). If this environment variable\nis set, this is the only place where pandoc is searched for.\n\nIn certain cases, e.g. pandoc is installed but a web server with its own\nuser cannot find the binaries, it is useful to specify the location at\nruntime:\n\n.. code:: python\n\n import os\n os.environ.setdefault('PYPANDOC_PANDOC', '/home/x/whatever/pandoc')\n\nUsage\n-----\n\nThere are two basic ways to use pypandoc: with input files or with input\nstrings.\n\n.. code:: python\n\n import pypandoc\n\n # With an input file: it will infer the input format from the filename\n output = pypandoc.convert_file('somefile.md', 'rst')\n\n # ...but you can overwrite the format via the `format` argument:\n output = pypandoc.convert_file('somefile.txt', 'rst', format='md')\n\n # alternatively you could just pass some string. In this case you need to\n # define the input format:\n output = pypandoc.convert_text('#some title', 'rst', format='md')\n # output == 'some title\\r\\n==========\\r\\n\\r\\n'\n\n``convert_text`` expects this string to be unicode or utf-8 encoded\nbytes. ``convert_*`` will always return a unicode string.\n\nIt's also possible to directly let pandoc write the output to a file.\nThis is the only way to convert to some output formats (e.g. odt, docx,\nepub, epub3, pdf). In that case ``convert_*()`` will return an empty\nstring.\n\n.. code:: python\n\n import pypandoc\n\n output = pypandoc.convert_file('somefile.md', 'docx', outputfile=\"somefile.docx\")\n assert output == \"\"\n\nIn addition to ``format``, it is possible to pass ``extra_args``. That\nmakes it possible to access various pandoc options easily.\n\n.. code:: python\n\n output = pypandoc.convert_text(\n '

Primary Heading

',\n 'md', format='html',\n extra_args=['--atx-headers'])\n # output == '# Primary Heading\\r\\n'\n output = pypandoc.convert(\n '# Primary Heading',\n 'html', format='md',\n extra_args=['--base-header-level=2'])\n # output == '

Primary Heading

\\r\\n'\n\npypandoc now supports easy addition of `pandoc\nfilters `__.\n\n.. code:: python\n\n filters = ['pandoc-citeproc']\n pdoc_args = ['--mathjax',\n '--smart']\n output = pd.convert_file(source=filename,\n to='html5',\n format='md',\n extra_args=pdoc_args,\n filters=filters)\n\nPlease pass any filters in as a list and not as a string.\n\nPlease refer to ``pandoc -h`` and the `official\ndocumentation `__ for further details.\n\n Note: the old way of using ``convert(input, output)`` is deprecated\n as in some cases it wasn't possible to determine whether the input\n should be used as a filename or as text.\n\nDealing with Formatting Arguments\n---------------------------------\n\nPandoc supports custom formatting though ``-V`` parameter. In order to\nuse it through pypandoc, use code such as this:\n\n.. code:: python\n\n output = pypandoc.convert_file('demo.md', 'pdf', outputfile='demo.pdf',\n extra_args=['-V', 'geometry:margin=1.5cm'])\n\n Note: it's important to separate ``-V`` and its argument within a\n list like that or else it won't work. This gotcha has to do with the\n way\n ```subprocess.Popen`` `__\n works.\n\nGetting Pandoc Version\n----------------------\n\nAs it can be useful sometimes to check what pandoc version is available\nat your system or which particular pandoc binary is used by pypandoc.\nFor that, pypandoc provides the following utility functions. Example:\n\n::\n\n print(pypandoc.get_pandoc_version())\n print(pypandoc.get_pandoc_path())\n print(pypandoc.get_pandoc_formats())\n\nRelated\n-------\n\n- `pydocverter `__ is a client\n for a service called `Docverter `__, which\n offers pandoc as a service (plus some extra goodies).\n- See `pyandoc `__ for an\n alternative implementation of a pandoc wrapper from Kenneth Reitz.\n This one hasn't been active in a while though.\n- See `panflute `__ which\n provides ``convert_text`` similar to pypandoc's. Its focus is on\n writing and running pandoc filters though.\n\nContributing\n------------\n\nContributions are welcome. When opening a PR, please keep the following\nguidelines in mind:\n\n1. Before implementing, please open an issue for discussion.\n2. Make sure you have tests for the new logic.\n3. Make sure your code passes ``flake8 pypandoc/*.py tests.py``\n4. Add yourself to contributors at ``README.md`` unless you are already\n there. In that case tweak your contributions.\n\nNote that for citeproc tests to pass you'll need to have\n`pandoc-citeproc `__ installed.\nIf you installed a prebuilt wheel or conda package, it is already\nincluded.\n\nContributors\n------------\n\n- `Valentin Haenel `__ - String conversion fix\n- `Daniel Sanchez `__ - Automatic\n parsing of input/output formats\n- `Thomas G. `__ - Python 3 support\n- `Ben Jao Ming `__ - Fail gracefully if\n pandoc is missing\n- `Ross Crawford-d'Heureuse `__ - Encode\n input in UTF-8 and add Django example\n- `Michael Chow `__ - Decode output in UTF-8\n- `Janusz Skonieczny `__ - Support Windows\n newlines and allow encoding to be specified.\n- `gabeos `__ - Fix help parsing\n- `Marc Abramowitz `__ - Make ``setup.py``\n fail hard if pandoc is missing, Travis, Dockerfile, PyPI badge, Tox,\n PEP-8, improved documentation\n- `Daniel L. `__ - Add ``extra_args``\n example to README\n- `Amy Guy `__ - Exception handling for\n unicode errors\n- `Florian E\u00dfer `__ - Allow Markdown\n extensions in output format\n- `Philipp Wendler `__ - Allow\n Markdown extensions in input format\n- `Jan Schulz `__ - Handling output to a\n file, Travis to work on newer version of pandoc, return code\n checking, get\\_pandoc\\_version. Helped to fix the Travis build, new\n ``convert_*`` API\n- `Aaron Gonzales `__ - Added better filter\n handling\n- `David Lukes `__ - Enabled input from\n non-plain-text files and made sure tests clean up template files\n correctly if they fail\n- `valholl `__ - Set up licensing\n information correctly and include examples to distribution version\n- `Cyrille Rossant `__ - Fixed bug by\n trimming out stars in the list of pandoc formats. Helped to fix the\n Travis build.\n- `Paul Osborne `__ - Don't require pandoc\n to install pypandoc.\n- `Felix Yan `__ - Added installation\n instructions for Arch Linux.\n- `Kolen Cheung `__ - Implement\n ``_get_pandoc_urls`` for installing arbitrary version as well as the\n latest version of pandoc. Minor: README, Travis, setup.py.\n\nLicense\n-------\n\nPypandoc is available under MIT license. See LICENSE for more details.\nPandoc itself is `available under the GPL2\nlicense `__.\n\n.. |Build Status| image:: https://travis-ci.org/bebraw/pypandoc.svg?branch=master\n :target: https://travis-ci.org/bebraw/pypandoc\n.. |Appveyor Build Status| image:: https://ci.appveyor.com/api/projects/status/github/bebraw/pypandoc?svg=true\n :target: https://ci.appveyor.com/project/bebraw/pypandoc\n.. |GitHub Releases| image:: https://img.shields.io/github/tag/bebraw/pypandoc.svg?label=github+release\n :target: https://github.com/bebraw/pypandoc/releases\n.. |PyPI version| image:: https://badge.fury.io/py/pypandoc.svg\n :target: https://pypi.python.org/pypi/pypandoc/\n.. |conda version| image:: https://anaconda.org/conda-forge/pypandoc/badges/version.svg\n :target: https://anaconda.org/conda-forge/pypandoc/\n.. |Development Status| image:: https://img.shields.io/pypi/status/pypandoc.svg\n :target: https://pypi.python.org/pypi/pypandoc/\n.. |Python version| image:: https://img.shields.io/pypi/pyversions/pypandoc.svg\n :target: https://pypi.python.org/pypi/pypandoc/\n.. |License| image:: https://img.shields.io/pypi/l/pypandoc.svg", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/bebraw/pypandoc", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "pypandoc", "package_url": "https://pypi.org/project/pypandoc/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/pypandoc/", "project_urls": { "Homepage": "https://github.com/bebraw/pypandoc" }, "release_url": "https://pypi.org/project/pypandoc/1.4/", "requires_dist": null, "requires_python": "", "summary": "Thin wrapper for pandoc.", "version": "1.4" }, "last_serial": 2821567, "releases": { "0.5.0": [ { "comment_text": "", "digests": { "md5": "15c6aa27036c5b8030911adecdb55918", "sha256": "4770ebe8c0e9d4ea23eb9ce49cc22796e725d366cf6cb91dca53599ecdf8820d" }, "downloads": -1, "filename": "pypandoc-0.5.0.tar.gz", "has_sig": false, "md5_digest": "15c6aa27036c5b8030911adecdb55918", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3097, "upload_time": "2011-11-16T10:23:20", "url": "https://files.pythonhosted.org/packages/61/e5/964313e0aaecf7a4fb27c59caff1e06ec021b08d0f773fcd7aec819960be/pypandoc-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "348ffe714316256185dbf879bb1680c8", "sha256": "303de0aedfd0d895649a2a69d5ee5b4acef29bd895f002e54f71170310586759" }, "downloads": -1, "filename": "pypandoc-0.5.1.tar.gz", "has_sig": false, "md5_digest": "348ffe714316256185dbf879bb1680c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3012, "upload_time": "2012-10-14T19:22:24", "url": "https://files.pythonhosted.org/packages/1c/f3/6951df42c19b3c537b5124175de9a02201c48940d47c692fb36cca9401f5/pypandoc-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "ffb0ea1eb7d78f4f44726f03e5320bdd", "sha256": "175dc34b0b9df31cb51d8c960c8435ea89d6ae2c8108cc98bd66ae6038d5368d" }, "downloads": -1, "filename": "pypandoc-0.5.2.tar.gz", "has_sig": false, "md5_digest": "ffb0ea1eb7d78f4f44726f03e5320bdd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3247, "upload_time": "2013-05-28T15:01:56", "url": "https://files.pythonhosted.org/packages/b8/f0/39d9dc72a7344386be159fb0ef4584d8494048de4a401a3e7d2452070bb5/pypandoc-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "6e0a4b69409b87d1651ac77a075ecb8f", "sha256": "e3179da87b4f966cc54bb6232d7c3a59be143cccec382b0a9615706e5fa7994a" }, "downloads": -1, "filename": "pypandoc-0.5.3.tar.gz", "has_sig": false, "md5_digest": "6e0a4b69409b87d1651ac77a075ecb8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3308, "upload_time": "2013-06-05T12:28:01", "url": "https://files.pythonhosted.org/packages/97/b9/a6dc5010829ee1657f4edc9154fe66fde846e9384fc76c40343fcb97ba35/pypandoc-0.5.3.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "883eaf0c8bae78de2950ad251a95a1fc", "sha256": "b26fe53a425066a0997fc810dcdf26083e584d8652e0a189d8a7ee8dedafd031" }, "downloads": -1, "filename": "pypandoc-0.6.0.tar.gz", "has_sig": false, "md5_digest": "883eaf0c8bae78de2950ad251a95a1fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3429, "upload_time": "2013-06-26T08:02:08", "url": "https://files.pythonhosted.org/packages/75/65/f6912ebf89517b85e83cb3c52bd6566fb30cce08a3b527accd16296ae6a1/pypandoc-0.6.0.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "cb91a5743f3600b29415ae9a0847052d", "sha256": "a2ea07073e0857b2e8675f2b0809c0ac225f0f9209ed8e1e42aef5cd291be61d" }, "downloads": -1, "filename": "pypandoc-0.7.0.tar.gz", "has_sig": false, "md5_digest": "cb91a5743f3600b29415ae9a0847052d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3003, "upload_time": "2013-09-21T18:16:53", "url": "https://files.pythonhosted.org/packages/c2/08/29b56928230cff95bd1984aab4afb63a8d334cb903d1c6a8222e39fd9b2f/pypandoc-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "091a850c15379b7959a3333d0db501c0", "sha256": "e448bb88a839451b855ee21a4c79361267fe1b6a7a1520c8f3c8a759aa4b1dc5" }, "downloads": -1, "filename": "pypandoc-0.7.1.tar.gz", "has_sig": false, "md5_digest": "091a850c15379b7959a3333d0db501c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2833, "upload_time": "2014-01-11T10:59:37", "url": "https://files.pythonhosted.org/packages/79/b7/48a3074b97ba49650c9b17144c06b5ac09f283d59bb9fffd45af342f36f6/pypandoc-0.7.1.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "a052098aadfab18f3ace5d53703e471e", "sha256": "2840440b57f01a9b21d5ec4f8931dab74a314f9b31b10639b2cda07dc675436b" }, "downloads": -1, "filename": "pypandoc-0.8.0.tar.gz", "has_sig": false, "md5_digest": "a052098aadfab18f3ace5d53703e471e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3148, "upload_time": "2014-01-29T13:02:04", "url": "https://files.pythonhosted.org/packages/2a/f8/0ffc00a781b1fc5fa85b99ff0192b202a55e8cb3c382329be4b9c3daec1a/pypandoc-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "09616347442855fcd6cc8926e065f14b", "sha256": "0684d3a074ea191701d794c8a0497573da11439c06e9e4c6459ecd2d6826a7c6" }, "downloads": -1, "filename": "pypandoc-0.8.1.tar.gz", "has_sig": false, "md5_digest": "09616347442855fcd6cc8926e065f14b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3147, "upload_time": "2014-03-19T08:50:32", "url": "https://files.pythonhosted.org/packages/b5/26/1e665261fe697ded15bf18d14db2997121ecc308c958f0d3cbb3a0110c94/pypandoc-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "920b533a3a592e2a5473de923a94b048", "sha256": "0ae6fa97442883e9c457a4bcbea642a8d832791d1ec8e84e4aca528a10d78425" }, "downloads": -1, "filename": "pypandoc-0.8.2.tar.gz", "has_sig": false, "md5_digest": "920b533a3a592e2a5473de923a94b048", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3262, "upload_time": "2014-05-29T14:01:31", "url": "https://files.pythonhosted.org/packages/22/e8/498cce60306adcc0b693364054f63441119b086ad5aedd8bc34d13b425b2/pypandoc-0.8.2.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "9176072ac62c814151656a0a6bfad636", "sha256": "75d28fa4ace7918fe33e57c55b26aa423555c669d1cdb243d829c1b7650391e6" }, "downloads": -1, "filename": "pypandoc-0.8.3.tar.gz", "has_sig": false, "md5_digest": "9176072ac62c814151656a0a6bfad636", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3310, "upload_time": "2014-11-11T15:51:49", "url": "https://files.pythonhosted.org/packages/68/f9/13598ae1822399ef45847be74d5e27414611bea84372f7db28cee4bd7b82/pypandoc-0.8.3.tar.gz" } ], "0.8.4": [ { "comment_text": "", "digests": { "md5": "cc0c4515872e4ee4b6ea8bd8951ad716", "sha256": "b40441bf1e4b958b0805aee68e11aa86b362d0ba3e8cedebbb698223d4e63f00" }, "downloads": -1, "filename": "pypandoc-0.8.4.tar.gz", "has_sig": false, "md5_digest": "cc0c4515872e4ee4b6ea8bd8951ad716", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3758, "upload_time": "2014-11-30T13:17:07", "url": "https://files.pythonhosted.org/packages/4a/e6/7556eea517b009a8526dcd84e40005ecd6154f12819256d2b35cc0580c1c/pypandoc-0.8.4.tar.gz" } ], "0.8.5": [ { "comment_text": "", "digests": { "md5": "0814eed2b2d5d89f294a4ab6fdaf7b9b", "sha256": "c16975c21055e5a3b2eb16017aba8d9aef1f54ba79394e86eeaabbb381b53f4c" }, "downloads": -1, "filename": "pypandoc-0.8.5.tar.gz", "has_sig": false, "md5_digest": "0814eed2b2d5d89f294a4ab6fdaf7b9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3955, "upload_time": "2015-01-06T18:48:58", "url": "https://files.pythonhosted.org/packages/29/eb/36bcc24c70ea9fe148e360f6542203f6b8f1afe37107f8f4c2fe7c5ad083/pypandoc-0.8.5.tar.gz" } ], "0.8.6": [ { "comment_text": "", "digests": { "md5": "6b24b3171af082ea2533df6ea7b44845", "sha256": "35a2d02d1e231e3ec646152ca904885139e35e74f1c9a621a374d1a7f8d7e4c1" }, "downloads": -1, "filename": "pypandoc-0.8.6.tar.gz", "has_sig": false, "md5_digest": "6b24b3171af082ea2533df6ea7b44845", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4047, "upload_time": "2015-01-16T07:36:53", "url": "https://files.pythonhosted.org/packages/7c/1a/6d69ba0e2084ab4f477dbf6dd547d9ac1ffb5a0ecf3efe402c3502695a27/pypandoc-0.8.6.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "897063c8f85bb163dff65b03791cfd50", "sha256": "53b3e40af3a27180e475b9cc4a584d9d9e050466380632d2535e26277ab9841a" }, "downloads": -1, "filename": "pypandoc-0.9.0.tar.gz", "has_sig": false, "md5_digest": "897063c8f85bb163dff65b03791cfd50", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4468, "upload_time": "2015-02-03T12:19:24", "url": "https://files.pythonhosted.org/packages/ab/79/fd7901f754ce56979405c6092b8e7d4210c42ee2fdd5961bba9544d7665f/pypandoc-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "ba04b866ad975e528795bd091c01c938", "sha256": "2d9cf210db9703fa6174c7f2419eaef99fd32f2e7300a6d0245951173972956b" }, "downloads": -1, "filename": "pypandoc-0.9.1.tar.gz", "has_sig": false, "md5_digest": "ba04b866ad975e528795bd091c01c938", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4821, "upload_time": "2015-02-04T07:48:42", "url": "https://files.pythonhosted.org/packages/61/fc/39a445884a3d36679e44a6b0aef39866439517b427ed081fbd985a98f5c8/pypandoc-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "1d5ba30180d7a9e2c76cf92320488fcd", "sha256": "de816c1bd8d3b896c0944f980fe0a8775ac699b6bae1704783e6562ce5f3eb8f" }, "downloads": -1, "filename": "pypandoc-0.9.2.tar.gz", "has_sig": false, "md5_digest": "1d5ba30180d7a9e2c76cf92320488fcd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5040, "upload_time": "2015-02-25T10:26:08", "url": "https://files.pythonhosted.org/packages/61/46/818153d8b83a10eef6961dc191213fc41dfa7a8c4a3ef5a3c4ffc04bf610/pypandoc-0.9.2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "fb15bec33051fe8b0da7fa4bdccd560f", "sha256": "a2c79cc9bae4a80d83de1c43e11d81a75af4247213c4d38d5678f78eec4cd383" }, "downloads": -1, "filename": "pypandoc-0.9.3.tar.gz", "has_sig": false, "md5_digest": "fb15bec33051fe8b0da7fa4bdccd560f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5135, "upload_time": "2015-02-26T16:16:51", "url": "https://files.pythonhosted.org/packages/c9/ac/06114781f6f2e61f132b1c8e94c980d3fcfdb3fb0492a010b69ec69d472e/pypandoc-0.9.3.tar.gz" } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "4f5383383841065d1bba9f1fd59837fa", "sha256": "62b26faf83b54c523427495f1dab9d54e27ad7e45b09a9443d828c853474a692" }, "downloads": -1, "filename": "pypandoc-0.9.4.tar.gz", "has_sig": false, "md5_digest": "4f5383383841065d1bba9f1fd59837fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5796, "upload_time": "2015-03-09T17:58:29", "url": "https://files.pythonhosted.org/packages/d8/4e/4fe74ea6725e4fd3a39dfe4795d96a87551bf69c0e342d6fa745f08ae3c9/pypandoc-0.9.4.tar.gz" } ], "0.9.5": [ { "comment_text": "", "digests": { "md5": "ae0423ae6e41fcd391036d8200b16aa3", "sha256": "6d72190aa6f6333d4c46302fe2ee3996df383aa5f9975d344f2b842165ceb7eb" }, "downloads": -1, "filename": "pypandoc-0.9.5.tar.gz", "has_sig": false, "md5_digest": "ae0423ae6e41fcd391036d8200b16aa3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6205, "upload_time": "2015-03-11T07:22:03", "url": "https://files.pythonhosted.org/packages/8d/00/5cd0d750db53d9ce18d3bc5ddb36407495d292d49f3d968bd9b50e3c177f/pypandoc-0.9.5.tar.gz" } ], "0.9.6": [ { "comment_text": "", "digests": { "md5": "f46966a47df44165015c4e31e8b634b6", "sha256": "7f5d581ea4b7051a8aefd3571df6f4a7e00dbcf5e62386d293addf8f2040cb65" }, "downloads": -1, "filename": "pypandoc-0.9.6.tar.gz", "has_sig": false, "md5_digest": "f46966a47df44165015c4e31e8b634b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7334, "upload_time": "2015-03-20T09:57:58", "url": "https://files.pythonhosted.org/packages/e9/21/56aefe3cadff9ed3feb5b48c776faa90e2f555505d1973214d9211bf036c/pypandoc-0.9.6.tar.gz" } ], "0.9.7": [ { "comment_text": "", "digests": { "md5": "fa93749e5474c5164eceff02b4cbf6e8", "sha256": "1523ff1b9569215c850223155e470c04046469e4ea3e1ca2ace34a4958c6fc34" }, "downloads": -1, "filename": "pypandoc-0.9.7.tar.gz", "has_sig": false, "md5_digest": "fa93749e5474c5164eceff02b4cbf6e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7876, "upload_time": "2015-04-15T05:53:34", "url": "https://files.pythonhosted.org/packages/65/cb/f1eab51fd7c5030387cbdd3fe9c519803889fe75e7f26e95c6376cb4a356/pypandoc-0.9.7.tar.gz" } ], "0.9.8": [ { "comment_text": "", "digests": { "md5": "a314c1c0dc3471de9b14ad6fe411cf0c", "sha256": "83d92cb8daab5e5a73b81faa98055f85b1bb4f3fe17764343725027286b0c36a" }, "downloads": -1, "filename": "pypandoc-0.9.8.tar.gz", "has_sig": false, "md5_digest": "a314c1c0dc3471de9b14ad6fe411cf0c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8074, "upload_time": "2015-06-10T08:47:54", "url": "https://files.pythonhosted.org/packages/ad/dd/f4daa75ea42c8a72b91d0887cc4f88efb4f32da7ac1be6e9376464875e42/pypandoc-0.9.8.tar.gz" } ], "0.9.9": [ { "comment_text": "", "digests": { "md5": "cd9ba12f1e4540d94e2c328e79570e96", "sha256": "82b14ae04bab3e8db4c49d47ccc2a63f3a0fb9369b3671d8faedf219fb297095" }, "downloads": -1, "filename": "pypandoc-0.9.9.tar.gz", "has_sig": false, "md5_digest": "cd9ba12f1e4540d94e2c328e79570e96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8118, "upload_time": "2015-07-04T13:37:17", "url": "https://files.pythonhosted.org/packages/19/91/b0920d87fe3975dd7de3fbc165596127176a2aa333dc1b05dde1242c80be/pypandoc-0.9.9.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "987761416750c81c0bcb528a152b8215", "sha256": "f79e0ef001df2a2b3ea52aea3a9cb58f04ba20a553089fef55ce9a7e35fcef9e" }, "downloads": -1, "filename": "pypandoc-1.0.0.tar.gz", "has_sig": false, "md5_digest": "987761416750c81c0bcb528a152b8215", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9771, "upload_time": "2015-08-09T13:37:09", "url": "https://files.pythonhosted.org/packages/59/bf/1a017803fc78b2a6d0ea5ecec9f599ed4f7e98653f2a0a859d9410ab6e56/pypandoc-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "70d3ec6163cdc09d05786ddaf1aecf6b", "sha256": "a844edf2a134adf812cd6fdca399e029a51deaa3ebe6fb0d1bbf78c5425ca3bd" }, "downloads": -1, "filename": "pypandoc-1.0.1.tar.gz", "has_sig": false, "md5_digest": "70d3ec6163cdc09d05786ddaf1aecf6b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12217, "upload_time": "2015-08-09T13:43:51", "url": "https://files.pythonhosted.org/packages/a9/2e/dc0adfe0883d4871dcc159de4d7cc632b204a31235a3696f8fe8b5729b5b/pypandoc-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "f03bb8de01a92ab42bc21211fd5a1b39", "sha256": "dc8e3084085fa370d88f3ff99232df13a8431edbf6c380e2680e13bf4a687f69" }, "downloads": -1, "filename": "pypandoc-1.0.2.tar.gz", "has_sig": false, "md5_digest": "f03bb8de01a92ab42bc21211fd5a1b39", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12567, "upload_time": "2015-09-17T07:21:21", "url": "https://files.pythonhosted.org/packages/e1/92/5f9da57ffa6b379d986f9b47473826c65c9fd9193a0d86c0453d8ff3860b/pypandoc-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "085b49fb5fd2ce1a1797cbe0076e2917", "sha256": "012f2b338aa7d55714ce900f27a092b4933465aef263baca63cb3c473c51edb6" }, "downloads": -1, "filename": "pypandoc-1.0.3.tar.gz", "has_sig": false, "md5_digest": "085b49fb5fd2ce1a1797cbe0076e2917", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12645, "upload_time": "2015-10-04T14:18:19", "url": "https://files.pythonhosted.org/packages/5c/51/7ec70fdde92790123b215684e62aab7251cee33a43ee46293100d9ee2bc3/pypandoc-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "253e73dbe284b5d350388ad52b66e7de", "sha256": "35ab232433dae48b3bfb5291bdc4e78f518ff9c1fb446d8879aed5e57ab9d013" }, "downloads": -1, "filename": "pypandoc-1.0.4.tar.gz", "has_sig": false, "md5_digest": "253e73dbe284b5d350388ad52b66e7de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13129, "upload_time": "2015-10-05T06:13:58", "url": "https://files.pythonhosted.org/packages/4a/7b/7eb4ace8d37de62d0d36dabf41c2d0cdeb777efb47baaa7aec9f4f472bb4/pypandoc-1.0.4.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "1257e30d241289e684ac1842dea6a65f", "sha256": "4b5095c3f82ea667164e85b710ff851f9d00f4bf9e49911dbcc80dd712617649" }, "downloads": -1, "filename": "pypandoc-1.0.5.tar.gz", "has_sig": false, "md5_digest": "1257e30d241289e684ac1842dea6a65f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13171, "upload_time": "2015-10-14T06:14:01", "url": "https://files.pythonhosted.org/packages/8e/71/a128bc441a623d056a5b21bf4272139dcadd2c429a6c1a45c7ab3c637118/pypandoc-1.0.5.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "df4f56a9c3ffa3fc6031017db1433f1b", "sha256": "d22207399d3d14617a23deccc4e5d800b84b0fdc676da8e578f179b8cbbd2a98" }, "downloads": -1, "filename": "pypandoc-1.1.0.tar.gz", "has_sig": false, "md5_digest": "df4f56a9c3ffa3fc6031017db1433f1b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15252, "upload_time": "2015-10-22T08:47:10", "url": "https://files.pythonhosted.org/packages/7b/12/a3442087da3d6dacd38c7e737b45189516ac36da0d07ac9800b7288a8ba3/pypandoc-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "fea9f5608c9d1e618c91941a4d2b09b7", "sha256": "5556d893666ff4afea36d6694069dcf52550220b26b7bc54d1a81b26e4961769" }, "downloads": -1, "filename": "pypandoc-1.1.1-cp27-none-macosx_10_5_x86_64.whl", "has_sig": false, "md5_digest": "fea9f5608c9d1e618c91941a4d2b09b7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 29204920, "upload_time": "2015-10-22T21:28:57", "url": "https://files.pythonhosted.org/packages/89/85/edab2e90a3326f7be378d791f5e439a3b51e71ab5228a3426d0686e1527c/pypandoc-1.1.1-cp27-none-macosx_10_5_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6d22e2b57407a083efe9a50539df0022", "sha256": "737e859dad0ea9b3784b916f56ed83f09897ba348472834e7d6e8d6acd0ae8bb" }, "downloads": -1, "filename": "pypandoc-1.1.1-cp27-none-win32.whl", "has_sig": false, "md5_digest": "6d22e2b57407a083efe9a50539df0022", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 20128236, "upload_time": "2015-10-22T21:34:26", "url": "https://files.pythonhosted.org/packages/c1/89/b6444f562499043b3a2453a731bf8a9723399f71450743a7e8dfcf88270e/pypandoc-1.1.1-cp27-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "52b6a513941ddd52c9380983b892df62", "sha256": "6d029757ec6b9b25184388bd4bdb4db4c89839b2fec095d8dd1833992c5622a6" }, "downloads": -1, "filename": "pypandoc-1.1.1-cp27-none-win_amd64.whl", "has_sig": false, "md5_digest": "52b6a513941ddd52c9380983b892df62", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 20128241, "upload_time": "2015-10-22T22:04:03", "url": "https://files.pythonhosted.org/packages/81/fd/4cf2c05a15a1fee9c9ef8df40093fb5858ebe4c0ec8b372cda8312706911/pypandoc-1.1.1-cp27-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "2b88551abaa4d45311d6952cca9aef70", "sha256": "f5ec707240a05cb6613682bae10567b1856c63dac9d7d91b7287d207718ad697" }, "downloads": -1, "filename": "pypandoc-1.1.1-cp34-cp34m-macosx_10_5_x86_64.whl", "has_sig": false, "md5_digest": "2b88551abaa4d45311d6952cca9aef70", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 29204921, "upload_time": "2015-10-22T21:25:47", "url": "https://files.pythonhosted.org/packages/2e/38/76f0b714164de65aedfd373f1c1d0514c2b54b35bba5a2e92c0fe2a460d7/pypandoc-1.1.1-cp34-cp34m-macosx_10_5_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9a25680ab4de2c7da690cea83413c3ae", "sha256": "b90a5221e1012716134d01b7abde3749afed938c8e4af76f5d7ce61ee94d72c5" }, "downloads": -1, "filename": "pypandoc-1.1.1-cp34-none-win32.whl", "has_sig": false, "md5_digest": "9a25680ab4de2c7da690cea83413c3ae", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 20121679, "upload_time": "2015-10-22T21:47:01", "url": "https://files.pythonhosted.org/packages/dc/3d/f37749564788ad2662ebbdd473c6c803cc93048dc2d695ded2958e8aea45/pypandoc-1.1.1-cp34-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "d025a883d58eb81479adb8994dee9044", "sha256": "c677e8004ae43806593924bbf1719291bc785e69f94109963797f36382ea24c8" }, "downloads": -1, "filename": "pypandoc-1.1.1-cp34-none-win_amd64.whl", "has_sig": false, "md5_digest": "d025a883d58eb81479adb8994dee9044", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 20121686, "upload_time": "2015-10-22T22:12:24", "url": "https://files.pythonhosted.org/packages/7d/56/c046a6fb5f0b7d035423858af0ea5ac2c8035b59589bc30a4c37f4d0af4a/pypandoc-1.1.1-cp34-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "d21cdcfb150750bb68068dd5fd6864c8", "sha256": "e5fb460bf15b927d16723ff3525062d8472c26587f112dd69c0bcd252d157dc4" }, "downloads": -1, "filename": "pypandoc-1.1.1-cp35-cp35m-macosx_10_5_x86_64.whl", "has_sig": false, "md5_digest": "d21cdcfb150750bb68068dd5fd6864c8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 29204921, "upload_time": "2015-10-22T21:31:54", "url": "https://files.pythonhosted.org/packages/72/aa/008c364fe7b906ec3dbc860ec22227e4a6e19645414d7db9913c57f7210b/pypandoc-1.1.1-cp35-cp35m-macosx_10_5_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0f54c72a0e0866d7ead2c4d2dfa01569", "sha256": "4b974bf3e6d38b00bb49c2c6f175931e96f382b531f8bae1d24cc2bd15727321" }, "downloads": -1, "filename": "pypandoc-1.1.1.zip", "has_sig": false, "md5_digest": "0f54c72a0e0866d7ead2c4d2dfa01569", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24382, "upload_time": "2015-10-22T18:57:53", "url": "https://files.pythonhosted.org/packages/b9/00/e8a58ef2d3ef9278f299fab160f1dfea0757edc57164a2c74800d925545a/pypandoc-1.1.1.zip" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "8e13c9e5b1f69bd47f7d299a11069a2c", "sha256": "e403f16cac74dfa8dc2adc5d776041f65cbeec0f37edb75953439205c5157c92" }, "downloads": -1, "filename": "pypandoc-1.1.2-cp27-none-macosx_10_5_x86_64.whl", "has_sig": false, "md5_digest": "8e13c9e5b1f69bd47f7d299a11069a2c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 29206498, "upload_time": "2015-10-23T15:14:04", "url": "https://files.pythonhosted.org/packages/81/3c/2879a41945194f1eac700bd03e467c7ea46b04d9d2e899ef820700b62f8c/pypandoc-1.1.2-cp27-none-macosx_10_5_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ad112092c3741560b737dcbf790a1b0b", "sha256": "cce2e77be1a67b4f4be674cc14256f2bb59b3b4ea4bd63f0c5fdda64555b2d62" }, "downloads": -1, "filename": "pypandoc-1.1.2-cp27-none-win32.whl", "has_sig": false, "md5_digest": "ad112092c3741560b737dcbf790a1b0b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 20129877, "upload_time": "2015-10-23T15:12:36", "url": "https://files.pythonhosted.org/packages/5c/6b/cdbba7df6dd4d117054db6fc039c38464d08144d467fe0f92f02e20bd575/pypandoc-1.1.2-cp27-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "4a71099d947727a08cc1d46e1bd1ac09", "sha256": "dc87e1000b4ae00ef3a6418ee2fb2e742976963bf9016eb9566d0f792930f551" }, "downloads": -1, "filename": "pypandoc-1.1.2-cp27-none-win_amd64.whl", "has_sig": false, "md5_digest": "4a71099d947727a08cc1d46e1bd1ac09", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 20129880, "upload_time": "2015-10-23T15:24:59", "url": "https://files.pythonhosted.org/packages/e6/44/c463198cfc2c2f502357aebb3a7921e65eaf4b54bc86a6033d1d1d99f7cb/pypandoc-1.1.2-cp27-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "8b274a778872b62ee2d688640e952209", "sha256": "4552b322dc0defec897b3f3a10dc6877ce0ae095cde9908458e0390f488872c1" }, "downloads": -1, "filename": "pypandoc-1.1.2-cp34-cp34m-macosx_10_5_x86_64.whl", "has_sig": false, "md5_digest": "8b274a778872b62ee2d688640e952209", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 29206496, "upload_time": "2015-10-23T15:11:17", "url": "https://files.pythonhosted.org/packages/74/a9/2fd38285ead2925f3a437b3067c0ffe858d0e49cbfef1a80e9c7fa6655b0/pypandoc-1.1.2-cp34-cp34m-macosx_10_5_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "50db80744334634a57b7a4b907c0d728", "sha256": "fc8b488312d63e10d906fa222b0d84feaf70cab1b687f1509b90a6f1671ce5f0" }, "downloads": -1, "filename": "pypandoc-1.1.2-cp34-none-win32.whl", "has_sig": false, "md5_digest": "50db80744334634a57b7a4b907c0d728", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 20121898, "upload_time": "2015-10-23T15:18:59", "url": "https://files.pythonhosted.org/packages/ac/cf/a9e8632baf2f9e79f8bf224fc540756916a0190224067ddb35f7cb6d9ff7/pypandoc-1.1.2-cp34-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "753dd05d23b4e1631c09b1e50c95d515", "sha256": "86a22a0205e66435553f9d1d0fb493ec699ff918e53067b483fa49ce053ea0a4" }, "downloads": -1, "filename": "pypandoc-1.1.2-cp34-none-win_amd64.whl", "has_sig": false, "md5_digest": "753dd05d23b4e1631c09b1e50c95d515", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 20121900, "upload_time": "2015-10-23T15:32:26", "url": "https://files.pythonhosted.org/packages/7b/c0/8dbfc10c7224d544e3ce3d1815d872604675d069dbb10fb9c70cf7b0b2b5/pypandoc-1.1.2-cp34-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1a9803854eed8247f7dc5f217eeecf67", "sha256": "882a4f3b81ba4a1508000c39764ee2c44432afc888235d77d54cbbd1ce253f70" }, "downloads": -1, "filename": "pypandoc-1.1.2-cp35-cp35m-macosx_10_5_x86_64.whl", "has_sig": false, "md5_digest": "1a9803854eed8247f7dc5f217eeecf67", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 29206498, "upload_time": "2015-10-23T15:17:09", "url": "https://files.pythonhosted.org/packages/d5/e0/df107971bed75d61b23c07db8ddfc284ecd42f7d6efbdb453c8c726863c1/pypandoc-1.1.2-cp35-cp35m-macosx_10_5_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "539e9505d07ed462ddce715bdefbc643", "sha256": "72652a2029f164f7ca91429d7aee6a83a94636396164208fcfade98a643b884b" }, "downloads": -1, "filename": "pypandoc-1.1.2-cp35-none-win_amd64.whl", "has_sig": false, "md5_digest": "539e9505d07ed462ddce715bdefbc643", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 20129753, "upload_time": "2015-10-23T17:55:26", "url": "https://files.pythonhosted.org/packages/53/13/8db2b76b0f4082e69cfeb73c4920c10b48a19529fa2634ed31ebddb9051f/pypandoc-1.1.2-cp35-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b2392b684ce4aa944bf3ae6c7a648f37", "sha256": "54f0b4d3be57d2f7f7ff7baff9ac9648e0de092f136d647a804fce0734d0b17c" }, "downloads": -1, "filename": "pypandoc-1.1.2.zip", "has_sig": false, "md5_digest": "b2392b684ce4aa944bf3ae6c7a648f37", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26834, "upload_time": "2015-10-23T15:06:39", "url": "https://files.pythonhosted.org/packages/ce/2a/4f64c1269842b0cf037cb07fc9a018e58328a981907e604a3be1733b8085/pypandoc-1.1.2.zip" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "b52ea2d61676b2ec4d610ab54cc1d2ff", "sha256": "9db897b598a06ef68dadc70c10d0fb8b399d03b33c993bee4f5e10273d0834e8" }, "downloads": -1, "filename": "pypandoc-1.1.3-cp27-none-macosx_10_5_x86_64.whl", "has_sig": false, "md5_digest": "b52ea2d61676b2ec4d610ab54cc1d2ff", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 29206345, "upload_time": "2016-01-15T21:08:17", "url": "https://files.pythonhosted.org/packages/86/00/842d46211676cb2e55eada357e3bc3eb935e8b6398ff64b8c287932d646f/pypandoc-1.1.3-cp27-none-macosx_10_5_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "91c42cb0e4d95a1074c7859301372b36", "sha256": "d22d376039005098d95693aa47f8ce9dba9a62947c2a45102362c911a390d833" }, "downloads": -1, "filename": "pypandoc-1.1.3-cp27-none-win32.whl", "has_sig": false, "md5_digest": "91c42cb0e4d95a1074c7859301372b36", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 20129677, "upload_time": "2016-01-15T21:06:30", "url": "https://files.pythonhosted.org/packages/46/e3/52e82cabbb38999c3828ac4f2e2aadd9bbeb26ae4cc153716ebc0eb3976a/pypandoc-1.1.3-cp27-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "3fb56ff8929bdc3a623f3d19c2f87827", "sha256": "eef7e5e22da384b48281cf93eb7242118d96f00a32b67f962ce024a30914bfde" }, "downloads": -1, "filename": "pypandoc-1.1.3-cp27-none-win_amd64.whl", "has_sig": false, "md5_digest": "3fb56ff8929bdc3a623f3d19c2f87827", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 20129682, "upload_time": "2016-01-15T21:16:32", "url": "https://files.pythonhosted.org/packages/72/73/eb68763d79808ab97c22b9449185d14f1e5bf10758ad9109ee3537004bb0/pypandoc-1.1.3-cp27-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ee412514833e6f653ea3066c5ebee673", "sha256": "28dbf52a44a5b931a29c3d7dd2dc1907c83f19ea3c4c60378ae5f9648db2ebc9" }, "downloads": -1, "filename": "pypandoc-1.1.3-cp34-cp34m-macosx_10_5_x86_64.whl", "has_sig": false, "md5_digest": "ee412514833e6f653ea3066c5ebee673", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 29206345, "upload_time": "2016-01-15T21:04:08", "url": "https://files.pythonhosted.org/packages/c4/8f/863dd21dafc5bffe884ca45a9f8c81924605795cf49802e847ef9251a18f/pypandoc-1.1.3-cp34-cp34m-macosx_10_5_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1b6d53eebd152d272f85a6e0d9c38159", "sha256": "96de3ecf99155028d633507a75f1937bc007055183ec425f3419cf179e3cc92d" }, "downloads": -1, "filename": "pypandoc-1.1.3-cp34-none-win32.whl", "has_sig": false, "md5_digest": "1b6d53eebd152d272f85a6e0d9c38159", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 20129614, "upload_time": "2016-01-15T21:11:50", "url": "https://files.pythonhosted.org/packages/27/8c/bf094382bc882fc760b8173c864a0d31c06322ca9c423ba51beb238e8ec2/pypandoc-1.1.3-cp34-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "1a2b474fb3a2cb7ba542efffb4ceb7cd", "sha256": "92c2f48779f8c524f9da8cc4f974e5c72dc9cb1cb562e36116e977a7a91c28fb" }, "downloads": -1, "filename": "pypandoc-1.1.3-cp34-none-win_amd64.whl", "has_sig": false, "md5_digest": "1a2b474fb3a2cb7ba542efffb4ceb7cd", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 20129617, "upload_time": "2016-01-15T21:21:28", "url": "https://files.pythonhosted.org/packages/6d/92/fb9af261d4cc3f441b42c2c410afa3b3391dcb41d8745c3219b26e1b9e8a/pypandoc-1.1.3-cp34-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "771f376bf9c936a90159cd94235998c2", "sha256": "ed2048a655f7bd2f80dc84d9fd81df113c78f3b31aca68dae17c1100a2c05569" }, "downloads": -1, "filename": "pypandoc-1.1.3.zip", "has_sig": false, "md5_digest": "771f376bf9c936a90159cd94235998c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20142549, "upload_time": "2016-01-15T20:37:54", "url": "https://files.pythonhosted.org/packages/41/68/e985491370cc44a063ac5c70232bf72d7675fa7539a86fa7fa08257bda05/pypandoc-1.1.3.zip" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "b9f59cad60f7feb35cbff21b21b77aef", "sha256": "752a79884cc7be4df028d805a087a8af84c333fed5c7eeedf01e28e06f7eb5eb" }, "downloads": -1, "filename": "pypandoc-1.2.0.zip", "has_sig": false, "md5_digest": "b9f59cad60f7feb35cbff21b21b77aef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32018, "upload_time": "2016-07-13T14:19:05", "url": "https://files.pythonhosted.org/packages/e2/aa/156253072c8fe2b4d90da455a964ed82504d11b6f816536ad11de8406fa9/pypandoc-1.2.0.zip" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "29ca737cbd1279c98f21849f82564f05", "sha256": "d5b63e5d2d3913de0904630169a930afe6bae597dd684809a1ac8cef227ab6b5" }, "downloads": -1, "filename": "pypandoc-1.3.0-py2-none-win_amd64.whl", "has_sig": false, "md5_digest": "29ca737cbd1279c98f21849f82564f05", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 21547210, "upload_time": "2016-10-30T20:39:27", "url": "https://files.pythonhosted.org/packages/dd/ef/7cf9d03a205a556843b42f86b701e46f25832d73965cc5df2ba37eaf4c28/pypandoc-1.3.0-py2-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "67d519600f936f38f35d2e67260c8e59", "sha256": "97e13077a831d85638ee83604f31df0608555f4d76f3a022c6d98f988c9940cf" }, "downloads": -1, "filename": "pypandoc-1.3.0-py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "67d519600f936f38f35d2e67260c8e59", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 21547155, "upload_time": "2016-10-30T20:40:56", "url": "https://files.pythonhosted.org/packages/ff/0d/d9e18b5d7c312b13bd018afcc294fad202a558faed8a557ad956362e7c01/pypandoc-1.3.0-py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "e6205dd4a01939e53bb378460fba430f", "sha256": "1eb42b8ea58dfe6938154650c7ce5afb80474bf95d25eaaef38e03e52a665ad5" }, "downloads": -1, "filename": "pypandoc-1.3.0.tar.gz", "has_sig": false, "md5_digest": "e6205dd4a01939e53bb378460fba430f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21540928, "upload_time": "2016-10-30T20:40:46", "url": "https://files.pythonhosted.org/packages/36/55/edb1114966ba9fd1e249c7eccc3727e5643291cd52f571ee463a09a26d9f/pypandoc-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "9bf469fe2cccc72945d6f1e501234db2", "sha256": "2dd3cdf7fc59a89ba660016e8c2341e3b8dbc36acc7fbd4d7c8d64b2ee855dd8" }, "downloads": -1, "filename": "pypandoc-1.3.1.tar.gz", "has_sig": false, "md5_digest": "9bf469fe2cccc72945d6f1e501234db2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24318, "upload_time": "2016-10-30T21:10:55", "url": "https://files.pythonhosted.org/packages/e2/81/c9cb67ea0e22e198fc8514f4346681f468f75251abe1b41709c0b94db83b/pypandoc-1.3.1.tar.gz" } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "06acb6f66807dadf644d04ac3252ef3c", "sha256": "fc4b59da9d276c1445017de06a2c5aa6274039e9db247b2b4352bc706226b443" }, "downloads": -1, "filename": "pypandoc-1.3.3-py2-none-win_amd64.whl", "has_sig": false, "md5_digest": "06acb6f66807dadf644d04ac3252ef3c", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 21547213, "upload_time": "2016-10-30T21:34:30", "url": "https://files.pythonhosted.org/packages/6c/9e/e8f9d4f3ee6bcd02a91f2af7e8410dd09bbc00cdd0f6d6574ca83fbc4b6b/pypandoc-1.3.3-py2-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7400e92debb5c16d2672ec0a0fd77914", "sha256": "d7a41d6cd1149329f1f06f05d325baaaf00acf9a6e7506c66106f7368235c556" }, "downloads": -1, "filename": "pypandoc-1.3.3-py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "7400e92debb5c16d2672ec0a0fd77914", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 21547157, "upload_time": "2016-10-30T21:40:32", "url": "https://files.pythonhosted.org/packages/15/b7/1a27b278bd70f9626570d148af57442a41064fd87fa62aafc53d74a36b3f/pypandoc-1.3.3-py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "3c6cf267cbcc2c78511ff91f7d64f927", "sha256": "a6fea20b895bfa3f5b32bec541fde3708843ff73a10877a1ad113f62a7704818" }, "downloads": -1, "filename": "pypandoc-1.3.3.tar.gz", "has_sig": false, "md5_digest": "3c6cf267cbcc2c78511ff91f7d64f927", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25664, "upload_time": "2016-10-30T21:34:30", "url": "https://files.pythonhosted.org/packages/68/6d/4f8ff7661e13f5038bafe1e7d8c4c2a0fb83f3fbe590de16da9405af0dc7/pypandoc-1.3.3.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "28d28cf8f1942abf680c040707cee55a", "sha256": "e914e6d5f84a76764887e4d909b09d63308725f0cbb5293872c2c92f07c11a5b" }, "downloads": -1, "filename": "pypandoc-1.4.tar.gz", "has_sig": false, "md5_digest": "28d28cf8f1942abf680c040707cee55a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27116, "upload_time": "2017-04-22T11:33:07", "url": "https://files.pythonhosted.org/packages/71/81/00184643e5a10a456b4118fc12c96780823adb8ed974eb2289f29703b29b/pypandoc-1.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "28d28cf8f1942abf680c040707cee55a", "sha256": "e914e6d5f84a76764887e4d909b09d63308725f0cbb5293872c2c92f07c11a5b" }, "downloads": -1, "filename": "pypandoc-1.4.tar.gz", "has_sig": false, "md5_digest": "28d28cf8f1942abf680c040707cee55a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27116, "upload_time": "2017-04-22T11:33:07", "url": "https://files.pythonhosted.org/packages/71/81/00184643e5a10a456b4118fc12c96780823adb8ed974eb2289f29703b29b/pypandoc-1.4.tar.gz" } ] }