import telebot
import config
bot = telebot.TeleBot(config.token)
@bot.message_handler(commands=['start'])
def welcome(message):
sti = open('static/ky.jpg', 'rb')
bot.send_sticker(message.chat.id, sti)
bot.send_message(message.chat.id, "Ку бро, {0.first_name}!\nЯ - <b> твой крол! ".format(message.from_user, bot.get_me()),
parse_mode='html')