Skip to main content

Ledger in Python that follows corporate accounting rules.

Project description

abacus-minimal

PyPI - Version

abacus-minimal is an accounting logic engine that aims to be concise, correct and expressive in implementation of double entry book-keeping rules.

Install

pip install abacus-minimal

Latest:

pip install git+https://github.com/epogrebnyak/abacus-minimal.git

Minimal example

Start a company with initial shareholder investment (1000), pay office rent (100) and salaries (350), and accept cash for provided services (400). Demostrate the company incurs a loss of 50.

from abacus import Book, Chart, Entry

chart = Chart(
    retained_earnings="retained_earnings",
    current_earnings="current_earnings",
    assets=["cash"],
    capital=["equity"],
    income=["services"],
    expenses=["salaries", "rent"],
)
book = Book(chart)
entries = [
    Entry("Initial shareholder investment").amount(1000).debit("cash").credit("equity"),
    Entry("Paid office rent").amount(100).debit("rent").credit("cash"),
    Entry("Accepted cash for services").amount(400).debit("cash").credit("services"),
    Entry("Paid salaries in cash").amount(350).debit("salaries").credit("cash"),
]
book.post_many(entries)
book.close()
print(book.income_statement)
print(book.balance_sheet)
# Some checks
assert book.income_statement.net_earnings == -50
assert book.balances == {'cash': 950, 'equity': 1000, 'retained_earnings': -50}

Accounting workflow

The steps for using abacus-minimal follow the steps of a typical accounting cycle:

  • create a chart of accounts,
  • open ledger for the current reporting period,
  • post entries that reflect business transactions,
  • post reconciliation and adjustment entries,
  • close accounts at reporting period end,
  • make post-close entries,
  • show financial reports,
  • save account balances data for the next reporting period.

End-to-end example

In this code example we will programmatically run the accounting workflow within one reporting period using more features including:

  • opening entry with account balances at start of period,
  • contra accounts specification,
  • various types of syntax for an entry,
  • multiple entries,
  • saving and loading data to JSON files.

The complete code is in readme.py.

1. Create chart of accounts

Steps involved:

  • specify names of the current earnings and retained earnings accounts,
  • add account names for assets, capital, liabilities, income and expenses,
  • add contra accounts (e.g. refunds is a contra account to sales).

Code example:

from abacus import Chart

chart = Chart(
    retained_earnings="retained_earnings",
    current_earnings="current_earnings",
    assets=["cash", "ar"],
    capital=["equity"],
    liabilities=["vat_payable"],
    income=["sales"],
    expenses=["salaries"],
)
chart.offset("sales", "refunds")
chart.name("ar", "Accounts receivable")

Chart class is a pydantic model, which means it is easily converted to a JSON file. You can save or load a chart from a file.

chart.save("chart.json")
chart = Chart.load("chart.json")

2. Start ledger

Steps involved:

  • create a data structure that represents state of accounts ('book', or ledger),
  • record account starting balances from the previous period,

Let's create a book with opening balances known from previous period:

from abacus import Book

book = Book(chart)
opening_balances = {
    "cash": 10_000,
    "equity": 8_000,
    "retained_earnings": 2_000
    }
book.open(opening_balances)

At this point the book is ready to record new entries.

3. Post entries to ledger

Steps involved:

  • record entries that represent business transactions,
  • show state of ledger (as trial balance or as account balances) at any time.

Each entry has a title and directions to alter the accounts that are called debits and credits. The sum of debits should match the sum of credits for a valid entry. The Entry class provides several ways to record the composition of an entry as shown below.

from abacus import Entry

entries = [
    Entry("Invoice with VAT").debit("ar", 6000).credit("sales", 5000).credit("vat_payable", 1000),
    Entry("Cash payment").debit("cash", 6000).credit("ar", 6000),
    Entry("Cashback").double(debit="refunds", credit="cash", amount=500),
    Entry("Paid salaries").amount(1500).debit("salaries").credit("cash"),
]

# Post entries to book
book.post_many(entries)

Note: there are no reconciliations, adjustments and post-close entries in this example.

4. Inspecting ledger

After posting entries you can inspect the trial balance or account balances:

# Show trial balance and account balances
print(book.trial_balance)
print(book.balances)

# Check account balances match expected values
assert book.balances == {
    "cash": 14000,
    "ar": 0,
    "equity": 8000,
    "vat_payable": 1000,
    "sales": 5000,
    "refunds": 500,
    "salaries": 1500,
    "current_earnings": 0,
    "retained_earnings": 2000,
}

5. Closing accounts

Closing accounts at period end involves:

  • closing contra accounts related to income and expense accounts, and
  • closing income and expense accounts to retained earnings.

See section below for code for closing accounts.

Note: account closing was a rather hard part of abacus-minimal code that I had to refactor several times. I ended up having both current earnings and retained earnings as mandatory fields in chart. From the chart I issue pairs of accounts that will transfer the balances from one another (e.g. 'refunds' to 'sales', and then 'sales' to 'current_earnings' or 'retained_earnings'), then post actual closing entries to a ledger.

6. Reporting financial statements

Financial reports are typically displayed after account closing, but there are proxy income statement and balance sheets reports that can be shown before closing as well.

The income statement will be the same before and after closing.

The balance sheet before closing the will contain current earnings account and retained earnings from previous periods. After closing the current earnings account will be transferred to the retained earnings account and removed from the ledger and will not appear in balance sheet.

Expect to see a lot of dictionary-like data structures in code output below:

print("=== Before closing ===")
print(book.income_statement)
print(book.balance_sheet)
assert book.balance_sheet.capital["current_earnings"] == 3000

# Close accounts at period end
book.close()

print("=== After closing ===")
print(book.income_statement)
print(book.balance_sheet)

# Check account balances match expected values
print(book.balances)
assert book.balances == {
    "cash": 14000,
    "ar": 0,
    "equity": 8000,
    "vat_payable": 1000,
    "retained_earnings": 5000,
}

7. Saving data for the next period

You can save the list of entries and period end account balances to JSON files, unless the files already exist. In that case you will need extra precaution – for example save to a different folder or under a different filename.

# Save JSON files
book.store.save("./entries.json")
book.balances.save("./end_balances.json")

Architecture

Core

There is a small core of accounting engine that consists of ChartDict that maps account names to their types, a Ledger class that maps account names to debit normal and credit normal T-accounts and MultipleEntry class that can represent a double or a multiple entry. Ledger is created from ChartDict, incoming entries change state of ledger. There is also a way to issue closing entries at accounting period end. Trial balance, account balances, balance sheet and income statement are the ways to reflect the state of ledger that work before and after closing.

Limitations

Several assumptions and simplifications are used to make abacus-minimal easier to develop and reason about. The key assumptions are:

  • one currency,
  • globally unique account names,
  • one level of accounts in chart and no account aggregation for reports,
  • no intermediate accounts,
  • no treatment of other comprehensive income,
  • no changes in equity and cash flow statements (at least yet).

See core.py module docstring for more details.

User interface

As a user you do not have to interact with the core directly, there are Chart, Entry and Book classes. The Book class holds together a chart, store of entries, and a ledger and allows closing at period end, creating reports and saving and loading data from JSON.

Alternatives

abacus-minimal takes a lot of inspiration from the following great projects:

Accounting knowledge

If you are totally new to accounting the suggested friendly course is https://www.accountingcoach.com/.

ACCA and CPA are the international and the US professional qualifications and IFRS and GAAP are the standards for accounting recognition, measurement and disclosure.

Part B-G in the ACCA syllabus for the FFA exam talk about what abacus-minimal is designed for.

Project conventions

I use just command runner to automate code maintenance tasks in this project.

just test and just fix scripts will run the following tools:

  • pytest
  • mypy
  • black and isort --float-to-top (probably should replace with ruff format)
  • ruff check
  • prettier for markdown formatting
  • codedown to extract Python code from README.md.

examples/readme.py is overwritten by the just readme command.

I use poetry as a package manager, but heard good things about uv that I want to try.

Changelog

  • 0.10.5 (2024-10-27) Handles income statement and balances sheet before and after close.
  • 0.10.0 (2024-10-24) Separates core, chart, entry and book code and tests.

Roadmap

Using upstream

  • implanting abacus-minimal as a dependency to abacus-py and abacus-streamlit,
  • allow conversions between charts of accounts as requested in #4.

New features

  • Book.increase() and Book.decrease() methods
  • Entry.explain() method

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

abacus_minimal-0.10.5.tar.gz (15.0 kB view details)

Uploaded Source

Built Distribution

abacus_minimal-0.10.5-py3-none-any.whl (13.0 kB view details)

Uploaded Python 3

File details

Details for the file abacus_minimal-0.10.5.tar.gz.

File metadata

  • Download URL: abacus_minimal-0.10.5.tar.gz
  • Upload date:
  • Size: 15.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.12.1 Linux/6.5.0-1025-azure

File hashes

Hashes for abacus_minimal-0.10.5.tar.gz
Algorithm Hash digest
SHA256 ac9a81289cb496da51f1ac8294ec3c354c5d806d7be0c07f453caf87c1cb9de3
MD5 f28cd90e856ffc059687c8ed74a662d3
BLAKE2b-256 ef448f35795eeba508288816da9ba456c8836305c77eabb25ea84d2737a7ced4

See more details on using hashes here.

File details

Details for the file abacus_minimal-0.10.5-py3-none-any.whl.

File metadata

  • Download URL: abacus_minimal-0.10.5-py3-none-any.whl
  • Upload date:
  • Size: 13.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.12.1 Linux/6.5.0-1025-azure

File hashes

Hashes for abacus_minimal-0.10.5-py3-none-any.whl
Algorithm Hash digest
SHA256 49ceed1b7d656b537d6188ce180f55d1af40f61dbd7e1453599ae8c5d8070295
MD5 35375efb1655b3f85dbf9f76425237f8
BLAKE2b-256 2bb29a78d451d5a9759521d239e67aa0e88309bcac09a25efc8d7ee81f781a8c

See more details on using hashes here.

Supported by

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