Skip to content

Instantly share code, notes, and snippets.

View thematver's full-sized avatar
:octocat:
So gitly!

Менетиос thematver

:octocat:
So gitly!
View GitHub Profile
from aiogram import Bot, Dispatcher, executor
import logging
from aiogram.contrib.fsm_storage.memory import MemoryStorage
logging.basicConfig(level=logging.INFO)
token = 'BOT_TOKEN_HERE'
bot = Bot(token)
dp = Dispatcher(bot, storage=MemoryStorage())