项目作者: ArthurFDLR

项目描述 :
📈 Beancount Importer for Chase CSV statements - Pypi package
高级语言: Python
项目地址: git://github.com/ArthurFDLR/beancount-chase.git
创建时间: 2020-12-11T04:29:34Z
项目社区:https://github.com/ArthurFDLR/beancount-chase

开源协议:MIT License

下载


Beancount Chase Bank Importer

GitHub Workflow Status
PyPI
PyPI - Version
GitHub
Linting

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

Installation

  1. $ pip install beancount-chase

Usage

Add ChaseImporter to your Beancount importers config file.

  1. from beancount_chase import ChaseBankImporter
  2. CONFIG = [
  3. ChaseImporter(
  4. account='Assets:US:CB:Checking',
  5. expenseCat='Expenses:FIXME', #Optional
  6. creditCat='Income:FIXME', #Optional
  7. ),
  8. ]

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.