Skip to main content

Simple Python interface for Graphviz

Project description

Latest PyPI Version License Downloads

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 compile it with the Graphviz installation of your system.

Installation

$ pip install graphviz

To compile 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('round-table.gv', view=True)
'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.2.zip (24.5 kB view details)

Uploaded Source

File details

Details for the file graphviz-0.2.zip.

File metadata

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

File hashes

Hashes for graphviz-0.2.zip
Algorithm Hash digest
SHA256 e70ca907440e3e5b6aab89749c4c8bb000ddfe3079624f395fea4fc79ed8d690
MD5 ec623ce2aea30737c96fd35adcdc2f2c
BLAKE2b-256 fc368512bc426984f388566a7fa1d6289bf3053d5da05e9fa8c863d7349c6ff8

See more details on using hashes here.

Provenance

Supported by

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