{
"info": {
"author": "Gunther Klessinger",
"author_email": "gk@axiros.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Text Processing :: Markup"
],
"description": "NOTE: THIS IS FROM A PANDOC AUTOGENERATED ReST SOURCE, CONVERTED FROM MARKDOWN.\n\nGo `here `__ for the original.\n\nLight Markdown Renderer\n=======================\n\n|Build Status|\n\nDependency free renderer for a subset of markdown to the terminal - w/o\ngoing via HTML (i.e. no html markup support) - sloc (w/o comments)\naround 100, i.e. adaptable, extendable\n\n This one is intended soleley to hilite somewhat \"lightly\" structured\n text reasonably swift. Ideal for highlighting doc strings or CLI\n command help, where you don't want to install markdown libs to do\n that first - e.g. in new containers.\n\nIn no way this is useable as a full markdown document viewer, alone for\nthe missing html support.\n\nA real use case are bash scripts, where you repeatedly want to output\nformatted stuff, e.g. in a loop. Then, a very lightweight tool (short\nstartup time for the python process) is desirable. Note: There\n`are `__ unix standard\ntool based renderers around, with good results, check them out (and if\nonly to see how awesome ``sed`` really is...). They did not work for me\nfor some output related problems - but they might for you.\n\nOriginally the script was within a Here Document within bash scripts but\nthis version would be also useable inline in a python programs. Thats\nwhy some overhead for config mgmt is present - for a version embedded in\ne.g. a bash script you would only need the main function and replace the\n``C.`` with the shell eviron vars, e.g. ``C.H1`` -> ``$H1``\n\nDesign\n======\n\nWe assume the soure *is* already formatted with care and mdvl's main\njobs are the coloring and the wrapping. Meaning that the source is\nformatted to be readable in environments w/o coloring and structure\naware wrapping, specifically docstrings in source code editors.\n\n| Specifically this refers to the author using the markdown link\n reference feature instead of spamming the source with long urls.\n| Seel also the handling of linespacing, below.\n\nUsage\n=====\n\nInline\n------\n\n::\n\n mdvl(source_markdown, **config)\n\nPipe\n----\n\n::\n\n cat README.md | ./mdvl.py\n\nStandalone\n----------\n\n::\n\n ./mdv.py '''# Hello'''\n ./mdv.py README.md\n\n'Installation'\n==============\n\n::\n\n wget -q https://raw.githubusercontent.com/axiros/mdvl/master/mdvl.py\n\nYes, that url supports version pinning.\n\nIf you absolutely feel better with 10 files instead of one then do:\n\n::\n\n pip[3] install mdvl\n\n Remember: This is not a very feature rich renderer. If you anyway\n already have pip on the system you want a real viewer, e.g. mdv.\n\nConfiguration / Features\n========================\n\nRestricted set of md. This readme pretty much has them all in.\n\nThis is how the default output looks with default config. |image1|\n\nCheck attributes of classes\n```Facts`` `__\nand\n```Colors`` `__.\nThose you can deliver as kw args or via environ. e.g.:\n\n::\n\n set -a; H1=171; H2=54; term_width=50; header_numbering=-1; set +a\n ./mdvl.py README.md\n\nWorth mentioning\n----------------\n\nBlockquotes\n~~~~~~~~~~~\n\n Blockquotes > - in different levels > - with lists\n\nFenced Code or Indented Code\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n::\n\n fenced code - or indented code\n w/o syntax highlighting though\n\nLine Spacing\n~~~~~~~~~~~~\n\nWe stay closer to the source document than a real md renderer would,\ne.g. we *keep* all linebreaks between two textblocks. Intra textblock\nrendering is working like the standard, i.e. 2 spaces denote a linesep,\nelse we wrap according to available columns.\n\nQuestionable Features ;-)\n-------------------------\n\n*Header Auto Numbering* Set this parameter to a min. number of lines of\nmarkdown sources (-1 to switch feature off). When source document has\nmore lines than this we'll autonumber the headers.\n\n*Light \"Tables\"* This one is non standard - but somewhat handy for\ndocumenting e.g. CLI Params of a command: When first word of a line is\nstarred, we set a starting indent for the subsequent lines of that\ntextblock to the length of that first word. See rendering of this\nparagraph in ``mdvl``. That way you get an easy table-like presentation\nof lists with keywords, which look good also in the source. See the\nscreenshot of the rendered readme for a visual example. If you don't\nneed it, switch it off via ``no_smart_indent=True``.\n\n*Horizontal Rules* CommonMark allows to use 3 \"-\", \"\\_\" or star. We\nassign different colors to them, see rendering of this README with\n``mdvl``.\n\n*Indents* configure ``indent`` and/or ``width`` and/or ``rindent`` (\"r\"\nfor right) to get the output indented That feature comes handy if you\nwant to nest to markdown sources, i.g. module doc and function doc.\n|image2|\n\n*Single Line Handling* No leading line breaks, enables to use markdown\nwithin surrounding text.\n\nBugs\n----\n\nKnown and severe one is the problem of solicitated star characters. We\ncurrently can't detect them, the renderer assumes it is the beginning of\nan italic format and resets only at the next textblock :-(\n\nPy2 / Py3\n---------\n\nThe thing runs in Python2 and Python3 - for the frequent rendering use\ncase you want Python 2:\n\n::\n\n # python -m timeit \"import os; os.system('python -c \\\"i=1\\\"')\"\n 100 loops, best of 3: 10 msec per loop\n # python -m timeit \"import os; os.system('python3 -c \\\"i=1\\\"')\"\n 100 loops, best of 3: 18.1 msec per loop\n # python -m timeit \"import os; os.system('python -Ssc \\\"i=1\\\"')\"\n 100 loops, best of 3: 4.2 msec per loop\n # python -m timeit \"import os; os.system('python3 -Ssc \\\"i=1\\\"')\"\n 100 loops, best of 3: 10.6 msec per loop\n\n--------------\n\n\\_\\_\\_\\_\n--------\n\nThats all - and demonstrates the horizontal rules ;-)\n\n.. |Build Status| image:: https://travis-ci.org/axiros/mdvl.svg?branch=master\n :target: https://travis-ci.org/axiros/mdvl\n.. |image1| image:: ./img/default.png\n.. |image2| image:: ./img/indent.png\n\n\n\n",
"description_content_type": null,
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/axiros/mdvl",
"keywords": "markdown,markup,terminal,hilighting,syntax,source code",
"license": "BSD",
"maintainer": "",
"maintainer_email": "",
"name": "mdvl",
"package_url": "https://pypi.org/project/mdvl/",
"platform": "",
"project_url": "https://pypi.org/project/mdvl/",
"project_urls": {
"Homepage": "https://github.com/axiros/mdvl"
},
"release_url": "https://pypi.org/project/mdvl/2017.7.16.7/",
"requires_dist": null,
"requires_python": "",
"summary": "Lightweight Terminal Markdown Renderer",
"version": "2017.7.16.7"
},
"last_serial": 3021790,
"releases": {
"2017.7.13": [
{
"comment_text": "",
"digests": {
"md5": "957341a03f7ca1bcfc78565f7ae15e94",
"sha256": "18195e67fb6dd971ac141703989b03a7eb01dff2847e3b80d40375a88243ea28"
},
"downloads": -1,
"filename": "mdvl-2017.7.13-py2-none-any.whl",
"has_sig": false,
"md5_digest": "957341a03f7ca1bcfc78565f7ae15e94",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 11093,
"upload_time": "2017-07-13T18:02:59",
"url": "https://files.pythonhosted.org/packages/d8/79/4de7e40b91ab5555c7813bcd56c48c5d1217daf3bb8bd06fd9aa2b2ce338/mdvl-2017.7.13-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "356ea631543860158f0640dcdcd19ec3",
"sha256": "c365d2cc84998b9770800cdc6d93a19edeb18578be277207fbc17b63879d6dea"
},
"downloads": -1,
"filename": "mdvl-2017.7.13.tar.gz",
"has_sig": false,
"md5_digest": "356ea631543860158f0640dcdcd19ec3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7850,
"upload_time": "2017-07-13T18:03:02",
"url": "https://files.pythonhosted.org/packages/b2/65/93dc778bb8cc3280eec6a197da79db2ca75e22d08c57f2671b0aa51937e4/mdvl-2017.7.13.tar.gz"
}
],
"2017.7.14": [
{
"comment_text": "",
"digests": {
"md5": "f354cfefbe3ec8acabd334a039f290d7",
"sha256": "379e162bb9becf97023a47546a72a099c467c76c2f3454e11a354bb7ff273182"
},
"downloads": -1,
"filename": "mdvl-2017.7.14-py2-none-any.whl",
"has_sig": false,
"md5_digest": "f354cfefbe3ec8acabd334a039f290d7",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 11138,
"upload_time": "2017-07-13T18:27:16",
"url": "https://files.pythonhosted.org/packages/85/f1/f3fb7be9a047224bb9122db877ede24cdb659d0ff6b7dfb974ab66f75a94/mdvl-2017.7.14-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "8076ef06659ee99e96825404361226b5",
"sha256": "40b6ea1012df9fdff6694cdc19a7865d2a960517cdbc8a5a56f971db90eee348"
},
"downloads": -1,
"filename": "mdvl-2017.7.14.tar.gz",
"has_sig": false,
"md5_digest": "8076ef06659ee99e96825404361226b5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7921,
"upload_time": "2017-07-13T18:27:19",
"url": "https://files.pythonhosted.org/packages/51/36/9c2df0e2d1b9d357298a33f4188643f62720eb769c871f3fdc8b676a2f1b/mdvl-2017.7.14.tar.gz"
}
],
"2017.7.15": [
{
"comment_text": "",
"digests": {
"md5": "6818a519193f16ea3cf185aa382892d3",
"sha256": "f1ad01d73b06a77baf64b617a4796758eb2115378603a998808a71ac3731f965"
},
"downloads": -1,
"filename": "mdvl-2017.7.15-py2-none-any.whl",
"has_sig": false,
"md5_digest": "6818a519193f16ea3cf185aa382892d3",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 11138,
"upload_time": "2017-07-13T18:27:17",
"url": "https://files.pythonhosted.org/packages/a7/bc/8242358478a502910682f9b7c51b48736823869ec6e0787a5d10f03dca0e/mdvl-2017.7.15-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "4da414a9dfbb301288b74b79a04e97e1",
"sha256": "141d7be4837f984cb7a370553717630af920f1ea1fe961c553b58d1f00d0457b"
},
"downloads": -1,
"filename": "mdvl-2017.7.15.tar.gz",
"has_sig": false,
"md5_digest": "4da414a9dfbb301288b74b79a04e97e1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7922,
"upload_time": "2017-07-13T18:27:21",
"url": "https://files.pythonhosted.org/packages/c6/18/97fcc4a18f106e8bfabc439312cad2fe3e1162bd33351a077576ee4edfbe/mdvl-2017.7.15.tar.gz"
}
],
"2017.7.16": [
{
"comment_text": "",
"digests": {
"md5": "e9e5cbe2d62fcac82fd5bf7d9ac24549",
"sha256": "97ea07b7ab7b6000553f68e64cfc3b829b458af136aacf71a1047111aa6c865d"
},
"downloads": -1,
"filename": "mdvl-2017.7.16-py2-none-any.whl",
"has_sig": false,
"md5_digest": "e9e5cbe2d62fcac82fd5bf7d9ac24549",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 12609,
"upload_time": "2017-07-13T22:10:31",
"url": "https://files.pythonhosted.org/packages/2d/39/ec2ca30e06bc001d631281717384f83806d30d1fbbe9b4201d30f039667d/mdvl-2017.7.16-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "485896a58e06584f0f43779a172000a9",
"sha256": "fa334079d596b16f48e1942335804a441a31de06ce99a9c66f22be4a68770059"
},
"downloads": -1,
"filename": "mdvl-2017.7.16.tar.gz",
"has_sig": false,
"md5_digest": "485896a58e06584f0f43779a172000a9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9021,
"upload_time": "2017-07-13T22:10:33",
"url": "https://files.pythonhosted.org/packages/c9/a4/49f8be65afd4aabba78638456b418eba759fcce30e64eeaf3662b867800d/mdvl-2017.7.16.tar.gz"
}
],
"2017.7.16.1": [
{
"comment_text": "",
"digests": {
"md5": "08422f3b17a05d04272f2f703e2fb5bc",
"sha256": "5aa089a896e3a9eaf9590fa4467ef112b1a9e7b6f6093b50d742a0a32c14fbeb"
},
"downloads": -1,
"filename": "mdvl-2017.7.16.1-py2-none-any.whl",
"has_sig": false,
"md5_digest": "08422f3b17a05d04272f2f703e2fb5bc",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 12643,
"upload_time": "2017-07-13T22:18:30",
"url": "https://files.pythonhosted.org/packages/3d/d6/6aedcbc79a72c0e6ba578f313d578e93c2c1df0f20e923fb5d045b5a4d96/mdvl-2017.7.16.1-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "5fa3af4f19383725c6dc6a1e286a653d",
"sha256": "f62c4dcfe95d83cc21d38d6aa8f143242875a2b6eafb7090a38a92eaeba3f3e4"
},
"downloads": -1,
"filename": "mdvl-2017.7.16.1.tar.gz",
"has_sig": false,
"md5_digest": "5fa3af4f19383725c6dc6a1e286a653d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9753,
"upload_time": "2017-07-13T22:18:32",
"url": "https://files.pythonhosted.org/packages/cc/fb/7924bda86a009eff82d0252168317961372d90f55fcc81395aa15c34100f/mdvl-2017.7.16.1.tar.gz"
}
],
"2017.7.16.2": [
{
"comment_text": "",
"digests": {
"md5": "514c393dddf0655c36718c06e1cd759e",
"sha256": "31d4fa4c05ad68a4dbbe7d93d2268b50b1d583d6b7eb53cb6b9e2a248e8de463"
},
"downloads": -1,
"filename": "mdvl-2017.7.16.2-py2-none-any.whl",
"has_sig": false,
"md5_digest": "514c393dddf0655c36718c06e1cd759e",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 7493,
"upload_time": "2017-07-13T22:23:10",
"url": "https://files.pythonhosted.org/packages/c0/86/936235908f2a01906ff67bf06bafa1f61b48763b7098cda72985c0a9e34a/mdvl-2017.7.16.2-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "997f0e0e0fc9a98664ea31932471b91c",
"sha256": "9d9ba6b0686ca47bdfe8f28f69020d3aaf122e66b75b3bc36fae3ef026906782"
},
"downloads": -1,
"filename": "mdvl-2017.7.16.2.tar.gz",
"has_sig": false,
"md5_digest": "997f0e0e0fc9a98664ea31932471b91c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8939,
"upload_time": "2017-07-13T22:23:11",
"url": "https://files.pythonhosted.org/packages/2f/42/bccb633128c9ec0d00442fcff9d9254b2aa2482470db508947e6595bba57/mdvl-2017.7.16.2.tar.gz"
}
],
"2017.7.16.3": [
{
"comment_text": "",
"digests": {
"md5": "7f387734d4524307cded92c8a428fc53",
"sha256": "96caba568b95d97ed5a921cce68deebfe2541f5a711b67064c3149f9adae6a80"
},
"downloads": -1,
"filename": "mdvl-2017.7.16.3-py2-none-any.whl",
"has_sig": false,
"md5_digest": "7f387734d4524307cded92c8a428fc53",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 12758,
"upload_time": "2017-07-13T22:25:07",
"url": "https://files.pythonhosted.org/packages/84/a0/b448b3addad81a6726fd1ea2353da8a5d4463b9ff532b9e3667c84f05ea1/mdvl-2017.7.16.3-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "1d44a0edd55153bf4dc6d241f75a8774",
"sha256": "f671767e6b7479090ffa95f761d61ce1b931ee8f5268d79112c951c1c941838f"
},
"downloads": -1,
"filename": "mdvl-2017.7.16.3.tar.gz",
"has_sig": false,
"md5_digest": "1d44a0edd55153bf4dc6d241f75a8774",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9561,
"upload_time": "2017-07-13T22:25:09",
"url": "https://files.pythonhosted.org/packages/14/8f/c72602e08b83f0c29dd1492155c7fc9855e7d337c8e13be424e0e7a6c96f/mdvl-2017.7.16.3.tar.gz"
}
],
"2017.7.16.4": [
{
"comment_text": "",
"digests": {
"md5": "b8b5da76feb3a3b3968f6561a9f9e0c2",
"sha256": "7eb0f17c3bac6cffb5656005e30a1de1735beaa91d66d5031d56b64ca2e93c5e"
},
"downloads": -1,
"filename": "mdvl-2017.7.16.4-py2-none-any.whl",
"has_sig": false,
"md5_digest": "b8b5da76feb3a3b3968f6561a9f9e0c2",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 7669,
"upload_time": "2017-07-13T22:28:53",
"url": "https://files.pythonhosted.org/packages/0d/89/745783ee3687c5af41ec774bfde28ae4d1ef5d2d816bbb1a74c9b661d43a/mdvl-2017.7.16.4-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "bd6b69c550625130c00f425d10dbf309",
"sha256": "2c25151482ca0197d01ad1e77c05064f03f9ac30fd79e0e3f7edaea3c789c099"
},
"downloads": -1,
"filename": "mdvl-2017.7.16.4.tar.gz",
"has_sig": false,
"md5_digest": "bd6b69c550625130c00f425d10dbf309",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9013,
"upload_time": "2017-07-13T22:28:54",
"url": "https://files.pythonhosted.org/packages/ee/18/1de2f5ffccf7869e07f56a581a6bd1ac7b0dda5a9fd646401df946520cb8/mdvl-2017.7.16.4.tar.gz"
}
],
"2017.7.16.5": [
{
"comment_text": "",
"digests": {
"md5": "ad1e225e963fe881e006ae5dd0c28b27",
"sha256": "f1a8aa820a67d25330d2c5d1c5b7ad6b0e1c6c8d361018f18cee945c20253204"
},
"downloads": -1,
"filename": "mdvl-2017.7.16.5-py2-none-any.whl",
"has_sig": false,
"md5_digest": "ad1e225e963fe881e006ae5dd0c28b27",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 12858,
"upload_time": "2017-07-13T22:29:51",
"url": "https://files.pythonhosted.org/packages/39/52/e24e377b63820c9c4cfdd7b8f1966c0aab9ab754fb9e80708f5f9e137f22/mdvl-2017.7.16.5-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "fe992ea60899d95cd9a3e9054ccebdbf",
"sha256": "c0a999a6ae63e125b4d115245407e67c72d504d0d641a448921cc84f336b8b2b"
},
"downloads": -1,
"filename": "mdvl-2017.7.16.5.tar.gz",
"has_sig": false,
"md5_digest": "fe992ea60899d95cd9a3e9054ccebdbf",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9639,
"upload_time": "2017-07-13T22:29:53",
"url": "https://files.pythonhosted.org/packages/1f/9f/ced2bfe78b900d0902cf293bf679cff6705998968112cfa0d67d6d326815/mdvl-2017.7.16.5.tar.gz"
}
],
"2017.7.16.6": [
{
"comment_text": "",
"digests": {
"md5": "3541b3a5fae5d7766d3ec477ad1f142e",
"sha256": "cbac8627d55c1b24118ce0a40b5a386fc9692bc9f0f75c8abfdb4d1e2fa7649a"
},
"downloads": -1,
"filename": "mdvl-2017.7.16.6-py2-none-any.whl",
"has_sig": false,
"md5_digest": "3541b3a5fae5d7766d3ec477ad1f142e",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 12949,
"upload_time": "2017-07-13T22:32:58",
"url": "https://files.pythonhosted.org/packages/30/a3/522330012b52e300f3da59581eea0a5f66275c23071de0bc3853e1896477/mdvl-2017.7.16.6-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "fc7f265975d2cd4685b02ad86e6de8c6",
"sha256": "47ab24913380974d8c3b4df9add7246a1281449c0737a41aa4baa22987ae10a5"
},
"downloads": -1,
"filename": "mdvl-2017.7.16.6.tar.gz",
"has_sig": false,
"md5_digest": "fc7f265975d2cd4685b02ad86e6de8c6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9691,
"upload_time": "2017-07-13T22:32:59",
"url": "https://files.pythonhosted.org/packages/d1/85/3ebdbc8cf2297935b8d531f8de06ff5840d60d6d25f81aa119b141906f95/mdvl-2017.7.16.6.tar.gz"
}
],
"2017.7.16.7": [
{
"comment_text": "",
"digests": {
"md5": "6ef765fe92a0d5490ea4b68b422c8d5a",
"sha256": "6ae2e52fe2070515b80e811064ca79bb8968841d53910f8b41ec25f89dd16aa0"
},
"downloads": -1,
"filename": "mdvl-2017.7.16.7-py2-none-any.whl",
"has_sig": false,
"md5_digest": "6ef765fe92a0d5490ea4b68b422c8d5a",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 12962,
"upload_time": "2017-07-13T23:15:12",
"url": "https://files.pythonhosted.org/packages/6d/41/3e4e56d3bbbbee81366f4740d8de301ae06a7332c5a01af14f1b29551876/mdvl-2017.7.16.7-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "9cf2f4132ad9697838a400f2370a4539",
"sha256": "04d4dc49047c11642da147c7799b5aac8b48b664e146f0a12c0d8bd75c0971b3"
},
"downloads": -1,
"filename": "mdvl-2017.7.16.7.tar.gz",
"has_sig": false,
"md5_digest": "9cf2f4132ad9697838a400f2370a4539",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9696,
"upload_time": "2017-07-13T23:15:14",
"url": "https://files.pythonhosted.org/packages/38/11/cae5e6d24fd187e737def1a8618e17f701c4961218ff2d1bfe23a3ece8cb/mdvl-2017.7.16.7.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "6ef765fe92a0d5490ea4b68b422c8d5a",
"sha256": "6ae2e52fe2070515b80e811064ca79bb8968841d53910f8b41ec25f89dd16aa0"
},
"downloads": -1,
"filename": "mdvl-2017.7.16.7-py2-none-any.whl",
"has_sig": false,
"md5_digest": "6ef765fe92a0d5490ea4b68b422c8d5a",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 12962,
"upload_time": "2017-07-13T23:15:12",
"url": "https://files.pythonhosted.org/packages/6d/41/3e4e56d3bbbbee81366f4740d8de301ae06a7332c5a01af14f1b29551876/mdvl-2017.7.16.7-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "9cf2f4132ad9697838a400f2370a4539",
"sha256": "04d4dc49047c11642da147c7799b5aac8b48b664e146f0a12c0d8bd75c0971b3"
},
"downloads": -1,
"filename": "mdvl-2017.7.16.7.tar.gz",
"has_sig": false,
"md5_digest": "9cf2f4132ad9697838a400f2370a4539",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9696,
"upload_time": "2017-07-13T23:15:14",
"url": "https://files.pythonhosted.org/packages/38/11/cae5e6d24fd187e737def1a8618e17f701c4961218ff2d1bfe23a3ece8cb/mdvl-2017.7.16.7.tar.gz"
}
]
}