This repository has been archived on 2022-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
it-volunteers-for-peace/bot.py

31 lines
644 B
Python
Raw Normal View History

2022-09-16 05:48:10 +00:00
#!/usr/bin/python
2022-10-15 14:52:45 +00:00
import logging
import os
2022-09-16 05:48:10 +00:00
import asyncio
2022-10-15 15:51:27 +00:00
2022-10-15 14:52:45 +00:00
from aiogram import Bot, Dispatcher
2022-10-15 15:51:27 +00:00
from handlers.commands import register_command_handlers
2022-09-16 05:48:10 +00:00
async def main():
2022-10-15 14:52:45 +00:00
"""Configures and runs the bot, connects to the db"""
logging.basicConfig(level=logging.INFO)
API_TOKEN = os.getenv("API_TOKEN")
bot = Bot(API_TOKEN)
dp = Dispatcher(bot)
2022-10-15 15:51:27 +00:00
# Register handlers
register_command_handlers(dp)
2022-10-15 14:52:45 +00:00
try:
await dp.start_polling()
finally:
await dp.storage.close()
bot_session = await bot.get_session()
await bot_session.close()
2022-09-16 05:48:10 +00:00
if __name__ == '__main__':
asyncio.run(main())