使用系统方法
import time
import os
while True:
os.system("scrapy crawl 你的spider")
time.sleep(86400) #每隔一天运行一次 24*60*60=86400s
时间可以随机,这样也不会检测到定时的爬虫了
import time
import os
while True:
os.system("scrapy crawl 你的spider")
time.sleep(86400) #每隔一天运行一次 24*60*60=86400s
时间可以随机,这样也不会检测到定时的爬虫了