从这篇文章(How can I add a node type to the graph from within a script in booggie 2?)中可以看出,可以将节点/边添加到booggie中的元模型中并更改其属性。
是否也可以使用脚本更改图表中现有节点(或边缘)的属性?
答案 0 :(得分:1)
我认为您可以使用Nodes
和Edges
属性获取当前图表的所有节点/边缘。
试试这个:
edgeList = graph.Edges
nodeList = graph.Nodes
之后,您可以遍历这些列表for node in nodeList:
并整理出具有您想要更改的属性的元素,例如if node.myAttribute == 42:
。