Releases: ajithmoola/graph-viz
Releases · ajithmoola/graph-viz
Release list
v0.2.0
3D viewer for networkx graphs in VS Code. Opens *.graph.json files (node-link format) as an interactive 3D scene: nodes at their pos coordinates, spheres sized by radius, colored by connected component, hover tooltips, auto-reload on file change.
Install: download the .vsix below, then code --install-extension nx-graph-viewer-0.2.0.vsix
Export a graph from Python:
import json, networkx as nx
with open("mytree.graph.json", "w") as f:
json.dump(nx.node_link_data(G), f)