OFX İstek ve Yanıt Dosyalarını Python API'e Dönüştür
Contents
[
Hide
]
.NET üzerinden Python için Aspose.Finance, OFX istek ve yanıt dosyalarının 1.03 ve 2.2 formatları arasında dönüştürülmesini destekler. Aşağıdaki C# örnekleri, OFX istek ve yanıt dosyalarının API kullanılarak 1.03 formatından 2.2 formatına dönüştürülmesini göstermektedir.
OFX İstek Dosyasını 1.03’ten 2.2 formatına .NET’e dönüştürün
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 Yanıt Dosyasını 1.03’ten 2.2 formatına .NET’e dönüştürün
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) |