mirror of
https://github.com/Redume/Shirino.git
synced 2025-05-19 10:15:26 +01:00
10 lines
No EOL
312 B
Python
10 lines
No EOL
312 B
Python
from aiogram import Bot
|
|
from aiogram.client.default import DefaultBotProperties
|
|
from aiogram.enums import ParseMode
|
|
import yaml
|
|
|
|
config = yaml.safe_load(open('../config.yaml', 'r', encoding='utf-8'))
|
|
bot = Bot(
|
|
token=config['telegram_token'],
|
|
default=DefaultBotProperties(parse_mode=ParseMode.HTML)
|
|
) |