import telebot
import config
from telebot import types
import Data
bot = telebot.TeleBot(config.token)
@bot.message_handler(commands=["start"])
def start(message):
text = "Приветик ٩(◕‿◕)۶"
img = open('E:/Bot/Data/Pic', 'rb')
bot.send_message(message.chat.id, img + text)
if __name__ == '__main__':
bot.polling(none_stop=True)