save method

save

Saves the object’s data to the current DataStreamSupporter.

def save(self):
    ...

save

Saves the object’s data to the specified stream.

def save(self, stream):
    ...
ParameterTypeDescription
streamio.RawIOBaseThe stream to save the object’s data to.

save

Saves the object’s data to the specified file location.

def save(self, file_path):
    ...
ParameterTypeDescription
file_pathstrThe file path to save the object’s data to.

save

Saves the object’s data to the specified file location.

def save(self, file_path, over_write):
    ...
ParameterTypeDescription
file_pathstrThe file path to save the object’s data to.
over_writeboolif set to true over write the file contents, otherwise append will occur.

See Also