larzmoney
Exact, penny-perfect money for Python. Zero dependencies.
A Money is an integer count of minor units plus a currency, and it never
becomes a float. $10.99 is stored as the integer 1099, not the float
10.99 (which doesn't exist exactly in binary and is the root of every
"off by a cent" bug). All arithmetic is integer arithmetic; rounding only
happens where you multiply or divide, and there you choose the mode.
from larzmoney import Money
price = Money.of("19.99", "USD")
tax = price.percent("8.25") # Money('1.65', 'USD')
total = price + tax # Money('21.64', 'USD')
# split three ways with not one cent lost
total.split(3) # [Money('7.22','USD'), Money('7.21','USD'), Money('7.21','USD')]
# ...which sums back to exactly 21.64
- Zero dependencies. Pure standard library (
decimal,int). Nothing to audit but this repo. - Floats are rejected, loudly.
Money.of(10.99, "USD")raises. Pass a string. - Penny-perfect allocation.
split()/allocate()always sum back to the original. - Real currencies. ISO 4217 exponents baked in — 2 for dollars, 0 for yen, 3 for dinars, 8 for BTC. Register your own (loyalty points, in-game gold).
- Explicit rounding. HALF_UP, banker's HALF_EVEN, UP, DOWN, CEILING, FLOOR.
- Serializes cleanly.
to_dict()/from_dict()round-trip through JSON with the exact integer preserved.
Install
pip install larzmoney
Why not just use floats (or Decimal)?
>>> 0.1 + 0.2
0.30000000000000004 # floats: money silently drifts
>>> from decimal import Decimal
>>> Decimal("0.10") + Decimal("0.20")
Decimal('0.30') # better — but nothing stops you splitting $10 three
# ways and losing a cent, or adding USD to EUR
Decimal fixes the representation but not the domain: it won't stop you mixing
currencies, it won't round to the right number of places for the currency, and
it won't split a bill without leaking fractions. larzmoney is Decimal done
up as actual money.
The allocation guarantee
The reason this library exists. Splitting money is not division — you can't hand
someone a third of a cent. allocate distributes the remainder fairly so the
parts always sum back to the original:
>>> from larzmoney import Money, sum_money
>>> parts = Money.of("10.00", "USD").split(3)
>>> parts
[Money('3.34', 'USD'), Money('3.33', 'USD'), Money('3.33', 'USD')]
>>> sum_money(parts) == Money.of("10.00", "USD")
True
>>> Money.of("0.05", "USD").allocate([3, 7]) # weighted split
[Money('0.02', 'USD'), Money('0.03', 'USD')]
Use it for invoice line splits, marketplace fee/seller payouts, tax apportionment, group bills — anywhere the parts must reconcile to the whole.
Rounding modes
from larzmoney import Money, HALF_EVEN
Money.of("1.005", "USD") # 1.01 (HALF_UP, the default)
Money.of("1.005", "USD", rounding=HALF_EVEN) # 1.00 (banker's rounding)
Money.of("10.00", "USD").multiply("0.0825") # 0.83 sales tax, rounded
Modes: HALF_UP, HALF_EVEN, HALF_DOWN, UP, DOWN, CEILING, FLOOR
(pass the constant or its name, e.g. rounding="HALF_EVEN").
Currency conversion
larzmoney doesn't fetch rates (that would break zero-dependency and bake in an opinion). You supply the rates you trust; it does the exact arithmetic:
from larzmoney import Money, ExchangeRates
fx = ExchangeRates("USD").add("EUR", "0.92").add("GBP", "0.79")
fx.convert(Money.of("100", "USD"), "EUR") # Money('92.00', 'EUR')
fx.convert(Money.of("100", "EUR"), "GBP") # cross-rated through USD
Custom currencies
from larzmoney import Money, Currency, register
register(Currency("GOLD", exponent=0, symbol="🪙", name="Game Gold"))
Money.of("500", "GOLD").format() # '🪙500'
API at a glance
Money.of(amount, ccy, rounding=HALF_UP) |
build from a human amount ("10.99") |
Money(minor_units, ccy) / Money.from_minor(...) |
build from cents |
Money.zero(ccy) |
zero in a currency |
.minor_units / .amount |
exact int / exact Decimal |
+ - * /, .multiply(), .divide(), .percent() |
arithmetic (scalars, not floats) |
.split(n) / .allocate(ratios) |
penny-perfect splitting |
< <= > >= ==, .sign(), .is_zero/positive/negative() |
comparison |
.format(symbol=, grouping=, code=) |
display string |
.to_dict() / Money.from_dict() |
JSON-safe round-trip |
sum_money(iterable, currency=None) |
safe sum |
ExchangeRates(base).add(ccy, rate).convert(m, to) |
conversion |
Tests
python -m unittest discover -s tests -v # 68 tests, zero dependencies
The Larz stack
Part of a family of pure-Python, zero-dependency building blocks:
License
MIT © larz-scripter
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file larzmoney-0.1.0.tar.gz.
File metadata
- Download URL: larzmoney-0.1.0.tar.gz
- Upload date:
- Size: 16.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb5b3146ee7becfda67f126a7babf1d8dc5144ce558adbe1ccb0d426a5d53002
|
|
| MD5 |
23c9178d32b70ef186ca6ac14b8b9e5d
|
|
| BLAKE2b-256 |
ca2250a40295539780e66d0807237e025e9d211a63add473ab8bc9e5fddadecf
|
File details
Details for the file larzmoney-0.1.0-py3-none-any.whl.
File metadata
- Download URL: larzmoney-0.1.0-py3-none-any.whl
- Upload date:
- Size: 14.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
290c4face19a1b92ff4748d86952eea8c78d55df746ddec5300463e97d35fa2f
|
|
| MD5 |
8c5eb4b9d0e264539065a49ebbce52c2
|
|
| BLAKE2b-256 |
c76339d8e1e4fad647f4d7214e70943034afa8dae8fca838ce0798257380da2f
|