├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── examples └── Neo4j_Crime_Investigation_Dataset.ipynb ├── requirements.txt ├── setup.py ├── src ├── cy2py │ ├── __init__.py │ ├── annotation_utils.py │ ├── cy2.py │ └── utils.py └── tests │ ├── __init__.py │ └── cypher_magic_test.py └── test_requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conker84/cy2py/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conker84/cy2py/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conker84/cy2py/HEAD/README.md -------------------------------------------------------------------------------- /examples/Neo4j_Crime_Investigation_Dataset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conker84/cy2py/HEAD/examples/Neo4j_Crime_Investigation_Dataset.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conker84/cy2py/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conker84/cy2py/HEAD/setup.py -------------------------------------------------------------------------------- /src/cy2py/__init__.py: -------------------------------------------------------------------------------- 1 | from .cy2 import * 2 | -------------------------------------------------------------------------------- /src/cy2py/annotation_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conker84/cy2py/HEAD/src/cy2py/annotation_utils.py -------------------------------------------------------------------------------- /src/cy2py/cy2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conker84/cy2py/HEAD/src/cy2py/cy2.py -------------------------------------------------------------------------------- /src/cy2py/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conker84/cy2py/HEAD/src/cy2py/utils.py -------------------------------------------------------------------------------- /src/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/cypher_magic_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conker84/cy2py/HEAD/src/tests/cypher_magic_test.py -------------------------------------------------------------------------------- /test_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conker84/cy2py/HEAD/test_requirements.txt --------------------------------------------------------------------------------