{ "info": { "author": "Pavlo Kapyshin", "author_email": "i@93z.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy" ], "description": "paka.cmark\n==========\n.. image:: https://travis-ci.org/PavloKapyshin/paka.cmark.svg?branch=master\n :target: https://travis-ci.org/PavloKapyshin/paka.cmark\n\n``paka.cmark`` is a Python library that wraps subset of cmark_ C library\n(that is one of reference implementations of CommonMark).\n\n\nFeatures\n--------\n- Python 2.7 and 3.6 are supported\n- PyPy (Python 2.7) is supported, as wrapping is made with CFFI_\n- no need to install ``libcmark``, it is bundled with ``paka.cmark``\n (and sources of the former are regularly updated according to upstream)\n- supported output: HTML, XML, CommonMark, man, LaTeX\n- supported options: ``CMARK_OPT_UNSAFE``, ``CMARK_OPT_NOBREAKS``,\n ``CMARK_OPT_HARDBREAKS``, ``CMARK_OPT_SOURCEPOS``, ``CMARK_OPT_SMART``\n- unlike ``libcmark``\u2014underlying C library\u2014``paka.cmark`` uses\n ``CMARK_OPT_NOBREAKS`` by default (``breaks`` argument allows to control\n line break rendering)\n- safe HTML output is on by default (like in ``libcmark``)\n\n\nExamples\n--------\n.. code-block:: pycon\n\n >>> from paka import cmark\n\nRender with ``CMARK_OPT_DEFAULT | CMARK_OPT_NOBREAKS``:\n\n.. code-block:: pycon\n\n >>> print(cmark.to_html(u\"

nope

\"))\n \n\nRender with ``CMARK_OPT_DEFAULT | CMARK_OPT_NOBREAKS | CMARK_OPT_UNSAFE``:\n\n.. code-block:: pycon\n\n >>> print(cmark.to_html(u\"Hello,\\n*World*!\", safe=False))\n

Hello, World!

\n\n\nRender with ``CMARK_OPT_DEFAULT``:\n\n.. code-block:: pycon\n\n >>> print(cmark.to_html(u\"Hello,\\n*World*!\", breaks=True))\n

Hello,\n World!

\n\nRender with ``CMARK_OPT_DEFAULT | CMARK_OPT_HARDBREAKS``:\n\n.. code-block:: pycon\n\n >>> print(cmark.to_html(u\"Hello,\\n*World*!\", breaks=\"hard\"))\n

Hello,
\n World!

\n\nRender CommonMark with ``CMARK_OPT_DEFAULT | CMARK_OPT_NOBREAKS``:\n\n.. code-block:: pycon\n\n >>> print(cmark.to_commonmark(u\"_Hello_\"))\n *Hello*\n\n\nInstallation\n------------\nLibrary is `available on PyPI `_,\nyou can use ``pip`` for installation:\n\n.. code-block:: console\n\n $ pip install paka.cmark\n\n\nGetting documentation\n---------------------\nBuild HTML docs:\n\n.. code-block:: console\n\n $ tox -e docs\n\nView built docs:\n\n.. code-block:: console\n\n $ sensible-browser .tox/docs/tmp/docs_html/index.html\n\n\nRunning tests\n-------------\n.. code-block:: console\n\n $ tox\n\n\nGetting coverage\n----------------\nCollect info:\n\n.. code-block:: console\n\n $ tox -e coverage\n\nView HTML report:\n\n.. code-block:: console\n\n $ sensible-browser .tox/coverage/tmp/cov_html/index.html\n\n\nChecking code style\n-------------------\nRun code checkers:\n\n.. code-block:: console\n\n $ tox -e checks\n\n\n.. _cmark: https://github.com/commonmark/cmark\n.. _CFFI: https://pypi.org/project/cffi/", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/PavloKapyshin/paka.cmark", "keywords": "commonmark cmark c ffi", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "paka.cmark", "package_url": "https://pypi.org/project/paka.cmark/", "platform": "", "project_url": "https://pypi.org/project/paka.cmark/", "project_urls": { "Homepage": "https://github.com/PavloKapyshin/paka.cmark" }, "release_url": "https://pypi.org/project/paka.cmark/2.1.0/", "requires_dist": null, "requires_python": "", "summary": "Very lightweight CFFI-based Python bindings to cmark library (CommonMark implementation in C).", "version": "2.1.0" }, "last_serial": 5199757, "releases": { "1.10.0": [ { "comment_text": "", "digests": { "md5": "7cdf082b95238e5dd784d6b9851f9f5f", "sha256": "da65bb3a2509048b0138d498c35212a819a9157739c485fab32ffb7956da6dfe" }, "downloads": -1, "filename": "paka.cmark-1.10.0.tar.gz", "has_sig": false, "md5_digest": "7cdf082b95238e5dd784d6b9851f9f5f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96387, "upload_time": "2017-01-26T17:50:17", "url": "https://files.pythonhosted.org/packages/81/b9/58ed33037be884e1b57a59c828c0c705fc9efa69a8062de0654f0788e941/paka.cmark-1.10.0.tar.gz" } ], "1.10.4": [ { "comment_text": "", "digests": { "md5": "6fc253b824e96b912c73bc3f9f408c80", "sha256": "6e8ec611f85cf06049aadbae4823a4ad9fa9d97aa9ed0825487cec24fb6c0e2a" }, "downloads": -1, "filename": "paka.cmark-1.10.4.tar.gz", "has_sig": false, "md5_digest": "6fc253b824e96b912c73bc3f9f408c80", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96429, "upload_time": "2017-01-27T14:15:48", "url": "https://files.pythonhosted.org/packages/32/54/902b052c9709abc00ece1693de925c2789930b8da076c04ddb1dc31c26c1/paka.cmark-1.10.4.tar.gz" } ], "1.10.5": [ { "comment_text": "", "digests": { "md5": "02fbbdf6e17a5f1f79c9f34ddbf6ea88", "sha256": "fea0d8a56d727a6a729afe74841075839ec75afb78b9c84280d7b91fbd7d5284" }, "downloads": -1, "filename": "paka.cmark-1.10.5.tar.gz", "has_sig": false, "md5_digest": "02fbbdf6e17a5f1f79c9f34ddbf6ea88", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96977, "upload_time": "2017-02-05T14:16:04", "url": "https://files.pythonhosted.org/packages/66/68/bb47a1b3d445402d667d52763e69ebffe1039aec074b5d2c2d3fb76fcfd1/paka.cmark-1.10.5.tar.gz" } ], "1.10.6": [ { "comment_text": "", "digests": { "md5": "3c58678a3f4a12ca0c5438f3e6ef8338", "sha256": "dd01cd0c787e5d14dcbb2a2c624b4d847e3dda3294db01af2f30a82a6452daa8" }, "downloads": -1, "filename": "paka.cmark-1.10.6.tar.gz", "has_sig": false, "md5_digest": "3c58678a3f4a12ca0c5438f3e6ef8338", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97050, "upload_time": "2017-02-11T12:05:55", "url": "https://files.pythonhosted.org/packages/0c/60/ab9089d0ced3b75e6e927f88724cb991a2a9d944e8a33ce1223f4c685a10/paka.cmark-1.10.6.tar.gz" } ], "1.11.0": [ { "comment_text": "", "digests": { "md5": "05332c165381194ab3c90c368389219c", "sha256": "fa9e21464d080b811768fc8323c90d894e183c9840839cb9ae4820d020692581" }, "downloads": -1, "filename": "paka.cmark-1.11.0.tar.gz", "has_sig": false, "md5_digest": "05332c165381194ab3c90c368389219c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97253, "upload_time": "2017-03-02T14:08:30", "url": "https://files.pythonhosted.org/packages/f2/26/20c7047e11f245e16320e21864bc277be8618b2e4bcfe90a41e28761be1f/paka.cmark-1.11.0.tar.gz" } ], "1.12.0": [ { "comment_text": "", "digests": { "md5": "cf97313fb654c0664f980cd630ade922", "sha256": "0cdd81f5bb6cbda0831a8d70c806023d41ab6a0da2d1cd0cb0b33747a9298412" }, "downloads": -1, "filename": "paka.cmark-1.12.0.tar.gz", "has_sig": false, "md5_digest": "cf97313fb654c0664f980cd630ade922", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97456, "upload_time": "2017-03-26T13:04:21", "url": "https://files.pythonhosted.org/packages/41/ec/59e4912959a11f7bf143f10593a9d7c9f372de12ff6a6f23fa0b120d5953/paka.cmark-1.12.0.tar.gz" } ], "1.13.0": [ { "comment_text": "", "digests": { "md5": "e43c4938c1e675e10f12ec3ee8cf6c51", "sha256": "c0e40262e3d27827c8b06c3b06709a49ac1a405b366ac31d079d055cfd0240cc" }, "downloads": -1, "filename": "paka.cmark-1.13.0.tar.gz", "has_sig": false, "md5_digest": "e43c4938c1e675e10f12ec3ee8cf6c51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97534, "upload_time": "2017-04-07T13:26:18", "url": "https://files.pythonhosted.org/packages/e6/08/79387c1efffa9604cdbb5a484135abd6f84b5471ed847a525ce866e2d140/paka.cmark-1.13.0.tar.gz" } ], "1.14.0": [ { "comment_text": "", "digests": { "md5": "5709c323c7b88c3ae0883ba9145728f6", "sha256": "358f60e0056d2a32b66df7fe113165c2afb9fa7acab17cdc072ad06d8f11de41" }, "downloads": -1, "filename": "paka.cmark-1.14.0.tar.gz", "has_sig": false, "md5_digest": "5709c323c7b88c3ae0883ba9145728f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97566, "upload_time": "2017-04-27T16:00:48", "url": "https://files.pythonhosted.org/packages/ff/f9/2018c1117e26c7e7081c3d4c52bab9cc16f7979b001e4351a616334c1769/paka.cmark-1.14.0.tar.gz" } ], "1.14.1": [ { "comment_text": "", "digests": { "md5": "508239ebc0199b9ff05860f043353740", "sha256": "aff76315ba58f31ef3af9aed291b12489583a34dbffd03551eb06def61a0430d" }, "downloads": -1, "filename": "paka.cmark-1.14.1.tar.gz", "has_sig": false, "md5_digest": "508239ebc0199b9ff05860f043353740", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97598, "upload_time": "2017-05-01T16:55:35", "url": "https://files.pythonhosted.org/packages/2e/07/6a94dac3b085613e2e3cc1cf063f3eed0494ea87d4022d6d37d4e39e565a/paka.cmark-1.14.1.tar.gz" } ], "1.14.2": [ { "comment_text": "", "digests": { "md5": "fea9b54e2b1f06dfd9bf8a981eee0f59", "sha256": "fe50081e45a0eefefe713fa6a48b6a5d73e0c3a860726f7512c9c9862d0e160d" }, "downloads": -1, "filename": "paka.cmark-1.14.2.tar.gz", "has_sig": false, "md5_digest": "fea9b54e2b1f06dfd9bf8a981eee0f59", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97633, "upload_time": "2017-05-02T13:20:59", "url": "https://files.pythonhosted.org/packages/f3/81/c5e375fa3b172487b8a65f3ef2e0479640a6f5c6ddf127662a6c6ac71596/paka.cmark-1.14.2.tar.gz" } ], "1.15.0": [ { "comment_text": "", "digests": { "md5": "eb1c7ee1f0ce0602d7cb6a80ae79b1be", "sha256": "3da652b5c3b8bf30a1c61d6680f4b2d6ea71d02238129b6bf110bf8229419671" }, "downloads": -1, "filename": "paka.cmark-1.15.0.tar.gz", "has_sig": false, "md5_digest": "eb1c7ee1f0ce0602d7cb6a80ae79b1be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97769, "upload_time": "2017-05-03T14:49:01", "url": "https://files.pythonhosted.org/packages/31/b2/fac755fd0fb6809861cee2973cb6503bd03e2783d9f1daae1a1a23777f41/paka.cmark-1.15.0.tar.gz" } ], "1.16.0": [ { "comment_text": "", "digests": { "md5": "124ae9aa4710645e4617c60d9fcff659", "sha256": "672030b9c976d5bef4851f0cacc99e5b551c8a6486349f1326607d9e6c47732f" }, "downloads": -1, "filename": "paka.cmark-1.16.0.tar.gz", "has_sig": false, "md5_digest": "124ae9aa4710645e4617c60d9fcff659", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97871, "upload_time": "2017-05-04T17:35:53", "url": "https://files.pythonhosted.org/packages/65/76/f28a05995ffbcb7fce7ac3acde47f5ebf3c67110b547840114701ad208a7/paka.cmark-1.16.0.tar.gz" } ], "1.17.0": [ { "comment_text": "", "digests": { "md5": "6f0614bad3b3849e43cc430be65b6598", "sha256": "c851ee4fdce5050d8818925071ab56a300ac82acfaa300dec0306bcdff9a592e" }, "downloads": -1, "filename": "paka.cmark-1.17.0.tar.gz", "has_sig": false, "md5_digest": "6f0614bad3b3849e43cc430be65b6598", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 98659, "upload_time": "2017-05-06T14:14:14", "url": "https://files.pythonhosted.org/packages/d7/8d/51b3c4bfe3820bb1d8ded03c1117ee9af05b0a125a3df8a438f1dafa69b6/paka.cmark-1.17.0.tar.gz" } ], "1.17.1": [ { "comment_text": "", "digests": { "md5": "ece264b3072e9d345b05f55820a847e8", "sha256": "aaea9c1b18a02a8751fb30d9a37ecb6df62491c6d25453c9961e1bc9d2ac4f38" }, "downloads": -1, "filename": "paka.cmark-1.17.1.tar.gz", "has_sig": false, "md5_digest": "ece264b3072e9d345b05f55820a847e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 99309, "upload_time": "2017-05-08T17:15:30", "url": "https://files.pythonhosted.org/packages/d5/07/4261df52747ade1315195054e280a8c09020a8214b8ff08440759c46fe4a/paka.cmark-1.17.1.tar.gz" } ], "1.17.2": [ { "comment_text": "", "digests": { "md5": "72ef4ecf2b009378642161ec863c43e6", "sha256": "c6a5d0535c4fddca3ba8eb1c3c840fa3c9a2c727f9e1b0a56c107456c4d29d68" }, "downloads": -1, "filename": "paka.cmark-1.17.2.tar.gz", "has_sig": false, "md5_digest": "72ef4ecf2b009378642161ec863c43e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 99304, "upload_time": "2017-05-08T17:27:00", "url": "https://files.pythonhosted.org/packages/5e/f4/94a60a25bf388fc2aa1248d530ce9a8ba8a2770e7dc5eaf562b90da0e7c7/paka.cmark-1.17.2.tar.gz" } ], "1.18.0": [ { "comment_text": "", "digests": { "md5": "48e4645e65513d7ecd0896c8b2024120", "sha256": "6dfa42ef900945718f49029c250b061a4a1c30943d0e81c784d589c15cba3101" }, "downloads": -1, "filename": "paka.cmark-1.18.0.tar.gz", "has_sig": false, "md5_digest": "48e4645e65513d7ecd0896c8b2024120", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 99568, "upload_time": "2017-05-09T16:44:28", "url": "https://files.pythonhosted.org/packages/46/40/c2b613056bad2af7c91eb6bc30ac1133a12908cbcd9a37e5562d2dd0e033/paka.cmark-1.18.0.tar.gz" } ], "1.18.1": [ { "comment_text": "", "digests": { "md5": "c578de0d5f31b1ebae57891db7056c08", "sha256": "41649db6dceb8db592b3ed0afd7cdf07c883dd11221594ad824de06ff115e753" }, "downloads": -1, "filename": "paka.cmark-1.18.1.tar.gz", "has_sig": false, "md5_digest": "c578de0d5f31b1ebae57891db7056c08", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 99858, "upload_time": "2017-05-10T19:40:21", "url": "https://files.pythonhosted.org/packages/de/60/8f09e8b2ce24bf573862cef525eb526ae9f80428082494f9b32052b00be1/paka.cmark-1.18.1.tar.gz" } ], "1.18.2": [ { "comment_text": "", "digests": { "md5": "0018154b8b5483bb3ffdd0da7550aadd", "sha256": "9a0aa5d436155af663957257fe3c4f5cf92f281029cfa9193857b5280c72b86e" }, "downloads": -1, "filename": "paka.cmark-1.18.2.tar.gz", "has_sig": false, "md5_digest": "0018154b8b5483bb3ffdd0da7550aadd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 99848, "upload_time": "2017-05-12T12:57:21", "url": "https://files.pythonhosted.org/packages/27/4e/94f6273207a79a12139e50f0de3fd471d428ec77d55c4ad1d5dc86c8a110/paka.cmark-1.18.2.tar.gz" } ], "1.19.0": [ { "comment_text": "", "digests": { "md5": "4f4b0fd3f0ecc102abe28037189bad5d", "sha256": "e3e7103ae399d9447f94e88cce7238a4ccc5926b1087deba8c386b1b5747dd85" }, "downloads": -1, "filename": "paka.cmark-1.19.0.tar.gz", "has_sig": false, "md5_digest": "4f4b0fd3f0ecc102abe28037189bad5d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 99787, "upload_time": "2017-05-14T13:27:14", "url": "https://files.pythonhosted.org/packages/3f/d6/ea8837276d10e174690b8d3359ce0b70e26c4da2a1c07a8beae50081193e/paka.cmark-1.19.0.tar.gz" } ], "1.19.1": [ { "comment_text": "", "digests": { "md5": "6532c1bc472f3719ae5f9024a48be621", "sha256": "a0262d8a6708742931fb97128c2b59271ca3aebec656027acd9134c95856cc91" }, "downloads": -1, "filename": "paka.cmark-1.19.1.tar.gz", "has_sig": false, "md5_digest": "6532c1bc472f3719ae5f9024a48be621", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 99765, "upload_time": "2017-05-17T17:16:58", "url": "https://files.pythonhosted.org/packages/07/f5/0500be244934417db516ae34fb81ece9512c07c12686dfca7418a048cb0d/paka.cmark-1.19.1.tar.gz" } ], "1.20.0": [ { "comment_text": "", "digests": { "md5": "f863a4e3a1946de9320c595f6ed6bdfa", "sha256": "a1b9ebff84545ad262f8600d7e9349578d54b1cff6ed3725b5fcfdb4d821da88" }, "downloads": -1, "filename": "paka.cmark-1.20.0.tar.gz", "has_sig": false, "md5_digest": "f863a4e3a1946de9320c595f6ed6bdfa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 99986, "upload_time": "2017-05-23T18:36:48", "url": "https://files.pythonhosted.org/packages/bf/3d/dddda002fd96003766a2d9f9cbabe58de6cecf68ba9749d7a6d409729bb5/paka.cmark-1.20.0.tar.gz" } ], "1.21.0": [ { "comment_text": "", "digests": { "md5": "6f72861b6c3f72bc06bde4d506c4091b", "sha256": "eacc9884a8956b0bf7ed63c48b4752dc29545f1947bb6dd743abbf134b809b63" }, "downloads": -1, "filename": "paka.cmark-1.21.0.tar.gz", "has_sig": false, "md5_digest": "6f72861b6c3f72bc06bde4d506c4091b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 100169, "upload_time": "2017-05-24T17:52:27", "url": "https://files.pythonhosted.org/packages/75/47/be72cba5851c90eda8b7dbac73d19914cbd8e0e0289882ef07c79dc3c838/paka.cmark-1.21.0.tar.gz" } ], "1.22.0": [ { "comment_text": "", "digests": { "md5": "26da067543e0bb67a80d9d32c10c4a2b", "sha256": "becece43ff052d561c1bda04e703ead8ed02cd2ab3c37f536e3f720b6fc21edf" }, "downloads": -1, "filename": "paka.cmark-1.22.0.tar.gz", "has_sig": false, "md5_digest": "26da067543e0bb67a80d9d32c10c4a2b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 100366, "upload_time": "2017-05-27T17:13:19", "url": "https://files.pythonhosted.org/packages/8f/9e/2ba2d135c9ec7f25bd97e04bb56c4ec550331a372976817d866abd8ff0d4/paka.cmark-1.22.0.tar.gz" } ], "1.23.0": [ { "comment_text": "", "digests": { "md5": "0e7b250dc60cb1b045cace844e21a92a", "sha256": "641339ff9740fbaaa2e4a3869edd9f8c5ed98213a547dc8fa51079c2dfca2b10" }, "downloads": -1, "filename": "paka.cmark-1.23.0.tar.gz", "has_sig": false, "md5_digest": "0e7b250dc60cb1b045cace844e21a92a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 100464, "upload_time": "2017-05-30T13:20:44", "url": "https://files.pythonhosted.org/packages/b0/d3/395c523f8d73aa90f578a6e1be4557f5ae2fffe812ff3817290c458e124f/paka.cmark-1.23.0.tar.gz" } ], "1.24.1": [ { "comment_text": "", "digests": { "md5": "57d7201feadf50031f67ad2529e3b536", "sha256": "0a94f5ff1c4e6120f2bd0150dbd8ada7086100af4378404a0be56355a232d817" }, "downloads": -1, "filename": "paka.cmark-1.24.1.tar.gz", "has_sig": false, "md5_digest": "57d7201feadf50031f67ad2529e3b536", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 100583, "upload_time": "2017-05-31T16:25:14", "url": "https://files.pythonhosted.org/packages/29/90/ab49c234b3815e4c6df2d3df95445d1c846ca9b0e0e72d9dba3044035a5a/paka.cmark-1.24.1.tar.gz" } ], "1.25.0": [ { "comment_text": "", "digests": { "md5": "fe15d790fe2bf96969e2a46c1ab97c6f", "sha256": "e162d147dfa19e37935135def828c85bd4e0698567e5cc1b1229f819d48abaae" }, "downloads": -1, "filename": "paka.cmark-1.25.0.tar.gz", "has_sig": false, "md5_digest": "fe15d790fe2bf96969e2a46c1ab97c6f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 100592, "upload_time": "2017-06-01T13:46:15", "url": "https://files.pythonhosted.org/packages/53/64/8c92c6057ce26a706198f22ecf2d3ded04f99dba443697538b666043b2d0/paka.cmark-1.25.0.tar.gz" } ], "1.26.0": [ { "comment_text": "", "digests": { "md5": "280e9610acc83b6a7f314d1fdb8e6d5a", "sha256": "471bc3637b71aecc62af7969e0381b3e2430e6afef9faef6f73d5dbc89d2441d" }, "downloads": -1, "filename": "paka.cmark-1.26.0.tar.gz", "has_sig": false, "md5_digest": "280e9610acc83b6a7f314d1fdb8e6d5a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 103721, "upload_time": "2017-06-02T15:33:21", "url": "https://files.pythonhosted.org/packages/87/a0/c6e60584e4fe6d1247871a1a7da8983723202461d202c4ac84be89e36410/paka.cmark-1.26.0.tar.gz" } ], "1.27.0": [ { "comment_text": "", "digests": { "md5": "8d445a81887a434f0d806dbb7a77b0ee", "sha256": "ec9236f71385ce1991deedfba8ad6eb7d2ccec4f1705cb415cdc9b02e085fd43" }, "downloads": -1, "filename": "paka.cmark-1.27.0.tar.gz", "has_sig": false, "md5_digest": "8d445a81887a434f0d806dbb7a77b0ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 103922, "upload_time": "2017-06-03T16:53:02", "url": "https://files.pythonhosted.org/packages/2b/14/de1d0b5688b0f11c2893d5f5ab3bc4e895a4f961ccac4f6f65d96375586c/paka.cmark-1.27.0.tar.gz" } ], "1.28.0": [ { "comment_text": "", "digests": { "md5": "26e1fda291dcccbe04ab9c22033cca33", "sha256": "7dab475430857b4bd9c318cae91857c0ed71762e5deb5d0c5d5743fa94e194ae" }, "downloads": -1, "filename": "paka.cmark-1.28.0.tar.gz", "has_sig": false, "md5_digest": "26e1fda291dcccbe04ab9c22033cca33", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104063, "upload_time": "2017-06-09T16:21:42", "url": "https://files.pythonhosted.org/packages/4f/78/59267de2a0d6b3f519ab500f753c157273f440aa8405a977f8f4d1b14474/paka.cmark-1.28.0.tar.gz" } ], "1.29.0": [ { "comment_text": "", "digests": { "md5": "435ab32897b2d1a1fad02d73beb9e626", "sha256": "8e1630d430b00a1414818661f4c7d2b260ee0c3cc499ad6d58a698cb6b6b12d1" }, "downloads": -1, "filename": "paka.cmark-1.29.0.tar.gz", "has_sig": false, "md5_digest": "435ab32897b2d1a1fad02d73beb9e626", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104279, "upload_time": "2017-06-13T12:30:20", "url": "https://files.pythonhosted.org/packages/47/47/8f1f5db10bbd20332b4e17774c8830ab85b770de41342758615b5f99c6a5/paka.cmark-1.29.0.tar.gz" } ], "1.30.0": [ { "comment_text": "", "digests": { "md5": "f845cc7d35cd32d66d2de1045c8364fc", "sha256": "422148963b26c5753333784642e38df53e2019439fc1ae69a1a8ad20b8ab8ce2" }, "downloads": -1, "filename": "paka.cmark-1.30.0.tar.gz", "has_sig": false, "md5_digest": "f845cc7d35cd32d66d2de1045c8364fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104483, "upload_time": "2017-06-14T15:34:13", "url": "https://files.pythonhosted.org/packages/b6/83/779a63a76625da4d32c4a80d75ced371152c1d52085cda11f6eb05aa8244/paka.cmark-1.30.0.tar.gz" } ], "1.31.0": [ { "comment_text": "", "digests": { "md5": "c41d30a074d2c663e7ae2e660c854d9b", "sha256": "6e86f10f286b53ed26c78f1c01ba41dcd1e65080d40872baa8cb3005dc0cd2f2" }, "downloads": -1, "filename": "paka.cmark-1.31.0.tar.gz", "has_sig": false, "md5_digest": "c41d30a074d2c663e7ae2e660c854d9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104593, "upload_time": "2017-06-22T17:36:31", "url": "https://files.pythonhosted.org/packages/1b/57/15dea5ec7a0f3804879f3b5ea93a3fde717670dbb6fcf518a312350de39e/paka.cmark-1.31.0.tar.gz" } ], "1.32.0": [ { "comment_text": "", "digests": { "md5": "726dfbad844cf0785507384da25c4bf6", "sha256": "02068e630a1c3fb9cc745d8e152f4e614d445abd2a8bb5f9b4ce6e512f53e777" }, "downloads": -1, "filename": "paka.cmark-1.32.0.tar.gz", "has_sig": false, "md5_digest": "726dfbad844cf0785507384da25c4bf6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104732, "upload_time": "2017-06-26T13:50:16", "url": "https://files.pythonhosted.org/packages/b2/e2/f41b65fa01ad230f3677f1194f3199385a91ed2e42f8903e74f8a85a94f4/paka.cmark-1.32.0.tar.gz" } ], "1.33.0": [ { "comment_text": "", "digests": { "md5": "db10c77437c95f4a6ff95f0c977ab6c8", "sha256": "58cbf33ce73330f381b71c8c7270836f5581a0f7d92767de855025464f5ad680" }, "downloads": -1, "filename": "paka.cmark-1.33.0.tar.gz", "has_sig": false, "md5_digest": "db10c77437c95f4a6ff95f0c977ab6c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104734, "upload_time": "2017-06-27T15:11:29", "url": "https://files.pythonhosted.org/packages/73/1c/41fbc215052afd07d6de2fbe1a38d958d27c718c99b088aa5e2079801f70/paka.cmark-1.33.0.tar.gz" } ], "1.34.0": [ { "comment_text": "", "digests": { "md5": "88f692256c1d994e35f534c22118cd66", "sha256": "ba3dfa0aeb0043109e4c6948a18d4822b1bfae6c6e6a0f403e2ff0847b7ff4f9" }, "downloads": -1, "filename": "paka.cmark-1.34.0.tar.gz", "has_sig": false, "md5_digest": "88f692256c1d994e35f534c22118cd66", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104764, "upload_time": "2017-06-28T11:07:15", "url": "https://files.pythonhosted.org/packages/f5/54/043337945725b40a4efb9919e1b861a4bb4412268edd7760c7195dc70b36/paka.cmark-1.34.0.tar.gz" } ], "1.35.0": [ { "comment_text": "", "digests": { "md5": "3580f7420f39251cc8e76099c6110669", "sha256": "4ecbc01a5c3f907df917880d2af7d9fd79306415ebfc01c0882b60a258338aba" }, "downloads": -1, "filename": "paka.cmark-1.35.0.tar.gz", "has_sig": false, "md5_digest": "3580f7420f39251cc8e76099c6110669", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104885, "upload_time": "2017-06-30T05:31:04", "url": "https://files.pythonhosted.org/packages/bd/3a/02940596715a15885488ea5f96022f51d52c16f0ef4f2d188d278846cb34/paka.cmark-1.35.0.tar.gz" } ], "1.36.0": [ { "comment_text": "", "digests": { "md5": "7c551dd8b2a80bafba733cbef7253cb2", "sha256": "3456ffee1729ae7876db8b7e52a4e83a73908a45d5764407f6c2d955433a3c6c" }, "downloads": -1, "filename": "paka.cmark-1.36.0.tar.gz", "has_sig": false, "md5_digest": "7c551dd8b2a80bafba733cbef7253cb2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104900, "upload_time": "2017-07-19T16:34:58", "url": "https://files.pythonhosted.org/packages/02/bc/e402917709f6dc1af24e877f3845cdd2b8eae044023e90ea0ccc98de6236/paka.cmark-1.36.0.tar.gz" } ], "1.37.0": [ { "comment_text": "", "digests": { "md5": "9375f0f5ea3e4ac18013e6dae6e24900", "sha256": "e2f534dc69663cb4763426a2a12a93be90dcf478ef06f25ecf82f285c4019431" }, "downloads": -1, "filename": "paka.cmark-1.37.0.tar.gz", "has_sig": false, "md5_digest": "9375f0f5ea3e4ac18013e6dae6e24900", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104953, "upload_time": "2017-08-02T11:42:03", "url": "https://files.pythonhosted.org/packages/db/86/5449d156d2e86fd12623ef0db819dbc330c50f085cc267aaf8866df95f6c/paka.cmark-1.37.0.tar.gz" } ], "1.38.0": [ { "comment_text": "", "digests": { "md5": "b549f8e60bda9f070e1ced1d9d10e5ea", "sha256": "230db747c35ae377ca6a3be86e57f965a196800f81ce0fdb00b5bcb6d81ad5fe" }, "downloads": -1, "filename": "paka.cmark-1.38.0.tar.gz", "has_sig": false, "md5_digest": "b549f8e60bda9f070e1ced1d9d10e5ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104976, "upload_time": "2017-08-12T07:04:54", "url": "https://files.pythonhosted.org/packages/ae/8b/22aa5fd511f417eac19fab77cdd2f9d7ffbd86ad3f8ea6d486371dda4e6c/paka.cmark-1.38.0.tar.gz" } ], "1.39.0": [ { "comment_text": "", "digests": { "md5": "583459e9e6868118dfb0a747bd3fc4c7", "sha256": "a0f74f794fe5656c60c94e0afc2ca197336b11abeff3b0a9541e6d7c7d96184d" }, "downloads": -1, "filename": "paka.cmark-1.39.0.tar.gz", "has_sig": false, "md5_digest": "583459e9e6868118dfb0a747bd3fc4c7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 105053, "upload_time": "2017-09-17T17:36:58", "url": "https://files.pythonhosted.org/packages/4d/a3/9fdc5fdb40b3b29a7ed856b21a62099cca11d8c4e194264f11b0e204c4ef/paka.cmark-1.39.0.tar.gz" } ], "1.40.0": [ { "comment_text": "", "digests": { "md5": "a4ab65b6e909b35a7db21a2ab9af7888", "sha256": "2252a163f9fe811ca217d2fa3f25bca59d9a428e229e1dc2f99eb7370cf46dcf" }, "downloads": -1, "filename": "paka.cmark-1.40.0.tar.gz", "has_sig": false, "md5_digest": "a4ab65b6e909b35a7db21a2ab9af7888", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 102165, "upload_time": "2018-06-17T19:34:42", "url": "https://files.pythonhosted.org/packages/ac/76/90088698e304afcada813b7f457dc7fcdaf4ec76823eb3db4b247baf5399/paka.cmark-1.40.0.tar.gz" } ], "1.41.0": [ { "comment_text": "", "digests": { "md5": "19dfc1566d9a91010a61d3ef5e29a836", "sha256": "fcddca0f1fb3a1afc7e4376f230b22c4efa459e7e319b341a13da3710d1175be" }, "downloads": -1, "filename": "paka.cmark-1.41.0.tar.gz", "has_sig": false, "md5_digest": "19dfc1566d9a91010a61d3ef5e29a836", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 102448, "upload_time": "2018-09-10T08:31:38", "url": "https://files.pythonhosted.org/packages/91/80/9ac1787f12c205f9822022235d4679edfd2c71da7b3861c02270206ccece/paka.cmark-1.41.0.tar.gz" } ], "1.42.0": [ { "comment_text": "", "digests": { "md5": "bed18713b212007c79ce8c9c2ee03e40", "sha256": "ff4241158734970bfcefb45be9b06139a8bd4cf257fb48f8c3700c4d9762aa8e" }, "downloads": -1, "filename": "paka.cmark-1.42.0.tar.gz", "has_sig": false, "md5_digest": "bed18713b212007c79ce8c9c2ee03e40", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 102463, "upload_time": "2018-09-29T18:16:35", "url": "https://files.pythonhosted.org/packages/78/f4/30157dc65b254022e5531928b3116fe6ff4f66404adb8dc676be8205d2f0/paka.cmark-1.42.0.tar.gz" } ], "1.43.0": [ { "comment_text": "", "digests": { "md5": "909e6afa7c02a7f4b4fa0611965d4149", "sha256": "1334b086d50e5469ab9c10be7f9d46f4a9dc480d1108ee3a0c53bfb04ba74a05" }, "downloads": -1, "filename": "paka.cmark-1.43.0.tar.gz", "has_sig": false, "md5_digest": "909e6afa7c02a7f4b4fa0611965d4149", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 102521, "upload_time": "2018-10-21T15:10:52", "url": "https://files.pythonhosted.org/packages/0f/fa/bcc904a9e3ed689db9a1b1099cf0bca6728116b5d9f8bfcfdba35dd8f2ec/paka.cmark-1.43.0.tar.gz" } ], "1.44.0": [ { "comment_text": "", "digests": { "md5": "d3295f126e8d02ecf44c86bd1d5e20b5", "sha256": "967ca7b78ab166e099834532c4b17cc966b70c471135b922cafaaca679876ce7" }, "downloads": -1, "filename": "paka.cmark-1.44.0.tar.gz", "has_sig": false, "md5_digest": "d3295f126e8d02ecf44c86bd1d5e20b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 102601, "upload_time": "2018-10-24T23:14:12", "url": "https://files.pythonhosted.org/packages/0f/d7/6ec3550fb21fab71160b8b27cf23a796a77b983d63df4ce9d10650742b5c/paka.cmark-1.44.0.tar.gz" } ], "1.45.0": [ { "comment_text": "", "digests": { "md5": "b3164de19bc7c7cda69bac60a23f365f", "sha256": "bea9b7c67e17323b328a2e02dc955d92c3ffdc34ec89dff34c4636815ef93dc6" }, "downloads": -1, "filename": "paka.cmark-1.45.0.tar.gz", "has_sig": false, "md5_digest": "b3164de19bc7c7cda69bac60a23f365f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 102606, "upload_time": "2018-11-18T17:10:54", "url": "https://files.pythonhosted.org/packages/5c/63/3fa8322c1dcd50b7e51ddcebb7ebfb24f14e8ad5a4eb735adfe25f74d1ec/paka.cmark-1.45.0.tar.gz" } ], "1.46.0": [ { "comment_text": "", "digests": { "md5": "71ce8c74905adc2ecf9787259ecfeaf0", "sha256": "276b4da036fab0464971e9a5fa4d52e14067b9a59f63d4bd3eadd13f2ccb656a" }, "downloads": -1, "filename": "paka.cmark-1.46.0.tar.gz", "has_sig": false, "md5_digest": "71ce8c74905adc2ecf9787259ecfeaf0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 102728, "upload_time": "2018-12-26T10:35:59", "url": "https://files.pythonhosted.org/packages/29/b4/b96827976d66fd852e169d13747bab15594cd9f80ca387a0d04fcf0287dd/paka.cmark-1.46.0.tar.gz" } ], "1.6.2": [ { "comment_text": "", "digests": { "md5": "3bd8cea2d3d5d54bb28374d30cfe4dee", "sha256": "c6a3149210ce7a5ff3deceb9100908c3e7bfc6742bdc306d85e6e1a623e67f94" }, "downloads": -1, "filename": "paka.cmark-1.6.2.tar.gz", "has_sig": false, "md5_digest": "3bd8cea2d3d5d54bb28374d30cfe4dee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 93527, "upload_time": "2017-01-05T17:30:00", "url": "https://files.pythonhosted.org/packages/cb/5c/ebb682a4bb8aec3aa7a5cda1d082d30bf8d226bc566a65f2237c76689b60/paka.cmark-1.6.2.tar.gz" } ], "1.6.3": [ { "comment_text": "", "digests": { "md5": "ddd87284d262e7e35396649a6b6de33f", "sha256": "ba614187038838797a51b2bea884f24face1cf2c25d5e856113d84b3d4de4fb9" }, "downloads": -1, "filename": "paka.cmark-1.6.3.tar.gz", "has_sig": false, "md5_digest": "ddd87284d262e7e35396649a6b6de33f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95334, "upload_time": "2017-01-06T08:38:15", "url": "https://files.pythonhosted.org/packages/cc/e1/c6481b7fd1ef194f7bf4f01596c14e3187d0cee4975dd9c909f06ff3b12b/paka.cmark-1.6.3.tar.gz" } ], "1.6.4": [ { "comment_text": "", "digests": { "md5": "3f3098c0a07779720bf2fd680aa90de2", "sha256": "8fbe833d0fb16104524310a43fa4febc640f586934d79c3f7631fe9625514092" }, "downloads": -1, "filename": "paka.cmark-1.6.4.tar.gz", "has_sig": false, "md5_digest": "3f3098c0a07779720bf2fd680aa90de2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95376, "upload_time": "2017-01-07T15:32:04", "url": "https://files.pythonhosted.org/packages/71/e1/5cbbf0b55f218015488c62cad5549481bfdeea16138bc06dbf3c7572a696/paka.cmark-1.6.4.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "4b60a2b5b6a7b109dde39371a4a84575", "sha256": "6d2113104658b045768f7a9e5c6b59aca45b447f353df67578514319ef7241ec" }, "downloads": -1, "filename": "paka.cmark-1.7.0.tar.gz", "has_sig": false, "md5_digest": "4b60a2b5b6a7b109dde39371a4a84575", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95436, "upload_time": "2017-01-08T18:15:35", "url": "https://files.pythonhosted.org/packages/86/a1/eb402e57f3fe0f74453b5b17edf47af961b7ac5ecc394383f4e135660248/paka.cmark-1.7.0.tar.gz" } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "a6b589f9ea00b7ce6d6e85b5e453bfa3", "sha256": "74640be618f32c685f80a1e5463b8a1061f1aaaaeba7e32f1758bc3980241958" }, "downloads": -1, "filename": "paka.cmark-1.7.1.tar.gz", "has_sig": false, "md5_digest": "a6b589f9ea00b7ce6d6e85b5e453bfa3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95432, "upload_time": "2017-01-13T16:41:34", "url": "https://files.pythonhosted.org/packages/58/c9/e8be9c82f0064afb41207255bf4148e58b6e5daeebd28a9ecc9287956b23/paka.cmark-1.7.1.tar.gz" } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "8669086234835e755515ae81acc40440", "sha256": "4e0545a4e89e8b6e8f3dc90cf6367c27e58e19245dfe64ddca9723593013ed0b" }, "downloads": -1, "filename": "paka.cmark-1.8.0.tar.gz", "has_sig": false, "md5_digest": "8669086234835e755515ae81acc40440", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95454, "upload_time": "2017-01-21T07:01:55", "url": "https://files.pythonhosted.org/packages/54/19/c995f7ed01db5545cfc7d2567395e01a034dd054f21ea69ff67e26bc353e/paka.cmark-1.8.0.tar.gz" } ], "1.9.1": [ { "comment_text": "", "digests": { "md5": "e4e0b2ed5c8f2924932c460e00488a31", "sha256": "7b4573b74350efe5b92849c5ed400b2440040ce7be476363db0e3053887086f9" }, "downloads": -1, "filename": "paka.cmark-1.9.1.tar.gz", "has_sig": false, "md5_digest": "e4e0b2ed5c8f2924932c460e00488a31", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96293, "upload_time": "2017-01-22T13:38:45", "url": "https://files.pythonhosted.org/packages/ff/0f/40d369f298194f50e388ad77ee2fe2d2d93cf994f41a405f269d6607c1d6/paka.cmark-1.9.1.tar.gz" } ], "1.9.2": [ { "comment_text": "", "digests": { "md5": "cccf2987b43720e1326edce73b3198c2", "sha256": "20fca0a78c44c4fb40fda9f0d15d9efa1b0c3fc38f272aae9e639d30822a2a9c" }, "downloads": -1, "filename": "paka.cmark-1.9.2.tar.gz", "has_sig": false, "md5_digest": "cccf2987b43720e1326edce73b3198c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96268, "upload_time": "2017-01-24T11:38:40", "url": "https://files.pythonhosted.org/packages/41/ec/e2ad687b8f7a6c42a2d62307ddfd8e842e45998c5e1eaac321417607be62/paka.cmark-1.9.2.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "0ba52bf436b964757e4f03bb20d6c8f1", "sha256": "3e418a61f84c706969cb9c9e6c86236c855e346de7a8d19fe2544510aa807688" }, "downloads": -1, "filename": "paka.cmark-2.0.0.tar.gz", "has_sig": false, "md5_digest": "0ba52bf436b964757e4f03bb20d6c8f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 103864, "upload_time": "2019-03-31T10:22:11", "url": "https://files.pythonhosted.org/packages/2f/09/17119991f4ad5d7f2264a2c14a17873c19407af7e1f241dd0aff85677e1f/paka.cmark-2.0.0.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "6e7938576b6fdcb9d63148563680d00d", "sha256": "9895a8b4545b8f5751f41f929ff60d0951f82b0aafae9f90738f13548fd8fbd4" }, "downloads": -1, "filename": "paka.cmark-2.1.0.tar.gz", "has_sig": false, "md5_digest": "6e7938576b6fdcb9d63148563680d00d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104089, "upload_time": "2019-04-28T13:41:09", "url": "https://files.pythonhosted.org/packages/ad/e7/0d067d62afb543e16a872f862e91476b1a213e5ff84c8c69f2d3ac52897e/paka.cmark-2.1.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "6e7938576b6fdcb9d63148563680d00d", "sha256": "9895a8b4545b8f5751f41f929ff60d0951f82b0aafae9f90738f13548fd8fbd4" }, "downloads": -1, "filename": "paka.cmark-2.1.0.tar.gz", "has_sig": false, "md5_digest": "6e7938576b6fdcb9d63148563680d00d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104089, "upload_time": "2019-04-28T13:41:09", "url": "https://files.pythonhosted.org/packages/ad/e7/0d067d62afb543e16a872f862e91476b1a213e5ff84c8c69f2d3ac52897e/paka.cmark-2.1.0.tar.gz" } ] }