money.py

money.py is a library to handle money.


Keywords
money, money-library, python, python3
License
MIT
Install
pip install money.py==1.0.2

Documentation

money.py

PyPI version Build Status codecov

money.py is a library to handle money

Python 3.6+ only.

https://en.wikipedia.org/wiki/ISO_4217

Documentation

Will make it ASAP.

Installation

  • pip3 install money.py

Testing

  • pip install pytest pytest-cov pytest-xdist

  • pytest --cov=moneypy

Example

from moneypy import Money, EUR_CURRENCY

a = Money(EUR_CURRENCY)
b = Money(EUR_CURRENCY)

a.add(2, 30) # 2.30
b.add(4, 4) # 4.4

a += b
print(a) # 6.7