-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
42 lines (30 loc) · 1.1 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import asyncio
import logging
from aiogram import Bot
from aiogram import Dispatcher
from aiogram.fsm.storage.memory import MemoryStorage
from aiogram_dialog.setup import setup_dialogs
from loguru import logger
from bot.entrypoint import setup_handlers
from settings.config import settings
from apscheduler.schedulers.asyncio import AsyncIOScheduler
from workers.mailing import MailingWorker
logging.basicConfig(level=logging.INFO)
async def main():
# Initialize bot and dispatcher
storage = MemoryStorage()
logger.info(f'Bot token: {settings.BOT_TOKEN.get_secret_value()}')
bot = Bot(token=settings.BOT_TOKEN.get_secret_value())
dp = Dispatcher(storage=storage)
# Register all handlers
setup_handlers(dp)
setup_dialogs(dp)
await run_mailing_cron(bot=bot)
await dp.start_polling(bot)
async def run_mailing_cron(bot: Bot):
scheduler = AsyncIOScheduler()
scheduler.add_job(MailingWorker(bot=bot).send_mailings, "interval", seconds=10) # Check every minute
scheduler.start()
logger.info('Started mailing corn')
if __name__ == "__main__":
asyncio.run(main())