networkx.readwrite.graph6.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
[1] Graph6 specification <http://users.cecs.anu.edu.au/~bdm/data/formats.html>