I don't know me being a python-noob I didn't have problems following the API docs to come up with this:
https://neo4j.com/docs/api/python-driver/current/api.html#graph-data-types
from neo4j import GraphDatabase,basic_auth
driver = GraphDatabase.driver("bolt://localhost",auth=basic_auth("neo4j","test"))
cypher_query = "MATCH p=(n)-[r]->(m) RETURN p LIMIT 5"
with driver.session(database="neo4j") as session:
g = session.read_transaction(
lambda tx: tx.run(cypher_query,).graph())
for n in g.nodes:
print("id %s labels %s props %s" % (n.id, n.labels, n.items()))
for r in g.relationships:
print("id %s type %s start %s end %s props %s" % (r.id, r.type, r.start_node.id, r.end_node.id, r.items()))
output
id 10 labels frozenset({'LittleSisEntity', 'Person'}) props dict_items([('littleSisId', '102193'), ('name', 'DONALD J. TRUMP'), ('pageRank', 0.15000000000000002), ('wcc_partition', 9)])
id 473 labels frozenset({'LittleSisEntity', 'Person'}) props dict_items([('littleSisId', '13443'), ('name', 'JOHN SIDNEY MCCAIN'), ('pageRank', 0.15000000000000002), ('wcc_partition', 472)])
id 41 labels frozenset({'LittleSisEntity', 'Person'}) props dict_items([('littleSisId', '13191'), ('name', 'HILLARY DIANE RODHAM'), ('pageRank', 0.15000000000000002), ('wcc_partition', 40)])
id 2388 labels frozenset({'LittleSisEntity', 'Person'}) props dict_items([('littleSisId', '34136'), ('name', 'WILLARD MILTON ROMNEY'), ('pageRank', 0.15000000000000002), ('wcc_partition', 2387)])
id 15368 labels frozenset({'LittleSisEntity', 'Person'}) props dict_items([('littleSisId', '13536'), ('name', 'CHARLES B. RANGEL'), ('pageRank', 0.15000000000000002), ('wcc_partition', 15367)])
id 16822 labels frozenset({'Organization', 'LittleSisEntity'}) props dict_items([('littleSisId', '28778'), ('name', 'REPUBLICAN NATIONAL COMMITTEE')])
id 47647 type DONATION start 10 end 473 props dict_items([('relDetail', 'Campaign Contribution'), ('source', 'LittleSis')])
id 72375 type DONATION start 10 end 41 props dict_items([('relDetail', 'Campaign Contribution'), ('source', 'LittleSis')])
id 72385 type DONATION start 10 end 2388 props dict_items([('relDetail', 'Campaign Contribution'), ('source', 'LittleSis')])
id 72377 type DONATION start 10 end 15368 props dict_items([('relDetail', 'Campaign Contribution'), ('source', 'LittleSis')])
id 72384 type DONATION start 10 end 16822 props dict_items([('relDetail', 'Campaign Contribution'), ('source', 'LittleSis')])