pygraphviz 1.14
pip install pygraphviz
Released:
Python interface to Graphviz
Navigation
Verified details
These details have been verified by PyPIProject links
GitHub Statistics
Maintainers
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: BSD License (BSD-3-Clause)
- Author: Manos Renieris
- Tags Networks, Graph Visualization, network, graph, graph drawing
- Requires: Python >=3.10
Classifiers
- Development Status
- Intended Audience
- License
- Programming Language
- Topic
Project description
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).
Website (including documentation): https://pygraphviz.github.io
Mailing list: https://groups.google.com/forum/#!forum/pygraphviz-discuss
Bug reports: https://github.com/pygraphviz/pygraphviz/issues
Simple example
>>> 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 <aric.hagberg@gmail.gov> Dan Schult <dschult@colgate.edu> Manos Renieris
Project details
Verified details
These details have been verified by PyPIProject links
GitHub Statistics
Maintainers
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: BSD License (BSD-3-Clause)
- Author: Manos Renieris
- Tags Networks, Graph Visualization, network, graph, graph drawing
- Requires: Python >=3.10
Classifiers
- Development Status
- Intended Audience
- License
- Programming Language
- Topic
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pygraphviz-1.14.tar.gz
.
File metadata
- Download URL: pygraphviz-1.14.tar.gz
- Upload date:
- Size: 106.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c10df02377f4e39b00ae17c862f4ee7e5767317f1c6b2dfd04cea6acc7fc2bea |
|
MD5 | 670ba4e63d7b28fb3b6748d4d4c54b15 |
|
BLAKE2b-256 | 66ca823d5c74a73d6b8b08e1f5aea12468ef334f0732c65cbb18df2a7f285c87 |