码迷,mamicode.com
首页 >  
搜索关键字:configparser    ( 485个结果
ConfigParser 实例 01
# -*- coding: utf-8 -*-import ConfigParserconfig = ConfigParser.ConfigParser()config.readfp(open('ixamail.ini'))a = config.get("host","smtp_server")pr...
分类:其他好文   时间:2014-07-22 22:36:14    阅读次数:168
ConfigParser 实例
#coding=utf-8importConfigParserdefwriteConfig(filename):config=ConfigParser.ConfigParser()#setdbsection_name='db'config.add_section(section_name)confi...
分类:其他好文   时间:2014-07-22 22:36:14    阅读次数:180
python标准库configparser配置解析器
1 >>> from configparser import ConfigParser, ExtendedInterpolation 2 >>> parser = ConfigParser(interpolation=ExtendedInterpolation()) 3 >>> # the def....
分类:编程语言   时间:2014-05-31 20:01:47    阅读次数:237
python各种模块的使用
Pexpect模块:http://www.ibm.com/developerworks/cn/linux/l-cn-pexpect1/ ConfigParser模块:http://blog.chinaunix.net/uid-25890465-id-3312861.html logging模块:http://kenby.iteye.com/blog/1162698 threading模块...
分类:编程语言   时间:2014-05-22 22:38:36    阅读次数:358
编写.ini文件
from ConfigParser import RawConfigParser as rcp if __name__ == "__main__": cfg = rcp() cfg.add_section("Info") cfg.set("Info", "ImagePath", "f:/whu") cfg.set("Info", "foo", "cd'...
分类:其他好文   时间:2014-05-18 05:58:51    阅读次数:284
485条   上一页 1 ... 47 48 49
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!