Re: Tree and Graph structures in Python.

2006-03-15 Thread Ant
Thanks guys. The networkx and igraph packages look to have the sort of features I want. I'm surprised there's nothing in the standard module library really. -- Ant... -- http://mail.python.org/mailman/listinfo/python-list

Re: Tree and Graph structures in Python.

2006-03-15 Thread Tamas Nepusz
Istvan Albert wrote: > See this: > > https://networkx.lanl.gov/ Or if you want to be able to handle large graphs efficiently, igraph might be a good choice: http://igraph.sourceforge.net/ It's written in pure C, but has a Python interface and according to my measurements, it's much faster than an

Re: Tree and Graph structures in Python.

2006-03-14 Thread bearophileHUGS
http://www.osl.iu.edu/~dgregor/bgl-python/ http://sourceforge.net/projects/pygraphlib/ http://sourceforge.net/projects/pynetwork/ https://networkx.lanl.gov/ http://starship.python.net/crew/aaron_watters/kjbuckets/ http://www.python.org/doc/essays/graphs.html http://yapgvb.sourceforge.net/ http://dk

Re: Tree and Graph structures in Python.

2006-03-14 Thread Istvan Albert
See this: https://networkx.lanl.gov/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Tree and Graph structures in Python.

2006-03-14 Thread Lonnie Princehouse
Google for "boost graph python" -- http://mail.python.org/mailman/listinfo/python-list

Tree and Graph structures in Python.

2006-03-14 Thread Ant
Hi all, Are there any tree or graph modules available for python? Cheers, -- Ant... -- http://mail.python.org/mailman/listinfo/python-list