Skip to main content

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 hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page