EnginesΒΆ

To use a different layout engine than the default dot when rendering your graph, you can use the engine argument on the constructor of Graph or Digraph.

>>> import graphviz  

>>> g = graphviz.Graph(engine='neato')

You can also change the engine attribute on an existing instance:

>>> g.engine = 'circo'