├── .gitchangelog.rc ├── .github └── workflows │ ├── pythonpackage.yml │ └── pythonpublish.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── beancount_reds_plugins ├── __init__.py ├── autoclose_tree │ ├── README.md │ ├── __init__.py │ ├── autoclose_tree.py │ └── test_autoclose_tree.py ├── box_accrual │ ├── README.md │ ├── __init__.py │ ├── box_accrual.py │ ├── test.beancount │ └── test_box_accrual.py ├── capital_gains_classifier │ ├── README.md │ ├── __init__.py │ ├── example.gain_loss.beancount │ ├── example.long_short.beancount │ ├── gain_loss.py │ ├── long_short.py │ ├── test_gain_loss.py │ └── test_long_short.py ├── common │ ├── __init__.py │ └── common.py ├── effective_date │ ├── CHANGES.md │ ├── README.md │ ├── __init__.py │ ├── effective_date.py │ ├── examples.beancount │ └── test_effective_date.py ├── opengroup │ ├── README.md │ ├── __init__.py │ ├── opengroup.py │ └── test_opengroup.py ├── rename_accounts │ ├── README.md │ ├── TODO.txt │ ├── __init__.py │ ├── rename_accounts.py │ └── test_rename_accounts.py └── zerosum │ ├── NOTES.txt │ ├── README.md │ ├── __init__.py │ ├── test_zerosum.py │ ├── zerosum-example.beancount │ ├── zerosum.py │ └── zs_test.beancount ├── contributors.txt ├── requirements.txt └── setup.py /.gitchangelog.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/.gitchangelog.rc -------------------------------------------------------------------------------- /.github/workflows/pythonpackage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/.github/workflows/pythonpackage.yml -------------------------------------------------------------------------------- /.github/workflows/pythonpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/.github/workflows/pythonpublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/README.md -------------------------------------------------------------------------------- /beancount_reds_plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beancount_reds_plugins/autoclose_tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/autoclose_tree/README.md -------------------------------------------------------------------------------- /beancount_reds_plugins/autoclose_tree/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beancount_reds_plugins/autoclose_tree/autoclose_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/autoclose_tree/autoclose_tree.py -------------------------------------------------------------------------------- /beancount_reds_plugins/autoclose_tree/test_autoclose_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/autoclose_tree/test_autoclose_tree.py -------------------------------------------------------------------------------- /beancount_reds_plugins/box_accrual/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/box_accrual/README.md -------------------------------------------------------------------------------- /beancount_reds_plugins/box_accrual/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beancount_reds_plugins/box_accrual/box_accrual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/box_accrual/box_accrual.py -------------------------------------------------------------------------------- /beancount_reds_plugins/box_accrual/test.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/box_accrual/test.beancount -------------------------------------------------------------------------------- /beancount_reds_plugins/box_accrual/test_box_accrual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/box_accrual/test_box_accrual.py -------------------------------------------------------------------------------- /beancount_reds_plugins/capital_gains_classifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/capital_gains_classifier/README.md -------------------------------------------------------------------------------- /beancount_reds_plugins/capital_gains_classifier/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beancount_reds_plugins/capital_gains_classifier/example.gain_loss.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/capital_gains_classifier/example.gain_loss.beancount -------------------------------------------------------------------------------- /beancount_reds_plugins/capital_gains_classifier/example.long_short.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/capital_gains_classifier/example.long_short.beancount -------------------------------------------------------------------------------- /beancount_reds_plugins/capital_gains_classifier/gain_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/capital_gains_classifier/gain_loss.py -------------------------------------------------------------------------------- /beancount_reds_plugins/capital_gains_classifier/long_short.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/capital_gains_classifier/long_short.py -------------------------------------------------------------------------------- /beancount_reds_plugins/capital_gains_classifier/test_gain_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/capital_gains_classifier/test_gain_loss.py -------------------------------------------------------------------------------- /beancount_reds_plugins/capital_gains_classifier/test_long_short.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/capital_gains_classifier/test_long_short.py -------------------------------------------------------------------------------- /beancount_reds_plugins/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beancount_reds_plugins/common/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/common/common.py -------------------------------------------------------------------------------- /beancount_reds_plugins/effective_date/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/effective_date/CHANGES.md -------------------------------------------------------------------------------- /beancount_reds_plugins/effective_date/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/effective_date/README.md -------------------------------------------------------------------------------- /beancount_reds_plugins/effective_date/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beancount_reds_plugins/effective_date/effective_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/effective_date/effective_date.py -------------------------------------------------------------------------------- /beancount_reds_plugins/effective_date/examples.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/effective_date/examples.beancount -------------------------------------------------------------------------------- /beancount_reds_plugins/effective_date/test_effective_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/effective_date/test_effective_date.py -------------------------------------------------------------------------------- /beancount_reds_plugins/opengroup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/opengroup/README.md -------------------------------------------------------------------------------- /beancount_reds_plugins/opengroup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beancount_reds_plugins/opengroup/opengroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/opengroup/opengroup.py -------------------------------------------------------------------------------- /beancount_reds_plugins/opengroup/test_opengroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/opengroup/test_opengroup.py -------------------------------------------------------------------------------- /beancount_reds_plugins/rename_accounts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/rename_accounts/README.md -------------------------------------------------------------------------------- /beancount_reds_plugins/rename_accounts/TODO.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /beancount_reds_plugins/rename_accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beancount_reds_plugins/rename_accounts/rename_accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/rename_accounts/rename_accounts.py -------------------------------------------------------------------------------- /beancount_reds_plugins/rename_accounts/test_rename_accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/rename_accounts/test_rename_accounts.py -------------------------------------------------------------------------------- /beancount_reds_plugins/zerosum/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/zerosum/NOTES.txt -------------------------------------------------------------------------------- /beancount_reds_plugins/zerosum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/zerosum/README.md -------------------------------------------------------------------------------- /beancount_reds_plugins/zerosum/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beancount_reds_plugins/zerosum/test_zerosum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/zerosum/test_zerosum.py -------------------------------------------------------------------------------- /beancount_reds_plugins/zerosum/zerosum-example.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/zerosum/zerosum-example.beancount -------------------------------------------------------------------------------- /beancount_reds_plugins/zerosum/zerosum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/zerosum/zerosum.py -------------------------------------------------------------------------------- /beancount_reds_plugins/zerosum/zs_test.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/beancount_reds_plugins/zerosum/zs_test.beancount -------------------------------------------------------------------------------- /contributors.txt: -------------------------------------------------------------------------------- 1 | Red Street 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstreet/beancount_reds_plugins/HEAD/setup.py --------------------------------------------------------------------------------