摘要: import tarfile #压缩 tar = tarfile.open('your.tar','w') tar.add('ooo.xml',arcname='ooo.xml') tar.close() #解压全部文件 tar = tarfile.open('your.tar','r') tar.extractall() tar.close() #解压指定文件 for item in tar.... 阅读全文
posted @ 2016-06-24 06:59 unixfbi.com 阅读(443) 评论(0) 推荐(0) 编辑
摘要: #1、获取所有节点 import configparser config = configparser.ConfigParser() config.read('db',encoding='utf-8') ret = config.sections() print(ret) #2、获取指定节点下所有的键值对 import configparser config = configparser.Con... 阅读全文
posted @ 2016-06-24 06:54 unixfbi.com 阅读(241) 评论(0) 推荐(0) 编辑