All Projects → py-moneyed → Py Moneyed

py-moneyed / Py Moneyed

Licence: bsd-3-clause
Provides Currency and Money classes for use in your Python code.

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Py Moneyed

react-numeric
A react component for formatted number form fields
Stars: ✭ 30 (-89.76%)
Mutual labels:  money
FinanceKit
FinanceKit is a Framework for iOS and Mac to build apps working with financial data, like money, currencies, stocks, portfolio, transactions and other concepts.
Stars: ✭ 15 (-94.88%)
Mutual labels:  money
tvjs-overlays
💴 Collection of overlays made by the TradingVueJs community
Stars: ✭ 65 (-77.82%)
Mutual labels:  money
dimeshift-desktop
DimeShift desktop application
Stars: ✭ 14 (-95.22%)
Mutual labels:  money
Narvalo.NET
Applied functional patterns for C#. Money and Currency types. MVP framework. (Obsolete)
Stars: ✭ 16 (-94.54%)
Mutual labels:  money
currency-converter
💰 Easily convert between 32 currencies
Stars: ✭ 16 (-94.54%)
Mutual labels:  money
wire
FedWire funds service file parser and writer. The HTTP server is available in a Docker image and the Go package is available.
Stars: ✭ 52 (-82.25%)
Mutual labels:  money
Jsr354 Api
JSR 354 - Money and Currency API
Stars: ✭ 262 (-10.58%)
Mutual labels:  money
iou-slack-bot
💸 IOU Slack Bot - Keep track of your debts with your peers.
Stars: ✭ 13 (-95.56%)
Mutual labels:  money
swift-currency
Type-safety and algorithms for working with money in Swift.
Stars: ✭ 88 (-69.97%)
Mutual labels:  money
money
Crystal shard for dealing with money and currency conversion
Stars: ✭ 26 (-91.13%)
Mutual labels:  money
awesome-finance
Lista com referências sobre investimentos e finanças pessoais
Stars: ✭ 29 (-90.1%)
Mutual labels:  money
tz-mpesa-ussd-push
Vodacom Tanzania USSD Push API Client
Stars: ✭ 18 (-93.86%)
Mutual labels:  money
MoneyWellSpent
A script to summarize your money spent on Amazon
Stars: ✭ 16 (-94.54%)
Mutual labels:  money
react-local-currency
💵 💴Shows the price of your services in the customer's currency 💶 💷
Stars: ✭ 21 (-92.83%)
Mutual labels:  money
currency-conversion
Convert Money Amounts between currencies.
Stars: ✭ 19 (-93.52%)
Mutual labels:  money
flutter paystack
💳 A robust Flutter plugin for making payments via Paystack Payment Gateway. Completely supports Android and iOS
Stars: ✭ 146 (-50.17%)
Mutual labels:  money
Decimal
Arbitrary-precision fixed-point decimal numbers in go
Stars: ✭ 3,588 (+1124.57%)
Mutual labels:  money
Laravel Money
Currency formatting and conversion package for Laravel
Stars: ✭ 261 (-10.92%)
Mutual labels:  money
js-big-decimal
Work with large numbers on the client side with high precision.
Stars: ✭ 41 (-86.01%)
Mutual labels:  money

.. image:: https://github.com/py-moneyed/py-moneyed/workflows/build/badge.svg :target: https://github.com/py-moneyed/py-moneyed/actions?query=workflow%3Abuild :alt: Build Status

.. image:: https://badge.fury.io/py/py-moneyed.svg :target: https://pypi.org/project/py-moneyed/ :alt: Latest PyPI version

.. image:: https://readthedocs.org/projects/py-moneyed/badge/?version=latest :target: http://py-moneyed.readthedocs.io/en/latest/?badge=latest

Overview

The need to represent instances of money frequently arises in software development, particularly any financial/economics software. To address that need, the py-moneyed package provides the classes of Money and Currency, at a level more useful than just using Python's Decimal class, or ($DEITY forbid) the float primitive. The package is meant to be stand-alone and used directly, or be subclassed further. py-moneyed is BSD-licensed.

Quick start

To install::

pip install py-moneyed

Use:

.. sourcecode:: python

from moneyed import Money, USD

five_dollars = Money(5, USD)

You then use Money objects as if they were numbers, and they behave sensibly. See docs <https://py-moneyed.readthedocs.io/en/latest/>_ for more information (or the docs/ folder).

History

Some of the py-moneyed code was first derived from python-money available via this URL: http://code.google.com/p/python-money/ Due to inactivity, it was forked by @limist in 2010 and later moved to the py-moneyed organization.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].