Skip to content

Instantly share code, notes, and snippets.

View oktober13's full-sized avatar
👨‍💻
Work

Robert Khaliullin oktober13

👨‍💻
Work
View GitHub Profile
@oktober13
oktober13 / withKeyboardsBot.py
Last active July 18, 2023 09:21
A template for creating interactive keyboards for your bot.
import logging
from aiogram import Bot, Dispatcher, types
API_TOKEN = 'your_token'
logging.basicConfig(level=logging.INFO)
bot = Bot(token=API_TOKEN)
dp = Dispatcher(bot)
@oktober13
oktober13 / messageSendingBot.py
Last active July 18, 2023 09:21
A template for sending various types of messages, such as text, photos, and documents.
import logging
from aiogram import Bot, Dispatcher, types
API_TOKEN = 'your_token'
logging.basicConfig(level=logging.INFO)
bot = Bot(token=API_TOKEN)
dp = Dispatcher(bot)
@oktober13
oktober13 / welcomeBot.py
Created July 18, 2023 09:19
A simple template for creating a Telegram bot that greets new users and responds to basic commands.
import logging
from aiogram import Bot, Dispatcher, types
API_TOKEN = 'your_token'
logging.basicConfig(level=logging.INFO)
bot = Bot(token=API_TOKEN)
dp = Dispatcher(bot)