How to import python neo4j package's output back into another neo4j graph?

Hello,
Im using python neo4j package to manipulate neo4j data.
When i extract data from neo4j, their type is "neo4j.graph.Node" and "abc.references"(this one is relationship)
I wonder is there any faster way to import this type of data back into another graph?
Because there is a remote graph database which i cannot operate much, only read.
So i want to extract some data then put them into another local graph, so i can run some write cypher query on those data.
Thx!