Python
From Neo4j Wiki
There are a few ways of integrating with Neo4j from Python.
- If you are using Jython Neo4j is available like any other Java library.
- For CPython we recommend using JCC, a library that compiles a Python extension that wraps JNI access to a Java library. Instructions for how to compile an extension for Neo4j has been posted to the mailing list.
- To get a more "pythonic" feel to Neo4j there is a wrapper library called Neo4j.py, this works with both Jython and CPython.

