/beancount-n26

Beancount Importers for N26 CSV Exports

Primary LanguagePythonMIT LicenseMIT

Beancount N26 Importer

beancount-n26 provides an Importer for converting CSV exports of N26 account summaries to the Beancount format.

Installation

$ pip install beancount-n26

In case you prefer installing from the Github repository, please note that master is the development branch so stable is what you should be installing from.

Usage

from beancount_n26 import N26Importer

CONFIG = [
    N26Importer(
        IBAN_NUMBER,
        'Assets:N26',
        language='en',
        file_encoding='utf-8',
    ),
]

Contributing

Contributions are most welcome!

Please make sure you have Python 3.5+ and Poetry installed.

  1. Git clone the repository - git clone https://github.com/siddhantgoel/beancount-n26
  2. Install the packages required for development - poetry install
  3. That's basically it. You should now be able to run the test suite - poetry run py.test.