- Notifications
You must be signed in to change notification settings - Fork215
Python interface to Graphviz graph drawing package
License
NotificationsYou must be signed in to change notification settings
pygraphviz/pygraphviz
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
PyGraphviz is a Python interface to the Graphviz graph layout andvisualization package.With PyGraphviz you can create, edit, read, write, and draw graphs usingPython to access the Graphviz graph data structure and layout algorithms.PyGraphviz provides a similar programming interface to NetworkX(https://networkx.org).
- Website (including documentation):https://pygraphviz.github.io
- Mailing list:https://groups.google.com/forum/#!forum/pygraphviz-discuss
- Source:https://github.com/pygraphviz/pygraphviz
- Bug reports:https://github.com/pygraphviz/pygraphviz/issues
>>>import pygraphvizas 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 (seeLICENSE
):
Copyright (C) 2006-2024 PyGraphviz DevelopersAric Hagberg <aric.hagberg@gmail.gov>Dan Schult <dschult@colgate.edu>Manos Renieris
About
Python interface to Graphviz graph drawing package