# graphcanvas **Repository Path**: mirrors_enthought/graphcanvas ## Basic Information - **Project Name**: graphcanvas - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2025-10-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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