{ "info": { "author": "Nico Schl\u00f6mer", "author_email": "nico.schloemer@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", "Topic :: Multimedia :: Graphics :: Graphics Conversion", "Topic :: Scientific/Engineering :: Visualization" ], "description": "**matplotlib2tikz has been renamed to [tikzplotlib](https://pypi.org/project/tikzplotlib). matplotlib2tikz will no longer be supported.**\n\n---\n\n# matplotlib2tikz\n\n[![CircleCI](https://img.shields.io/circleci/project/github/nschloe/matplotlib2tikz/master.svg)](https://circleci.com/gh/nschloe/matplotlib2tikz/tree/master)\n[![codecov](https://img.shields.io/codecov/c/github/nschloe/matplotlib2tikz.svg)](https://codecov.io/gh/nschloe/matplotlib2tikz)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)\n[![Documentation Status](https://readthedocs.org/projects/matplotlib2tikz/badge/?version=latest)](https://readthedocs.org/projects/matplotlib2tikz/?badge=latest)\n[![awesome](https://img.shields.io/badge/awesome-yes-brightgreen.svg)](https://github.com/nschloe/matplotlib2tikz)\n[![PyPi Version](https://img.shields.io/pypi/v/matplotlib2tikz.svg)](https://pypi.org/project/matplotlib2tikz)\n[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.1173089.svg)](https://doi.org/10.5281/zenodo.1173089)\n[![GitHub stars](https://img.shields.io/github/stars/nschloe/matplotlib2tikz.svg?logo=github&label=Stars&logoColor=white)](https://github.com/nschloe/matplotlib2tikz)\n[![PyPi downloads](https://img.shields.io/pypi/dd/matplotlib2tikz.svg)](https://pypistats.org/packages/matplotlib2tikz)\n\nThis is matplotlib2tikz, a Python tool for converting matplotlib figures into\n[PGFPlots](https://www.ctan.org/pkg/pgfplots) ([PGF/TikZ](https://www.ctan.org/pkg/pgf))\nfigures like\n\n![](https://nschloe.github.io/matplotlib2tikz/example.png)\n\nfor native inclusion into LaTeX documents.\n\nThe output of matplotlib2tikz is in\n[PGFPlots](http://pgfplots.sourceforge.net/pgfplots.pdf), a LaTeX library that sits on\ntop of [PGF/TikZ](https://en.wikipedia.org/wiki/PGF/TikZ) and describes graphs in terms\nof axes, data etc. Consequently, the output of matplotlib2tikz\n\n * retains more information,\n * can be more easily understood, and\n * is more easily editable\n\nthan [raw TikZ output](https://matplotlib.org/users/whats_new.html#pgf-tikz-backend).\nFor example, the matplotlib figure\n```python,test\nimport matplotlib.pyplot as plt\nimport numpy as np\n\nplt.style.use(\"ggplot\")\n\nt = np.arange(0.0, 2.0, 0.1)\ns = np.sin(2 * np.pi * t)\ns2 = np.cos(2 * np.pi * t)\nplt.plot(t, s, \"o-\", lw=4.1)\nplt.plot(t, s2, \"o-\", lw=4.1)\nplt.xlabel(\"time (s)\")\nplt.ylabel(\"Voltage (mV)\")\nplt.title(\"Simple plot $\\\\frac{\\\\alpha}{2}$\")\nplt.grid(True)\n\nimport matplotlib2tikz\n\nmatplotlib2tikz.save(\"test.tex\")\n```\n(see above) gives\n```latex\n\\begin{tikzpicture}\n\n\\definecolor{color0}{rgb}{0.886274509803922,0.290196078431373,0.2}\n\\definecolor{color1}{rgb}{0.203921568627451,0.541176470588235,0.741176470588235}\n\n\\begin{axis}[\naxis background/.style={fill=white!89.80392156862746!black},\naxis line style={white},\ntick align=outside,\ntick pos=left,\ntitle={Simple plot $\\frac{\\alpha}{2}$},\nx grid style={white},\nxlabel={time (s)},\nxmajorgrids,\nxmin=-0.095, xmax=1.995,\ny grid style={white},\nylabel={Voltage (mV)},\nymajorgrids,\nymin=-1.1, ymax=1.1\n]\n\\addplot [line width=1.64pt, color0, mark=*, mark size=3, mark options={solid}]\ntable {%\n0 0\n0.1 0.587785252292473\n% [...]\n1.9 -0.587785252292473\n};\n\\addplot [line width=1.64pt, color1, mark=*, mark size=3, mark options={solid}]\ntable {%\n0 1\n0.1 0.809016994374947\n% [...]\n1.9 0.809016994374947\n};\n\\end{axis}\n\n\\end{tikzpicture}\n```\n(Use `get_tikz_code()` instead of `save()` if you want the code as a string.)\n\nTweaking the plot is straightforward and can be done as part of your LaTeX work flow.\n[The fantastic PGFPlots manual](http://pgfplots.sourceforge.net/pgfplots.pdf) contains\ngreat examples of how to make your plot look even better.\n\nOf course, not all figures produced by matplotlib can be converted without error.\nNotably, [3D plots don't work](https://github.com/matplotlib/matplotlib/issues/7243).\n\n### Installation\n\nmatplotlib2tikz is [available from the Python Package\nIndex](https://pypi.org/project/matplotlib2tikz/), so simply type\n```\npip3 install matplotlib2tikz --user\n```\nto install/update.\n\n\n### Usage\n\n1. Generate your matplotlib plot as usual.\n\n2. Instead of `pyplot.show()`, invoke matplotlib2tikz by\n ```python\n import matplotlib2tikz\n matplotlib2tikz.save(\"mytikz.tex\")\n ```\n to store the TikZ file as `mytikz.tex`.\n\n3. Add the contents of `mytikz.tex` into your LaTeX source code. A convenient way of\n doing so is via\n ```latex\n \\input{/path/to/mytikz.tex}\n ```\n Also make sure that the packages for PGFPlots and proper Unicode support and are\n included in the header of your document:\n ```latex\n \\usepackage[utf8]{inputenc}\n \\usepackage{fontspec} % optional\n \\usepackage{pgfplots}\n \\pgfplotsset{compat=newest}\n \\usepgfplotslibrary{groupplots}\n \\usepgfplotslibrary{dateplot}\n ```\n\n### Contributing\n\nIf you experience bugs, would like to contribute, have nice examples of what\nmatplotlib2tikz can do, or if you are just looking for more information, then please\nvisit [matplotlib2tikz's GitHub page](https://github.com/nschloe/matplotlib2tikz).\n\n\n### Testing\n\nmatplotlib2tikz has automatic unit testing to make sure that the software doesn't\naccidentally get worse over time. In `test/`, a number of test cases are specified.\nThose run through matplotlib2tikz and compare the output with a previously stored\nreference TeX file.\n\nTo run the tests, just check out this repository and type\n```\npytest\n```\n\n### Distribution\n\nTo create a new release\n\n1. bump the `__version__` number,\n\n2. publish to PyPi and GitHub:\n ```\n $ make publish\n ```\n\n### License\n\nmatplotlib2tikz is published under the [MIT license](https://en.wikipedia.org/wiki/MIT_License).\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/nschloe/matplotlib2tikz", "keywords": "", "license": "License :: OSI Approved :: MIT License", "maintainer": "", "maintainer_email": "", "name": "matplotlib2tikz", "package_url": "https://pypi.org/project/matplotlib2tikz/", "platform": "", "project_url": "https://pypi.org/project/matplotlib2tikz/", "project_urls": { "Homepage": "https://github.com/nschloe/matplotlib2tikz" }, "release_url": "https://pypi.org/project/matplotlib2tikz/0.7.6/", "requires_dist": [ "matplotlib (>=1.4.0)", "numpy", "Pillow", "six", "pipdate (<0.4.0,>=0.3.0) ; extra == 'all'", "pipdate (<0.4.0,>=0.3.0) ; extra == 'update'" ], "requires_python": "", "summary": "Convert matplotlib figures into TikZ/PGFPlots", "version": "0.7.6" }, "last_serial": 5991873, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "3e5f57ec8cac846b9605a90eae5c6df5", "sha256": "d39433caed0edf15d5092bce0df2b2e314bb7a6fee65e946c51c52fbfde0565c" }, "downloads": -1, "filename": "matplotlib2tikz-0.1.0.tar.gz", "has_sig": false, "md5_digest": "3e5f57ec8cac846b9605a90eae5c6df5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19884, "upload_time": "2015-10-12T19:14:30", "url": "https://files.pythonhosted.org/packages/67/54/963589009909f8f74dfb0c7e3ab039048bdea01ea9666b6fce76ed4a076c/matplotlib2tikz-0.1.0.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "b6e474744b382810e6472fca0927a325", "sha256": "2f765d7267983f6979cbec26c9342c8a4ba0bc28d5c39991e85ac0198c7a0a67" }, "downloads": -1, "filename": "matplotlib2tikz-0.2.0.tar.gz", "has_sig": false, "md5_digest": "b6e474744b382810e6472fca0927a325", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19860, "upload_time": "2015-10-12T19:15:04", "url": "https://files.pythonhosted.org/packages/ea/9b/f84e5946eba97a7ee68444810a3f1ece12e71217ef4310fc1945019626f0/matplotlib2tikz-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "7acebd87d349f82893edec04754b6e54", "sha256": "a5fc6a1c05c5d45a6d96bc2c1b656fa1259d6c21be61335cc84045b81eeb1aac" }, "downloads": -1, "filename": "matplotlib2tikz-0.2.1.tar.gz", "has_sig": false, "md5_digest": "7acebd87d349f82893edec04754b6e54", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20427, "upload_time": "2015-10-13T14:47:15", "url": "https://files.pythonhosted.org/packages/40/54/bf33dda8afd288e715e1f2476d8b1e4a51aae7f9309a00b13553bee94315/matplotlib2tikz-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "d8fc7344e78efa32b0ed70170b3fc632", "sha256": "d58718146bab973ce8981d55e9d9b99b758194088b6bbf7d7d8aad6758bbecd1" }, "downloads": -1, "filename": "matplotlib2tikz-0.2.2.tar.gz", "has_sig": true, "md5_digest": "d8fc7344e78efa32b0ed70170b3fc632", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20429, "upload_time": "2015-10-13T15:38:49", "url": "https://files.pythonhosted.org/packages/ec/1b/cfbee239f652fd4ed6c690b664ece252f70b10c13bb170ed4f4c5eec9758/matplotlib2tikz-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "1ded08bc1eda262cabae303c2e98a81d", "sha256": "5a0579c555d596761329bd6bfb4a71fdf6e7d931def8c29f065e26b88c8d2508" }, "downloads": -1, "filename": "matplotlib2tikz-0.2.3.tar.gz", "has_sig": true, "md5_digest": "1ded08bc1eda262cabae303c2e98a81d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20426, "upload_time": "2015-10-14T14:58:55", "url": "https://files.pythonhosted.org/packages/48/f2/42d22b7f03c0114abd7dfbe47f418778d7cdb421ae67cf87ac8f0887db5f/matplotlib2tikz-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "7300302e37b18e43b3c0d38b2ae593b0", "sha256": "dc0baaf8e854c1557885a22a23a1da4dcfbe43ce4dcd0c0a3253d282cf8a03a9" }, "downloads": -1, "filename": "matplotlib2tikz-0.2.4.tar.gz", "has_sig": true, "md5_digest": "7300302e37b18e43b3c0d38b2ae593b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20681, "upload_time": "2015-10-18T14:37:49", "url": "https://files.pythonhosted.org/packages/da/5b/585b0890797098a9a047809fd41f1ab16cbe880f28de786e542141ff03fb/matplotlib2tikz-0.2.4.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "ba84bba1b1654fbd919090a570bdb8d8", "sha256": "34bc97ac309d0f70f9fdfd2aaa05a26cea0998e3d6bf283ab818df6e8502e559" }, "downloads": -1, "filename": "matplotlib2tikz-0.3.0.tar.gz", "has_sig": true, "md5_digest": "ba84bba1b1654fbd919090a570bdb8d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21352, "upload_time": "2015-10-26T08:46:25", "url": "https://files.pythonhosted.org/packages/40/28/bc1b6a35a9707c377195551b3e59f4275660dc0fbf088173c61f6b3c89d6/matplotlib2tikz-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "87f8f691af1a3027c4d7aa387a76bf5e", "sha256": "2e0f75cf5ce04de519de59e50d483216d3a3deb670c72f28cbac57297e78285f" }, "downloads": -1, "filename": "matplotlib2tikz-0.3.1.tar.gz", "has_sig": true, "md5_digest": "87f8f691af1a3027c4d7aa387a76bf5e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21348, "upload_time": "2015-10-26T08:50:09", "url": "https://files.pythonhosted.org/packages/08/e5/5f06452ef3e95d43c8162214b7fc39307156069bbaff83329292f0171f93/matplotlib2tikz-0.3.1.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "f0cb0c8c13a1d311c3060ed99ed3ef52", "sha256": "d93f9ef7d89b09daa5301da734cc968506a35baff6eb26e53aa32b717532700a" }, "downloads": -1, "filename": "matplotlib2tikz-0.4.0.tar.gz", "has_sig": true, "md5_digest": "f0cb0c8c13a1d311c3060ed99ed3ef52", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21574, "upload_time": "2015-11-01T23:24:01", "url": "https://files.pythonhosted.org/packages/2e/dd/e5cd7a886b8daa1afe757c10ff3a05b2793de2125105d59d53c8add5afd1/matplotlib2tikz-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "377b3006aec58be677ff018f9a1305ed", "sha256": "ac861035a15d01390cb38d99f9d3ca7639776053c43f798d6be9383d9fc264d4" }, "downloads": -1, "filename": "matplotlib2tikz-0.4.1.tar.gz", "has_sig": true, "md5_digest": "377b3006aec58be677ff018f9a1305ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21393, "upload_time": "2015-11-02T12:09:03", "url": "https://files.pythonhosted.org/packages/45/52/650b48b0a679af83310d29cb19629411e9a47b9deea9b1b33eb12a33d607/matplotlib2tikz-0.4.1.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "05869f877740423f65a70538fd3b57fe", "sha256": "ad00396d146b1c7a6d2dd4adcc21e0db2596eda264175f8cdeccab595e5f26b4" }, "downloads": -1, "filename": "matplotlib2tikz-0.5.0.tar.gz", "has_sig": true, "md5_digest": "05869f877740423f65a70538fd3b57fe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5495, "upload_time": "2015-11-07T15:26:13", "url": "https://files.pythonhosted.org/packages/7b/c4/78c51a6e1bb20142e0febe985de0e473478e3b9a081a5bd6f14b9413a335/matplotlib2tikz-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "9cf510230bcc11f0142d3a1c33622d95", "sha256": "30649d1783cf6d7e64085cbd9e1e076e49865f4c6512cc53f5d5e6d75bf487b2" }, "downloads": -1, "filename": "matplotlib2tikz-0.5.1.tar.gz", "has_sig": true, "md5_digest": "9cf510230bcc11f0142d3a1c33622d95", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22134, "upload_time": "2015-11-09T19:13:09", "url": "https://files.pythonhosted.org/packages/ea/35/54caa1d41e5782a8ed4c6ed1db65c20b8280a3ad215e7ee5aeb184c1a9d2/matplotlib2tikz-0.5.1.tar.gz" } ], "0.5.10": [ { "comment_text": "", "digests": { "md5": "1fcf50504c2beabdbc7c4a944c9348a1", "sha256": "aead12df5923005ac23914970c7005615216487a028ee83773e7b7def02edf85" }, "downloads": -1, "filename": "matplotlib2tikz-0.5.10.tar.gz", "has_sig": true, "md5_digest": "1fcf50504c2beabdbc7c4a944c9348a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23750, "upload_time": "2016-07-29T18:03:22", "url": "https://files.pythonhosted.org/packages/15/bc/f724489317c7e5838351f9f274a175e2f7f051ee8e3efd0203da709616fc/matplotlib2tikz-0.5.10.tar.gz" } ], "0.5.11": [ { "comment_text": "", "digests": { "md5": "ccf7a9a25fd42a34618f5a557a62b542", "sha256": "e358b58ee1deabd353365b53d8a1f1bbc209e80fa30af6dc38cdbd001b28cfde" }, "downloads": -1, "filename": "matplotlib2tikz-0.5.11.tar.gz", "has_sig": true, "md5_digest": "ccf7a9a25fd42a34618f5a557a62b542", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24019, "upload_time": "2016-09-08T07:28:17", "url": "https://files.pythonhosted.org/packages/ca/86/281d8562978dcc284e602d6a1b40c21cc6e9c44378adc5de36bd96104844/matplotlib2tikz-0.5.11.tar.gz" } ], "0.5.12": [ { "comment_text": "", "digests": { "md5": "d5de5f756b12c6ec3386cc0eb1d4fcd3", "sha256": "b6c220df1d78097cb65041008da6b81e3fc9bea944aa1020ea658cf2b17ced10" }, "downloads": -1, "filename": "matplotlib2tikz-0.5.12.tar.gz", "has_sig": true, "md5_digest": "d5de5f756b12c6ec3386cc0eb1d4fcd3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24169, "upload_time": "2016-09-26T09:41:07", "url": "https://files.pythonhosted.org/packages/21/42/488ed14941e0c895f6a8193e0d1f094f6e220ca018c7ed302c1d19649535/matplotlib2tikz-0.5.12.tar.gz" } ], "0.5.13": [ { "comment_text": "", "digests": { "md5": "2a209314638448cd122afc6b036067e4", "sha256": "1016f60bf16efd11f63eba82f7293b8e4803a91ec23b37115e894244d20aacbd" }, "downloads": -1, "filename": "matplotlib2tikz-0.5.13.tar.gz", "has_sig": true, "md5_digest": "2a209314638448cd122afc6b036067e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24218, "upload_time": "2016-10-06T09:56:00", "url": "https://files.pythonhosted.org/packages/e4/78/dce67673fa10fc90cf6a2b32d7f6afb20accd70eb6099538ed2c3ff902f2/matplotlib2tikz-0.5.13.tar.gz" } ], "0.5.14": [ { "comment_text": "", "digests": { "md5": "2f497daeaf6614a2907ea5c06fa439e8", "sha256": "4759a4af7fcce23e0ea1aaa875d1c2b31f26f4412513603c1f6524a9fe48964f" }, "downloads": -1, "filename": "matplotlib2tikz-0.5.14.tar.gz", "has_sig": true, "md5_digest": "2f497daeaf6614a2907ea5c06fa439e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24290, "upload_time": "2016-10-07T15:50:58", "url": "https://files.pythonhosted.org/packages/fc/88/4e9a7634ccfbd7c126976b6913df9cff817ea75b56e3fc515ae9692871cc/matplotlib2tikz-0.5.14.tar.gz" } ], "0.5.15": [ { "comment_text": "", "digests": { "md5": "230074b5348a1874e3d0ac4bc6cc5d55", "sha256": "e0527f94e203447e266622f3b3c915b5d01b9781ab03c3124794933caa89ef8a" }, "downloads": -1, "filename": "matplotlib2tikz-0.5.15.tar.gz", "has_sig": true, "md5_digest": "230074b5348a1874e3d0ac4bc6cc5d55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24997, "upload_time": "2016-10-24T17:56:47", "url": "https://files.pythonhosted.org/packages/50/c8/bd6bf54bd3f74a86f129c33af67a85a25817ab47e5d90ef730dd435431cf/matplotlib2tikz-0.5.15.tar.gz" } ], "0.5.16": [ { "comment_text": "", "digests": { "md5": "4e3def62e8a2421cf085ee3d64ca9d67", "sha256": "4f640fe0fe67bebc0a63f2061f4c74f13caddb4200c6fc65f006c1ae7d76325d" }, "downloads": -1, "filename": "matplotlib2tikz-0.5.16.tar.gz", "has_sig": true, "md5_digest": "4e3def62e8a2421cf085ee3d64ca9d67", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25296, "upload_time": "2016-12-08T19:15:13", "url": "https://files.pythonhosted.org/packages/89/37/e420492fd02f499b56c2f1121a3eb535bbdf077d46428cd9e45c445b0843/matplotlib2tikz-0.5.16.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "99923c4fc3e91fe03d65a8956bdc82cf", "sha256": "007286bb420e539053a9ec2aaee29670d117aae2283616aca00e9ba2bb5920e6" }, "downloads": -1, "filename": "matplotlib2tikz-0.5.2.tar.gz", "has_sig": true, "md5_digest": "99923c4fc3e91fe03d65a8956bdc82cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22449, "upload_time": "2015-12-08T16:27:20", "url": "https://files.pythonhosted.org/packages/d7/3e/1ce90ae88e6a56a74eb34c2faa16d2e1964d8e0e25515ab7938aaffd6582/matplotlib2tikz-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "fb02fd76c682f187ba2028ceb1ed987b", "sha256": "05c21bb090149fc09f70794177c1ce8daea3897c15f300b9ac960364ace77660" }, "downloads": -1, "filename": "matplotlib2tikz-0.5.3.tar.gz", "has_sig": true, "md5_digest": "fb02fd76c682f187ba2028ceb1ed987b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22471, "upload_time": "2016-01-03T23:58:02", "url": "https://files.pythonhosted.org/packages/d6/ac/6dae14d6aafda7d1ccce52d6bc3eea3b5a0ecd2c98c344cf90d9ae6b7015/matplotlib2tikz-0.5.3.tar.gz" } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "e04eb1fe3b978805594a14cae7505497", "sha256": "c4d1e475431a956c0374e12151d14b202861ae3c2beff14c0c56d139151332f9" }, "downloads": -1, "filename": "matplotlib2tikz-0.5.4.tar.gz", "has_sig": true, "md5_digest": "e04eb1fe3b978805594a14cae7505497", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22767, "upload_time": "2016-01-12T11:07:28", "url": "https://files.pythonhosted.org/packages/d1/07/4d97a0985676a62de896cf261c1c075e316e1b10a8727a45ad2f6e8f7422/matplotlib2tikz-0.5.4.tar.gz" } ], "0.5.5": [ { "comment_text": "", "digests": { "md5": "2e8893fca0b24643039c9d9363fd7389", "sha256": "3d031d0647fbe4d4f546a657e4fd97a3f7ebe42e5945fb7a0f805037d2ae3195" }, "downloads": -1, "filename": "matplotlib2tikz-0.5.5.tar.gz", "has_sig": true, "md5_digest": "2e8893fca0b24643039c9d9363fd7389", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22780, "upload_time": "2016-03-09T15:30:38", "url": "https://files.pythonhosted.org/packages/d0/99/f3a873caba5f06f07ca1d0a51ccd598cd27a622906f97b815d82288ffcb9/matplotlib2tikz-0.5.5.tar.gz" } ], "0.5.6": [ { "comment_text": "", "digests": { "md5": "079b2fba1d35f5160048dbba406dada0", "sha256": "45e704e112d93bdbea14ed14f350d52ad954fb0cef393b83fa03d1ffbc428d96" }, "downloads": -1, "filename": "matplotlib2tikz-0.5.6.tar.gz", "has_sig": true, "md5_digest": "079b2fba1d35f5160048dbba406dada0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22808, "upload_time": "2016-03-09T15:56:48", "url": "https://files.pythonhosted.org/packages/63/1d/de3da0d09fc69f951007c3ee283cdcc0abd48ca356abae8cd252465b4ab7/matplotlib2tikz-0.5.6.tar.gz" } ], "0.5.7": [ { "comment_text": "", "digests": { "md5": "251e41703875a6182658c6aefde401c6", "sha256": "67586786b83c92266e1796f7dbbb458301c38ea8320fcb6c05f906c82713403d" }, "downloads": -1, "filename": "matplotlib2tikz-0.5.7.tar.gz", "has_sig": true, "md5_digest": "251e41703875a6182658c6aefde401c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22830, "upload_time": "2016-04-08T07:37:31", "url": "https://files.pythonhosted.org/packages/8d/4f/c6bd49ce3a4b904e4301edb6d8806f911ead3182a19cdf0da9710ef1ab0c/matplotlib2tikz-0.5.7.tar.gz" } ], "0.5.8": [ { "comment_text": "", "digests": { "md5": "93515eb39e4b836e3f71d849cfc6899d", "sha256": "8ab414e8e78f2ddb988e84147936cc1203fad947e72df941d553563c639c9cc9" }, "downloads": -1, "filename": "matplotlib2tikz-0.5.8.tar.gz", "has_sig": true, "md5_digest": "93515eb39e4b836e3f71d849cfc6899d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23827, "upload_time": "2016-07-29T00:15:15", "url": "https://files.pythonhosted.org/packages/05/bc/f985acbfcba7790330edc09aa572933ea21b8e76e0c8df4b4a8b08329471/matplotlib2tikz-0.5.8.tar.gz" } ], "0.5.9": [ { "comment_text": "", "digests": { "md5": "b65cd41312bf41cbcd215f9077b6c1e6", "sha256": "e8509012774ccbe62a228ac6f8939fb53fff37b0ebe2ba10468c4ca09c898628" }, "downloads": -1, "filename": "matplotlib2tikz-0.5.9.tar.gz", "has_sig": true, "md5_digest": "b65cd41312bf41cbcd215f9077b6c1e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23810, "upload_time": "2016-07-29T14:19:26", "url": "https://files.pythonhosted.org/packages/cc/b2/3f68165c71ac1908d3171b83f55f34db18a998f7b139d7aa2df531a91e4f/matplotlib2tikz-0.5.9.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "9599daa1c0dc1abc3dc397f5aa9d825a", "sha256": "f59c67ad4858fe2a6c4a6230bf59a7f7345f5619d979a1384017736c8809eafe" }, "downloads": -1, "filename": "matplotlib2tikz-0.6.0.tar.gz", "has_sig": true, "md5_digest": "9599daa1c0dc1abc3dc397f5aa9d825a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25715, "upload_time": "2017-01-20T18:13:25", "url": "https://files.pythonhosted.org/packages/8f/e4/0ad21e0fcbfce65f0436aaa90ad27a82cb29812071deb5ec2101f3563bfe/matplotlib2tikz-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "b7fab4049460c9b13a8f7ffb583e71ac", "sha256": "d7bde565e8c7cdd288066ce699443ba7d51bc17ff76089f318614e55afc4d9ae" }, "downloads": -1, "filename": "matplotlib2tikz-0.6.1.tar.gz", "has_sig": true, "md5_digest": "b7fab4049460c9b13a8f7ffb583e71ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26090, "upload_time": "2017-02-03T20:54:01", "url": "https://files.pythonhosted.org/packages/d8/4c/1be0392fa27b9a8b45db5895041ad80faa19bc97709b2e17f9829f6a0cc2/matplotlib2tikz-0.6.1.tar.gz" } ], "0.6.10": [ { "comment_text": "", "digests": { "md5": "d100b9b917ece5ed1733fc3ec9a44d28", "sha256": "19a2448bdba8a1c669b8f9ae2d6d6af394d6d1395a240100b06f3a3d5e6851d6" }, "downloads": -1, "filename": "matplotlib2tikz-0.6.10-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "d100b9b917ece5ed1733fc3ec9a44d28", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 36379, "upload_time": "2017-06-10T13:06:25", "url": "https://files.pythonhosted.org/packages/ec/88/19ea5327cc0c5f10ed3ed453899ffb8f4cbf33edb0f4dabf7fc672698c2f/matplotlib2tikz-0.6.10-py2.py3-none-any.whl" } ], "0.6.11": [ { "comment_text": "", "digests": { "md5": "99e2ab74bbd31ebea954cda19d3eaa01", "sha256": "86d9f1c73d220f1a363a4c1ccf7ecdae3ab2e93c44669b90e33f6fd50463a554" }, "downloads": -1, "filename": "matplotlib2tikz-0.6.11-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "99e2ab74bbd31ebea954cda19d3eaa01", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 36386, "upload_time": "2017-06-16T08:40:21", "url": "https://files.pythonhosted.org/packages/5c/cc/5f57f1bf084dec1d695fb368a00be70820fe97081a67e70bb013130a725c/matplotlib2tikz-0.6.11-py2.py3-none-any.whl" } ], "0.6.12": [ { "comment_text": "", "digests": { "md5": "8b31149f990f72432d0fffc928ebeac1", "sha256": "99fb9de09576d089e1da42c2658cde841b39e62ddb502dff80b5987c1de715ff" }, "downloads": -1, "filename": "matplotlib2tikz-0.6.12-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "8b31149f990f72432d0fffc928ebeac1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 36918, "upload_time": "2017-08-15T14:32:10", "url": "https://files.pythonhosted.org/packages/56/00/88694960718d626b04a356e428a4e1e3796e59611a5f63ef125c4c1aaeb9/matplotlib2tikz-0.6.12-py2.py3-none-any.whl" } ], "0.6.13": [ { "comment_text": "", "digests": { "md5": "d9b0645b62bbe222cf053e6e237093d9", "sha256": "192a95331826d48f32dbd16a4b91ca80e6bc99498269730d82a36d47bf71127c" }, "downloads": -1, "filename": "matplotlib2tikz-0.6.13-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "d9b0645b62bbe222cf053e6e237093d9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 36917, "upload_time": "2017-08-23T08:45:55", "url": "https://files.pythonhosted.org/packages/7f/14/c0312f71266ac0420713a52ce476d0c1eb2061780b35c0ac72b853b11896/matplotlib2tikz-0.6.13-py2.py3-none-any.whl" } ], "0.6.14": [ { "comment_text": "", "digests": { "md5": "d8e9b692cd1c9d442ef585b1935d0c9c", "sha256": "a6a0206fd25d6c2bb64c0b03e0dca03966f5073b07500fa9fafc3966c37f685d" }, "downloads": -1, "filename": "matplotlib2tikz-0.6.14-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "d8e9b692cd1c9d442ef585b1935d0c9c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 37420, "upload_time": "2017-11-02T10:39:46", "url": "https://files.pythonhosted.org/packages/d4/84/a7d4b36455fee7ff7eb22779cc9d3c01341301685524c591eee1278c7004/matplotlib2tikz-0.6.14-py2.py3-none-any.whl" } ], "0.6.15": [ { "comment_text": "", "digests": { "md5": "45a5a54db7034858692a5bd703100eff", "sha256": "99b45521b3601de53f23bcb4d1f496a4c3fa3f6042fcae987df7a943247e3069" }, "downloads": -1, "filename": "matplotlib2tikz-0.6.15-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "45a5a54db7034858692a5bd703100eff", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 37647, "upload_time": "2018-01-31T18:45:52", "url": "https://files.pythonhosted.org/packages/79/dc/9d033fd849105f8d9d61a357a767131feae85986d2586f7239d7712c83dd/matplotlib2tikz-0.6.15-py2.py3-none-any.whl" } ], "0.6.16": [ { "comment_text": "", "digests": { "md5": "301969c2bbc1ef7d73f6b6ac9312a8e0", "sha256": "7f701d86c94acfe022d7a39be301a13d3f086a1dc1223ebdff2c0ff2480e9ff1" }, "downloads": -1, "filename": "matplotlib2tikz-0.6.16-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "301969c2bbc1ef7d73f6b6ac9312a8e0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 37758, "upload_time": "2018-03-28T13:30:42", "url": "https://files.pythonhosted.org/packages/4c/95/30c1ef079ff73a44e079de05a4243eb2232634b62c662ebf777494410842/matplotlib2tikz-0.6.16-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d8eb51980c3db29e7d507f44bf5fc573", "sha256": "29bd9160b6b00bb9a0f1f74810324bb3fba7b4d15c0a10efa76bd43664505fdd" }, "downloads": -1, "filename": "matplotlib2tikz-0.6.16.tar.gz", "has_sig": false, "md5_digest": "d8eb51980c3db29e7d507f44bf5fc573", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41312, "upload_time": "2018-03-28T13:30:39", "url": "https://files.pythonhosted.org/packages/c2/59/634593942b193d56a8164c95b480b56745bc292ba55f56ce27c691731a80/matplotlib2tikz-0.6.16.tar.gz" } ], "0.6.17": [ { "comment_text": "", "digests": { "md5": "e77b2d1b7f3e4218c5c708a8ea98a027", "sha256": "03907e37371af8e143f0dfd6e8c92e83527c5a3e484c2ef11826fbbaacf157c8" }, "downloads": -1, "filename": "matplotlib2tikz-0.6.17-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e77b2d1b7f3e4218c5c708a8ea98a027", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 33651, "upload_time": "2018-05-03T10:25:15", "url": "https://files.pythonhosted.org/packages/a9/37/eef16494606f4e6a30ef5333d709db649115068516bfe8aaa0f1cce7519e/matplotlib2tikz-0.6.17-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1b33ede6f537703d5e0661d0844f46b7", "sha256": "1c21a5b504195ea1fb29f263beba9c10a30d144158d522fc343bfdf226ee4d6d" }, "downloads": -1, "filename": "matplotlib2tikz-0.6.17.tar.gz", "has_sig": false, "md5_digest": "1b33ede6f537703d5e0661d0844f46b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41178, "upload_time": "2018-05-03T10:25:17", "url": "https://files.pythonhosted.org/packages/46/15/374920225398a7ec9455df00f0168ed90cf7d855fd1e565efcf6148ed5a5/matplotlib2tikz-0.6.17.tar.gz" } ], "0.6.18": [ { "comment_text": "", "digests": { "md5": "495438f94029eec842948cc33f835ff6", "sha256": "d91ded1ee3c3b3d6fc181efb99af715c1561573adaa22b7dedfbf23047274904" }, "downloads": -1, "filename": "matplotlib2tikz-0.6.18-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "495438f94029eec842948cc33f835ff6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 34354, "upload_time": "2018-09-03T12:52:12", "url": "https://files.pythonhosted.org/packages/15/14/d051a016a97cbe6064f706012a0aa718dc2f7b6a3f217c66f7643e4c4df0/matplotlib2tikz-0.6.18-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2672adf4511b4d52d7d5c910db23bdd2", "sha256": "4208fa25ce2832b4ba80deae3a59eb29af491aea112b56efaad0f0253a3d77db" }, "downloads": -1, "filename": "matplotlib2tikz-0.6.18.tar.gz", "has_sig": false, "md5_digest": "2672adf4511b4d52d7d5c910db23bdd2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42344, "upload_time": "2018-09-03T12:52:14", "url": "https://files.pythonhosted.org/packages/99/24/5994f3d516d8498cad8e380cbb9c8c31b549276f695f0948c19c7143e28a/matplotlib2tikz-0.6.18.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "929e8891ed828d13f9960653f78c1804", "sha256": "a81b1a09e8c0efc9944d673023d3a8c14ca38aec04af487c427f20872555ff09" }, "downloads": -1, "filename": "matplotlib2tikz-0.6.2.tar.gz", "has_sig": true, "md5_digest": "929e8891ed828d13f9960653f78c1804", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26358, "upload_time": "2017-02-09T23:03:18", "url": "https://files.pythonhosted.org/packages/83/ec/6f4c375f96df65e36c509a8e49901e9b90691fa3c19ab58a4efd76088246/matplotlib2tikz-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "5bbcb8962ee5ecc488f09bb445271eda", "sha256": "c096d75fdfe65ef4afd8aa374c5fb4b540fc13154d1ee117841ad5b67e494827" }, "downloads": -1, "filename": "matplotlib2tikz-0.6.3.tar.gz", "has_sig": true, "md5_digest": "5bbcb8962ee5ecc488f09bb445271eda", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26288, "upload_time": "2017-03-15T15:10:02", "url": "https://files.pythonhosted.org/packages/32/64/c873c0e1e59e6033ef6fd159649f6c01c63d3a16ab57b7f6a5be42a3f230/matplotlib2tikz-0.6.3.tar.gz" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "1a31c1c4ab7253f748e33954afff52cc", "sha256": "d6a06aa0340d2f8640e9a11793bd658b4c583f18d996db8a9ad526914af8d63a" }, "downloads": -1, "filename": "matplotlib2tikz-0.6.4-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "1a31c1c4ab7253f748e33954afff52cc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 34380, "upload_time": "2017-04-06T10:40:39", "url": "https://files.pythonhosted.org/packages/a5/b3/9993887a9080e6e11f647f74444e59261f8665e0b223d8ebe46b808bbc52/matplotlib2tikz-0.6.4-py2.py3-none-any.whl" } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "ef4e73ac5ed14838d38c22241b8fd469", "sha256": "6c7b527b4c2aebeb71d99fcad90d1ed76e6b22af412e6bc616322b5ec59a2523" }, "downloads": -1, "filename": "matplotlib2tikz-0.6.5-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "ef4e73ac5ed14838d38c22241b8fd469", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 34450, "upload_time": "2017-04-06T15:12:21", "url": "https://files.pythonhosted.org/packages/f2/4a/fe965c02081fb8194cec789ebad55e60e4f7276c9b5bd29023c9dafa4043/matplotlib2tikz-0.6.5-py2.py3-none-any.whl" } ], "0.6.6": [ { "comment_text": "", "digests": { "md5": "0f42d4a1b82c76a2bd12e23198e9ee79", "sha256": "5bb6fd178eefbf15ae97d033219713d2ea2f6ca14d42492bff8070c3afef9495" }, "downloads": -1, "filename": "matplotlib2tikz-0.6.6-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "0f42d4a1b82c76a2bd12e23198e9ee79", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 36189, "upload_time": "2017-04-11T12:20:39", "url": "https://files.pythonhosted.org/packages/2d/9e/f0dbbad109e0de60aa288a85ed750e9ce1b9c9cdbe04804996f61c616398/matplotlib2tikz-0.6.6-py2.py3-none-any.whl" } ], "0.6.7": [ { "comment_text": "", "digests": { "md5": "6a0b5418f7bcea2ace5d17845ae9c481", "sha256": "84bcd9ed891b53b5fb1d805a911d6fd2de02b853b30555a2f4779ff316f01c97" }, "downloads": -1, "filename": "matplotlib2tikz-0.6.7-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "6a0b5418f7bcea2ace5d17845ae9c481", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 36301, "upload_time": "2017-05-04T14:56:33", "url": "https://files.pythonhosted.org/packages/42/e5/4854795f8fa9873a9dcbe62ad189efe6ef1ad625c929c9d9ffc28dd0e319/matplotlib2tikz-0.6.7-py2.py3-none-any.whl" } ], "0.6.8": [ { "comment_text": "", "digests": { "md5": "3e867bee480a75c0358162e1afdc7418", "sha256": "29b2859795e9fadd4f81c1cca47f0252cd210eb5428a0c5e622980fb6db32b70" }, "downloads": -1, "filename": "matplotlib2tikz-0.6.8-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "3e867bee480a75c0358162e1afdc7418", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 36261, "upload_time": "2017-05-31T15:13:42", "url": "https://files.pythonhosted.org/packages/1f/bf/0926f54e4ed6b2ec5a75e59f83c137332be292b9f645708c26e7feb2c3b0/matplotlib2tikz-0.6.8-py2.py3-none-any.whl" } ], "0.6.9": [ { "comment_text": "", "digests": { "md5": "54823a0b94818894d63090344121774a", "sha256": "3b9981ab2887103156266cbd59d8f500850e34687a0bfbd1aa991a4b6f7c6fbf" }, "downloads": -1, "filename": "matplotlib2tikz-0.6.9-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "54823a0b94818894d63090344121774a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 36416, "upload_time": "2017-05-31T19:58:58", "url": "https://files.pythonhosted.org/packages/6b/6c/929cf10c9b350f8f606956f44946ce147156bc284d23207780dc78a75684/matplotlib2tikz-0.6.9-py2.py3-none-any.whl" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "bd93582f3eaa2c14fc98b86ce0ed631a", "sha256": "363f409edde220ad3adf8e7586116a7ad7a2745ff8b92705b91ef12000f60632" }, "downloads": -1, "filename": "matplotlib2tikz-0.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bd93582f3eaa2c14fc98b86ce0ed631a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 35875, "upload_time": "2019-03-14T09:48:18", "url": "https://files.pythonhosted.org/packages/88/16/f94483fe8187e7a5b8f9fe25f3e3fc06ded8e24d698f90ac55eef2311dc5/matplotlib2tikz-0.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ae4e350933976f3aa4a96b22519f7f54", "sha256": "0d052af5dbccd3e35f32045e0846d5498c6eb017ab1efddca3aa547444b1242d" }, "downloads": -1, "filename": "matplotlib2tikz-0.7.0.tar.gz", "has_sig": false, "md5_digest": "ae4e350933976f3aa4a96b22519f7f54", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43804, "upload_time": "2019-03-14T09:48:20", "url": "https://files.pythonhosted.org/packages/70/fc/dd8e122bf1c1ba4b257e1ff8d595282bb9c54e9211b80960f554c2d93e4d/matplotlib2tikz-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "965eef53018709335a34b1a751f9949d", "sha256": "72700d922f14184306cde1793c8f2418684e48a7796581d49770848e74eb69cd" }, "downloads": -1, "filename": "matplotlib2tikz-0.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "965eef53018709335a34b1a751f9949d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 36068, "upload_time": "2019-03-19T20:35:03", "url": "https://files.pythonhosted.org/packages/01/35/aaaff6f9933005c40625b4234aedcde2512aa7e81d316039c32e72e66925/matplotlib2tikz-0.7.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fb625c8c8aa28d126c66b822b93cc09f", "sha256": "722bb0bb75b3cad5ddb80509a6994801880b5aa2499e4a6ab0600c6fb47383e8" }, "downloads": -1, "filename": "matplotlib2tikz-0.7.1.tar.gz", "has_sig": false, "md5_digest": "fb625c8c8aa28d126c66b822b93cc09f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44933, "upload_time": "2019-03-19T20:35:05", "url": "https://files.pythonhosted.org/packages/3e/67/0b05c413566d1aeff2bdb0d82fb8958efb1b6b783ada1c31147cd0f03fda/matplotlib2tikz-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "b96a9ad39bb9eee32b755654bd107c71", "sha256": "f1994f3401b19e0bdf26cb960ece5b57c58488ad14d074810967e168c0f17bc2" }, "downloads": -1, "filename": "matplotlib2tikz-0.7.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b96a9ad39bb9eee32b755654bd107c71", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 36252, "upload_time": "2019-03-21T12:40:26", "url": "https://files.pythonhosted.org/packages/77/ca/44d53b041dffb252a20c685fc97b9038aacc893684a61ed91af0e37a0abf/matplotlib2tikz-0.7.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c2a79c1e4372637e43291b83682d9354", "sha256": "391eeec6c57c7e59d701e675ca513a292f7bb14f272ecf98bef88daa4d772d9f" }, "downloads": -1, "filename": "matplotlib2tikz-0.7.2.tar.gz", "has_sig": false, "md5_digest": "c2a79c1e4372637e43291b83682d9354", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44712, "upload_time": "2019-03-21T12:40:28", "url": "https://files.pythonhosted.org/packages/26/7c/4eb89267a317adaa4922d0d7aa64c117fba81d917945fbeda45b6729f414/matplotlib2tikz-0.7.2.tar.gz" } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "c40258528b1957063f28940721466703", "sha256": "eccf828bfe330532d94f3b7f4a59f2f43182e21b0e492abe53abfb62b928307d" }, "downloads": -1, "filename": "matplotlib2tikz-0.7.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c40258528b1957063f28940721466703", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 36455, "upload_time": "2019-03-26T10:18:46", "url": "https://files.pythonhosted.org/packages/54/3b/c47318cdaf6b9f9aa3323d75f62833e750d005f4d5869f8bd976c015ea84/matplotlib2tikz-0.7.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f33d5f42b7c86d2862dce6c30321eefe", "sha256": "e1bef0eddc50749035a52493ed21621068750e260e7238c66b457a99ffe9b538" }, "downloads": -1, "filename": "matplotlib2tikz-0.7.3.tar.gz", "has_sig": false, "md5_digest": "f33d5f42b7c86d2862dce6c30321eefe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45214, "upload_time": "2019-03-26T10:18:48", "url": "https://files.pythonhosted.org/packages/8a/93/c5f6b0ae811647703b59f203d715a7f77adf07065179e9b7a76e5c1991c4/matplotlib2tikz-0.7.3.tar.gz" } ], "0.7.4": [ { "comment_text": "", "digests": { "md5": "20a65345e6badfdd16fb4cc03b593fa1", "sha256": "35c116f5c4dda98f65c3dc4c305b1ef24cfbb1b8b5b3e1561d709357edc79723" }, "downloads": -1, "filename": "matplotlib2tikz-0.7.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "20a65345e6badfdd16fb4cc03b593fa1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 36707, "upload_time": "2019-04-11T09:27:55", "url": "https://files.pythonhosted.org/packages/12/33/6beea67fdd9763554bc21a87f597152a0ac81a06a337e80612c87ab3388e/matplotlib2tikz-0.7.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4179fed8659ed67ed8af83704a65a60e", "sha256": "067927ab3c820e5ce55d73e626198306c3ff0c8d2dfdbc8ddca5eeb24a81907f" }, "downloads": -1, "filename": "matplotlib2tikz-0.7.4.tar.gz", "has_sig": false, "md5_digest": "4179fed8659ed67ed8af83704a65a60e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45525, "upload_time": "2019-04-11T09:27:58", "url": "https://files.pythonhosted.org/packages/31/01/21760d832ca5264f2cecf949336327e502ca5847c08b70620af2e2b02f27/matplotlib2tikz-0.7.4.tar.gz" } ], "0.7.5": [ { "comment_text": "", "digests": { "md5": "e32d71f2cb3b829bf3826d4f1b291053", "sha256": "7134c8c3b3ef961cb40b2f091862dd62f66476a8819bcf532d28b7b8df2e6b0c" }, "downloads": -1, "filename": "matplotlib2tikz-0.7.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e32d71f2cb3b829bf3826d4f1b291053", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 36000, "upload_time": "2019-07-14T16:42:49", "url": "https://files.pythonhosted.org/packages/a0/95/8174b1c77c96610dca69b161f43c6ed670b1f4bdbff1bdeca51fb578750f/matplotlib2tikz-0.7.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ac0f0dc6bb56a55aac6f02c6bab82db7", "sha256": "add08d7de4a2997f194b1c710d93b383bf3afed6b33e44e40589990798d8984d" }, "downloads": -1, "filename": "matplotlib2tikz-0.7.5.tar.gz", "has_sig": false, "md5_digest": "ac0f0dc6bb56a55aac6f02c6bab82db7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45698, "upload_time": "2019-07-14T16:42:51", "url": "https://files.pythonhosted.org/packages/78/15/8e10499ef35038f0cc835ca03b11d16c82c11cbe16160729c5936fe29f31/matplotlib2tikz-0.7.5.tar.gz" } ], "0.7.6": [ { "comment_text": "", "digests": { "md5": "0a3975356fcad935ce4f739340300e9f", "sha256": "eb4fe7905457caa3ec04ce2987bfb9b11c3ce8b505855071e4ca61976b1cef58" }, "downloads": -1, "filename": "matplotlib2tikz-0.7.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0a3975356fcad935ce4f739340300e9f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 35984, "upload_time": "2019-10-17T19:10:04", "url": "https://files.pythonhosted.org/packages/15/62/b7a234f09c874402949c044600de030aaaed4ddb1925ba7bf085950f0a40/matplotlib2tikz-0.7.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ac8e1eabf372812ba1500cf46079df83", "sha256": "92b2d71d56f3a3e91397cf1dda50fcc009eaa85a2c0006b1c78324f16f18988f" }, "downloads": -1, "filename": "matplotlib2tikz-0.7.6.tar.gz", "has_sig": false, "md5_digest": "ac8e1eabf372812ba1500cf46079df83", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45691, "upload_time": "2019-10-17T19:10:06", "url": "https://files.pythonhosted.org/packages/b1/af/2da0c203e497c4edc3126284f8f55068a19ddfc955d9d18cba800f273250/matplotlib2tikz-0.7.6.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "0a3975356fcad935ce4f739340300e9f", "sha256": "eb4fe7905457caa3ec04ce2987bfb9b11c3ce8b505855071e4ca61976b1cef58" }, "downloads": -1, "filename": "matplotlib2tikz-0.7.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0a3975356fcad935ce4f739340300e9f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 35984, "upload_time": "2019-10-17T19:10:04", "url": "https://files.pythonhosted.org/packages/15/62/b7a234f09c874402949c044600de030aaaed4ddb1925ba7bf085950f0a40/matplotlib2tikz-0.7.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ac8e1eabf372812ba1500cf46079df83", "sha256": "92b2d71d56f3a3e91397cf1dda50fcc009eaa85a2c0006b1c78324f16f18988f" }, "downloads": -1, "filename": "matplotlib2tikz-0.7.6.tar.gz", "has_sig": false, "md5_digest": "ac8e1eabf372812ba1500cf46079df83", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45691, "upload_time": "2019-10-17T19:10:06", "url": "https://files.pythonhosted.org/packages/b1/af/2da0c203e497c4edc3126284f8f55068a19ddfc955d9d18cba800f273250/matplotlib2tikz-0.7.6.tar.gz" } ] }