Skip to main content

Quiffen

Project description

Quiffen is a Python package for parsing QIF (Quicken Interchange Format) files.

The package allows users to both read QIF files and interact with the contents, and also to create a QIF structure and then output to either a QIF file, a CSV of transaction data or a pandas DataFrame.

QIF is an old file type, but has its merits because:

  • It’s standardised (apart from dates, but that can be dealt with)

    • Unlike CSVs, QIF files all follow the same format, so they don’t require special attention when they come from different sources

  • It’s written in plain text

Features

  • Import QIF files and manipulate data

  • Create QIF structures (support for Transactions, Investments, Accounts, Categories, Classes, Splits)

  • Convert Qif objects to a number of different formats and export (pandas DataFrame, CSV, QIF file)

Usage

Here’s an example parsing of a QIF file:

>>> from quiffen import Qif, QifDataType
>>> import decimal
>>> qif = Qif.parse('test.qif', day_first=False)
>>> qif.accounts
{'Quiffen Default Account': Account(name='Quiffen Default Account', desc='The default account created by Quiffen when no
other accounts were present')}
>>> acc = qif.accounts['Quiffen Default Account']
>>> acc.transactions
{'Bank': TransactionList(Transaction(date=datetime.datetime(2021, 2, 14, 0 , 0), amount=decimal.Decimal(150.0), ...), ...),
'Invst': TransactionList(...)}
>>> tr = acc.transactions['Bank'][0]
>>> print(tr)
Transaction:
    Date: 2020-02-14 00:00:00
    Amount: 67.5
    Payee: T-Mobile
    Category: Cell Phone
    Split Categories: ['Bills']
    Splits: 2 total split(s)
>>> qif.categories
{'Bills': Category(name='Bills), expense=True, hierarchy='Bills'}
>>> bills = qif.categories['Bills']
>>> print(bills.render_tree())
Bills (root)
└─ Cell Phone
>>> df = qif.to_dataframe(data_type=QifDataType.TRANSACTIONS)
>>> df.head()
        date  amount           payee  ...                           memo cleared check_number
0 2020-02-14    67.5        T-Mobile  ...                            NaN     NaN          NaN
1 2020-02-14    32.0  US Post Office  ...  money back for damaged parcel     NaN          NaN
2 2020-12-02   -10.0          Target  ...        two transactions, equal     NaN          NaN
3 2020-11-02   -25.0         Walmart  ...          non split transaction       X        123.0
4 2020-10-02  -100.0      Amazon.com  ...                   test order 1       *          NaN
...

And here’s an example of creating a QIF structure and exporting to a QIF file:

>>> import quiffen
>>> from datetime import datetime
>>> qif = quiffen.Qif()
>>> acc = quiffen.Account(name='Personal Bank Account', desc='My personal bank account with Barclays.')
>>> qif.add_account(acc)
>>> groceries = quiffen.Category(name='Groceries')
>>> essentials = quiffen.Category(name='Essentials')
>>> groceries.add_child(essentials)
>>> qif.add_category(groceries)
>>> tr = quiffen.Transaction(date=datetime.now(), amount=150.0)
>>> acc.add_transaction(tr, header=quiffen.AccountType.BANK)
>>> qif.to_qif()  # If a path is provided, this will save the file too!
'!Type:Cat\nNGroceries\nETrue\nIFalse\n^\nNGroceries:Essentials\nETrue\nIFalse\n^\n!Account\nNPersonal Bank Account\nDMy
personal bank account with Barclays.\n^\n!Type:Bank\nD02/07/2021\nT150.0\n^\n'

Documentation

Documentation can be found at: https://quiffen.readthedocs.io/en/latest/

Installation

Install Quiffen by running:

>>> pip install quiffen

Dependencies

  • pandas (optional) for exporting to DataFrames

    • The to_dataframe() method will not work without pandas installed.

To-Dos

  • Add support for the MemorizedTransaction object present in QIF files.

Contribute

GitHub pull requests welcome, though if you want to make a major change, please open an issue first for discussion.

Support

If you are having issues, please let me know.

License

The project is licensed under the GNU GPLv3 license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

quiffen-2.0.13.tar.gz (24.4 kB view details)

Uploaded Source

Built Distribution

quiffen-2.0.13-py3-none-any.whl (30.9 kB view details)

Uploaded Python 3

File details

Details for the file quiffen-2.0.13.tar.gz.

File metadata

  • Download URL: quiffen-2.0.13.tar.gz
  • Upload date:
  • Size: 24.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.0 CPython/3.10.12 Linux/5.15.153.1-microsoft-standard-WSL2

File hashes

Hashes for quiffen-2.0.13.tar.gz
Algorithm Hash digest
SHA256 840d2e8836c3630e69bf712267900ca49241104a868269eba54d17505dde66df
MD5 5cf33ae77153fa62fc011cc08858f6bd
BLAKE2b-256 d397256050e0e0df1a5c5dc8b2108d72fa3c8261b8ba9aff5759c8289cdffa9e

See more details on using hashes here.

File details

Details for the file quiffen-2.0.13-py3-none-any.whl.

File metadata

  • Download URL: quiffen-2.0.13-py3-none-any.whl
  • Upload date:
  • Size: 30.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.0 CPython/3.10.12 Linux/5.15.153.1-microsoft-standard-WSL2

File hashes

Hashes for quiffen-2.0.13-py3-none-any.whl
Algorithm Hash digest
SHA256 cb6de96a075495d55ba7f7183f985ec5fb965b986229b67d70953ba6454d7ff3
MD5 34a5967989e4f6ba6ee4fa413f608940
BLAKE2b-256 1d43e5b173efcc4527682782247551f7e966158396547d8a9d8e8b6bd9e7f129

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page