Konvertieren Sie OFX Request- und Response-Dateien in Python API
Contents
[
Hide
]
Aspose.Finance für Python über .NET unterstützt die Konvertierung von OFX-Anforderungs- und Antwortdateien zwischen den Formaten 1.03 und 2.2. Die folgenden C#-Beispiele veranschaulichen die Konvertierung von OFX-Anforderungs- und -Antwortdateien vom 1.03-Format in das 2.2-Format unter Verwendung von API.
Konvertieren Sie die Anforderungsdatei OFX vom 1.03- in das 2.2-Format in .NET
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Convert OFX Request File from 1.03 to 2.2 format | |
document = OfxRequestDocument(os.path.join(sourceDir, "bankTransactionReq.sgml")) | |
document.save(os.path.join(outputDir, "bankTransactionReq.xml"), OfxVersionEnum.V2x) |
Konvertieren Sie die OFX-Antwortdatei vom 1.03- in das 2.2-Format in .NET
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Convert OFX Response File from 1.03 to 2.2 format | |
document = OfxResponseDocument(srcePath + "bankTransactionRes.sgml") | |
document.save(outputPath + "bankTransactionRes.xml", OfxVersionEnum.V2x) |