Hi everyone,
I realized a problem concerning py2neo package used with Python vr3.5+
I did the following for neo4j package authentication:
GraphDatabase.driver("bolt://localhost:7867", "neo4j", "password")
But for py2neo package, when feeding in the same arguments for authentication:
Graph("bolt://localhost:7867", auth=("neo4j", "password"))
It's getting an error:
IndexError: pop from an empty deque
With another error exception:
Client Error: [Security.Unauthorized] The client is unauthorized due to authentication failure.
Tried multiple older versions of py2neo 2020.0.0 but yield similar results.
Accepting all suggestions here