Go to the documentation of this file. 4 g.add_node(
"A:a", type=
"A", name=
"a")
5 g.add_node(
"B", type=
"B")
6 g.add_edge(
"A:a",
"B", label=
"0,1")
8 g.add_node(
"B:b", type=
"B", name=
"b")
9 g.add_edge(
"A:a",
"B:b", label=
"1,1")
12 dot = nx.to_agraph(g);
15 g2 = nx.from_agraph(dot)
16 print "g2:",nx.to_agraph(g2);
18 print g2[
"A:a"][
"B:b"]
20 nx.write_dot(g,
"test_nxdot.dot")