Tell me, please, how can I call the / start command on a button? Those. the user enters the channel, sees the '/' or ('?') button, presses it, the '/ start Help' button appears, and when you click on it, the message is sent to the '/ start' bot (/ help). This is done for the @BreeZe bot.
import config import telebot from telebot import types bot = telebot.TeleBot(config.token) @bot.message_handler(commands=['start', 'help']) def handle_start_help(message): start = types.ReplyKeyboardRemove('/start') bot.send_message(message.chat.id, 'Welcome', reply_markup=start) Even so, with the button
mark = types.ReplyKeyboardRemove('/') When you click on the input line, '/' appears, can you make hints here with available commands? / start, / stop?
And another question, what event should handle the "Exit" button?
