@bot.message_handler(commands=['help', 'start'])
def send_welcome(message):
bot.send_message(
message.chat.id, 'Hiiiiiiiiii')
bot.reply_to(message,('hey from bot'))
@app.route('/', methods=['GET', 'POST'])
def index():
if request.method == 'POST':
r = request.get_json()
chat_id = r['message']['chat']['id']
message = r['message']['text']
if 'hello' in message:
send_message(chat_id, text='ooohhh yyeeaaahh')
else:
send_message(chat_id, text='who are you?')