代码拉取完成,页面将自动刷新
# 导入定时任务
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()
# 向调度器中添加定时任务
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。