Advertisement
Guest User

Untitled

a guest
Sep 27th, 2017
99
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. import constants
  3.  
  4. bot = telebot.TeleBot(constants.token)
  5.  
  6. @bot.message_handler(content_types=['text'])
  7. def handle_text(message):
  8.     if message.text == "ะขะตัั‚":
  9.         bot.send_message(message.chat.id, "Success")
  10.  
  11. bot.polling(none_stop=1, interval=0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement