Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.27 KB | None | 0 0
  1. import telebot
  2.  
  3. bot = telebot.TeleBot('908214650:AAEPgELBpeDoEEgYV4Yft68E9VcgaPob19M')
  4.  
  5.  
  6. @bot.message_handler(commands=['start'])
  7. def start_message(message):
  8.     bot.send_message(message.chat.id, 'Привет, ты написал мне /start')
  9.  
  10.  
  11.  
  12. bot.polling()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement