olgram/main.py

57 lines
1.3 KiB
Python
Raw Normal View History

2021-07-11 12:53:33 +03:00
import asyncio
from tortoise import Tortoise
2021-09-06 00:36:03 +03:00
from olgram.router import dp
from olgram.settings import TORTOISE_ORM
2021-09-10 22:38:29 +03:00
from server.custom import init_redis
2021-07-11 12:53:33 +03:00
2021-09-09 10:58:33 +03:00
import olgram.commands.bots # noqa: F401
import olgram.commands.start # noqa: F401
import olgram.commands.menu # noqa: F401
import olgram.commands.bot_actions # noqa: F401
2021-07-11 12:53:33 +03:00
2021-09-09 23:35:13 +03:00
from server.server import main as server_main
2021-09-10 01:14:53 +03:00
import logging
logging.basicConfig(level=logging.INFO)
2021-07-11 12:53:33 +03:00
async def init_database():
await Tortoise.init(config=TORTOISE_ORM)
2021-09-10 23:20:06 +03:00
async def init_olgram():
from olgram.router import bot
from aiogram.types import BotCommand
await bot.set_my_commands(
[
BotCommand("start", "Запустить бота"),
2021-09-10 23:21:23 +03:00
BotCommand("addbot", "Добавить бот"),
BotCommand("mybots", "Управление ботами"),
2021-09-10 23:20:06 +03:00
BotCommand("help", "Справка")
]
)
async def initialization():
await init_database()
await init_redis()
await init_olgram()
2021-07-11 12:53:33 +03:00
def main():
"""
Classic polling
"""
loop = asyncio.get_event_loop()
2021-09-10 23:20:06 +03:00
loop.run_until_complete(initialization())
2021-07-11 12:53:33 +03:00
2021-09-10 00:41:50 +03:00
loop.create_task(dp.start_polling())
2021-09-26 20:37:51 +03:00
loop.create_task(server_main().start())
2021-07-11 12:53:33 +03:00
loop.run_forever()
if __name__ == '__main__':
main()