Neo4j_database / app.py
heymenn's picture
Update app.py
c604b49 verified
raw
history blame
268 Bytes
from neo4j import GraphDatabase
# URI examples: "neo4j://localhost", "neo4j+s://xxx.databases.neo4j.io"
URI = "neo4j+s://4985272f.databases.neo4j.io"
AUTH = ("neo4j", "graph_test")
with GraphDatabase.driver(URI, auth=AUTH) as driver:
driver.verify_connectivity()