forked from pool/python-pydot3
Stephan Barth
a53262b11e
Singelspec adaption for pydot3 (py2 build disabled) OBS-URL: https://build.opensuse.org/request/show/488932 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pydot3?expand=0&rev=1
8 lines
217 B
Python
8 lines
217 B
Python
|
|
graph = pydot.Dot('graphname', graph_type='digraph')
|
|
subg = pydot.Subgraph('', rank='same')
|
|
subg.add_node(pydot.Node('a'))
|
|
graph.add_subgraph(subg)
|
|
subg.add_node(pydot.Node('b'))
|
|
subg.add_node(pydot.Node('c'))
|