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 format Examples
>>> 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.