можно сделать?
вот кусок кода
import telebot
from auth_data import tg_bot_token
from telebot import types
from config import startmsg, pricemsg, checkmsg, contactsmsg
def telegram_bot(token):
bot = telebot.TeleBot(token)
@bot.message_handler(commands=["start"])
async def start_message(message):
markup = types.ReplyKeyboardMarkup(resize_keyboard=True)
btn1 = types.KeyboardButton("Скачать прайс")
btn2 = types.KeyboardButton("Контакты магазина")
btn3 = types.KeyboardButton("Менеджер Мария")
btn4 = types.KeyboardButton("Менеджер Лариса")
markup.add(btn1, btn2, btn3, btn4)
bot.send_message(message.chat.id, startmsg)
Телебот асинхронный?
нет вроде как
Обсуждают сегодня