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
------------
::
')
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::
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.
============
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
------------
::
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::
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.