Open mouday opened 4 years ago
eg:
from price_parser import Price # ok price = Price.fromstring("¥36,000") print(price) # Price(amount=Decimal('36000'), currency='¥') # not ok price = Price.fromstring("36元人民币") print(price) # Price(amount=Decimal('36'), currency=None)
The same problem with 'US$ ۱٬۰۱۲٬۲۳۴٫۵۶
'US$ ۱٬۰۱۲٬۲۳۴٫۵۶
eg: