vote up 5 vote down star
5

I'm writing a python application that will make heavy use of a graph data structure. Nothing horribly complex, but I'm thinking some sort of graph/graph-algorithms library would help me out. I've googled around, but I don't find anything that particularly leaps out at me.

Anyone have any good recommendations?

flag

6 Answers

vote up 8 vote down check

Seriously, there are two excellent choices:

NetworkX

and

igraph

I like NetworkX, but I read good things about igraph as well. I routinely use NetworkX with graphs with 1 million nodes with no problem (it's about double the overhead of a dict of size V + E)

If you want a feature comparison, see this from the Networkx-discuss list

Feature comparison thread

link|flag
In particular, what I like about Networkx.... it's mostly in python, easy to edit and understand the source code, and it feels mostly "pythonic". – Gregg Lind Mar 3 at 15:36
vote up 6 vote down

Have you looked at python-graph? I haven't used it myself, but the project page looks promising.

link|flag
vote up 3 vote down

Also, you might want to take a look at NetworkX

link|flag
vote up 2 vote down

Take a look at this page on implementing graphs in python.

You could also take a look at pygraphlib on sourceforge.

link|flag
vote up 1 vote down

Graphviz

link|flag
Graphviz is for graph visualization only. – Nikhil Mar 5 at 12:32
vote up 1 vote down

Use the Boost Graph Library - Python Bindings.

link|flag
Nice one dehmann, I went for that first (being a C++ programmer by trade and absolutely loving boost), but this scares me: BGL-Python bindings are no longer being maintained <a top of page> – cpatrick Mar 3 at 14:25

Your Answer

Get an OpenID
or

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