Загрузка...

Talkbot for tg in 7 lines? Easy [site not work]

Thread in Python created by Ритик Mar 23, 2020. 486 views

  1. 893
    Ритик
    PHP
    import requests, telebot
    bot = telebot.TeleBot("токен")
    @bot.message_handler(content_types=['text'])
    def messages(message):
    response = requests.get("https://isinkin-bot-api.herokuapp.com/1/talk?q="+message.text.replace(" ","%20")).text[9:-2]
    bot.send_message(message.from_user.id,response)
    bot.polling(none_stop=True)
    Яп - питон
    Копируете, вставляете во второй строке токен бота, и пишите ему в лс что-нибудь. Он вам ответит:Rotvgovne:

    Из модулей:
    pip install requests
    pip install PyTelegramBotApi

    Скриншот - http://prntscr.com/rld333
     
  2. archi05
    archi05 Apr 5, 2020 161 Jul 1, 2018
    бот матершинник
     
Top
Loading...