当前位置:主页 > python教程 >

python 每天如何定时启动爬虫任务(实现方法分享)

发布:2022-04-19 11:59:01 76


我们帮大家精选了python相关的编程文章,网友漕昕靓根据主题投稿了本篇教程内容,涉及到python、爬虫、定时任务相关内容,已被160网友关注,内容中涉及的知识点可以在下方直接下载获取。

python2.7环境下运行

安装相关模块

想要每天定时启动,最好是把程序放在linux服务器上运行,毕竟linux可以不用关机,即定时任务一直存活;

#coding:utf8
import datetime
import time
def doSth():
 # 把爬虫程序放在这个类里
 print(u'这个程序要开始疯狂的运转啦')
# 一般网站都是1:00点更新数据,所以每天凌晨一点启动
def main(h=1,m=0):
 while True:
  now = datetime.datetime.now()
  # print(now.hour, now.minute)
  if now.hour == h and now.minute == m:
   break
  # 每隔60秒检测一次
  time.sleep(60)
 doSth()
main()

以上这篇python 每天如何定时启动爬虫任务(实现方法分享)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持码农之家。


参考资料

相关文章

网友讨论