python实现的config文件读写功能示例
人气:0本文实例讲述了python实现的config文件读写功能。分享给大家供大家参考,具体如下:
1、设置配置文件
[mysql] host = 1234 port = 3306 user = root password = Zhsy08241128 database = leartd
2、读取配置文件
import configparser import os conf= configparser.ConfigParser() def readConf(): '''读取配置文件''' root_path = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) conf.read(root_path + '/ceshi/conf/app.conf') # 文件路径 print(conf) name = conf.get("mysql", "host") # 获取指定section 的option值 print(name)
3、写入配置文件
def writeConf(): '''写入配置文件''' root_path = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) conf.read(root_path + '/ceshi/conf/app.conf') # 文件路径 conf.set("mysql", "host", "1234") # 修改指定section 的option conf.write(open(root_path + '/ceshi/conf/app.conf', 'w'))
希望本文所述对大家Python程序设计有所帮助。
您可能感兴趣的文章:
- Python使用自带的ConfigParser模块读写ini配置文件
- Python中使用ConfigParser解析ini配置文件实例
- python用ConfigObj读写配置文件的实现代码
- Python配置文件解析模块ConfigParser使用实例
- 详解Python读取配置文件模块ConfigParser
- Python自动化测试ConfigParser模块读写配置文件
- python代码制作configure文件示例
- Python使用ConfigParser模块操作配置文件的方法
- 用python代码做configure文件
- Python读写配置文件的方法
- python读写配置文件操作示例
- python config文件的读写操作示例
加载全部内容