save method
Contents
[
Hide
]save(file_name, ofx_version)
Creates and saves the OFX file to the disk.
def save(self, file_name, ofx_version):
...
Parameter | Type | Description |
---|---|---|
file_name | str | The name of created file. |
ofx_version | OfxVersionEnum | The ofx version. |
save(stream, ofx_version)
Saves the OFX file to the stream.
def save(self, stream, ofx_version):
...
Parameter | Type | Description |
---|---|---|
stream | io.RawIOBase | The stream. |
ofx_version | OfxVersionEnum | The ofx version. |
save(file_name, save_options)
Creates and saves the OFX file to the disk.
def save(self, file_name, save_options):
...
Parameter | Type | Description |
---|---|---|
file_name | str | The name of created file. |
save_options | SaveOptions | The save options. |
save(stream, save_options)
Creates and saves the OFX file to the stream.
def save(self, stream, save_options):
...
Parameter | Type | Description |
---|---|---|
stream | io.RawIOBase | The stream. |
save_options | SaveOptions | The save options. |
See Also
- module aspose.finance.ofx
- class OfxRequestDocument