from_graph6_bytes#

from_graph6_bytes(bytes_in)[source]#

读取以graph6格式表示的简单无向图的字节数据。

Parameters:
bytes_inbytes

以graph6格式表示的数据,不包含尾随换行符。

Returns:
GGraph
Raises:
NetworkXError

如果bytes_in无法解析为graph6格式

ValueError

如果bytes_in中的任何字符 c 不满足 63 <= ord(c) < 127

References

Examples

>>> G = nx.from_graph6_bytes(b"A_")
>>> sorted(G.edges())
[(0, 1)]