https://github.com/pb-/beancount-comdirect
A beancount importer for comdirect
https://github.com/pb-/beancount-comdirect
beancount comdirect plaintext-accounting
Last synced: 8 months ago
JSON representation
A beancount importer for comdirect
- Host: GitHub
- URL: https://github.com/pb-/beancount-comdirect
- Owner: pb-
- Created: 2021-01-20T22:52:54.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2022-02-20T21:14:29.000Z (over 4 years ago)
- Last Synced: 2024-07-30T19:54:53.836Z (almost 2 years ago)
- Topics: beancount, comdirect, plaintext-accounting
- Language: Python
- Homepage:
- Size: 44.9 KB
- Stars: 3
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# beancount-comdirect
A [beancount](https://github.com/beancount/beancount) importer for [comdirect](https://comdirect.de). **Work in progress.**
## Usage
```python
from beancount_comdirect.multi_importer import MultiImporter
from beancount_comdirect.accounts import (
CHECKING, SAVINGS, BROKERAGE, CREDIT
)
CONFIG = [
# Note that you have to configure the importer once per each account type
# that want to enable (CSVs always contain all accounts).
MultiImporter(CHECKING, 'Assets:Checking'),
# MultiImporter(SAVINGS, 'Assets:Savings'),
# MultiImporter(BROKERAGE, 'Assets:Stocks'),
# MultiImporter(CREDIT, 'Liabilities:Credit'),
]
```