让python脚本每小时执行一些函数

时间:2017-05-22 16:06:06

标签: python scheduler

让我说我有这个代码:

...

connect()
find_links()
find_numbers()

实际上它的作用是登录帐户,获取一些数字和一个链接: 例如:

  

1.23,1.32,32.1,2131.3 link.com/stats /

     

1.32,1.41,3232.1,21211.3 link.com/stats /

所以我想做的就是让这些功能每隔一小时运行一次 然后打印时间,然后我可以比较结果。我试过:

sched = BlockingScheduler()
@sched.scheduled_job('interval', seconds=3600 )

def do_that():
     connect()
     find_links()
     find_numbers()
     print(datetime.datetime.now())

但这只执行一次函数,然后只打印日期。

1 个答案:

答案 0 :(得分:1)

这应该调用该函数一次,然后等待3600秒(一小时),调用函数,等待等。不需要标准库以外的任何内容。

$_FILES['file']['type']