Skip to content
/ dotter Public
forked from paetzke/dotter

Dotter is a graphviz wrapper for Python 2 and 3

License

Notifications You must be signed in to change notification settings

rwarren/dotter

 
 

Repository files navigation

dotter

https://travis-ci.org/paetzke/dotter.png?branch=master https://coveralls.io/repos/paetzke/dotter/badge.png?branch=master https://pypip.in/v/dotter/badge.png

Copyright (c) 2013, Friedrich Paetzke ([email protected]) All rights reserved.

Dotter is a graphviz wrapper for Python 2 and 3. In order to use it you need graphviz. On Debian/Ubuntu you can install it by typing:

$ apt-get install graphviz

After that install dotter via pip.

$ pip install dotter

http://vanneva.com/static/images/dotter.png

An usage example:

from dotter import Dotter


dotter = Dotter()

dotter.add_node('a', label='b')
dotter.add_node('b', label='c')
dotter.add_edge('a', 'b')
dotter.close()
https://d2weczhvl823v0.cloudfront.net/paetzke/dotter/trend.png

About

Dotter is a graphviz wrapper for Python 2 and 3

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 96.2%
  • Graphviz (DOT) 3.8%