from_sparse6_bytes#
- from_sparse6_bytes(string)[source]#
从字符串中读取以sparse6格式表示的无向图。
- Parameters:
- string字符串
以sparse6格式表示的数据
- Returns:
- G图
- Raises:
- NetworkXError
如果字符串无法以sparse6格式解析
See also
References
[1]Sparse6 规范 <https://users.cecs.anu.edu.au/~bdm/data/formats.html>
Examples
>>> G = nx.from_sparse6_bytes(b":A_") >>> sorted(G.edges()) [(0, 1), (0, 1), (0, 1)]