├── .gitignore ├── README.adoc ├── bottle.py ├── example.py ├── index.html ├── requirements.txt └── static └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-examples/movies-python-py2neo/HEAD/README.adoc -------------------------------------------------------------------------------- /bottle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-examples/movies-python-py2neo/HEAD/bottle.py -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-examples/movies-python-py2neo/HEAD/example.py -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-examples/movies-python-py2neo/HEAD/index.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | py2neo==3.0 2 | -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-examples/movies-python-py2neo/HEAD/static/index.html --------------------------------------------------------------------------------