-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot.py.test
28 lines (20 loc) · 823 Bytes
/
bot.py.test
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# This is a simple echo bot using the decorator mechanism.
# It echoes any incoming text messages.
import telebot
API_TOKEN = '246437680:AAGdvmfrO8kWmxCEOhFIi22khRgFxWkxF9I'
bot = telebot.TeleBot(API_TOKEN)
# Handle '/start' and '/help'
@bot.message_handler(commands=['help', 'start'])
def send_welcome(message):
bot.reply_to(message, """\
Hi there, I am EchoBot.
I am here to echo your kind words back to you. Just say anything nice and I'll say the exact same thing to you!\
""")
# Handle all other messages with content_type 'text' (content_types defaults to ['text'])
@bot.message_handler(func=lambda message: True)
def echo_message(message):
cid = message.chat.id
if message.text=="Oferta del día":
bot.send_message(cid, "YEH M8")
bot.send_message(cid, message.text)
bot.polling()