<img src="data://image/jpeg;base64,#{base64encodedDataHere}">
我想在10点钟操作这段代码,怎么写代码?
答案 0 :(得分:0)
您可以使用sched
模块或简单地循环执行日期时间,但正如AChampion指出的那样,在* nix平台上,它更容易使用cron。
此stackoverflow question详细介绍了sched和datetime。
本质:
from datetime import datetime as dt
while True:
if dt.now().hour == 10: # for 10 o'clock
initialize(context)
handle_data(context,data)
time.sleep(60) # Minimum interval between task executions
else:
time.sleep(10) # The else clause is not necessary but would prevent the program to keep the CPU busy.