mirror of
https://github.com/Redume/Shirino.git
synced 2025-04-03 19:17:36 +03:00
Compare commits
3 commits
ad8dc2da35
...
c9eb773f10
Author | SHA1 | Date | |
---|---|---|---|
c9eb773f10 | |||
0eafaba090 | |||
caac4f9a1f |
3 changed files with 31 additions and 20 deletions
|
@ -1,14 +1,12 @@
|
||||||
from utils.format_number import format_number
|
|
||||||
|
|
||||||
import yaml
|
|
||||||
|
|
||||||
import aiohttp
|
|
||||||
import json
|
import json
|
||||||
import re
|
import re
|
||||||
|
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
|
from decimal import Decimal
|
||||||
from http import HTTPStatus
|
from http import HTTPStatus
|
||||||
from decimal import Decimal, ROUND_DOWN
|
|
||||||
|
import aiohttp
|
||||||
|
import yaml
|
||||||
|
|
||||||
from utils.format_number import format_number
|
from utils.format_number import format_number
|
||||||
|
|
||||||
config = yaml.safe_load(open('config.yaml'))
|
config = yaml.safe_load(open('config.yaml'))
|
||||||
|
@ -24,8 +22,7 @@ class Converter:
|
||||||
if not await self.kekkai():
|
if not await self.kekkai():
|
||||||
await self.ddg()
|
await self.ddg()
|
||||||
|
|
||||||
number = Decimal(str(self.conv_amount))
|
self.conv_amount = format_number(Decimal(self.conv_amount))
|
||||||
self.conv_amount = format_number(number.quantize(Decimal('1.0000'), rounding=ROUND_DOWN))
|
|
||||||
|
|
||||||
|
|
||||||
async def kekkai(self) -> bool:
|
async def kekkai(self) -> bool:
|
||||||
|
|
30
main.py
30
main.py
|
@ -11,6 +11,7 @@ from aiogram import Bot, Dispatcher, Router, types
|
||||||
from aiogram.client.default import DefaultBotProperties
|
from aiogram.client.default import DefaultBotProperties
|
||||||
from aiogram.enums import ParseMode
|
from aiogram.enums import ParseMode
|
||||||
from aiogram.webhook.aiohttp_server import SimpleRequestHandler, setup_application
|
from aiogram.webhook.aiohttp_server import SimpleRequestHandler, setup_application
|
||||||
|
from aiogram.filters import CommandStart
|
||||||
|
|
||||||
import hashlib
|
import hashlib
|
||||||
|
|
||||||
|
@ -19,6 +20,19 @@ bot = Bot(token=config['telegram_token'], default=DefaultBotProperties(parse_mod
|
||||||
|
|
||||||
router = Router()
|
router = Router()
|
||||||
|
|
||||||
|
@router.message(CommandStart())
|
||||||
|
async def start(message: types.Message):
|
||||||
|
get_bot = await bot.get_me()
|
||||||
|
await message.reply(
|
||||||
|
'Shirino is a telegram bot for converting fiat or cryptocurrency. '
|
||||||
|
'The example of use occurs via inline query:\n'
|
||||||
|
f'`@{get_bot.username} USD RUB` \n'
|
||||||
|
f'`@{get_bot.username} 12 USD RUB` \n\n'
|
||||||
|
'[Source Code](https://github.com/Redume/Shirino)',
|
||||||
|
parse_mode='markdown'
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
@router.inline_query()
|
@router.inline_query()
|
||||||
async def currency(query: types.InlineQuery) -> None:
|
async def currency(query: types.InlineQuery) -> None:
|
||||||
text = query.query.lower()
|
text = query.query.lower()
|
||||||
|
@ -28,8 +42,8 @@ async def currency(query: types.InlineQuery) -> None:
|
||||||
get_bot = await bot.get_me()
|
get_bot = await bot.get_me()
|
||||||
|
|
||||||
if len(args) < 2:
|
if len(args) < 2:
|
||||||
return await reply(result_id,
|
return await reply(result_id,
|
||||||
[("2 or 3 arguments are required.",
|
[("2 or 3 arguments are required.",
|
||||||
f'@{get_bot.username} USD RUB \n'
|
f'@{get_bot.username} USD RUB \n'
|
||||||
f'@{get_bot.username} 12 USD RUB',
|
f'@{get_bot.username} 12 USD RUB',
|
||||||
None, None)],
|
None, None)],
|
||||||
|
@ -50,7 +64,7 @@ async def currency(query: types.InlineQuery) -> None:
|
||||||
f'@{get_bot.username} USD RUB \n'
|
f'@{get_bot.username} USD RUB \n'
|
||||||
f'@{get_bot.username} 12 USD RUB',
|
f'@{get_bot.username} 12 USD RUB',
|
||||||
None, None)], query)
|
None, None)], query)
|
||||||
|
|
||||||
from_currency = args[1]
|
from_currency = args[1]
|
||||||
conv_currency = args[2]
|
conv_currency = args[2]
|
||||||
elif len(args) == 2:
|
elif len(args) == 2:
|
||||||
|
@ -74,12 +88,12 @@ async def currency(query: types.InlineQuery) -> None:
|
||||||
chart = await create_chart(from_currency, conv_currency)
|
chart = await create_chart(from_currency, conv_currency)
|
||||||
|
|
||||||
message = f'{format_number(conv.amount)} {conv.from_currency} = {conv.conv_amount} {conv.conv_currency}'
|
message = f'{format_number(conv.amount)} {conv.from_currency} = {conv.conv_amount} {conv.conv_currency}'
|
||||||
|
|
||||||
results = [(message, None, None)]
|
results = [(message, None, None)]
|
||||||
|
|
||||||
if chart:
|
if chart:
|
||||||
results.insert(0, (f'{message}\n[График]({chart})', None, chart))
|
results.insert(0, (f'{message}\n[График]({chart})', None, chart))
|
||||||
|
|
||||||
await reply(result_id, results, query)
|
await reply(result_id, results, query)
|
||||||
|
|
||||||
|
|
||||||
|
@ -87,7 +101,7 @@ async def on_startup(bot: Bot) -> None:
|
||||||
await bot.set_webhook(
|
await bot.set_webhook(
|
||||||
f"{config['webhook']['base_url']}{config['webhook']['path']}",
|
f"{config['webhook']['base_url']}{config['webhook']['path']}",
|
||||||
secret_token=config['webhook']['secret_token'],
|
secret_token=config['webhook']['secret_token'],
|
||||||
allowed_updates=['inline_query']
|
allowed_updates=['inline_query', 'message']
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@ -96,7 +110,7 @@ def main() -> None:
|
||||||
|
|
||||||
dp.include_router(router)
|
dp.include_router(router)
|
||||||
dp.startup.register(on_startup)
|
dp.startup.register(on_startup)
|
||||||
|
|
||||||
app = web.Application()
|
app = web.Application()
|
||||||
webhook_requests_handler = SimpleRequestHandler(
|
webhook_requests_handler = SimpleRequestHandler(
|
||||||
dispatcher=dp,
|
dispatcher=dp,
|
||||||
|
|
|
@ -2,11 +2,11 @@ from decimal import Decimal
|
||||||
|
|
||||||
def format_number(number):
|
def format_number(number):
|
||||||
number = Decimal(str(number))
|
number = Decimal(str(number))
|
||||||
|
|
||||||
formatted_integer_part = '{:,.0f}'.format(number).replace(',', ' ')
|
formatted_integer_part = '{:,.0f}'.format(number).replace(',', ' ')
|
||||||
|
|
||||||
if '.' in str(number):
|
if '.' in str(number):
|
||||||
fractional_part = str(number).split('.')[1]
|
fractional_part = str(number).split('.')[1][:3]
|
||||||
return formatted_integer_part + '.' + fractional_part
|
return formatted_integer_part + '.' + fractional_part
|
||||||
else:
|
else:
|
||||||
return formatted_integer_part
|
return formatted_integer_part
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue