from_sparse6_bytes#

from_sparse6_bytes(string)[source]#

从字符串中读取以sparse6格式表示的无向图。

Parameters:
string字符串

以sparse6格式表示的数据

Returns:
G
Raises:
NetworkXError

如果字符串无法以sparse6格式解析

References

Examples

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