摘要:
with open(path, 'r', encoding='utf-8') as file: message = file.read() 阅读全文
摘要:
由于本人项目中etcd的版本略低,不适用于python-etcd,etcd3这类第三方扩展包,所以呢,自己写了用requests请求的方法,放在这里,给需要的人。 首先,etcd的请求可以使用网址的方式 get key http://localhost:4001/key set key http:/ 阅读全文
摘要:
注释的方法 yaml_set_comment_before_after_key(key,before='123',after='123',after_indent=2) 某个key上面和下面(注意缩进)添加注释 yaml_set_start_comment('123') 在某key的开始添加注释 y 阅读全文