Skip to main content

Importers and plugins for Beancount plain-text accounting

Project description

beancount-lalitm

Importers and plugins for Beancount plain-text accounting.

Disclaimer: I am not a tax professional or financial advisor. This code is provided as-is for personal use. The uk_cgt_lots plugin in particular implements my understanding of UK Capital Gains Tax rules, which may be incomplete or incorrect. Use at your own risk.

Installation

pip install beancount-lalitm

# With optional dependencies for specific importers
pip install beancount-lalitm[ib]      # Interactive Brokers (XML)
pip install beancount-lalitm[pdf]     # PDF-based importers
pip install beancount-lalitm[excel]   # Excel-based importers
pip install beancount-lalitm[all]     # All optional dependencies

Importers

Investment Accounts (Fully Automated)

Investment importers can run directly via beangulp since no categorization is needed.

Create an import.py:

#!/usr/bin/env python3
"""Beancount import configuration for investments."""
import beangulp
from beancount import loader
from beancount_lalitm.importers.account_lookup import AccountOracle
from beancount_lalitm.importers.ib import IbImporter

entries, errors, options = loader.load_file('main.beancount')

ib_oracle = AccountOracle(
    account='Lalit:US:IB:Brokerage',
    entries=entries,
    transfers_account='Assets:Lalit:US:IB:Transfers',
)

CONFIG = [
    IbImporter(account_currency='USD', account_oracle=ib_oracle),
]

if __name__ == '__main__':
    beangulp.Ingest(CONFIG)()

Run directly with beangulp:

python import.py extract ~/Downloads/ib-flex-query.xml >> investments.beancount

Bank Accounts (Semi-Automated)

Bank and credit card importers require categorization. Use beancount-import for a web UI that learns from your previous choices.

#!/usr/bin/env python3
"""Beancount import configuration for banks."""
from beancount_lalitm.importers.hsbc import HsbcImporter
from beancount_lalitm.importers.hsbc_uk_cc import HsbcUkCcImporter

CONFIG = [
    HsbcImporter(account='Assets:Lalit:UK:HSBC:Current'),
    HsbcUkCcImporter(account='Liabilities:Lalit:UK:HSBC:CreditCard'),
]

Run the beancount-import web UI:

python -m beancount_import.webserver \
    --journal journal.beancount \
    --ignored_path ignored.beancount \
    --account_filter '^Assets:Lalit:UK:HSBC'

Available Importers

Investment Platforms

Importer Description Input Format
IbImporter Interactive Brokers Flex Query XML
SchwabEacImporter Schwab Equity Award Center Text (PDF converted)
VanguardImporter Vanguard UK Excel
IgImporter IG Trading Text (PDF converted)
AjTransactionsImporter AJ Bell transactions PDF
AjCashImporter AJ Bell cash history CSV
AvivaPensionImporter Aviva pension Text (PDF converted)

Banks

Importer Description Input Format
HsbcImporter HSBC UK current account Text (PDF converted)
HsbcUkCcImporter HSBC UK credit card JSON
HsbcUsCcImporter HSBC US credit card JSON
HsbcUsCheckingImporter HSBC US checking Text (PDF converted)

Payroll

Importer Description Input Format
GooglePayslipImporter Google UK payslips Text (PDF converted)

Plugins

Add plugins to your beancount file with the plugin directive.

ancillary_accounts

Auto-creates companion accounts for investment securities (commissions, dividends, capital gains, withholding tax).

plugin "beancount_lalitm.plugins.ancillary_accounts"

2024-01-01 open Assets:Broker:AAPL  AAPL
  ancillary_commission_currency: USD
  ancillary_distribution_currency: USD
  ancillary_capital_gains_currency: USD

stock_split

Adjusts historical transactions for stock splits.

plugin "beancount_lalitm.plugins.stock_split" "
  splits:
    - symbol: GOOG
      date: 2022-07-15
      ratio: 20
"

uk_cgt_lots

UK Capital Gains Tax lot matching using Section 104 pooling.

plugin "beancount_lalitm.plugins.uk_cgt_lots" "
  accounts:
    - name: Person:UK:Broker:GIA
      taxable: true
    - name: Person:UK:Broker:ISA
      taxable: false
"

License

Apache 2.0 - see LICENSE for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

beancount_lalitm-0.2.0.tar.gz (66.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

beancount_lalitm-0.2.0-py3-none-any.whl (38.1 kB view details)

Uploaded Python 3

File details

Details for the file beancount_lalitm-0.2.0.tar.gz.

File metadata

  • Download URL: beancount_lalitm-0.2.0.tar.gz
  • Upload date:
  • Size: 66.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for beancount_lalitm-0.2.0.tar.gz
Algorithm Hash digest
SHA256 d31cd2b3b1772f261b06d2035e8dc75b840410629a69cccd3cb7fa0d50d0ebdd
MD5 870a30ff2989736970e8fada17e22067
BLAKE2b-256 2987d27081b6c65a312e912e1c7e5bce0b1ad14d6168d370a044e469a135002e

See more details on using hashes here.

File details

Details for the file beancount_lalitm-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for beancount_lalitm-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6ca0a2ec32de32f9be6856dc96ae07a1f6bfdb09dddee904521a3d4ff4555f3e
MD5 3debc450fcdd9a1a63e9af1d665ee6a1
BLAKE2b-256 28d053e5a875f25b773e9e3f799dfbc0b13197649c4570511382c1da7e04f6ca

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page