import telebot
bot = telebot.TeleBot('token')
@bot.message_handler(commands=['start'])
def start_message(message):
bot.send_message(message.chat.id, 'Привеt, если хочешь узать погоду на завтра напиши /wither')
@bot.message_handler(commands=['hello'])
def wither_message(message):
bot.send_sticker("CAACAgIAAxkBAAIHVl9MFEpPPYU7ZF5_rq2mgbWLd9LOAAIHBQACXHcJSfnSGFye1QOHGwQ")
bot.polling()