我的 python 脚本作为 cronjob 安装,它每分钟运行一次,并根据发出的请求将报告发送给用户(基本上我的电报机器人与授权用户交互并发送报告)。一切正常,只是需要延迟 1 分钟。我希望我的脚本能够实时监听请求并立即发送报告,不会有任何延迟。我不太确定该怎么做。
import telepot
# Get the latest update
def fetch():
response = bot.getUpdates()
# Authorize the user
def authorize():
---Code to Authorize---
# Send the stats
def stat():
---Code to send the stats/report---