From c23145ce2a58c5f789e779c0f93cdda385c4dc2e Mon Sep 17 00:00:00 2001 From: Alexis Metaireau Date: Wed, 7 Apr 2021 15:29:33 +0200 Subject: [PATCH] Change the URL of the exchange API. Fixes #735 (#736) --- ihatemoney/currency_convertor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ihatemoney/currency_convertor.py b/ihatemoney/currency_convertor.py index 10026eea..881d5428 100644 --- a/ihatemoney/currency_convertor.py +++ b/ihatemoney/currency_convertor.py @@ -14,7 +14,7 @@ class Singleton(type): class CurrencyConverter(object, metaclass=Singleton): # Get exchange rates no_currency = "XXX" - api_url = "https://api.exchangeratesapi.io/latest?base=USD" + api_url = "https://api.exchangerate.host/latest?base=USD" def __init__(self): pass