摘要:
1.读取yaml配置文件 from os.path import exists from yaml import safe_load_all, safe_load class File(object): def __init__(self, file_path: str): if not exist 阅读全文
摘要:
mysql添加用户 insert into user(Host,User,Password) values("%","wulian",password("wulian")); CREATE USER 'wulian'@'localhost' IDENTIFIED BY 'wulian'; # 创建用 阅读全文