Metadata-Version: 2.1 Name: pydot Version: 1.4.1 Summary: Python interface to Graphviz's Dot Home-page: https://github.com/pydot/pydot Author: Ero Carrera Author-email: ero@dkbza.org Maintainer: Sebastian Kalinowski Maintainer-email: sebastian@kalinowski.eu License: MIT Keywords: graphviz dot graphs visualization Platform: UNKNOWN Classifier: Development Status :: 5 - Production/Stable Classifier: Intended Audience :: Developers Classifier: Intended Audience :: Science/Research Classifier: License :: OSI Approved :: MIT License Classifier: Natural Language :: English Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python :: 2 Classifier: Programming Language :: Python :: 2.7 Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.4 Classifier: Programming Language :: Python :: 3.5 Classifier: Programming Language :: Python :: 3.6 Classifier: Programming Language :: Python :: 3.7 Classifier: Topic :: Scientific/Engineering :: Visualization Classifier: Topic :: Software Development :: Libraries :: Python Modules Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.* Description-Content-Type: text/markdown Requires-Dist: pyparsing (>=2.1.4) [![Build Status](https://www.travis-ci.com/pydot/pydot.svg?branch=master)](https://www.travis-ci.com/pydot/pydot) [![PyPI](https://img.shields.io/pypi/v/pydot.svg)](https://pypi.org/project/pydot/) About ===== `pydot`: - is an interface to [Graphviz][1] - can parse and dump into the [DOT language][2] used by GraphViz, - is written in pure Python, and [`networkx`][3] can convert its graphs to `pydot`. Development occurs at [GitHub][11] (under branch `dev`), where you can report issues and contribute code. Installation ============ From [PyPI][4] using [`pip`][5]: `pip install pydot` From source: `python setup.py install` Dependencies ============ - [`pyparsing`][6]: used only for *loading* DOT files, installed automatically during `pydot` installation. - GraphViz: used to render graphs as PDF, PNG, SVG, etc. Should be installed separately, using your system's [package manager][7], something similar (e.g., [MacPorts][8]), or from [its source][9]. License ======= Distributed under an [MIT license][10]. [1]: https://www.graphviz.org [2]: https://en.wikipedia.org/wiki/DOT_%28graph_description_language%29 [3]: https://github.com/networkx/networkx [4]: https://pypi.python.org/pypi [5]: https://github.com/pypa/pip [6]: https://github.com/pyparsing/pyparsing [7]: https://en.wikipedia.org/wiki/Package_manager [8]: https://www.macports.org [9]: https://github.com/ellson/graphviz [10]: https://github.com/pydot/pydot/blob/master/LICENSE [11]: https://github.com/pydot/pydot