中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python怎么每天在指定時間段運行程序及關閉程序

發布時間:2023-04-28 17:19:09 來源:億速云 閱讀:205 作者:iii 欄目:開發技術

這篇文章主要講解了“python怎么每天在指定時間段運行程序及關閉程序”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“python怎么每天在指定時間段運行程序及關閉程序”吧!

    python每天在指定時間段運行程序及關閉程序

    場景

    程序需要在每天某一時間段內運行,然后在某一時間段內停止該程序。

    程序:

    from datetime import datetime, time
    import multiprocessing
    from time import sleep
    # 程序運行時間在白天8:30 到 15:30  晚上20:30 到 凌晨 2:30
    DAY_START = time(8, 30)
    DAY_END = time(15, 30)
    NIGHT_START = time(20, 30)
    NIGHT_END = time(2, 30)
    def run_child():
        while 1:
            print("正在運行子進程")
    def run_parent():
        print("啟動父進程")
        child_process = None  # 是否存在子進程
        while True:
            current_time = datetime.now().time()
            running = False  # 子進程是否可運行
            if DAY_START <= current_time <= DAY_END or (current_time >= NIGHT_START) or (current_time <= NIGHT_END):
                # 判斷時候在可運行時間內
                running = True
            # 在時間段內則開啟子進程
            if running and child_process is None:
                print("啟動子進程")
                child_process = multiprocessing.Process(target=run_child)
                child_process.start()
                print("子進程啟動成功")
            # 非記錄時間則退出子進程
            if not running and child_process is not None:
                print("關閉子進程")
                child_process.terminate()
                child_process.join()
                child_process = None
                print("子進程關閉成功")
            sleep(5)
    if __name__ == '__main__':
        run_parent()

    python定時程序(每隔一段時間執行指定函數)

    import os
    import time
    def print_ts(message):
        print "[%s] %s"%(time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()), message)
    def run(interval, command):
        print_ts("-"*100)
        print_ts("Command %s"%command)
        print_ts("Starting every %s seconds."%interval)
        print_ts("-"*100)
        while True:
            try:
                # sleep for the remaining seconds of interval
                time_remaining = interval-time.time()%interval
                print_ts("Sleeping until %s (%s seconds)..."%((time.ctime(time.time()+time_remaining)), time_remaining))
                time.sleep(time_remaining)
                print_ts("Starting command.")
                # execute the command
                status = os.system(command)
                print_ts("-"*100)
                print_ts("Command status = %s."%status)
            except Exception, e:
                print e
    if __name__=="__main__":
        interval = 5
        command = r"ls"
        run(interval, command)

    感謝各位的閱讀,以上就是“python怎么每天在指定時間段運行程序及關閉程序”的內容了,經過本文的學習后,相信大家對python怎么每天在指定時間段運行程序及關閉程序這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

    向AI問一下細節

    免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

    AI

    万宁市| 武宁县| 赤水市| 澄江县| 清水河县| 苗栗县| 正安县| 体育| 黄石市| 旬邑县| 武冈市| 东阳市| 竹北市| 包头市| 玛多县| 宝山区| 台北市| 昔阳县| 嘉鱼县| 宜兰市| 湟中县| 卢龙县| 合肥市| 梅河口市| 博白县| 甘谷县| 景泰县| 温宿县| 高陵县| 英吉沙县| 乌鲁木齐市| 油尖旺区| 边坝县| 乐昌市| 大埔县| 沾化县| 龙游县| 山西省| 施秉县| 德安县| 砚山县|