Skip to main content

Simple Python interface for Graphviz

Project description

Latest PyPI Version License Downloads Wheel Status

This package facilitates the creation of graph descriptions in the DOT language of the Graphviz graph drawing software from Python.

Create a graph object, assemble the graph by adding nodes and edges, and retrieve its DOT source code string. Save the source code to a file and render it with the Graphviz installation of your system.

Installation

This package runs under Python 2.7 and 3.3+, use pip to install:

$ pip install graphviz

To render the generated DOT source code, you also need to install Graphviz (download page).

Make sure that the dot executable is on your systems’ path.

Usage

Create a graph object:

>>> from graphviz import Digraph

>>> dot = Digraph(comment='The Round Table')

>>> dot  #doctest: +ELLIPSIS
<graphviz.dot.Digraph object at 0x...>

Add nodes and edges:

>>> dot.node('A', 'King Arthur')
>>> dot.node('B', 'Sir Bedevere the Wise')
>>> dot.node('L', 'Sir Lancelot the Brave')

>>> dot.edges(['AB', 'AL'])
>>> dot.edge('B', 'L', constraint='false')

Check the generated source code:

>>> print(dot.source)  # doctest: +NORMALIZE_WHITESPACE
// The Round Table
digraph {
    A [label="King Arthur"]
    B [label="Sir Bedevere the Wise"]
    L [label="Sir Lancelot the Brave"]
        A -> B
        A -> L
        B -> L [constraint=false]
}

Save and render the source code, optionally view the result:

>>> dot.render('test-output/round-table.gv', view=True)
'test-output/round-table.gv.pdf'
https://raw.github.com/xflr6/graphviz/master/docs/round-table.png

See also

License

This package is distributed under the MIT license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

graphviz-0.3.3.zip (29.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

graphviz-0.3.3-py2.py3-none-any.whl (10.1 kB view details)

Uploaded Python 2Python 3

File details

Details for the file graphviz-0.3.3.zip.

File metadata

  • Download URL: graphviz-0.3.3.zip
  • Upload date:
  • Size: 29.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for graphviz-0.3.3.zip
Algorithm Hash digest
SHA256 fb48d02fb68df88b792247a4fb7ec579d9c1574b5fe60921f61c486142d2683a
MD5 96397a8d37dc54c85f1fdf3e588c5519
BLAKE2b-256 c0ee945718faf96e9492d5bab85fdb373a0e870f02bdfcd893bbe11035f64eec

See more details on using hashes here.

File details

Details for the file graphviz-0.3.3-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for graphviz-0.3.3-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 7496cc703793349077dbc9950cbe7113c4b447baaafcc16f379d178133be1ccd
MD5 46be076a3d6398b6c07572d837348a49
BLAKE2b-256 ae462823467404ff0478017bd1afce926680cdeed54de93171c1fb1b0fb1e329

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page