这个模块是python标准库模块,从2.6.6开始引入,用来解析配置文件。
## 直接使用
#### 实例化
```
import ConfigParser
config_obj = ConfigParser.ConfigParser()
```
---
#### 读取配置文件
```
# 读取文件对象
config_obj.readfp(fo)
# 读取文件
config_obj.read()
```
#### 写配置文件,文件对象
```
config_obj.write(fo)
```
---
#### 判断option是否存在
```
config_obj.has_section(section)
```
#### 获取sections
```
config_obj.sections()
```
#### 添加section
```
config_obj.add_section
```
#### 移除section
```
config_obj.remove_section(section)
```
---
#### 判断option是否存在
```
config_obj.has_option(section, option)
```
#### 获取options
```
config_obj.options(section)
```
#### 获取值
```
config_obj.get(section, option)
```
#### 获取(key/value) tuple
```
config_obj.items(section)
```
#### 添加option
```
config_obj.set(section, option, value=None)
```
#### 删除option
```
config_obj.remove_option(section, option)
```
---
## 定制类
```
#!/usr/bin/env python
# encoding: utf-8
from ConfigParser import ConfigParser
class MysqlConfig(ConfigParser):
def __init__(self, config_file, **kwargs):
ConfigParser.__init__(self, allow_no_value=True)
# super(MysqlConfig, self).__init__(allow_no_value=True)
self.config_file = config_file
self.kwargs = kwargs
# 初始化时就执行读取配置文件操作
self.read(self.config_file)
self.set_vars(self.kwargs)
self.get_vars('mysqld')
def set_vars(self, kwargs):
"设置类属性"
for k, v in kwargs.items():
setattr(self, k, v)
def get_vars(self, section='mysqld'):
"""读取配置文件的参数存为类属性,默认是mysqld"""
attr_dict = {}
options = self.options(section)
for item in options:
attr_dict[item] = self.get(section, item)
self.set_vars(attr_dict)
# def get_vars(self, section='mysqld'):
# attr_dict = dict(self.items(section))
# self.set_vars(attr_dict)
if __name__ == '__main__':
conf_obj = MysqlConfig('/usr/share/doc/mysql-server-5.1.73/my-huge.cnf')
print conf_obj.items('mysqld')
```
- 前言
- 环境搭建
- pypi
- 打包
- Python 2 和 Python 3 的版本之间差别
- 项目
- 第一部分
- 第1章 基础
- Python安装
- python代码文件类型
- python对象
- 核心数据类型
- 核心数据类型--整型和浮点型
- 核心数据类型--字符串
- str.format
- 核心数据类型--列表
- 核心数据类型--元组
- 核心数据类型--字典
- 核心数据类型--集合
- 核心数据类型--文件对象
- 调用bash
- 标准输入输出
- str-repr
- 字符编码
- 迭代器和生成器
- 第2章 语句和语法
- 赋值语句
- if语句
- while语句
- for语句
- assert
- 第3章 函数
- 函数作用域
- 工厂函数
- 内置函数
- 递归
- 嵌套作用域和lambda
- 参数传递
- 函数式编程
- property可写与可读
- 第5章 模块
- 模块导入
- 模块命名空间
- 相对导入和绝对导入
- 模块重载
- 在模块中隐藏数据
- 过渡性重载
- 第6章 类
- 面向对象还是面向过程?
- 构造函数 析构函数
- call
- 运算符重载
- str()
- 待定
- 即时生成属性
- 多态
- 线程和进程
- thread模块
- threading模块
- threading线程锁
- 糖果机
- multiprocessing
- 阻塞非阻塞同步异步
- 单线程和多线程对比
- 生产者消费者模型
- 第二部分
- 获取系统资源信息
- 获取进程所占的物理内存
- dmidecode获取系统信息
- 网络编程
- 网络基础
- python中的套接字
- socket模块
- 第三部分 高级功能
- 闭包入门
- 闭包的应用
- 装饰器入门
- 装饰器应用
- 第四部分 项目实战
- graphite
- 模块
- collections
- datetime
- Enum
- faker
- fabric
- fileinput
- fire
- fnmatch
- getpass
- glob
- hashlib
- heapq
- json模块
- log
- os
- Paramiko
- parser
- platform
- pyyaml
- Queue
- random
- re
- 特殊符号和字符
- re模块
- shelves
- subprocess
- time
- urllib_urllib2_requests
- urllib urllib2
- requests
- 标准模块ConfigParser
- 扩展模块Mysqldb
- 扩展模块dns
- 扩展模块request
- uuid
- cacheout 缓存库
- delorean 时间
- 附录
- 内置函数
- python实现各种排序算法
- 常见报错
- pymongo
- pyrocksdb
- 常用
- ERROR