تحويل OFX ملفات الطلبات والاستجابة في Python API
Contents
[
Hide
]
Aspose.Finance لـ Python عبر .NET يدعم تحويل ملفات الطلب والاستجابة OFX بين تنسيقات 1.03 و 2.2. توضح الأمثلة C# التالية تحويل ملفات الطلب والاستجابة OFX من تنسيق 1.03 إلى تنسيق 2.2 باستخدام API.
تحويل OFX طلب ملف من تنسيق 1.03 إلى 2.2 بتنسيق .NET
This file contains hidden or 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) |
تحويل ملف استجابة OFX من تنسيق 1.03 إلى 2.2 بتنسيق .NET
This file contains hidden or 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) |