python调用接口数据怎么设置定时器,没30分钟刷新一次
答案:3 悬赏:0 手机版
解决时间 2021-03-18 22:13
- 提问者网友:爱了却不能说
- 2021-03-18 19:17
python调用接口数据怎么设置定时器,没30分钟刷新一次
最佳答案
- 五星知识达人网友:夜风逐马
- 2021-03-18 20:13
# 1.简单的 time.sleep + while
import time
def test_api():
print("test_api_log")
while True:
test_api()
time.sleep(60*30)
# 2.时间调度模块 sched
import time, os, sched
# 第一个参数确定任务的时间,返回从某个特定的时间到现在经历的秒数
# 第二个参数以某种人为的方式衡量时间
schedule = sched.scheduler(time.time, time.sleep)
def perform_command(cmd, inc):
# 安排inc秒后再次运行自己,即周期运行
schedule.enter(inc, 0, perform_command, (cmd, inc))
os.system(cmd)
def timming_exe(cmd, inc = 60):
# enter用来安排某事件的发生时间,从现在起第n秒开始启动
schedule.enter(inc, 0, perform_command, (cmd, inc))
# 持续运行,直到计划时间队列变成空为止
schedule.run()
if __name__ == __"main"__:
print("show time after 10 seconds:")
timming_exe("echo %time%", 10)
# scheduler.enter(delay,priority,func,args)
# 第一个参数是一个整数或者float,代表多少秒后执行这个任务
# 第二个参数priority是优先级,0代表优先级最高,1次之,2次次之
# 第三个参数就是你要执行的任务,可以简单的理解成你要执行的函数的函数名
# 第四个参数是你要传入的这个定时执行的action为函数名的函数的参数,最好是用"()"括号来包起来,包起来肯定是不会出错的。--
# --其次,当你只传入一个参数时,用括号包起来后,一定要记住再打上一个逗号。
import time
def test_api():
print("test_api_log")
while True:
test_api()
time.sleep(60*30)
# 2.时间调度模块 sched
import time, os, sched
# 第一个参数确定任务的时间,返回从某个特定的时间到现在经历的秒数
# 第二个参数以某种人为的方式衡量时间
schedule = sched.scheduler(time.time, time.sleep)
def perform_command(cmd, inc):
# 安排inc秒后再次运行自己,即周期运行
schedule.enter(inc, 0, perform_command, (cmd, inc))
os.system(cmd)
def timming_exe(cmd, inc = 60):
# enter用来安排某事件的发生时间,从现在起第n秒开始启动
schedule.enter(inc, 0, perform_command, (cmd, inc))
# 持续运行,直到计划时间队列变成空为止
schedule.run()
if __name__ == __"main"__:
print("show time after 10 seconds:")
timming_exe("echo %time%", 10)
# scheduler.enter(delay,priority,func,args)
# 第一个参数是一个整数或者float,代表多少秒后执行这个任务
# 第二个参数priority是优先级,0代表优先级最高,1次之,2次次之
# 第三个参数就是你要执行的任务,可以简单的理解成你要执行的函数的函数名
# 第四个参数是你要传入的这个定时执行的action为函数名的函数的参数,最好是用"()"括号来包起来,包起来肯定是不会出错的。--
# --其次,当你只传入一个参数时,用括号包起来后,一定要记住再打上一个逗号。
全部回答
- 1楼网友:狂恋
- 2021-03-18 21:43
if __name__ == __"main"__: 改为 if __name__ == "__main__":
- 2楼网友:你可爱的野爹
- 2021-03-18 20:41
相看两不厌,只有敬亭山.
再看看别人怎么说的。
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯