I was creating a graph through ipycytoscape
https://ipycytoscape.readthedocs.io/en/latest/
I have created an interactive graph through the package, in jupyter notebook
with my python code.
However, is there a way to save this javascript originated graph as an image?
below is an example code.
import networkx as nx
G = nx.complete_graph(5)
cyto = ipycytoscape.CytoscapeWidget()
cyto.graph.add_graph_from_networkx(G)
display(cyto)