python的schedule 模組用法示例

2021-06-18 23:50:32 字數 1757 閱讀 4649

1、定時任務

#! /usr/bin/env python 

#coding=utf-8

import time, os, sched

# 第乙個引數確定任務的時間,返回從某個特定的時間到現在經歷的秒數

# 第二個引數以某種人為的方式衡量時間

schedule = sched.scheduler(time.time, time.sleep)

def perform_command(cmd, inc):

# os.system(cmd)

print(time.time())

print('zhixing寫入資料庫',time.time() -tt)

global tt

tt=time.time()

def timming_exe(cmd, inc = 60):

# enter用來安排某事件的發生時間,從現在起第n秒開始啟動

schedule.enter(inc, 0, perform_command, (cmd, inc))

# # 持續執行,直到計畫時間佇列變成空為止

schedule.run()

if __name__ == '__main__':     

tt=time.time()      

print("show time after 5 seconds:",tt)  

timming_exe("echo %time%", 5)

2、利用sched實現週期呼叫

#! /usr/bin/env python 

#coding=utf-8

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)

print(time.time())

print('zhixing寫入資料庫',time.time() -tt)

global tt

tt=time.time()

def timming_exe(cmd, inc = 60):

# enter用來安排某事件的發生時間,從現在起第n秒開始啟動

schedule.enter(inc, 0, perform_command, (cmd, inc))

# # 持續執行,直到計畫時間佇列變成空為止

schedule.run()    

if __name__ == '__main__':

tt=time.time()      

print("show time after 5 seconds:",tt)  

timming_exe("echo %time%", 5)

python的schedule定時模組

import schedule import time from mysql example import mysqlexample import random import datetime import logging import threading logging.basicconfig l...

python 爬蟲定時 schedule

有時我們需要定時傳送郵件等操作,schedule可以實現定時功能 schedule 模組 引入schedule和time defjob print i m working.定義乙個叫job的函式,函式的功能是列印 i m working.schedule.every 10 minutes.do jo...

Python定時模組 schedule

pip install schedule 先安裝schedule模組schedule.every 5 minutes.do 函式名,引數 每隔五分鐘執行一次任務 schedule.every hour.do 函式名,引數 每隔一小時執行一次任務 schedule.every day.at 10 30...