How can I expect user response after a command is executed? I'm using Python 3.6 and the telegram-bot-python lib.
Example:
usuario - /apel
bot - Qual o seu apelido?
usuario - dfop
bot - Uau, seu apelido é dfop
I've made it here:
def apel(bot, update):
update.message.reply_text('Qual o seu apelido?')
resposta = ??
bot.send_message(chat_id = update.message.chat_id, text = "Uau, seu apelido é %s", resposta)
updater = Updater(token)
dispatcher = self.updater.dispatcher
dispatcher.add_handler(CommandHandler('/apel', apel))
updater.start_polling()
updater.idle()