mirror of
https://github.com/Redume/Shirino.git
synced 2025-04-03 19:17:36 +03:00
Compare commits
No commits in common. "d47a1afb84c9b3cd2f976aa3cedeaf1ea34b440e" and "c0680d38d54e268862866cc794e83face22d3fb1" have entirely different histories.
d47a1afb84
...
c0680d38d5
5 changed files with 17 additions and 19 deletions
|
@ -1,8 +1,8 @@
|
|||
services:
|
||||
shirino:
|
||||
build:
|
||||
context: ./
|
||||
dockerfile: Dockerfile
|
||||
build: .
|
||||
image: ghcr.io/shirino/shirino:latest
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- './config.yaml:/config.yaml'
|
||||
|
||||
|
|
|
@ -1,15 +1,16 @@
|
|||
import json
|
||||
import re
|
||||
from datetime import datetime, timedelta
|
||||
from datetime import datetime
|
||||
from decimal import Decimal
|
||||
from http import HTTPStatus
|
||||
|
||||
import pytz
|
||||
import aiohttp
|
||||
import yaml
|
||||
|
||||
from utils.format_number import format_number
|
||||
|
||||
config = yaml.safe_load(open('../config.yaml', 'r', encoding='utf-8'))
|
||||
config = yaml.safe_load(open('config.yaml', 'r', encoding='utf-8'))
|
||||
|
||||
class Converter:
|
||||
def __init__(self):
|
||||
|
@ -24,28 +25,23 @@ class Converter:
|
|||
|
||||
self.conv_amount = format_number(Decimal(self.conv_amount))
|
||||
|
||||
async def get_lastdate(self) -> str:
|
||||
async def get_timezone(self) -> str:
|
||||
async with aiohttp.ClientSession(
|
||||
timeout=aiohttp.ClientTimeout(total=3)
|
||||
) as session:
|
||||
async with session.get(
|
||||
f"{config['kekkai_instance']}/api/metadata"
|
||||
f'{config['kekkai_instance']}/api/metadata'
|
||||
) as res:
|
||||
|
||||
if not HTTPStatus(res.status).is_success:
|
||||
return (
|
||||
datetime.now() - timedelta(1)
|
||||
).strftime('%Y-%m-%d')
|
||||
return 'UTC'
|
||||
|
||||
data = await res.json()
|
||||
|
||||
return data.get(
|
||||
'last_date',
|
||||
(datetime.now() - timedelta(1)).strftime('%Y-%m-%d')
|
||||
)
|
||||
return data.get('timezone', 'UTC')
|
||||
|
||||
async def kekkai(self) -> bool:
|
||||
date = await self.get_lastdate()
|
||||
timezone = pytz.timezone(await self.get_timezone())
|
||||
date = datetime.now(timezone).strftime('%Y-%m-%d')
|
||||
|
||||
async with aiohttp.ClientSession(timeout=aiohttp.ClientTimeout(total=3)) as session:
|
||||
async with session.get(f'{config['kekkai_instance']}/api/getRate/', params={
|
||||
|
@ -62,6 +58,7 @@ class Converter:
|
|||
|
||||
return True
|
||||
|
||||
|
||||
async def ddg(self) -> None:
|
||||
async with aiohttp.ClientSession(
|
||||
timeout=aiohttp.ClientTimeout(total=3)
|
||||
|
|
|
@ -3,7 +3,7 @@ from http import HTTPStatus
|
|||
import yaml
|
||||
import aiohttp
|
||||
|
||||
config = yaml.safe_load(open('../config.yaml', 'r', encoding='utf-8'))
|
||||
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:
|
||||
|
|
2
main.py
2
main.py
|
@ -14,7 +14,7 @@ from functions.create_chart import create_chart
|
|||
from utils.format_number import format_number
|
||||
from utils.inline_query import reply
|
||||
|
||||
config = yaml.safe_load(open('../config.yaml', 'r', encoding='utf-8'))
|
||||
config = yaml.safe_load(open('config.yaml', 'r', encoding='utf-8'))
|
||||
bot = Bot(
|
||||
token=config['telegram_token'],
|
||||
default=DefaultBotProperties(parse_mode=ParseMode.HTML)
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
aiohttp~=3.9.5
|
||||
PyYAML~=6.0.1
|
||||
aiogram~=3.15.0
|
||||
aiogram~=3.15.0
|
||||
pytz~=2025.2
|
Loading…
Add table
Add a link
Reference in a new issue