gpt4 book ai didi

python - 如何使用 python 中的 telegram bot 和 telepot 制作调查问卷

转载 作者:太空宇宙 更新时间:2023-11-03 14:56:34 36 4
gpt4 key购买 nike

在我的研究中,我想使用 Telegram 机器人每天在特定时刻向实验中 35 名志愿者的个人智能手机发出 4 个简单的多项选择题。我已经检查了 Telepot 文档和示例,但我无法构建一个好的解决方案。测验示例很接近,但问题和答案应该对我的志愿者可见,并写入一个简单的日志文件中以供进一步分析。

这是我修改后的 quiz.py 版本

import sys
import time
import random
import telepot
import telepot.helper
from telepot.loop import MessageLoop
from telepot.namedtuple import InlineKeyboardMarkup, InlineKeyboardButton
from telepot.delegate import (
per_chat_id, per_callback_query_origin, create_open, pave_event_space)

"""
$ python3.5 qst.py <token>
Send a chat message to the bot. It will give you 4 questions.
It handles callback query by their origins. All callback query originated from
the same chat message will be handled by the same `CallbackQueryOriginHandler`.
Timeout on questions is not needed. How to remove them!
"""

nameLogFile = 'qst_log.txt';

class QstStarter(telepot.helper.ChatHandler):
def __init__(self, *args, **kwargs):
super(QstStarter, self).__init__(*args, **kwargs)

def on_chat_message(self, msg):
content_type, chat_type, chat_id = telepot.glance(msg)
self.sender.sendMessage(
'Are you ready for the first question?',
reply_markup=InlineKeyboardMarkup(
inline_keyboard=[[
InlineKeyboardButton(text='START', callback_data='start'),
]]
)
)
self.close() # let Qster take over

class Qster(telepot.helper.CallbackQueryOriginHandler):

def __init__(self, *args, **kwargs):
super(Qster, self).__init__(*args, **kwargs)
self._cnt = 0;

def _show_next_question(self):
qst = ["Question 1", "Question 2", "Question 3", "Question 4"];
choices = ["a","b","c","d","e"];

if self._cnt<4 :
self.editor.editMessageText(qst[self._cnt],
reply_markup=InlineKeyboardMarkup(
inline_keyboard=[
list(map(lambda c: InlineKeyboardButton(text=str(c), callback_data=str(c)), choices))
]
)
)

def on_callback_query(self, msg):
query_id, from_id, query_data = telepot.glance(msg, flavor='callback_query')

if query_data != 'start':
# log this answer: Question is this tread safe!
self._f = open(nameLogFile, 'a+');
self._f.write(str(from_id) + ',' + str(msg["message"]["edit_date"]) + ',' + \
repr(time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime(msg["message"]["edit_date"]))) + ',' + \
str(self._cnt) + ',' + repr(msg["message"]["text"]) + ',' + repr(query_data) + '\n');
self._f.close();
# show this answer
bot.sendMessage(from_id, msg["message"]["text"] + " " + query_data, parse_mode='HTML');

self._cnt += 1

if self._cnt<4 :
self._show_next_question()
else :
self.editor.editMessageText('\nThanks', reply_markup=None);


def on__idle(self, event):
#self.close()


TOKEN = sys.argv[1]

bot = telepot.DelegatorBot(TOKEN, [
pave_event_space()(
per_chat_id(), create_open, QstStarter, timeout=3),
pave_event_space()(
per_callback_query_origin(), create_open, Qster, timeout=10),
])

MessageLoop(bot).run_as_thread()
print('Listening ...')

while 1:
time.sleep(10)

我想给我的志愿者足够的时间来回答问题,但我不知道如何避免事件超时。

第二个问题:如何用计时器启动问卷序列?我想每天在特定时刻向 35 名志愿者发送一次调查问卷。

最佳答案

丹尼森。您可以通过调度程序调用任何函数,例如 ADScheduler 或许多其他函数。

还有更简单的方法使用python-telegram-bot模块,其中包括ConversationHandler方法。

https://github.com/python-telegram-bot/python-telegram-bot/blob/master/examples/conversationbot.py

所以你只需通过调度程序运行 entry_point 函数就可以了。

其他telepot也支持这个 Action ,但是更加困难和肮脏。不是吗?

关于python - 如何使用 python 中的 telegram bot 和 telepot 制作调查问卷,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45523145/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com