Hello,
I am new to Neo4J - and I'm struggling to connect to the sandbox via python.
I've tried the following code:
uri="bolt://localhost:7687"
driver = GraphDatabase.driver(uri, auth=("neo4j", "my_password"))
but get the following error:
neobolt.exceptions.AuthError: The client is unauthorized due to authentication failure.
Failed to write data to connection Address(host='localhost', port=7687) (Address(host='127.0.0.1', port=7687)); ("0; 'Underlying socket connection gone (_ssl.c:1997)'")
Any ideas?
Many thanks.
Guy