Couldn't find an answer online. Hope you can help.
Im running this simple code which I've got from Fixer.io (https://fixerio.readthedocs.io/en/latest/)
from fixerio import Fixerio
API_KEY = '3655f3.......'
fxrio = Fixerio(access_key=API_KEY)
print(fxrio.latest())
And it returns
builtins.TypeError: init() got an unexpected keyword argument 'access_key'
API Key is alright as it works when I do the same using requests
Python 3.9.4 Fixerio 2.10.0
Am I missing anything? Appreciate your help!