beancount-chase
is a Beancount importer for Chase Bank CSV statements.
$ pip install beancount-chase
Add ChaseImporter
to your Beancount importers config file.
from beancount_chase import ChaseBankImporter
CONFIG = [
ChaseImporter(
account='Assets:US:CB:Checking',
expenseCat='Expenses:FIXME', #Optional
creditCat='Income:FIXME', #Optional
),
]
Feel free to contribute!
Please make sure you have Python 3.6+ and Poetry
installed.
-
Git clone the repository -
git clone https://github.com/ArthurFDLR/beancount-chase
-
Install the packages required for development -
poetry install
-
That's basically it. You should now be able to run lint checks and the test suite -
make lint test
.