From 8b1cc50c32303833f529f230ecec3c20329dc9f3 Mon Sep 17 00:00:00 2001 From: Julian Minder <34280944+jkminder@users.noreply.github.com> Date: Tue, 11 Oct 2022 15:05:35 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4302d84..92890cc 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ from rel2graph import IteratorIterator, Converter, Attribute, register_attribute from rel2graph.utils import load_file # Create a connection to the neo4j graph with the py2neo Graph object -graph = Graph(scheme="http", host="localhost", port=7474, auth=('neo4j', 'password')) +graph = Graph(scheme="bolt", host="localhost", port=7474, auth=('neo4j', 'password')) people = ... # a dataframe with peoples data (ID, FirstName, LastName, FavoriteFlower) people_iterator = PandasDataframeIterator(people, "Person")