├── .gitignore ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── __init__.py ├── assets └── index.html ├── neo4jupyter.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merqurio/neo4jupyter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merqurio/neo4jupyter/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include assets/index.html 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merqurio/neo4jupyter/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merqurio/neo4jupyter/HEAD/__init__.py -------------------------------------------------------------------------------- /assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merqurio/neo4jupyter/HEAD/assets/index.html -------------------------------------------------------------------------------- /neo4jupyter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merqurio/neo4jupyter/HEAD/neo4jupyter.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merqurio/neo4jupyter/HEAD/setup.py --------------------------------------------------------------------------------