Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

(.OFX/.QFX/.QIF/.QBO/.OFC) file converter

Tags:

c#

asp.net

ofx

qif

We are building an application that reads files (.OFX/.QFX/.QIF/.QBO/.OFC) and place the data read in the file in a grid.

Does anyone know of a utility or 3rd party tool to convert the file types (.OFX/.QFX/.QIF/.QBO/.OFC) to something more conventional like XML or CSV. Any help will be greatly appreciated!

We are using c#/ASP.NET for developing out web application. The app is hosted on a Windows server if it makes any difference...

like image 299
Rup Avatar asked Feb 03 '23 15:02

Rup


2 Answers

fixofx was open sourced from Wesabe. It converts various types of financial files including OFX 1.0 and QIF files to OFX 2.0, which is an XML-based format and so is easily parsed.

like image 112
Rehan Avatar answered Feb 06 '23 15:02

Rehan


I wrote a Python script ofx2csv.py that converts OFX/QFX files to CSV, if anyone needs to do this programmatically.

like image 40
Ibrahim Muhammad Avatar answered Feb 06 '23 15:02

Ibrahim Muhammad