We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some expectations:
>>> parse_price('$ 4 millones') Price(amount=Decimal('4000000'), currency='$') >>> parse_price('$ 400 mil') Price(amount=Decimal('400000'), currency='$') >>> parse_price('1.45 milliards INR') Price(amount=Decimal('1450000000'), currency='INR') >>> parse_price('115 millions de dollars (estimation)') Price(amount=Decimal('115000000'), currency='dollars') >>> parse_price('Drei 000 000 $') Price(amount=Decimal('3000000'), currency='$')
The text was updated successfully, but these errors were encountered:
PRODUCTION_BUDGET.csv.txt
Sorry, something went wrong.
Update: Handle million/billion in the price
0df7944
Another example seen in the wild: "$54K" (expect 54000)
No branches or pull requests
Some expectations:
The text was updated successfully, but these errors were encountered: