加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
git_push.py 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
最爱吃青菜 提交于 2022-08-29 16:48 . 2022-08-29.16:48:05
# 导入定时任务
from apscheduler.schedulers.background import BackgroundScheduler,BlockingScheduler
# 使用线程执行器
from apscheduler.executors.pool import ThreadPoolExecutor
import os,datetime
push_date = datetime.datetime.now().strftime("%Y-%m-%d.%H:%M:%S")
os.system("git add ./")
os.system(f"git commit -m {push_date}")
os.system(f"git push origin master")
print(f"提交日期:{push_date}")
def git_push():
push_date = datetime.datetime.now().strftime("%Y-%m-%d.%H:%M:%S")
os.system("git add ./")
os.system(f"git commit -m {push_date}")
os.system(f"git push origin master")
print(f"提交日期:{push_date}")
executors = {
'default': ThreadPoolExecutor(1) # 开启10个线程
}
scheduler = BlockingScheduler(executors) # 创建定时任务的调度器对象——实例化调度器
# 向调度器中添加定时任务
scheduler.add_job(git_push, 'interval', minutes=1)
# scheduler.add_job(git_push, 'interval', seconds=30)
# 启动定时任务调度器工作——调度器开始
scheduler.start()
# 向调度器中添加定时任务
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化