摘要:
# -*- coding: utf-8 -*- # Author: Jack # Date: 2018/02/09 15:33 import os import sys import time # 删除某个时间点之前的文件 def del_files(before_times, path=”.”): 阅读全文
摘要:
python中schedule模块的使用由于需要用到一个使用python进行job管理的模块,找到了schedule模块,简单好用,在这里记录一下。详细源码可以参考这里安装方法 pip install schedule使用方法import scheduleimport timedef job(): 阅读全文