Advertisement
Guest User

Untitled

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