Вот код:
Python:
import telebot
bot = telebot.TeleBot("мой токен")
@bot.message_handler(commands=['start'])
def welcome(message):
sti = open('c://static/sticker.webp', 'rb')
bot.send_sticker(message.chat.id, sti)
bot.send_message(message.shat.id, "Привет, {0.first_name}!\nЯ - <b>{first_name}<b/>, бот созданный чтобы Никита узнал как у тебя дела?".format(message.from_user, bot.get_me()),
parse_mode='html')
@bot.message_handler(content_types=['text'])
def send_echo(message):
bot.reply_to(message, message.text)
bot.polling( none_stop = True )
Последнее редактирование модератором: