我有像这样的点图字符串
我知道我可以使用node.get_name()或node.get_label()读取名称/标签。
在上述情况下,我可以使用库中的哪些方法读取自定义属性,例如“模式”或“页面”?
发布在pydot github页面上。没有回应
"Graph_ID_1" [label="My graph" schema="my_schema" page=2];
}```
答案 0 :(得分:0)
节点上的get_attributes
功能将为您提供所有属性的字典。
import pydot
n = pydot.Node(my_attr="bar")
print(n.get_attributes()) # -> {'my_attr': 'bar'}