Add many graphs to this GraphML document.
(self, graph_list)
| 658 | self.xml.append(graph_element) |
| 659 | |
| 660 | def add_graphs(self, graph_list): |
| 661 | """Add many graphs to this GraphML document.""" |
| 662 | for G in graph_list: |
| 663 | self.add_graph_element(G) |
| 664 | |
| 665 | def dump(self, stream): |
| 666 | from xml.etree.ElementTree import ElementTree |