Simple Neo4j driver
Project description
A simple Neo4j database driver.
Requirement
CPython 3.5+ https://www.python.org or MicroPython https://micropython.org
Install
# pip install minibolt
Sample Code
>>> import minibolt >>> conn = minibolt.connect('servername', 'username', 'password') >>> rs = conn.run('MATCH (tom:Person {name: "Tom Hanks"})-[:ACTED_IN]->(movie) return movie.title') >>> rs.fields ['movie.title'] >>> for r in rs: ... print(r[0]) ... Charlie Wilson's War The Polar Express A League of Their Own Cast Away Apollo 13 The Green Mile The Da Vinci Code Cloud Atlas That Thing You Do Joe Versus the Volcano Sleepless in Seattle You've Got Mail >>>
NetworkX integration
See https://gist.github.com/nakagami/a9c050ae76dc5a40eaeb67e6326b774e
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
minibolt-0.4.0.tar.gz
(5.3 kB
view details)
File details
Details for the file minibolt-0.4.0.tar.gz
.
File metadata
- Download URL: minibolt-0.4.0.tar.gz
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2f479b02628e3c348963b877d251d627bd636536901650855d7d265b30e60778 |
|
MD5 | 5072002aa8dfd177b657bca6108a104d |
|
BLAKE2b-256 | a0c25b2e6d2f5587e12fc04c934bac56ed4a007d677e4a6073f4a5bc3966abb3 |