RETIRED, further work has moved to Debian project infrastructure
Go to file
Lance Hepler adf18a858a Merge pull request #8 from gustavla/master
Fixes syntax error in older versions of graphviz.
2014-07-30 21:07:55 -07:00
pydot Fixes syntax error in older versions of graphviz. 2014-07-30 18:25:42 -05:00
test modularize into a directory, hide dot_parser, and flake8 everything 2013-07-29 04:05:52 -07:00
.gitignore Fix syntax error in Python 3: u'' -> ''. Also add .gitignore. 2013-09-09 12:55:54 -05:00
ChangeLog Added the license and changelog files 2007-07-11 21:38:58 +00:00
LICENSE Added the license and changelog files 2007-07-11 21:38:58 +00:00
README Updated copyright date 2007-07-09 23:17:27 +00:00
setup.py fix install_requires format 2014-06-02 11:43:15 +01:00

README

pydot - Python interface to Graphviz's Dot language
Ero Carrera (c) 2004-2007
ero@dkbza.org

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.