当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python NetworkX from_graph6_bytes用法及代码示例


本文简要介绍 networkx.readwrite.graph6.from_graph6_bytes 的用法。

用法:

from_graph6_bytes(bytes_in)

从字节中读取 graph6 格式的简单无向图。

参数

bytes_in字节

graph6 格式的数据,没有尾随换行符。

返回

G图形

抛出

NetworkXError

如果bytes_in无法解析为graph6格式

ValueError

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

参考

1

Graph6 specification <http://users.cecs.anu.edu.au/~bdm/data/formats.html>

例子

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

相关用法


注:本文由纯净天空筛选整理自networkx.org大神的英文原创作品 networkx.readwrite.graph6.from_graph6_bytes。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。