All Projects → neo4j-examples → movies-python-py2neo-2.0

neo4j-examples / movies-python-py2neo-2.0

Licence: other
Py2Neo 2 Implementation of the Movies Example Demo Application

Programming Languages

python
139335 projects - #7 most used programming language
HTML
75241 projects

Neo4j Movies Example Application - The Python Version

First get yourself setup with Virtual Env so we don’t break any other Python stuff you have on your machine. After you’ve got that installed let’s setup an environment for our app:

$ virtualenv cypher-app
New python executable in cypher-app/bin/python
Installing setuptools, pip...done.
$ source cypher-app/bin/activate

The next step is to install the dependencies for the app:

(cypher-app)$ pip install -r requirements.txt
...
Successfully installed py2neo
Cleaning up...

And finally let’s start up a Bottle web server:

(cypher-app)$ python example.py
Bottle v0.12.7 server starting up (using WSGIRefServer())...
Listening on http://127.0.0.1:8080/
Hit Ctrl-C to quit.

Navigate to http://localhost:8080 and you should see your first Neo4j application

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].