I\'ve been working with networkx for quite some time now and it\'s been serving my purposes quite well with minimal tweaks until recently when I started looking into communi
In an upcoming release of python-igraph or if you install from source this will be as easy as
python-igraph
import igraph g = igraph.Graph.from_networkx(G)
The source code for how this is done can be found here.