From 169166af3b8f63ab8c73310e3860a0acbbf6ce6f Mon Sep 17 00:00:00 2001 From: Redume Date: Thu, 9 Jan 2025 13:16:13 +0300 Subject: [PATCH 1/5] chore: delete requests in requirements.txt --- requirements.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index a713e12..8121224 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,3 @@ aiohttp~=3.9.5 -requests~=2.32.3 PyYAML~=6.0.1 aiogram~=3.7.0 \ No newline at end of file From 6a2291c6bfc96d9b95876897e53680bad77611fd Mon Sep 17 00:00:00 2001 From: Redume Date: Thu, 9 Jan 2025 13:26:33 +0300 Subject: [PATCH 2/5] chore: new example config --- config_sample.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/config_sample.yaml b/config_sample.yaml index 9e09ebb..637f17c 100644 --- a/config_sample.yaml +++ b/config_sample.yaml @@ -1,4 +1,6 @@ -debug: false # debug logging -timeout: 2 # http requests timeout -telegram_token: # telegram bot token -kekkai_instance: 'https://kekkai-api.redume.su/' \ No newline at end of file +webhook: + secret_token: 'j_!?TD]nK6!nu'EZ654b' + base_url: 'example.com' + path: '/webhook' +telegram_token: +kekkai_instance: 'https://kekkai-api.redume.su' \ No newline at end of file From 7ed98e5b88cdd4547de3a4b7e506ba0f73bee2c4 Mon Sep 17 00:00:00 2001 From: Redume Date: Thu, 9 Jan 2025 13:26:57 +0300 Subject: [PATCH 3/5] chore: the schedule period has been changed from a week to a month --- functions/create_chart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/create_chart.py b/functions/create_chart.py index 078effb..117dd4d 100644 --- a/functions/create_chart.py +++ b/functions/create_chart.py @@ -7,7 +7,7 @@ config = yaml.safe_load(open('config.yaml')) async def create_chart(from_currency: str, conv_currency: str) -> (dict, None): async with aiohttp.ClientSession(timeout=aiohttp.ClientTimeout(total=3)) as session: - async with session.get(f'{config["kekkai_instance"]}/api/getChart/week/', params={ + async with session.get(f'{config["kekkai_instance"]}/api/getChart/month/', params={ 'from_currency': from_currency, 'conv_currency': conv_currency }) as res: From 39ea50f0d77d93a723c42b08379ddd075861f835 Mon Sep 17 00:00:00 2001 From: Redume Date: Thu, 9 Jan 2025 13:37:08 +0300 Subject: [PATCH 4/5] chore: updated the aiogram version --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 8121224..21259b5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ aiohttp~=3.9.5 PyYAML~=6.0.1 -aiogram~=3.7.0 \ No newline at end of file +aiogram~=3.15.0 \ No newline at end of file From ad8dc2da35900d88459cd2e2e1b7d47d3a6afe9f Mon Sep 17 00:00:00 2001 From: Redume Date: Thu, 9 Jan 2025 15:44:04 +0300 Subject: [PATCH 5/5] chore: deleted special symbol --- config_sample.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config_sample.yaml b/config_sample.yaml index 637f17c..fd02a56 100644 --- a/config_sample.yaml +++ b/config_sample.yaml @@ -1,5 +1,5 @@ webhook: - secret_token: 'j_!?TD]nK6!nu'EZ654b' + secret_token: 'jTDnK6nuEZ654b' base_url: 'example.com' path: '/webhook' telegram_token: