Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a python equivalent of the prefuse visualization toolkit?

The prefuse visualization toolkit is pretty nice, but for Java. I was wondering if there was something similar for python. My primary interest is being able to navigate dynamic graphs.

like image 941
carrier Avatar asked Feb 26 '09 18:02

carrier


1 Answers

I know this is not exactly python, but you could use prefuse in python through jython

Something along the lines of:

Add prefuse to your path:

export JYTHONPATH=$JYTHONPATH:prefuse.jar

and

>>> import prefuse

from your jython machinery

this guy has an example of using prefuse from jython here

like image 105
Steen Avatar answered Nov 13 '22 01:11

Steen