beginner with ne4j from Python win 10 64 latest neo
from neo4j import *
https://neo4j.com/docs/api/python-driver/1.7/
uri = "bolt://localhost:7687"
d = GraphDatabase.driver(uri, auth=("neo4j", ""))
def do(cypher):
with d.session() as session:
session...