代码拉取完成,页面将自动刷新
import sys, os
base_path = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, base_path)
from utils.project import Project
from utils import clean
def create_project():
name = input('请输入项目名称:').strip()
if not name:
print('请输入项目名称!')
return
project = Project(name)
project.main()
print('【%s】project create success!' % name)
def clean_report():
days = input('请输入清理几天的日志,默认清理10天:').strip()
if days.isdigit():
clean.clean_report(int(days))
elif days == '':
clean.clean_report()
else:
print('天数输入不合法!')
def main():
func_map = {'1': create_project, '2': clean_report}
msg = '''
1 => 创建项目
2 => 清理报告
other => 退出
>>>:'''
choice = input(msg).strip()
if choice in func_map:
func_map[choice]()
else:
print('退出')
if __name__ == '__main__':
main()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。