diff --git a/main.py b/main.py index aeed7fe..0032419 100644 --- a/main.py +++ b/main.py @@ -11,6 +11,7 @@ import re from word2number import w2n from function.convert import Converter +from function.format_number import format_number config = yaml.safe_load(open("config.yaml")) dp = Dispatcher() @@ -69,7 +70,7 @@ async def message_conv(message: types.Message): conv.conv_currency = target_currency_code.upper() conv.convert() - result = f'{conv.amount} {conv.from_currency} = {conv.conv_amount} {conv.conv_currency}' + result = f'{format_number(conv.amount)} {conv.from_currency} = {conv.conv_amount} {conv.conv_currency}' await message.reply(result) @@ -117,7 +118,7 @@ async def currency(inline_query: types.InlineQuery) -> None: conv.convert() result = ( - f'{conv.amount} {conv.from_currency} = ' + f'{format_number(conv.amount)} {conv.from_currency} = ' f'{conv.conv_amount} {conv.conv_currency}' ) diff --git a/requirements.txt b/requirements.txt index a713e12..664b8ff 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ aiohttp~=3.9.5 requests~=2.32.3 PyYAML~=6.0.1 -aiogram~=3.7.0 \ No newline at end of file +aiogram~=3.7.0 +word2number~=1.1 \ No newline at end of file