利用python定时执行
1 源代码循环
import schedule
import timedef job():
print("I'm working...")schedule.every(10).minutes.do(job)
schedule.every().hour.do(job)
schedule.every().day.at("10:30").do(job)
schedule.every(5).to(10).days.do(job)
schedule.every().monday.do(job)
schedule.every().wednesday.at("13:15").do(job)
while True:
schedule.run_pending()
time.sleep(1)
利用Python下载文件
python模拟登陆之下载
If you are interested in this topic.
You can get in touch with me.
18234056952(Tel wechat qq)