forex-python
forex-python copied to clipboard
Foreign exchange rates, Bitcoin price index and currency conversion using ratesapi.io
`README` displays the code example `print c.get_symbol('GBP')`: it should be updated to Python 3 (`python(...)`). The same remark applies to doc in https://forex-python.readthedocs.io/en/latest/usage.html. ```python >>> c.get_symbol('GBP') u'\xa3' >>> print c.get_symbol('GBP')...
A bug has been introduced in 1.6 Experiencing an error when using `c.get_symbol("EUR")` ``` File "/usr/local/lib/python3.8/site-packages/forex_python/converter.py", line 137, in get_symbol currency_dict = self._get_data(currency_code) File "/usr/local/lib/python3.8/site-packages/forex_python/converter.py", line 125, in _get_data currency_data...
This modules suggests all currencies are covered but they are not... Will ALL currencies be included at some point?
It would be very nice/helpful if it was possible to retrieve information whether the currency symbol should be displayed on the left or right side of the value of the...
Hello Team, _inr=round(c.get_rate('GBP', 'INR',date),3)_ For the above function since last three days getting same conversion rate **December 27, 2019 :: 92.306 December 26, 2019 :: 92.306 December 25, 2019 ::...
The constructor for CurrencyRates should have an optional argument of a requests session to be used for all API calls. This may speed up code that have a large number...
https://www.alphavantage.co/documentation/#currency-exchange
forex_python\converter.py", line 62, in get_rates raise RatesNotAvailableError("Currency Rates Source Not Ready") forex_python.converter.RatesNotAvailableError: Currency Rates Source Not Ready
In the currency conversion,` rate` is usually returned from `_get_decoded_rate` as` float`. But sometimes it returns a` string` instead, and then it crashes on the highlighted line because it cant...
Hi all, is the API down again? It was working perfectly 30 mins ago