4

我目前正在使用 python api 开发 Telegram Bot。我在这里使用这个例子https://github.com/python-telegram-bot/python-telegram-bot/blob/master/examples/conversationbot.py。在那个例子中,我希望机器人有一个定时响应。

例如,如果用户在 30 秒内未响应,则发送“你还在吗”消息或其他内容,并在 1 分钟后结束对话。我想实现这样的原因是因为如果没有响应,对话就不会关闭。在我结束脚本之前,它一直处于这种状态。因此用户不能发送 /start 命令重新开始。我能够找到这个https://github.com/python-telegram-bot/python-telegram-bot/blob/master/telegram/ext/conversationhandler.py,它指出我可以启用allow_reentry。我做到了,它解决了用户可以使用命令 /start 一遍又一遍地开始新对话的问题。但我仍然希望在一段时间后结束对话。要结束对话,我需要返回 ConversationHandler.END

我尝试了一个从 9 开始倒计时的 while 循环,每次 time.sleep 为 2。它读取响应 update.message.text 但它只读取命令 /start 这意味着我永远无法在脚本中前进,除非我使用 return GENDER 返回它但我无法找到一种方法来告诉我何时用户选择了性别,然后返回 GENDER。

那么如何实现基于计时器的响应呢?谢谢你

from telegram import (ReplyKeyboardMarkup) from telegram.ext import (Updater, CommandHandler, MessageHandler, Filters, RegexHandler, ConversationHandler) import logging # Enable logging logging.basicConfig(format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', level=logging.INFO) logger = logging.getLogger(__name__) GENDER, PHOTO, LOCATION, BIO = range(4) def start(bot, update): reply_keyboard = [['Boy', 'Girl', 'Other']] bot.sendMessage(update.message.chat_id, text='Hi! My name is Professor Bot. I will hold a conversation with you. ' 'Send /cancel to stop talking to me.\n\n' 'Are you a boy or a girl?', reply_markup=ReplyKeyboardMarkup(reply_keyboard, one_time_keyboard=True)) return GENDER def gender(bot, update): user = update.message.from_user logger.info("Gender of %s: %s" % (user.first_name, update.message.text)) bot.sendMessage(update.message.chat_id, text='I see! Please send me a photo of yourself, ' 'so I know what you look like, or send /skip if you don\'t want to.') return PHOTO def photo(bot, update): user = update.message.from_user photo_file = bot.getFile(update.message.photo[-1].file_id) photo_file.download('user_photo.jpg') logger.info("Photo of %s: %s" % (user.first_name, 'user_photo.jpg')) bot.sendMessage(update.message.chat_id, text='Gorgeous! Now, send me your location please, ' 'or send /skip if you don\'t want to.') return LOCATION def skip_photo(bot, update): user = update.message.from_user logger.info("User %s did not send a photo." % user.first_name) bot.sendMessage(update.message.chat_id, text='I bet you look great! Now, send me your ' 'location please, or send /skip.') return LOCATION def location(bot, update): user = update.message.from_user user_location = update.message.location logger.info("Location of %s: %f / %f" % (user.first_name, user_location.latitude, user_location.longitude)) bot.sendMessage(update.message.chat_id, text='Maybe I can visit you sometime! ' 'At last, tell me something about yourself.') return BIO def skip_location(bot, update): user = update.message.from_user logger.info("User %s did not send a location." % user.first_name) bot.sendMessage(update.message.chat_id, text='You seem a bit paranoid! ' 'At last, tell me something about yourself.') return BIO def bio(bot, update): user = update.message.from_user logger.info("Bio of %s: %s" % (user.first_name, update.message.text)) bot.sendMessage(update.message.chat_id, text='Thank you! I hope we can talk again some day.') return ConversationHandler.END def cancel(bot, update): user = update.message.from_user logger.info("User %s canceled the conversation." % user.first_name) bot.sendMessage(update.message.chat_id, text='Bye! I hope we can talk again some day.') return ConversationHandler.END def error(bot, update, error): logger.warn('Update "%s" caused error "%s"' % (update, error)) def main(): # Create the EventHandler and pass it your bot's token. updater = Updater("TOKEN") # Get the dispatcher to register handlers dp = updater.dispatcher # Add conversation handler with the states GENDER, PHOTO, LOCATION and BIO conv_handler = ConversationHandler( entry_points=[CommandHandler('start', start)], states={ GENDER: [RegexHandler('^(Boy|Girl|Other)$', gender)], PHOTO: [MessageHandler([Filters.photo], photo), CommandHandler('skip', skip_photo)], LOCATION: [MessageHandler([Filters.location], location), CommandHandler('skip', skip_location)], BIO: [MessageHandler([Filters.text], bio)] }, fallbacks=[CommandHandler('cancel', cancel)], allow_reentry=True ) dp.add_handler(conv_handler) # log all errors dp.add_error_handler(error) # Start the Bot updater.start_polling() # Run the bot until the you presses Ctrl-C or the process receives SIGINT, # SIGTERM or SIGABRT. This should be used most of the time, since # start_polling() is non-blocking and will stop the bot gracefully. updater.idle()
4

1 回答 1

1

你可以使用JobQueue它。

你可以在这里看到一个例子:https ://github.com/python-telegram-bot/python-telegram-bot/blob/master/examples/timerbot.py

pass_job_queue=True确保使用(如上例所示)初始化您的处理程序。

于 2016-07-21T07:05:22.270 回答