Skip to main content

Saving

Syntax:

Node.save(filename=None)

Simply call the save method to save your data:

root_node.save()

You can also call the save method on child nodes, but it will save the data in the root node to the proper file.

You can also specify a different filename to (temporarily) save to:

root_node.save(filename="temp.file")

For changing the file to be saved to (in a more permanent sense), see [replaceme]