Skip to content

Demo and training application for Python and Neo4j

License

Notifications You must be signed in to change notification settings

neo4j-drivers/moviegraph

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Moviegraph

Moviegraph is a demo and training application for Python and Neo4j. The instructions below show how to get set up for the associated training material, part of which is contained within this repository.

Setup 1: Install Neo4j

The first step is to download and install Neo4j (if you don't already have it).

Download a Neo4j bundle:

$ wget http://dist.neo4j.org/neo4j-community-3.4.7-unix.tar.gz

Unzip the archive:

$ tar xf neo4j-community-3.4.7-unix.tar.gz

Step into the application directory:

$ cd neo4j-community-3.4.7

Set the initial password to password:

$ bin/neo4j-admin set-initial-password password

And start the server:

$ bin/neo4j start

Setup 2: Install the data set

The training requires installation of the Movie Graph data set, which comes bundled with Neo4j

Once the database is running, open the Neo4j browser at http://localhost:7474/. Then start the Movie Graph guide by typing :play movies and pressing [ENTER] or clicking the play button (▶). Follow the instructions to create and explore the data set (but don't delete it as we'll need it later!)

You can also view a "meta graph" that represents the data model itself, showing how node labels and relationship types are connected within the data set. To do this, run CALL db.schema and you should see output similar to the following:

Movie schema

Setup 3: Install the training application

This repository contains the application code used in the training. You'll need a local copy, which you can clone in the usual way:

$ git clone https://github.com/neo4j-drivers/moviegraph.git

After that, you'll need to create and activate a virtual environment (this requires virtualenv to be installed):

$ virtualenv venv
$ source venv/bin/activate

And finally, install the project requirements:

$ pip install -r requirements.txt

The training material is written for Python, though it's perfectly possible to work with other languages. Available pre-built translations are listed below:

Setup 4: Run the training application

To enable a smooth development workflow, first enable the following environment variables for Flask:

$ export FLASK_DEBUG=1
$ export FLASK_ENV=development

The application can then be started with

$ FLASK_APP=moviegraph flask run

Once started, you can open the application in a browser at http://127.0.0.1:5000.

The repository also contains several other variants of the application. These contain answers for each of the exercises. To view these, simply change the value of FLASK_APP to point to the appropriate module. For example:

$ FLASK_APP=answers/1/moviegraph flask run

Code walk 1: Project structure

  • answers/ - all the answers!!
  • static/ - static files (css)
  • templates/ - HTML template files (Jinja format)
  • venv - virtual environment (if setup as above)
  • moviegraph.py - main application module
  • requirements.txt - project requirements

Code walk 2: Flask setup code

from flask import Flask, abort, render_template, request
app = Flask(__name__)

Code walk 3: Neo4j driver setup code

from neo4j.v1 import GraphDatabase
driver = GraphDatabase.driver("bolt://localhost:7687", auth=("neo4j", "password"))

Code walk 4: GET index page

@app.route("/")
def get_index():
    """ Show the index page.
    """
    search_term = request.args.get("q", "")
    with driver.session() as session:
        movies = session.read_transaction(match_movies, q=search_term)
    return render_template("index.html", movies=movies, q=search_term)

Code walk 5: match_movies transaction function

def match_movies(tx, q):
    if q:
        return tx.run("MATCH (movie:Movie) WHERE toLower(movie.title) CONTAINS toLower($term) "
                      "RETURN movie ORDER BY movie.year DESCENDING, movie.title ASCENDING", term=q).value()
    else:
        return []

Code walk 6: GET movie page

@app.route("/movie/<title>")
def get_movie(title):
    """ Display details of a particular movie.
    """
    with driver.session() as session:
        record = session.read_transaction(match_movie, title)
    if record is None:
        abort(404, "Movie not found")
    return render_template("movie.html", movie=record["movie"], actors=record["actors"])

Code walk 7: match_movie transaction function

def match_movie(tx, title):
    return tx.run("MATCH (movie:Movie) WHERE movie.title = $title "
                  "OPTIONAL MATCH (person)-[:ACTED_IN]->(movie) "
                  "RETURN movie, collect(person) AS actors", title=title).single()

Exercise 1: Add person pages

  • Add links behind the movie cast list
  • Add a new page for /person/<name>
  • Add a new person.html template
$ FLASK_APP=answers/1/moviegraph flask run

Exercise 2: Add star ratings

  • Add clickable star rating to each movie
  • Add handler for POST requests to /movie/<title>
  • Add transaction function set_movie_stars
$ FLASK_APP=answers/2/moviegraph flask run

Exercise 3: Improve the search page

  • Add stars to search results
  • Add order by box
$ FLASK_APP=answers/3/moviegraph flask run

Exercise 4: Movie recommendations

  • Design a query to find movies that are similar to any given movie
  • List these as recommendations, with links, on the movie pages
  • Determine a way to rank these by similarity, and order the list from most similar to least similar
$ FLASK_APP=answers/3/moviegraph flask run

About

Demo and training application for Python and Neo4j

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published