MoinRomanticbot / telegram_bot.py
syedmoinms's picture
Update telegram_bot.py
8eef107 verified
raw
history blame contribute delete
371 Bytes
import telebot
from app import chatbot
TOKEN = "7881901341:AAEaE5gndeORmCuyzSwOyf2ELFLXHneCpiw"
bot = telebot.TeleBot(TOKEN)
@bot.message_handler(func=lambda message: True)
def handle_message(message):
user_input = message.text
bot_reply = chatbot(user_input)
bot.send_message(message.chat.id, bot_reply)
print("πŸ€– Telegram bot running...")
bot.polling()