├── .coveragerc ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── NOTICE ├── README.md ├── art ├── legacy │ ├── py2neo-glossy.800x800.png │ ├── py2neo-glossy.ico │ ├── py2neo-pixels.png │ ├── py2neo.800x800.png │ ├── py2neo.ico │ └── py2neo.svg ├── py2neo-2016.1653x964.png └── py2neo-2016.svg ├── bau ├── book ├── Makefile ├── _static │ ├── README.md │ ├── py2neo-2016.260x152.png │ └── py2neo.ico ├── _themes │ └── pydoctheme │ │ ├── static │ │ └── pydoctheme.css │ │ └── theme.conf ├── conf.py ├── database.rst ├── ext │ ├── batman.rst │ └── calendar.rst ├── index.rst ├── neokit.rst ├── ogm.rst ├── requirements.txt └── types.rst ├── bottle.py ├── demo ├── __init__.py └── moviegraph │ ├── README.md │ ├── __init__.py │ ├── model.py │ ├── server.py │ ├── static │ ├── camera.png │ └── main.css │ └── views │ ├── index.tpl │ ├── movie.tpl │ ├── movie_list.tpl │ ├── person.tpl │ └── person_list.tpl ├── neokit.py ├── py2neo ├── __init__.py ├── caching.py ├── compat.py ├── database │ ├── __init__.py │ ├── auth.py │ ├── cypher.py │ ├── http.py │ ├── selection.py │ └── status.py ├── ext │ ├── __init__.py │ ├── batman │ │ ├── README.rst │ │ ├── __init__.py │ │ ├── batch.py │ │ ├── index.py │ │ ├── jobs.py │ │ └── util.py │ └── calendar │ │ ├── README.rst │ │ ├── __init__.py │ │ └── gregorian.py ├── ogm.py ├── packages │ ├── __init__.py │ ├── httpstream │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── http.py │ │ ├── jsonencoder.py │ │ ├── numbers.py │ │ ├── packages │ │ │ ├── __init__.py │ │ │ └── urimagic │ │ │ │ ├── __init__.py │ │ │ │ ├── kvlist.py │ │ │ │ ├── rfc3986.py │ │ │ │ ├── rfc6570.py │ │ │ │ └── util.py │ │ ├── tardis.py │ │ └── watch.py │ └── neo4j │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── meta.py │ │ ├── util.py │ │ └── v1 │ │ ├── __init__.py │ │ ├── bolt.py │ │ ├── compat.py │ │ ├── constants.py │ │ ├── exceptions.py │ │ ├── packstream.py │ │ ├── session.py │ │ ├── ssl_compat.py │ │ ├── summary.py │ │ └── types.py ├── types.py └── util.py ├── resources ├── abba.geoff ├── abba.xml ├── create.cypher ├── create_params.json ├── movies.cypher ├── planets.geoff ├── planets.xml ├── statement.xbrl └── xxy.cypher ├── runtests.sh ├── setup.cfg ├── setup.py ├── test ├── __init__.py ├── compat.py ├── fixtures │ ├── __init__.py │ └── ogm.py ├── test_auth.py ├── test_caching.py ├── test_cast.py ├── test_cursor.py ├── test_cypher.py ├── test_dbms.py ├── test_delete.py ├── test_deprecated.py ├── test_entity.py ├── test_ext.py ├── test_graph.py ├── test_http.py ├── test_hydrate.py ├── test_match.py ├── test_merge.py ├── test_node.py ├── test_ogm.py ├── test_parallel.py ├── test_path.py ├── test_pull_push.py ├── test_relationship.py ├── test_repr.py ├── test_schema.py ├── test_selection.py ├── test_setview.py ├── test_transaction.py ├── test_types.py └── util.py ├── test_ext ├── __init__.py ├── batman │ ├── __init__.py │ ├── test_batch.py │ ├── test_index.py │ ├── test_index_batch.py │ ├── test_index_query.py │ └── util.py └── calendar │ ├── __init__.py │ └── test_calendar.py └── test_requirements.txt /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/README.md -------------------------------------------------------------------------------- /art/legacy/py2neo-glossy.800x800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/art/legacy/py2neo-glossy.800x800.png -------------------------------------------------------------------------------- /art/legacy/py2neo-glossy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/art/legacy/py2neo-glossy.ico -------------------------------------------------------------------------------- /art/legacy/py2neo-pixels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/art/legacy/py2neo-pixels.png -------------------------------------------------------------------------------- /art/legacy/py2neo.800x800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/art/legacy/py2neo.800x800.png -------------------------------------------------------------------------------- /art/legacy/py2neo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/art/legacy/py2neo.ico -------------------------------------------------------------------------------- /art/legacy/py2neo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/art/legacy/py2neo.svg -------------------------------------------------------------------------------- /art/py2neo-2016.1653x964.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/art/py2neo-2016.1653x964.png -------------------------------------------------------------------------------- /art/py2neo-2016.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/art/py2neo-2016.svg -------------------------------------------------------------------------------- /bau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/bau -------------------------------------------------------------------------------- /book/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/book/Makefile -------------------------------------------------------------------------------- /book/_static/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /book/_static/py2neo-2016.260x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/book/_static/py2neo-2016.260x152.png -------------------------------------------------------------------------------- /book/_static/py2neo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/book/_static/py2neo.ico -------------------------------------------------------------------------------- /book/_themes/pydoctheme/static/pydoctheme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/book/_themes/pydoctheme/static/pydoctheme.css -------------------------------------------------------------------------------- /book/_themes/pydoctheme/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/book/_themes/pydoctheme/theme.conf -------------------------------------------------------------------------------- /book/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/book/conf.py -------------------------------------------------------------------------------- /book/database.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/book/database.rst -------------------------------------------------------------------------------- /book/ext/batman.rst: -------------------------------------------------------------------------------- 1 | ../../py2neo/ext/batman/README.rst -------------------------------------------------------------------------------- /book/ext/calendar.rst: -------------------------------------------------------------------------------- 1 | ../../py2neo/ext/calendar/README.rst -------------------------------------------------------------------------------- /book/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/book/index.rst -------------------------------------------------------------------------------- /book/neokit.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: neokit 2 | :members: 3 | -------------------------------------------------------------------------------- /book/ogm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/book/ogm.rst -------------------------------------------------------------------------------- /book/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx 2 | -------------------------------------------------------------------------------- /book/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/book/types.rst -------------------------------------------------------------------------------- /bottle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/bottle.py -------------------------------------------------------------------------------- /demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/moviegraph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/demo/moviegraph/README.md -------------------------------------------------------------------------------- /demo/moviegraph/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/moviegraph/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/demo/moviegraph/model.py -------------------------------------------------------------------------------- /demo/moviegraph/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/demo/moviegraph/server.py -------------------------------------------------------------------------------- /demo/moviegraph/static/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/demo/moviegraph/static/camera.png -------------------------------------------------------------------------------- /demo/moviegraph/static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/demo/moviegraph/static/main.css -------------------------------------------------------------------------------- /demo/moviegraph/views/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/demo/moviegraph/views/index.tpl -------------------------------------------------------------------------------- /demo/moviegraph/views/movie.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/demo/moviegraph/views/movie.tpl -------------------------------------------------------------------------------- /demo/moviegraph/views/movie_list.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/demo/moviegraph/views/movie_list.tpl -------------------------------------------------------------------------------- /demo/moviegraph/views/person.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/demo/moviegraph/views/person.tpl -------------------------------------------------------------------------------- /demo/moviegraph/views/person_list.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/demo/moviegraph/views/person_list.tpl -------------------------------------------------------------------------------- /neokit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/neokit.py -------------------------------------------------------------------------------- /py2neo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/__init__.py -------------------------------------------------------------------------------- /py2neo/caching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/caching.py -------------------------------------------------------------------------------- /py2neo/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/compat.py -------------------------------------------------------------------------------- /py2neo/database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/database/__init__.py -------------------------------------------------------------------------------- /py2neo/database/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/database/auth.py -------------------------------------------------------------------------------- /py2neo/database/cypher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/database/cypher.py -------------------------------------------------------------------------------- /py2neo/database/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/database/http.py -------------------------------------------------------------------------------- /py2neo/database/selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/database/selection.py -------------------------------------------------------------------------------- /py2neo/database/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/database/status.py -------------------------------------------------------------------------------- /py2neo/ext/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/ext/__init__.py -------------------------------------------------------------------------------- /py2neo/ext/batman/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/ext/batman/README.rst -------------------------------------------------------------------------------- /py2neo/ext/batman/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/ext/batman/__init__.py -------------------------------------------------------------------------------- /py2neo/ext/batman/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/ext/batman/batch.py -------------------------------------------------------------------------------- /py2neo/ext/batman/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/ext/batman/index.py -------------------------------------------------------------------------------- /py2neo/ext/batman/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/ext/batman/jobs.py -------------------------------------------------------------------------------- /py2neo/ext/batman/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/ext/batman/util.py -------------------------------------------------------------------------------- /py2neo/ext/calendar/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/ext/calendar/README.rst -------------------------------------------------------------------------------- /py2neo/ext/calendar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/ext/calendar/__init__.py -------------------------------------------------------------------------------- /py2neo/ext/calendar/gregorian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/ext/calendar/gregorian.py -------------------------------------------------------------------------------- /py2neo/ogm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/ogm.py -------------------------------------------------------------------------------- /py2neo/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/packages/__init__.py -------------------------------------------------------------------------------- /py2neo/packages/httpstream/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/packages/httpstream/__init__.py -------------------------------------------------------------------------------- /py2neo/packages/httpstream/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/packages/httpstream/__main__.py -------------------------------------------------------------------------------- /py2neo/packages/httpstream/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/packages/httpstream/http.py -------------------------------------------------------------------------------- /py2neo/packages/httpstream/jsonencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/packages/httpstream/jsonencoder.py -------------------------------------------------------------------------------- /py2neo/packages/httpstream/numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/packages/httpstream/numbers.py -------------------------------------------------------------------------------- /py2neo/packages/httpstream/packages/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'elgin' 2 | -------------------------------------------------------------------------------- /py2neo/packages/httpstream/packages/urimagic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/packages/httpstream/packages/urimagic/__init__.py -------------------------------------------------------------------------------- /py2neo/packages/httpstream/packages/urimagic/kvlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/packages/httpstream/packages/urimagic/kvlist.py -------------------------------------------------------------------------------- /py2neo/packages/httpstream/packages/urimagic/rfc3986.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/packages/httpstream/packages/urimagic/rfc3986.py -------------------------------------------------------------------------------- /py2neo/packages/httpstream/packages/urimagic/rfc6570.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/packages/httpstream/packages/urimagic/rfc6570.py -------------------------------------------------------------------------------- /py2neo/packages/httpstream/packages/urimagic/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/packages/httpstream/packages/urimagic/util.py -------------------------------------------------------------------------------- /py2neo/packages/httpstream/tardis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/packages/httpstream/tardis.py -------------------------------------------------------------------------------- /py2neo/packages/httpstream/watch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/packages/httpstream/watch.py -------------------------------------------------------------------------------- /py2neo/packages/neo4j/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/packages/neo4j/__init__.py -------------------------------------------------------------------------------- /py2neo/packages/neo4j/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/packages/neo4j/__main__.py -------------------------------------------------------------------------------- /py2neo/packages/neo4j/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/packages/neo4j/meta.py -------------------------------------------------------------------------------- /py2neo/packages/neo4j/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/packages/neo4j/util.py -------------------------------------------------------------------------------- /py2neo/packages/neo4j/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/packages/neo4j/v1/__init__.py -------------------------------------------------------------------------------- /py2neo/packages/neo4j/v1/bolt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/packages/neo4j/v1/bolt.py -------------------------------------------------------------------------------- /py2neo/packages/neo4j/v1/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/packages/neo4j/v1/compat.py -------------------------------------------------------------------------------- /py2neo/packages/neo4j/v1/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/packages/neo4j/v1/constants.py -------------------------------------------------------------------------------- /py2neo/packages/neo4j/v1/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/packages/neo4j/v1/exceptions.py -------------------------------------------------------------------------------- /py2neo/packages/neo4j/v1/packstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/packages/neo4j/v1/packstream.py -------------------------------------------------------------------------------- /py2neo/packages/neo4j/v1/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/packages/neo4j/v1/session.py -------------------------------------------------------------------------------- /py2neo/packages/neo4j/v1/ssl_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/packages/neo4j/v1/ssl_compat.py -------------------------------------------------------------------------------- /py2neo/packages/neo4j/v1/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/packages/neo4j/v1/summary.py -------------------------------------------------------------------------------- /py2neo/packages/neo4j/v1/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/packages/neo4j/v1/types.py -------------------------------------------------------------------------------- /py2neo/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/types.py -------------------------------------------------------------------------------- /py2neo/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/py2neo/util.py -------------------------------------------------------------------------------- /resources/abba.geoff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/resources/abba.geoff -------------------------------------------------------------------------------- /resources/abba.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/resources/abba.xml -------------------------------------------------------------------------------- /resources/create.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/resources/create.cypher -------------------------------------------------------------------------------- /resources/create_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/resources/create_params.json -------------------------------------------------------------------------------- /resources/movies.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/resources/movies.cypher -------------------------------------------------------------------------------- /resources/planets.geoff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/resources/planets.geoff -------------------------------------------------------------------------------- /resources/planets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/resources/planets.xml -------------------------------------------------------------------------------- /resources/statement.xbrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/resources/statement.xbrl -------------------------------------------------------------------------------- /resources/xxy.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/resources/xxy.cypher -------------------------------------------------------------------------------- /runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/runtests.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/compat.py -------------------------------------------------------------------------------- /test/fixtures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/ogm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/fixtures/ogm.py -------------------------------------------------------------------------------- /test/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/test_auth.py -------------------------------------------------------------------------------- /test/test_caching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/test_caching.py -------------------------------------------------------------------------------- /test/test_cast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/test_cast.py -------------------------------------------------------------------------------- /test/test_cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/test_cursor.py -------------------------------------------------------------------------------- /test/test_cypher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/test_cypher.py -------------------------------------------------------------------------------- /test/test_dbms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/test_dbms.py -------------------------------------------------------------------------------- /test/test_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/test_delete.py -------------------------------------------------------------------------------- /test/test_deprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/test_deprecated.py -------------------------------------------------------------------------------- /test/test_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/test_entity.py -------------------------------------------------------------------------------- /test/test_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/test_ext.py -------------------------------------------------------------------------------- /test/test_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/test_graph.py -------------------------------------------------------------------------------- /test/test_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/test_http.py -------------------------------------------------------------------------------- /test/test_hydrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/test_hydrate.py -------------------------------------------------------------------------------- /test/test_match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/test_match.py -------------------------------------------------------------------------------- /test/test_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/test_merge.py -------------------------------------------------------------------------------- /test/test_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/test_node.py -------------------------------------------------------------------------------- /test/test_ogm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/test_ogm.py -------------------------------------------------------------------------------- /test/test_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/test_parallel.py -------------------------------------------------------------------------------- /test/test_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/test_path.py -------------------------------------------------------------------------------- /test/test_pull_push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/test_pull_push.py -------------------------------------------------------------------------------- /test/test_relationship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/test_relationship.py -------------------------------------------------------------------------------- /test/test_repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/test_repr.py -------------------------------------------------------------------------------- /test/test_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/test_schema.py -------------------------------------------------------------------------------- /test/test_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/test_selection.py -------------------------------------------------------------------------------- /test/test_setview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/test_setview.py -------------------------------------------------------------------------------- /test/test_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/test_transaction.py -------------------------------------------------------------------------------- /test/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/test_types.py -------------------------------------------------------------------------------- /test/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test/util.py -------------------------------------------------------------------------------- /test_ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_ext/batman/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_ext/batman/test_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test_ext/batman/test_batch.py -------------------------------------------------------------------------------- /test_ext/batman/test_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test_ext/batman/test_index.py -------------------------------------------------------------------------------- /test_ext/batman/test_index_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test_ext/batman/test_index_batch.py -------------------------------------------------------------------------------- /test_ext/batman/test_index_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test_ext/batman/test_index_query.py -------------------------------------------------------------------------------- /test_ext/batman/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test_ext/batman/util.py -------------------------------------------------------------------------------- /test_ext/calendar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_ext/calendar/test_calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nigelsmall/py2neo/HEAD/test_ext/calendar/test_calendar.py -------------------------------------------------------------------------------- /test_requirements.txt: -------------------------------------------------------------------------------- 1 | coverage 2 | mock 3 | --------------------------------------------------------------------------------