diff --git a/functions/create_chart.py b/functions/create_chart.py index d6f5665..1308ab2 100644 --- a/functions/create_chart.py +++ b/functions/create_chart.py @@ -5,10 +5,16 @@ import aiohttp config = yaml.safe_load(open('../config.yaml', 'r', encoding='utf-8')) -async def create_chart(from_currency: str, conv_currency: str) -> (dict, None): - async with aiohttp.ClientSession(timeout=aiohttp.ClientTimeout(total=3)) as session: +async def create_chart( + from_currency: str, + conv_currency: str, + period: str) -> (dict, None): + async with aiohttp.ClientSession( + timeout=aiohttp.ClientTimeout(total=3) + ) as session: async with session.get( - f'{config["kekkai_instance"]}/api/getChart/month/', params={ + f'{config["kekkai_instance"]}/api/getChart/{period}/', + params={ 'from_currency': from_currency, 'conv_currency': conv_currency }) as res: