Metadata-Version: 2.0
Name: dotter
Version: 0.3.0
Summary: Dotter is a graphviz wrapper for Python 2 and 3
Home-page: https://github.com/paetzke/dotter
Author: Friedrich Paetzke
Author-email: f.paetzke@gmail.com
License: BSD
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities

dotter
======

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

Copyright (c) 2013, Friedrich Paetzke (f.paetzke@gmail.com)
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:

.. code:: bash

    $ apt-get install graphviz

After that install ``dotter`` via ``pip``.

.. code:: bash

    $ pip install dotter

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

An usage example:

.. code:: python

    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()

.. image:: https://d2weczhvl823v0.cloudfront.net/paetzke/dotter/trend.png
  :target: https://bitdeli.com/free



