heymenn commited on
Commit
619469d
·
verified ·
1 Parent(s): fa37ae7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -11,11 +11,10 @@ MAX_PROCESSING_STEPS = 10
11
 
12
  from neo4j import GraphDatabase
13
 
14
- # URI examples: "neo4j://localhost", "neo4j+s://xxx.databases.neo4j.io"
15
- URI = "neo4j+s://4985272f.databases.neo4j.io"
16
  AUTH = ("neo4j", "P6zQScbmyWivYeVZ84BniNjOCxu1D5Akw1IRC1SLKx8")
17
 
18
- with GraphDatabase.driver(URI, auth=AUTH) as driver:
19
  driver.verify_connectivity()
20
  print(driver.verify_connectivity())
21
  print("i guess its gut")
 
11
 
12
  from neo4j import GraphDatabase
13
 
14
+ NEO4J_URI = "neo4j+s://4985272f.databases.neo4j.io"
 
15
  AUTH = ("neo4j", "P6zQScbmyWivYeVZ84BniNjOCxu1D5Akw1IRC1SLKx8")
16
 
17
+ with GraphDatabase.driver(NEO4J_URI, auth=AUTH) as driver:
18
  driver.verify_connectivity()
19
  print(driver.verify_connectivity())
20
  print("i guess its gut")