I'm trying the following:
from py2neo import Graph, Node
graph = Graph() #1
alice = Node("Person", name="Alice")
graph.create(alice)
I get the following error when I turn authentication off
Traceback (most recent call last):
File "", line 1, in
File...