Skip to content

Commit

Permalink
Merge branch 'main' of github.com:sg-dev/rel2graph into main
Browse files Browse the repository at this point in the history
  • Loading branch information
jkminder committed Oct 11, 2022
2 parents 1e819cd + 8b1cc50 commit 9297a82
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 9297a82

Please sign in to comment.