python 使用计划模块。比apscheduler更好。丹·巴德。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 使用计划模块。比apscheduler更好。丹·巴德。相关的知识,希望对你有一定的参考价值。
import schedule
import time
def job():
print("I'm working...")
schedule.every(10).minutes.do(job)
schedule.every().hour.do(job)
schedule.every().day.at("10:30").do(job)
schedule.every().monday.do(job)
schedule.every().wednesday.at("13:15").do(job)
while True:
schedule.run_pending()
time.sleep(1)
import csv
# reading
with open("input.csv", "rt") as f:
reader = csv.reader(f)
for row in reader:
print row
# writing
with open("output.csv", "rt") as f:
writer = csv.writer(f)
writer.writerow( ('RowHead 1', 'RowHead 2', 'RowHead 3') )
for i in range(10):
writer.writerow( ("text1", "text2", "text3"), options... )
以上是关于python 使用计划模块。比apscheduler更好。丹·巴德。的主要内容,如果未能解决你的问题,请参考以下文章
Python任务调度模块APScheduler
Python任务调度模块APScheduler(内含定点报时案例)
Python任务调度模块 – APScheduler
python中的apscheduler模块
Python3-apscheduler模块-定时调度
APScheduler定时任务使用