Skip to main content

A simple interface to work with money-related entities.

Project description

Build Status codecov.io

A simple interface to work with money-related entities.

Installation

The current stable release:

pip install simple_money

or:

easy_install simple_money

or from source:

$ sudo python setup.py install

Usage

Arithmetic operations:

>>> Money(100, 'EUR') + Money(50, 'EUR')
150 EUR
>>> Money(100, 'EUR') - Money(50, 'EUR')
50 EUR
>>> Money(100, 'EUR') * 2
200 EUR

Also you can manipulate with money in different currencies:

>>> Money(100, 'EUR') + Money(50, 'USD')
100 EUR, 50 USD
>>> Money(100, 'EUR') - Money(50, 'USD')
100 EUR, -50 USD
>>> (Money(100, 'EUR') - Money(50, 'USD')) * 2
200 EUR, -100 USD

With multiply currencies you are able to get concrete currency value in the following way:

>>> value = Money(100, 'EUR') + Money(50, 'USD')
>>> value.EUR
100 EUR
>>> value.USD
50 USD

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

simple-money-0.1.2.tar.gz (4.3 kB view hashes)

Uploaded Source

Built Distribution

simple_money-0.1.2-py2.py3-none-any.whl (5.6 kB view hashes)

Uploaded Python 2 Python 3

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