1 Star 0 Fork 9

lichongbing/wuhan_virus_notify

forked from Jemmy/COVID-19_notify
暂停
 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
run.py 872 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/local/bin/python3
# _*_ coding:utf-8 _*_
import argparse
import sys
import os
help = "r: 运行程序, t: 检查各组件是否正常工作"
def run():
parser = argparse.ArgumentParser("python3 run.py")
parser.add_argument("op",type=str,help=help)
op = parser.parse_args(sys.argv[1:])
if op.op == "r":
from internal import DingXiang
dingxiang = DingXiang()
dingxiang.run()
elif op.op == "t":
from test import test_all
test_all()
else:
print("参数错误")
print("用法: python3 run.py " + help)
if __name__ == "__main__":
# 使用守护进程启动脚本,否则退出shell后脚本会停止
pid = os.fork()
if pid:
sys.exit(0)
os.chdir('/')
os.umask(0)
os.setsid()
_pid = os.fork()
if _pid:
sys.exit(0)
else:
run()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/lichongbing/wuhan_virus_notify.git
[email protected]:lichongbing/wuhan_virus_notify.git
lichongbing
wuhan_virus_notify
wuhan_virus_notify
master

搜索帮助