python directed graph through pydot and graphviz

g = pydot.graph_from_edges([('a','b'),('a','c'),('a','d'),('c','d'),('c','e'),('e','b')],directed=True)
g.set_label('DTS for XBRI_I')
g.set_labelloc('top')
/images/pydotwikis1.png

This is the resulting graph

Return to the FrontPage | Edit pydot | Title List