{ "info": { "author": "Dinu Gherman", "author_email": "gherman@darwin.in-berlin.de", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: End Users/Desktop", "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)", "Natural Language :: English", "Operating System :: MacOS :: MacOS X", "Operating System :: POSIX", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Documentation", "Topic :: Multimedia :: Graphics :: Graphics Conversion", "Topic :: Printing", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Text Processing :: Markup :: XML", "Topic :: Utilities" ], "description": ".. -*- mode: rst -*-\n\n======\nSvglib\n======\n\n---------------------------------------------------------------------------\nA pure-Python library for reading and converting SVG\n---------------------------------------------------------------------------\n\n.. image:: http://img.shields.io/travis/deeplook/svglib.svg\n :target: https://travis-ci.org/deeplook/svglib\n\n.. image:: https://ci.appveyor.com/api/projects/status/4guofbxkwgsu8537/branch/master?svg=true\n :target: https://ci.appveyor.com/project/deeplook/svglib\n\n.. image:: https://pyup.io/repos/github/deeplook/svglib/shield.svg\n :target: https://pyup.io/repos/github/deeplook/svglib/\n\n.. image:: https://img.shields.io/pypi/implementation/svglib.svg\n :target: https://pypi.org/project/svglib\n\n.. image:: https://img.shields.io/pypi/pyversions/svglib.svg\n :target: https://pypi.org/project/svglib\n\n.. image:: https://img.shields.io/pypi/dm/svglib.svg\n :target: https://pypi.org/project/svglib\n\n.. image:: https://img.shields.io/pypi/v/svglib.svg\n :target: https://pypi.org/project/svglib\n\n.. image:: https://img.shields.io/conda/vn/conda-forge/svglib.svg\n :target: https://github.com/conda-forge/svglib-feedstock\n\n.. image:: https://img.shields.io/conda/dn/conda-forge/svglib.svg\n :target: https://github.com/conda-forge/svglib-feedstock\n\n.. image:: https://img.shields.io/conda/pn/conda-forge/svglib.svg\n :target: https://pypi.org/project/svglib\n\n.. image:: https://img.shields.io/pypi/l/svglib.svg\n :target: https://pypi.org/project/svglib\n\n\nAbout\n-----\n\n``Svglib`` is a pure-Python library for reading SVG_ files and converting\nthem (to a reasonable degree) to other formats using the ReportLab_ Open\nSource toolkit.\n\nUsed as a package you can read existing SVG files and convert them into\nReportLab ``Drawing`` objects that can be used in a variety of contexts,\ne.g. as ReportLab Platypus ``Flowable`` objects or in RML_.\nAs a command-line tool it converts SVG files into PDF ones (but adding\nother output formats like bitmap or EPS is really easy and will be better\nsupported, soon).\n\nTests include a huge `W3C SVG test suite`_ plus ca. 200 `flags from\nWikipedia`_ and some selected `symbols from Wikipedia`_ (with increasingly\nless pointing to missing features).\n\nPrevious versions were hosted at https://bitbucket.org/deeplook/svglib.\n\n\nFeatures\n--------\n\n- convert SVG_ files into ReportLab_ Graphics ``Drawing`` objects\n- handle plain or compressed SVG files (.svg and .svgz)\n- allow patterns for output files on command-line\n- install a Python package named ``svglib``\n- install a Python command-line script named ``svg2pdf``\n- provide a PyTest_ test suite with over 90% code coverage\n- test entire `W3C SVG test suite`_ after pulling from the internet\n- test all SVG `flags from Wikipedia`_ after pulling from the internet\n- test selected SVG `symbols from Wikipedia`_ after pulling from the net\n- run on Python 2.7 and Python 3.5, 3.6 and 3.7\n\n\nKnown limitations\n-----------------\n\n- support for stylesheets is still experimental. Please report any\n bug or shortcoming on the `svglib issue tracker`_.\n- clipping is limited to single paths, no mask support\n- color gradients are not supported\n\n\nExamples\n--------\n\nYou can use ``svglib`` as a Python package e.g. like in the following\ninteractive Python session::\n\n >>> from svglib.svglib import svg2rlg\n >>> from reportlab.graphics import renderPDF, renderPM\n >>>\n >>> drawing = svg2rlg(\"file.svg\")\n >>> renderPDF.drawToFile(drawing, \"file.pdf\")\n >>> renderPM.drawToFile(drawing, \"file.png\", fmt=\"PNG\")\n\nNote that the second parameter of ``drawToFile`` can be any\n`Python file object`_, like a ``BytesIO`` buffer if you don't want the result\nto be written on disk for example.\n\nIn addition a script named ``svg2pdf`` can be used more easily from\nthe system command-line. Here is the output from ``svg2pdf -h``::\n\n usage: svg2pdf [-h] [-v] [-o PATH_PAT] [PATH [PATH ...]]\n\n svg2pdf v. 0.9.2\n A converter from SVG to PDF (via ReportLab Graphics)\n\n positional arguments:\n PATH Input SVG file path with extension .svg or .svgz.\n\n optional arguments:\n -h, --help show this help message and exit\n -v, --version Print version number and exit.\n -o PATH_PAT, --output PATH_PAT\n Set output path (incl. the placeholders: dirname,\n basename,base, ext, now) in both, %(name)s and {name}\n notations.\n\n examples:\n # convert path/file.svg to path/file.pdf\n svg2pdf path/file.svg\n\n # convert file1.svg to file1.pdf and file2.svgz to file2.pdf\n svg2pdf file1.svg file2.svgz\n\n # convert file.svg to out.pdf\n svg2pdf -o out.pdf file.svg\n\n # convert all SVG files in path/ to PDF files with names like:\n # path/file1.svg -> file1.pdf\n svg2pdf -o \"%(base)s.pdf\" path/file*.svg\n\n # like before but with timestamp in the PDF files:\n # path/file1.svg -> path/out-12-58-36-file1.pdf\n svg2pdf -o {{dirname}}/out-{{now.hour}}-{{now.minute}}-{{now.second}}-%(base)s.pdf path/file*.svg\n\n issues/pull requests:\n https://github.com/deeplook/svglib\n\n Copyleft by Dinu Gherman, 2008-2018 (LGPL 3):\n http://www.gnu.org/copyleft/gpl.html\n\n\nDependencies\n------------\n\n``Svglib`` depends mainly on the ``reportlab`` package, which provides\nthe abstractions for building complex ``Drawings`` which it can render\ninto different fileformats, including PDF, EPS, SVG and various bitmaps\nones. Other dependancies are ``lxml`` which is used in the context of SVG\nCSS stylesheets.\n\n\nInstallation\n------------\n\nThere are three ways to install ``svglib``.\n\n1. Using ``pip``\n++++++++++++++++\n\nWith the ``pip`` command on your system and a working internet\nconnection you can install the newest version of ``svglib`` with only\none command in a terminal::\n\n $ pip install svglib\n\nYou can also use ``pip`` to install the very latest version of the\nrepository from GitHub, but then you won't be able to conveniently\nrun the test suite::\n\n $ pip install git+https://github.com/deeplook/svglib\n\n\n2. Using ``conda``\n++++++++++++++++++\n\nIf you use Anaconda_ or Miniconda_ you are surely using its respective package\nmanager, Conda_, as well. In that case you should be able to install ``svglib``\nusing these simple commands::\n\n $ conda config --add channels conda-forge\n $ conda install svglib\n\n``Svglib`` was kindly packaged for ``conda`` by nicoddemus_. See here more about\n`svglib with conda`_.\n\n\n3. Manual installation\n+++++++++++++++++++++++\n\nAlternatively, you can install a tarball like ``svglib-.tar.gz``\nafter downloading it from the `svglib page on PyPI`_ or the\n`svglib releases page on GitHub`_ and executing a sequence of commands\nlike shown here::\n\n $ tar xfz svglib-.tar.gz\n $ cd svglib-\n $ python setup.py install\n\nThis will install a Python package named ``svglib`` in the\n``site-packages`` subfolder of your Python installation and a script\ntool named ``svg2pdf`` in your ``bin`` directory, e.g. in\n``/usr/local/bin``.\n\n\nTesting\n-------\n\nThe ``svglib`` tarball distribution contains a PyTest_ test suite\nin the ``tests`` directory. There, in ``tests/README.rst``, you can\nalso read more about testing. You can run the testsuite e.g. like\nshown in the following lines on the command-line::\n\n $ tar xfz svglib-.tar.gz\n $ cd svglib-\n $ PYTHONPATH=. py.test\n ======================== test session starts =========================\n platform darwin -- Python 3.5.2, pytest-3.0.5, py-1.4.32, pluggy-0.4.0\n rootdir: /Users/dinu/repos/github/deeplook/svglib, inifile:\n plugins: cov-2.4.0\n collected 36 items\n\n tests/test_basic.py ............................\n tests/test_samples.py .s.s.s.s\n\n =============== 32 passed, 4 skipped in 49.18 seconds ================\n\n\nBug reports\n-----------\n\nPlease report bugs on the `svglib issue tracker`_ on GitHub (pull\nrequests are also appreciated)!\nIf necessary, please include information about the operating system, as\nwell as the versions of ``svglib``, ReportLab and Python being used!\n\n\n.. _SVG: http://www.w3.org/Graphics/SVG/\n.. _W3C SVG test suite:\n http://www.w3.org/Graphics/SVG/WG/wiki/Test_Suite_Overview\n.. _flags from Wikipedia:\n https://en.wikipedia.org/wiki/Gallery_of_sovereign_state_flags\n.. _symbols from Wikipedia:\n http://en.wikipedia.org/wiki/List_of_symbols\n.. _ReportLab: http://www.reportlab.org\n.. _RML: http://www.reportlab.com/software/rml-reference/\n.. _svglib issue tracker: https://github.com/deeplook/svglib/issues\n.. _PyTest: http://pytest.org\n.. _svglib page on PyPI: https://pypi.org/project/svglib/\n.. _svglib releases page on GitHub: https://github.com/deeplook/svglib/releases\n.. _Python file object: https://docs.python.org/3/glossary.html#term-file-object\n.. _Anaconda: https://www.anaconda.com/download/\n.. _Miniconda: https://conda.io/miniconda.html\n.. _Conda: https://conda.io\n.. _svglib with conda: https://github.com/conda-forge/svglib-feedstock\n.. _nicoddemus: https://github.com/nicoddemus", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/deeplook/svglib", "keywords": "SVG,PDF,reportlab,conversion,graphics", "license": "LGPL 3", "maintainer": "", "maintainer_email": "", "name": "svglib", "package_url": "https://pypi.org/project/svglib/", "platform": "Posix", "project_url": "https://pypi.org/project/svglib/", "project_urls": { "Homepage": "https://github.com/deeplook/svglib" }, "release_url": "https://pypi.org/project/svglib/0.9.2/", "requires_dist": null, "requires_python": "", "summary": "A pure-Python library for reading and converting SVG", "version": "0.9.2" }, "last_serial": 5524363, "releases": { "0.6.0": [ { "comment_text": "", "digests": { "md5": "1243108af5cee3be5bf6e66378159e15", "sha256": "9fe35b9e576b7f4f1589d3418291a034f193a2b63ccf791a30240c616fc241eb" }, "downloads": -1, "filename": "svglib-0.6.0-py2.5.egg", "has_sig": false, "md5_digest": "1243108af5cee3be5bf6e66378159e15", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 27472, "upload_time": "2008-09-26T14:03:34", "url": "https://files.pythonhosted.org/packages/bb/e4/2e93863679b32a4226b3ef0c6e3ee1026f5355f26ea1b020f280e6d48fef/svglib-0.6.0-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "3ee8bc1e11eab38058be8093d221dcb3", "sha256": "23fe3ad926d52dc9f2a565d23846e10b16dcd0a3df45747d394bc5cb3b1c468b" }, "downloads": -1, "filename": "svglib-0.6.0-py2.6.egg", "has_sig": false, "md5_digest": "3ee8bc1e11eab38058be8093d221dcb3", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 27443, "upload_time": "2008-11-07T10:41:54", "url": "https://files.pythonhosted.org/packages/4d/69/d855a7ecb1a2c2083c763b34785c71c361beb4a7e47f62e4c902ccb96b6a/svglib-0.6.0-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "dacd0271ab9014931f7d5d2d919c51c1", "sha256": "ccd50d9e5d35b827a0f6b65903f6b45e279867af8933418cfaf7eeb293e08762" }, "downloads": -1, "filename": "svglib-0.6.0.tar.gz", "has_sig": false, "md5_digest": "dacd0271ab9014931f7d5d2d919c51c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 559568, "upload_time": "2008-09-26T14:03:28", "url": "https://files.pythonhosted.org/packages/eb/a0/05f50f460ab82b585cf1943cf6f61bc17d857ef7092d06990f5f63f885f9/svglib-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "013a70cefeec7e547c0cf5700a2649bb", "sha256": "2bc15624410f17c173807063f1355ce8833124f8a724fd8c8e170f84e44c8439" }, "downloads": -1, "filename": "svglib-0.6.1-py2.5.egg", "has_sig": false, "md5_digest": "013a70cefeec7e547c0cf5700a2649bb", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 27559, "upload_time": "2008-11-10T11:16:25", "url": "https://files.pythonhosted.org/packages/dc/63/085fc022abdb16df59501f813f7f9cf0f015751b08d2045d4e7233c6f915/svglib-0.6.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "fd5a97d7b1f536c4bc75f591925f6bfb", "sha256": "51c99478bb58b55d5a94c99f9d1131870007f4750415154aef7ada42471c0ede" }, "downloads": -1, "filename": "svglib-0.6.1-py2.6.egg", "has_sig": false, "md5_digest": "fd5a97d7b1f536c4bc75f591925f6bfb", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 27525, "upload_time": "2008-11-10T11:16:44", "url": "https://files.pythonhosted.org/packages/a9/b5/6121f0f3d8bed1b1504f86272fc2f528417be7bc86a008fd7f4ead023273/svglib-0.6.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "a387fc691e700b76dc1d706ac900ac81", "sha256": "cc8e505c8467b689a999ea6885796144731bca1c0810d3c464c5553cef32d275" }, "downloads": -1, "filename": "svglib-0.6.1.tar.gz", "has_sig": false, "md5_digest": "a387fc691e700b76dc1d706ac900ac81", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 551565, "upload_time": "2008-11-10T11:17:21", "url": "https://files.pythonhosted.org/packages/b4/a0/ad5cb024eb59957a361759bab77a2c12bed00735294e4c23487493339474/svglib-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "dc6b37918b6e9e9e5e39751a141a8856", "sha256": "ae8d5ac0ed5dd884892275583b2588076e8f6802c27fb9a503ab98c930668cd1" }, "downloads": -1, "filename": "svglib-0.6.2-py2.5.egg", "has_sig": false, "md5_digest": "dc6b37918b6e9e9e5e39751a141a8856", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 27552, "upload_time": "2008-11-11T10:49:07", "url": "https://files.pythonhosted.org/packages/fa/27/79839a4c149e1a878614af4596f60317f1f0c373e9b3a757f1a673ee9950/svglib-0.6.2-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "7677c093bb57534ec88b0307634508c4", "sha256": "a3e2170d4af5f3f72de6d41f137fc50957cdcc8b18c6842ceb85e72c29ca918e" }, "downloads": -1, "filename": "svglib-0.6.2-py2.6.egg", "has_sig": false, "md5_digest": "7677c093bb57534ec88b0307634508c4", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 27519, "upload_time": "2008-11-11T10:49:12", "url": "https://files.pythonhosted.org/packages/ee/90/00a2d4afe5d7f687a5f4d62d1fcff46d3ac2ba92fa106f27a91c7abdbbc5/svglib-0.6.2-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "a86e3db61e8bf85b318c815dc60aed1b", "sha256": "90d2a0be5725334f2c319d7103005e83371186b8e4cddb687f23733e004e4e8f" }, "downloads": -1, "filename": "svglib-0.6.2.tar.gz", "has_sig": false, "md5_digest": "a86e3db61e8bf85b318c815dc60aed1b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 551543, "upload_time": "2008-11-11T10:48:47", "url": "https://files.pythonhosted.org/packages/11/5d/f3040bcd6353bf2bcc5eadec86cbda3ee7f2e4cbd1e588564bc9fdf07f73/svglib-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "dda395b3cfdf74a8dff223580bf28d45", "sha256": "5685e390962b38818fa3ae999f08d6787cd40f958b6fdcbb6a20b2d4e06aefa9" }, "downloads": -1, "filename": "svglib-0.6.3-py2.4.egg", "has_sig": false, "md5_digest": "dda395b3cfdf74a8dff223580bf28d45", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 28733, "upload_time": "2010-03-02T08:03:22", "url": "https://files.pythonhosted.org/packages/5b/35/9240f4fab42dfa02ca64716f9602818c5d288be1bca9a81179a694576937/svglib-0.6.3-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "dda481b5413aed6479501a5179353138", "sha256": "3b951e8bc822ae5ae836ca8f6bb1e2f4cf6f9b3724d1cb76ad605be0e4d7c03d" }, "downloads": -1, "filename": "svglib-0.6.3-py2.5.egg", "has_sig": false, "md5_digest": "dda481b5413aed6479501a5179353138", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 28051, "upload_time": "2010-03-02T08:02:33", "url": "https://files.pythonhosted.org/packages/fe/d6/fc8f8088090c82f8a7f938887100e9af5decb7db4b7a5e57cfe3895629e0/svglib-0.6.3-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "702690ef5fd2e8535fabde28c8c99de7", "sha256": "9bd4b933bff55059cb6ce45ff004fedb9eafbb530fdf7db8aaafb419910bbbaf" }, "downloads": -1, "filename": "svglib-0.6.3-py2.6.egg", "has_sig": false, "md5_digest": "702690ef5fd2e8535fabde28c8c99de7", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 28017, "upload_time": "2010-03-02T08:02:48", "url": "https://files.pythonhosted.org/packages/81/58/ed9fba026f76c4a4f502d77e59e2bd7aa9fe2e455d01d9c0617bb6908916/svglib-0.6.3-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "454edcfef70d52f62e0e434f2efad853", "sha256": "d2a184cd53779bb8e7f0c488ce3fd3231dfc4338c2034e1946428685cd170da7" }, "downloads": -1, "filename": "svglib-0.6.3.tar.gz", "has_sig": false, "md5_digest": "454edcfef70d52f62e0e434f2efad853", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 543192, "upload_time": "2010-03-02T08:02:16", "url": "https://files.pythonhosted.org/packages/6d/46/097eec09b9febdd9908680f9c46ec3f91cc671d66510fb770ce9b080c0ca/svglib-0.6.3.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "353371a3d539113fad3a19403757292c", "sha256": "677c12a1c75adfa09f6cdafc8cf98ceecadf2b89621b00d3e33615d93b4725eb" }, "downloads": -1, "filename": "svglib-0.8.0.tar.gz", "has_sig": false, "md5_digest": "353371a3d539113fad3a19403757292c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 531764, "upload_time": "2017-01-23T14:38:59", "url": "https://files.pythonhosted.org/packages/1b/dc/2f0ad0a9ff3ed9ba6f69a8e53a9015eb265658d509ff60a22a8c38aebdbc/svglib-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "4c0d37fcc24e1a1715d3471a6ff425bc", "sha256": "1f8cb633f154b83987e3a906a55cf69c8739c0df5ea4eee024677c3e8fb62f55" }, "downloads": -1, "filename": "svglib-0.8.1.tar.gz", "has_sig": false, "md5_digest": "4c0d37fcc24e1a1715d3471a6ff425bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 532607, "upload_time": "2017-04-22T18:20:04", "url": "https://files.pythonhosted.org/packages/5f/2b/43230dc8ed3c3ab1edf2dc453ec4eb9adb1cc162b07c3be42e376b686a0c/svglib-0.8.1.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "57e220c02a8232bf39519c733d74ac59", "sha256": "b9407371dbbc895e7b922251353b7bd1a985bf9a6eef6661e34840ac358cf297" }, "downloads": -1, "filename": "svglib-0.9.0.tar.gz", "has_sig": false, "md5_digest": "57e220c02a8232bf39519c733d74ac59", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 876026, "upload_time": "2018-12-08T23:34:48", "url": "https://files.pythonhosted.org/packages/3b/ad/13cce0f97c724166f8092b0de2d74bbf256278a12feff1519bcf0f4cc5ae/svglib-0.9.0.tar.gz" } ], "0.9.0b0": [ { "comment_text": "", "digests": { "md5": "4fe5ad17b0bdde310cbd7db19dd61697", "sha256": "784947b5a72a01a06c5b4c07dc2006d1abd414bd9fed624ab657d0565aa411e5" }, "downloads": -1, "filename": "svglib-0.9.0b0-py3.6.egg", "has_sig": false, "md5_digest": "4fe5ad17b0bdde310cbd7db19dd61697", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 43140, "upload_time": "2018-08-19T10:22:19", "url": "https://files.pythonhosted.org/packages/9c/92/6dfcb728ade953988fd1f7ebe6117457270cd94ad695a30a3ad5aeb47810/svglib-0.9.0b0-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "b80e00a019b201605c58f6597cac99e4", "sha256": "7e69a4ab3203552dc498d221cfca2dd10222f549b20c60302a1995d7d288c105" }, "downloads": -1, "filename": "svglib-0.9.0b0-py3-none-any.whl", "has_sig": false, "md5_digest": "b80e00a019b201605c58f6597cac99e4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26487, "upload_time": "2018-08-19T10:22:17", "url": "https://files.pythonhosted.org/packages/a9/2d/21580e7d64f4e50f0dea5700382ea6d00486112ce7828a0dc187096bee10/svglib-0.9.0b0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9c1467180873d12309b6e70c845ff2ab", "sha256": "70f05b50d103dff5ab86f4a6d1ed9078934a0b5a0da86dff79158a18e75caf54" }, "downloads": -1, "filename": "svglib-0.9.0b0.tar.gz", "has_sig": false, "md5_digest": "9c1467180873d12309b6e70c845ff2ab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 876083, "upload_time": "2018-08-19T10:22:21", "url": "https://files.pythonhosted.org/packages/cc/83/39c6df4486fe1e8416e6eb993c7075adef7af6f9cdcc21b3e2f8a52d784c/svglib-0.9.0b0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "be3907bb1bf7d63441e50cf4d97408d7", "sha256": "7daa695db7d54c2359014c6ebb98a995c527339488272c65175d67a5252a690b" }, "downloads": -1, "filename": "svglib-0.9.1.tar.gz", "has_sig": true, "md5_digest": "be3907bb1bf7d63441e50cf4d97408d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 893651, "upload_time": "2019-06-22T14:05:22", "url": "https://files.pythonhosted.org/packages/4e/62/8986cd48ba80196f2efa3670b3672736a989d629a9e4de07b1f84fa5d747/svglib-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "137a24419add42e89a874db7d09795be", "sha256": "8dae55c991617b85a418f52b605221cd83c1698663c2fce792c9754559b11d07" }, "downloads": -1, "filename": "svglib-0.9.2.tar.gz", "has_sig": true, "md5_digest": "137a24419add42e89a874db7d09795be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 898565, "upload_time": "2019-07-12T18:06:46", "url": "https://files.pythonhosted.org/packages/ea/fe/7c05fe6d203aba828d1b90d48d5257a456fefae7cf331c9d067a589ef4ee/svglib-0.9.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "137a24419add42e89a874db7d09795be", "sha256": "8dae55c991617b85a418f52b605221cd83c1698663c2fce792c9754559b11d07" }, "downloads": -1, "filename": "svglib-0.9.2.tar.gz", "has_sig": true, "md5_digest": "137a24419add42e89a874db7d09795be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 898565, "upload_time": "2019-07-12T18:06:46", "url": "https://files.pythonhosted.org/packages/ea/fe/7c05fe6d203aba828d1b90d48d5257a456fefae7cf331c9d067a589ef4ee/svglib-0.9.2.tar.gz" } ] }