.. image:: https://github.com/pygraphviz/pygraphviz/workflows/test/badge.svg?branch=main :target: https://github.com/pygraphviz/pygraphviz/actions?query=workflow%3Atest+branch%3Amain
.. image:: https://codecov.io/gh/pygraphviz/pygraphviz/branch/main/graph/badge.svg :target: https://app.codecov.io/gh/pygraphviz/pygraphviz/branch/main
PyGraphviz is a Python interface to the Graphviz graph layout and visualization package. With PyGraphviz you can create, edit, read, write, and draw graphs using Python to access the Graphviz graph data structure and layout algorithms. PyGraphviz provides a similar programming interface to NetworkX (https://networkx.org).
.. code:: python
>>> import pygraphviz as pgv
>>> G = pgv.AGraph()
>>> G.add_node("a")
>>> G.add_edge("b", "c")
>>> print(G)
strict graph "" {
a;
b -- c;
}
PyGraphviz requires Graphviz.
Please see INSTALL.txt
for details.
Released under the 3-Clause BSD license (see LICENSE
)::
Copyright (C) 2006-2022 PyGraphviz Developers Aric Hagberg aric.hagberg@gmail.gov Dan Schult dschult@colgate.edu Manos Renieris
Version | Tag | Published |
---|---|---|
1.9 | 3mos ago | |
1.8rc1 | 4mos ago | |
1.7 | 1yr ago | |
1.7rc2 | 1yr ago |