Skip to main content

Simple Python interface for Graphviz

Project description

Latest PyPI Version License Supported Python Versions Format Readthedocs

Travis Coveralls

This package facilitates the creation and rendering of graph descriptions in the DOT language of the Graphviz graph drawing software (repo) 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.

Use the view option/method to directly inspect the resulting (PDF, PNG, SVG, etc.) file with its default application. Graphs can also be rendered and displayed within Jupyter notebooks (a.k.a. IPython notebooks, example) as well as the Jupyter Qt Console.

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 directory containing the dot executable is on your systems’ path.

Quickstart

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)  # doctest: +SKIP
'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.8.zip (132.8 kB view details)

Uploaded Source

Built Distribution

graphviz-0.8-py2.py3-none-any.whl (17.5 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file graphviz-0.8.zip.

File metadata

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

File hashes

Hashes for graphviz-0.8.zip
Algorithm Hash digest
SHA256 889c720d9955b804d56a8e842621558cbb5cbbdd93cbdf55862371311646e344
MD5 9486a885360a5ee54a81eb2950470c71
BLAKE2b-256 da840e997520323d6b01124eb01c68d5c101814d0aab53083cd62bd75a90f70b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for graphviz-0.8-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 900ee61c68425332a2c16e3930b15a4644d3fe1b88dae26c672cf343f7b64ef3
MD5 ae4ce60b06b95ecbd06ab01da2503c4d
BLAKE2b-256 9cf8a766d4f37c23483b9358fc7d21ee73a4c6ada7361ce88303110fcdfa3ee9

See more details on using hashes here.

Supported by

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