From a7fe9f08d710af8c48a24158ad30c5b5f36550d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Wed, 7 Apr 2021 15:24:09 +0200 Subject: [PATCH] Change the URL of the exchange API. Fixes #735 --- 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