在服务器跑python定时任务

Leonie ·
更新时间:2024-11-13
· 521 次阅读

1、Python自带模块 threading模块的Timer类或者schedule模块
2、用crontab
首先创建一个shell脚本
touch daren.sh 创建
vim daren.sh 修改

#!/bin/bash #这里python3要写绝对路径 sudo python3 /root/timetask/timetask.py \r echo $(date "+%Y-%m-%d %H:%M:%S") '执行完毕' exit 0

给权限 不然跑不了
原创文章 4获赞 1访问量 3359 关注 私信 展开阅读全文
作者:Chon9_



服务器 python定时任务 Python

需要 登录 后方可回复, 如果你还没有账号请 注册新账号