Loading data to neo4j from XML using py2neo
问题 Im trying to load data to neo4j db from xml file using py2neo this python script works fine but its too slow since Im adding the nodes first then the relationships with two exceptions handlers. besides that the XML file size is around 200MB. Im wondering if there is faster way to perform this task? XML file: <Persons> <person> <id>XA123</id> <first_name>Adam</first_name> <last_name>John</last_name> <phone>01-12322222</phone> </person> <person> <id>XA7777</id> <first_name>Anna</first_name>