Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davidvilla/pydot
pydot fork supporting python-3 and pyparsing >= 2.0
https://github.com/davidvilla/pydot
Last synced: 4 days ago
JSON representation
pydot fork supporting python-3 and pyparsing >= 2.0
- Host: GitHub
- URL: https://github.com/davidvilla/pydot
- Owner: davidvilla
- License: mit
- Created: 2014-01-30T14:17:34.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-10-22T09:40:34.000Z (about 9 years ago)
- Last Synced: 2024-12-02T07:09:05.049Z (21 days ago)
- Language: Python
- Homepage:
- Size: 504 KB
- Stars: 6
- Watchers: 2
- Forks: 5
- Open Issues: 6
-
Metadata Files:
- Readme: README.rst
- Changelog: ChangeLog
- License: LICENSE
Awesome Lists containing this project
README
pydot2
======warnning:
---------UNOFICCIAL repository. Main repository is: https://code.google.com/p/pydot/source/checkout
That fork makes two changes respect to mainstream:
* It support python-3.x
* It includes a patch to make pydot be able to work with pyparsing >= 2:http://stackoverflow.com/questions/15951748/pydot-and-graphviz-error-couldnt-import-dot-parser-loading-of-dot-files-will
PyPI project: https://pypi.python.org/pypi/pydot2
Install with::
$ pip install pydot2
pydot
=====pydot - Python interface to Graphviz's Dot language
Ero Carrera (c) 2004-2007
[email protected]This code is distributed under the MIT license.
Requirements:
-------------pyparsing: pydot requires the pyparsing module in order to be
able to load DOT files.GraphViz: is needed in order to render the graphs into any of
the plethora of output formats supported.Installation:
-------------Should suffice with doing:
python setup.py install
Needless to say, no installation is needed just to use the module. A mere:
import pydot
should do it, provided that the directory containing the modules is on Python
module search path.