(.OFX/.QFX/.QIF/.QBO/.OFC) 文件转换器

发布于 2024-11-26 00:58:33 字数 1539 浏览 1 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

很酷又爱笑 2024-12-03 00:58:33

fixofx 是 Wesabe 开源的。它将各种类型的财务文件(包括 OFX 1.0 和 QIF 文件)转换为 OFX 2.0,OFX 2.0 是一种基于 XML 的格式,因此很容易解析。

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.

忆伤 2024-12-03 00:58:33

我编写了一个Python脚本ofx2csv.py,如果有人需要的话,它可以将OFX/QFX文件转换为CSV以编程方式执行此操作。

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

妖妓 2024-12-03 00:58:33

我找到了解决这个问题的办法。

Bank2CSV Pro 将各种银行、信用卡和投资文件(QIF、OFX、QFX、QBO、OFC)转换为 CSV 格式(该文件将成为一个像常规电子表格一样的表格,其中行作为交易。它支持命令行模式:

bank2csv_pro.exe input.ofx output.csv

请参阅 http://www.propersoft.net/

I found a solution to this problem.

Bank2CSV Pro converts various bank, credit card and investment files (QIF, OFX, QFX, QBO, OFC) into CSV format (the file will become a table like a regular spreadsheet with rows as transactions. It supports command line mode:

bank2csv_pro.exe input.ofx output.csv

See http://www.propersoft.net/

凤舞天涯 2024-12-03 00:58:33

Bank2CSV Pro 运行良好,但免费版本只能转换 10 笔交易,完整版本售价 50 美元。我找到了一个免费的在线工具,可以将 CSV 转换为 OFX 和 QIF:

http://csvconverter.gginternational.net/

只需上传您的 csv,选择要映射的字段并繁荣 - 您就可以获得 QIF 或 OFX 文件。当我尝试将银行文件上传到 QBO 时,效果非常好

Bank2CSV Pro works well but the free version converts only 10 transactions and the full version costs USD 50. I found a free online tool that converts CSV to OFX and QIF:

http://csvconverter.gginternational.net/

Just upload your csv, select the fields to map and boom - you get your QIF or OFX file. Worked really well for me when I tried to upload my bank files to QBO

十秒萌定你 2024-12-03 00:58:33

ofx2csv.py 脚本几乎可以工作。对于 csv 不包含“备注”字段而 qfx 包含的花旗银行下载,我需要将备注字段添加到输出:

line = {
        'date': transaction.date.strftime(DATE_FORMAT),
        'payee': transaction.payee,
        'memo':transaction.memo,
        'debit': debit,
        'credit': credit,
        'balance': balance
    }

The ofx2csv.py script almost works. For the citibank downloads where the csv does not include the 'memo' field and qfx does, I needed to add the memo field to output:

line = {
        'date': transaction.date.strftime(DATE_FORMAT),
        'payee': transaction.payee,
        'memo':transaction.memo,
        'debit': debit,
        'credit': credit,
        'balance': balance
    }
后知后觉 2024-12-03 00:58:33

不确定您是否正在寻找实现此目的的代码或在桌面上执行此操作的实用程序。如果是后者,请尝试 iCreateOFX Basic,它可以读取 OFX 和 QIF 文件以及 CSV 文件成一个网格。

Not sure if you are loking for code to accomplish this or for a utility that does it on the desktop. If it i the latter, then try iCreateOFX Basic which reads OFX and QIF files as well as CSV files into a grid.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文