cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Passing Neo4j SubGraph to Python

Hi,

I want to pass subgraph from a cypher query to networkx, python. I am aware that there is py2neo, a python library that interacts with neo4j. However, I am unable to find a way to pass data from neo4j to networkx or other method to do some graph computation. Is there a way to do so?

1 REPLY 1

If you want to use graph algorithms on your graph in Neo4j you can use neo4j-graph-algorithms. They are exposed as custom procedures and can be called directly with cypher. There is support for path-finding, centrality and community detection algorithms.