Update app.py
Browse files
app.py
CHANGED
@@ -11,11 +11,10 @@ MAX_PROCESSING_STEPS = 10
|
|
11 |
|
12 |
from neo4j import GraphDatabase
|
13 |
|
14 |
-
|
15 |
-
URI = "neo4j+s://4985272f.databases.neo4j.io"
|
16 |
AUTH = ("neo4j", "P6zQScbmyWivYeVZ84BniNjOCxu1D5Akw1IRC1SLKx8")
|
17 |
|
18 |
-
with GraphDatabase.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")
|