Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pygraphviz/pygraphviz
Python interface to Graphviz graph drawing package
https://github.com/pygraphviz/pygraphviz
complex-networks graph-visualization python spec-0
Last synced: 3 months ago
JSON representation
Python interface to Graphviz graph drawing package
- Host: GitHub
- URL: https://github.com/pygraphviz/pygraphviz
- Owner: pygraphviz
- License: other
- Created: 2013-08-02T15:10:50.000Z (over 11 years ago)
- Default Branch: main
- Last Pushed: 2024-05-09T18:11:17.000Z (8 months ago)
- Last Synced: 2024-05-19T04:59:15.959Z (8 months ago)
- Topics: complex-networks, graph-visualization, python, spec-0
- Language: C
- Homepage: https://pygraphviz.github.io/
- Size: 4.9 MB
- Stars: 736
- Watchers: 36
- Forks: 203
- Open Issues: 62
-
Metadata Files:
- Readme: README.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - pygraphviz/pygraphviz - Python interface to Graphviz graph drawing package (python)
README
PyGraphviz
==========.. 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/mainPyGraphviz 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).- **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/issuesSimple example
--------------.. code:: pycon
>>> import pygraphviz as pgv
>>> G = pgv.AGraph()
>>> G.add_node("a")
>>> G.add_edge("b", "c")
>>> print(G)
strict graph "" {
a;
b -- c;
}Install
-------PyGraphviz requires Graphviz.
Please see `INSTALL.txt` for details.License
-------Released under the 3-Clause BSD license (see ``LICENSE``)::
Copyright (C) 2006-2024 PyGraphviz Developers
Aric Hagberg
Dan Schult
Manos Renieris