beancount-chase

Beancount Importer for Chase CSV statements


Keywords
banking, beancount, cli-accounting, finance, accounting, chase-bank, personal-finance, plaintext-accounting, pypi
License
MIT
Install
pip install beancount-chase==1.0.0

Documentation

Beancount Chase Bank Importer

GitHub Workflow Status PyPI PyPI - Version GitHub Linting

beancount-chase is a Beancount importer for Chase Bank CSV statements.

Installation

    $ pip install beancount-chase

Usage

    CONFIG = [
        ChaseImporter(
            account='Assets:US:CB:Checking',
            expenseCat='Expenses:FIXME',    #Optional
            creditCat='Income:FIXME',       #Optional
        ),
    ]

Contribution

Feel free to contribute!

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

  1. Git clone the repository - git clone https://github.com/ArthurFDLR/beancount-chase

  2. Install the packages required for development - poetry install

  3. That's basically it. You should now be able to run lint checks and the test suite - make lint test.