Miscellaneous plugins for Beancount double entry accounting
A collection of plugins for Beancount, software for
plain text, double entry bookkeeping.
See README.md in individual directories for plugin specific documentation.
pip3 install beancount-reds-plugins
Or to install the bleeding edge version from git:
pip3 install git+https://github.com/redstreet/beancount_reds_plugins
Invoke and configure a plugin by including it in your beancount source. For example,
invoke the rename_accounts
plugin like so:
plugin "beancount_reds_plugins.rename_accounts.rename_accounts" "{
'Expenses:Taxes' : 'Income:Taxes',
}"
See README.md in individual directories for how to configure each plugin.
In general, no plugins should run on the source files that are passed to
smart_importer
. Here’s an article
that shows how.
In short (this is for zsh
, adapt to your shell as needed):
bean-extract my.import -f <(echo 'plugin "beancount.plugins.auto_accounts"'; cat ${INGEST_ROOT}/../source/*) $file