python noob here.
I am trying to figure out which module has a lesser learning curve. the gv module which comes as a language bindings with graphviz or pygraphviz.
does pygraphviz internally use gv warranting me to install both?
http://www.graphviz.org/pdf/gv.3python.pdf
thanks
Use
networkx
which is a widely accepted graph package in Python, together with itspydot
ormatplotlib
interfaces, in particular the inline drawing capabilities. See also this question.