import threading
import time
import web
# 定义一个定时任务
def Mytask():
while True:
# 你的任务代码
print("定时任务执行中...")
# 休眠时间,这里设置为1分钟(60秒)
time.sleep(60)
# 创建一个web应用
app = web.application(('/.*', web.template.frender),
template_path='templates')
# 启动定时任务
def start_background_task():
thread = threading.Thread(target=Mytask()
thread.daemon = True
thread.start()
if __name__ == "__main__":
start_background_task() # 启动定时任务
app.run() # 运行web应用