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

27 lines
522 B
Python

#!/usr/bin/python
import logging
import os
import asyncio
from aiogram import Bot, Dispatcher
async def main():
"""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)
try:
await dp.start_polling()
finally:
await dp.storage.close()
await dp.storage.wait_closed()
await bot.session.close()
if __name__ == '__main__':
asyncio.run(main())