Skip to main content

Price and currency parsing utility

Project description

Money Parser
============


Description
-----------

Money Parser is a price and currency parsing utility.
It provides methods to extract price and currency information from the raw string.
There is a lot of different price and currency formats that present values with separators, spacing etc.
This library may help you to parse such data.


Limitation
----------

- currency with 3 numbers after decimal point (e.g. KWD, see `ISO 4217`_)


Introduction
------------

Extracting price from raw ``str``::

>>> from money_parser import price_str
>>> price_str('₹1,50,087.99 \n')
'150087.99'
>>> price_dec('+12.007')
Decimal('12007')

Installation
------------

::

pipinstallmoneyparserThelibraryrequiresPython>=3.4Documentation..py:function::pricestr(rawprice,[default=<notdefined>],[decpoint=.])Searchandcleanpricevalue.Convertrawpricestringpresentedinanylocalizationasavalidnumberstringwithanoptionaldecimalpoint.Ifrawpricedoesnotcontainvalidpricevalueorcontainsmorethanonepricevalue,thenreturndefaultvalue.Ifdefaultvaluenotset,thenraiseValueError.:paramstrrawprice:stringthatcontainspricevalue.:paramdefault:valuethatwillbereturnedifrawpricenotvalid.:paramdecpoint:symbolthatseparateintegerandfractionalparts.:return:cleanedpricestringordefaultvalue.:raiseValueError:errorifrawpricenotvalidanddefaultvaluenotset.::>>>pricestr(+12.007)12007>>>pricestr(520,05)520.05>>>pricestr(1,000,777.5)1000777.5>>>pricestr(1.777.000,99)1777000.99>>>pricestr(99,77,11,000.1)997711000.1>>>pricestr(USD5,242\t\n)5242>>>pricestr(90210.42,decpoint=|)90210|42>>>pricestr(None,default=0)0>>>pricestr(42.333,default=None)isNoneTrue>>>pricestr(None)Traceback(mostrecentcalllast):...ValueError:Wrongrawpricetype"<classNoneType>"(expectedtype"str")>>>pricestr()Traceback(mostrecentcalllast):...ValueError:Rawpricevalue""doesnotcontainvalidpricedigits>>>pricestr(1..2)Traceback(mostrecentcalllast):...ValueError:Rawpricevalue"1..2"containsmorethanonepricevalue..py:function::pricedec(rawprice,[default=<notdefined>])Pricedecimalvaluefromrawstring.ExtractpricevaluefrominputrawstringandpresentasDecimalnumber.Usesapricestrfunctionforpriceparsing.Ifrawpricedoesnotcontainvalidpricevalueorcontainsmorethanonepricevalue,thenreturndefaultvalue.Ifdefaultvaluenotset,thenraiseValueError.:paramstrrawprice:stringthatcontainspricevalue.:paramdefault:valuethatwillbereturnedifrawpricenotvalid.:return:Decimalpricevalue.:raiseValueError:errorifrawpricenotvalidanddefaultvaluenotset.::>>>pricedec(+12.007)Decimal(12007)>>>pricedec(:10.99')
Decimal('-10.99')
>>> price_dec('', default=Decimal('0'))
Decimal('0')
>>> price_dec('1..10', default=0)
0
>>> price_dec('410.5 - 555', default=None) is None
True
>>> price_dec(42.3)
Traceback (most recent call last):
...
ValueError: Wrong raw price type "<class 'float'>" (expected type "str")
>>> price_dec('free')
Traceback (most recent call last):
...
ValueError: Raw price value "free" does not contain valid price digits
>>> price_dec('2+2')
Traceback (most recent call last):
...
ValueError: Raw price value "2+2" contains more than one price value


Run Tests
------

Project has tests::

maketestAlsoavailabletestswithcoverage:: make cov


Source code
-----------

The project is hosted on GitHub_


Authors and License
-------------------

The ``money-parser`` package is written by Serhii Kostel.

It's *Apache 2* licensed and freely available.


.. _`ISO 4217`: https://en.wikipedia.org/wiki/ISO_4217
.. _GitHub: https://github.com/kserhii/money-parser

CHANGES
=======

0.0.1 (2017-12-17)
------------------

* The first release.

Supported by

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