Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jkminder authored Oct 11, 2022
1 parent bea6e6d commit 8b1cc50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 8b1cc50

Please sign in to comment.