匯入和身份驗證

from py2neo import authenticate, Graph, Node, Relationship
authenticate("localhost:7474", "neo4j", "<pass>")
graph = Graph()

你必須使用適當的憑據確保你的 Neo4j 資料庫存在於 localhost:7474。

graph 物件是你的 python 程式碼中其餘部分的 neo4j 例項的介面。相反,感謝這個全域性變數,你應該把它儲存在類的 __init__ 方法中。