博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python 读取写入配置文件 ConfigParser
阅读量:5960 次
发布时间:2019-06-19

本文共 917 字,大约阅读时间需要 3 分钟。

https://blog.csdn.net/piaodexin/article/details/77371343

 

https://www.cnblogs.com/feeland/p/4502931.html

 

Python中有ConfigParser类,可以很方便的从配置文件中读取数据(如DB的配置,路径的配置),所以可以自己写一个函数,实现读取config配置。

config文件的写法比较简单,[section]下配置key=value,一下是例子:db.conf

#配置数据库[database]dbhost=127.0.0.1dbport=3366dbname=testdbuser=testdbpassword=testdbcharset=utf8 #文件路径的配置 [path] logpath="" sharepath="d:\\tempfile\\cachefile"

接着写一个读取config的方法模块用于读取配置

#encoding:utf-8#name:mod_config.pyimport ConfigParserimport os#获取config配置文件def getConfig(section, key):    config = ConfigParser.ConfigParser()    path = os.path.split(os.path.realpath(__file__))[0] + '/configure.conf'    config.read(path)    return config.get(section, key)#其中 os.path.split(os.path.realpath(__file__))[0] 得到的是当前文件模块的目录

当需要在文件中读取config的配置时,就载入这个模块,调用getConfig方法。

import mod_configdbname = mod_config.getConfig("database", "dbname")

转载于:https://www.cnblogs.com/klb561/p/10085155.html

你可能感兴趣的文章
深入浅出JavaScript (五) 详解Document.write()方法
查看>>
hibernate简单入门教程(四)---------关联映射
查看>>
去 IOE,MySQL 完胜 PostgreSQL
查看>>
++i 和 i++ 性能上的区别
查看>>
Mysql运维管理-一主多从宕机从库切换主库继续和从库同步过程16
查看>>
Tomcat优化之配置NIO运行模式
查看>>
用XSLT和XML改进Struts
查看>>
WEB测试—功能测试
查看>>
在react或vue中,for循环用Index作为key值是好还是坏呢?
查看>>
2014.10.1 Form中显示pdf文件
查看>>
NERDTree 快捷键辑录
查看>>
Python数据分析Numpy库方法简介(一)
查看>>
javaWeb:相关监听方法汇总
查看>>
JSP 实现 之 读取数据库显示图片
查看>>
JS——特效秀
查看>>
Beta冲刺——day6
查看>>
前端:CheckBox事件函数js
查看>>
Comet OJ - Contest #3 题解
查看>>
[网络流24题-9]试题库问题
查看>>
jquery选择器详解
查看>>