Warning
This documents an unmaintained version of NetworkX. Please upgrade to a maintained version and see the current NetworkX documentation.
parse_graph6¶
-
parse_graph6
(string)[source]¶ Read a simple undirected graph in graph6 format from string.
Parameters: string (string) – Data in graph6 format Returns: G Return type: Graph Raises: NetworkXError
– If the string is unable to be parsed in graph6 formatExamples
>>> G = nx.parse_graph6('A_') >>> sorted(G.edges()) [(0, 1)]
See also
References
Graph6 specification: http://cs.anu.edu.au/~bdm/data/formats.txt for details.