我想以neato样式输出以下代码。
from graphviz import Graph
dot = Graph()
dot.node('a')
dot.node('b')
dot.edge('a', 'b')
print(dot.source)
dot.render('test-output/round-table.gv', view=True)发布于 2019-05-08 15:16:58
使用dot.engine = 'neato'来使用neato样式。
https://stackoverflow.com/questions/56035271
复制相似问题