save method

save(file_name, ofx_version)

Creates and saves the OFX file to the disk.

def save(self, file_name, ofx_version):
    ...
ParameterTypeDescription
file_namestrThe name of created file.
ofx_versionOfxVersionEnumThe ofx version.

save(stream, ofx_version)

Saves the OFX file to the stream.

def save(self, stream, ofx_version):
    ...
ParameterTypeDescription
streamio.RawIOBaseThe stream.
ofx_versionOfxVersionEnumThe ofx version.

save(file_name, save_options)

Creates and saves the OFX file to the disk.

def save(self, file_name, save_options):
    ...
ParameterTypeDescription
file_namestrThe name of created file.
save_optionsSaveOptionsThe save options.

save(stream, save_options)

Creates and saves the OFX file to the stream.

def save(self, stream, save_options):
    ...
ParameterTypeDescription
streamio.RawIOBaseThe stream.
save_optionsSaveOptionsThe save options.

See Also