I'm looking for a python library that will allow me to interactively draw networks and graphs and attach data to nodes and edges.

I have found two libraries for Java that seem to do what I need: JUNG and piccolo2d. Are there any python equivalents to these?

link|improve this question
feedback

2 Answers

Have a look at Matplotlib
some graph made with it: http://matplotlib.sourceforge.net/gallery.html
And Networkx and igraph

link|improve this answer
Yes, I have looked at that, but there seems to no simple way of using it to model a graph. – wkz Apr 19 '11 at 14:54
@wkz I add two other libs, check that. – wong2 Apr 19 '11 at 14:59
feedback
up vote -1 down vote accepted

Using GNU/Radio Companion, I was able to accomplish what I needed by performing some extensions here and there.

It is not the best solution since it introduces some ugly dependencies, but it works for now.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.