Skip to content

Commit

Permalink
Create connect_neo4j.py
Browse files Browse the repository at this point in the history
  • Loading branch information
benstear authored Nov 20, 2023
1 parent 368802e commit bf7f821
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tests/connect_neo4j.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/usr/bin/env python
# coding: utf-8

from neo4j import GraphDatabase, basic_auth

uri='bolt://localhost:7687'
user='neo4j'
password='neo4j2020'

driver = GraphDatabase.driver(uri, auth=(user, password))

0 comments on commit bf7f821

Please sign in to comment.