File size: 322 Bytes
6c7a981
 
 
 
4a27ade
6c7a981
 
ac7c095
 
1
2
3
4
5
6
7
8
9
from neo4j import GraphDatabase

# URI examples: "neo4j://localhost", "neo4j+s://xxx.databases.neo4j.io"
URI = "neo4j+s://4985272f.databases.neo4j.io"
AUTH = ("neo4j", "P6zQScbmyWivYeVZ84BniNjOCxu1D5Akw1IRC1SLKx8")

with GraphDatabase.driver(URI, auth=AUTH) as driver:
    driver.verify_connectivity()
    print("all gut")