python-currencies
python-currencies copied to clipboard
Display money format and its filthy currencies, for all money lovers out there.
Hello, It'd be beneficial to include py.typed mark in the library since it's already typed. mypy complains about mark missing and ignores type checking for library when it's missing
Hi there! Out of curiosity, was there any decision behind not implementing the `__eq__` method inside the Currency class? In my - maybe naive - understanding, it would make sense...
### What is the purpose of your pull request? As per Issue: https://github.com/Alir3z4/python-currencies/issues/12 To add functionality to the main class whereby you can get the full currency name. ### Important...
It would be really great if the library would know the full name of the currency. For example: ```python3 >>> Currency('USD').get_name() "United States dollar" ``` or ```python3 >>> Currency('EUR').get_name() "Euro"...
Would be nice if you could just write the country and get the currency, like ``` >>> portugal = Country('PORTUGAL') >>> portugal.get_currency() >>> EUR >>> portugal.get_money_format(13) >>> '€13' >>> portugal.get_money_format(13.99)...