intro = py`import pyvis.network #depends on both pyvis from ${micropipDependenciesPy} and micropip from ${packagesPy}
pyvis_graph = pyvis.network.Network(notebook=True)
pyvis_graph.add_node(0, label="foo", title="This is FOO", color="orange", size=9)
pyvis_graph.add_node(1, label="bar", title="That is BAR", color="blue", size=5)
pyvis_graph.add_node(2, label="baz", title="Here is BAZ", color="green", size=3)
pyvis_graph.add_edge(0, 1, label="xyzzy", color="gray")
pyvis_graph.add_edge(0, 2, label="fubar", color="red")
pyvis_graph.force_atlas_2based()
pyvis_graph.show("tmp.fig02.html")`