https://github.com/enthought/graphcanvas
https://github.com/enthought/graphcanvas
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/enthought/graphcanvas
- Owner: enthought
- Created: 2011-01-28T04:46:19.000Z (over 15 years ago)
- Default Branch: main
- Last Pushed: 2022-12-05T17:07:16.000Z (over 3 years ago)
- Last Synced: 2025-03-25T06:51:12.606Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 159 KB
- Stars: 26
- Watchers: 59
- Forks: 8
- Open Issues: 6
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
======================================================
graphcanvas: interactive graph (network) visualization
======================================================
graphcanvas is an library for interacting with visualizations of complex
graphs. The aim is to allow the developer to declare the graph by the
simplest means and be able to visualize the graph immediately.
For example::
from graphcanvas.api import GraphView, graph_from_dict
g = {'a':['b'], 'b':['c', 'd'], 'c':[], 'd':[]}
GraphView(graph=graph_from_dict(g)).configure_traits()
Prerequisites
-------------
* `NetworkX `_
* enable