Python中ini配置文件读写的实现
作者:彭世瑜psy 时间:2021-03-15 09:52:01
导入模块
import configparser # py3
写入
config = configparser.ConfigParser()
config["DEFAULT"] = {
'ServerAliveInterval': '45',
'Compression': 'yes',
'CompressionLevel': '9'
}
config['bitbucket.org'] = {}
config['bitbucket.org']['User'] = 'hg'
config['topsecret.server.com'] = {}
topsecret = config['topsecret.server.com']
topsecret['Host Port'] = '50022' # mutates the parser
topsecret['ForwardX11'] = 'no' # same here
config['DEFAULT']['ForwardX11'] = 'yes'
# 写入文件
with open('example.ini', 'w') as configfile:
config.write(configfile)
读取
config = configparser.ConfigParser()
config.read("example.ini")
print(config.defaults())
# OrderedDict([('compression', 'yes')])
print(config.sections())
# ['bitbucket.org', 'topsecret.server.com']
print(config['bitbucket.org']['User'])
# hg
print(config.options("topsecret.server.com"))
# ['port', 'compression']
print(config.items("topsecret.server.com"))
# [('compression', 'yes'), ('port', '50022')]
print(config.get("topsecret.server.com", "port"))
# 50022
修改
print(config.has_section("Name"))
# 删除
config.remove_section("Name")
# 添加
config.add_section("Name")
config["Name"]["name"] = "Tom"
config["Name"]["asname"] = "Jimi"
# 设置
config.remove_option("Name", "asname")
config.set("Name", "name", "Jack")
# 保存
config.write(open("example.ini", "w"))
附:ini文件
[DEFAULT]
serveraliveinterval = 45
compression = yes
compressionlevel = 9
forwardx11 = yes
[bitbucket.org]
user = hg
[topsecret.server.com]
host port = 50022
forwardx11 = no
help(configparser)
"""
CLASSES
class ConfigParser(RawConfigParser)
| ConfigParser implementing interpolation.
|
| add_section(self, section)
| Create a new section in the configuration. Extends
| RawConfigParser.add_section by validating if the section name is
| a string.
|
| set(self, section, option, value=None)
| Set an option. Extends RawConfigParser.set by validating type and
| interpolation syntax on the value.
|
| defaults(self)
|
| get(self, section, option, *, raw=False, vars=None, fallback=<object object at 0x0000000002F42120>)
| Get an option value for a given section.
|
| getboolean(self, section, option, *, raw=False, vars=None, fallback=<object object at 0x0000000002F42120>)
|
| getfloat(self, section, option, *, raw=False, vars=None, fallback=<object object at 0x0000000002F42120>)
|
| getint(self, section, option, *, raw=False, vars=None, fallback=<object object at 0x0000000002F42120>)
|
| has_option(self, section, option)
| Check for the existence of a given option in a given section.
| If the specified `section' is None or an empty string, DEFAULT is
| assumed. If the specified `section' does not exist, returns False.
|
| has_section(self, section)
| Indicate whether the named section is present in the configuration.
| items(self, section=<object object at 0x0000000002F42120>, raw=False, vars=None)
| Return a list of (name, value) tuples for each option in a section.
|
| options(self, section)
| Return a list of option names for the given section name.
| popitem(self)
| Remove a section from the parser and return it as
| read(self, filenames, encoding=None)
| Read and parse a filename or a list of filenames.
| Return list of successfully read files.
|
| read_dict(self, dictionary, source='<dict>')
| Read configuration from a dictionary.
|
| read_file(self, f, source=None)
| Like read() but the argument must be a file-like object.
|
| read_string(self, string, source='<string>')
| Read configuration from a given string.
|
| readfp(self, fp, filename=None)
| Deprecated, use read_file instead.
|
| remove_option(self, section, option)
| Remove an option.
|
| remove_section(self, section)
| Remove a file section.
|
| sections(self)
| Return a list of section names, excluding [DEFAULT]
|
| write(self, fp, space_around_delimiters=True)
| Write an .ini-format representation of the configuration state.
|
| clear(self)
| D.clear() -> None. Remove all items from D.
|
| pop(self, key, default=<object object at 0x0000000002F42040>)
| D.pop(k[,d]) -> v, remove specified key and return the corresponding value.
| If key is not found, d is returned if given, otherwise KeyError is raised.
|
| setdefault(self, key, default=None)
| D.setdefault(k[,d]) -> D.get(k,d), also set D[k]=d if k not in D
|
| update(*args, **kwds)
| D.update([E, ]**F) -> None. Update D from mapping/iterable E and F.
| If E present and has a .keys() method, does: for k in E: D[k] = E[k]
| If E present and lacks .keys() method, does: for (k, v) in E: D[k] = v
| In either case, this is followed by: for k, v in F.items(): D[k] = v
|
| keys(self)
| D.keys() -> a set-like object providing a view on D's keys
|
| values(self)
| D.values() -> an object providing a view on D's values
|
"""
来源:https://blog.51cto.com/u_13567403/5017302
标签:Python,ini,文件读写
0
投稿
猜你喜欢
Python中序列的修改、散列与切片详解
2022-10-27 14:47:58
MYSQL教程:表达式操作符和数据类型转换
2009-02-27 15:51:00
MySQL中InnoDB存储引擎的锁的基本使用教程
2024-01-21 09:27:01
python算法深入理解风控中的KS原理
2021-01-12 21:27:37
Go压缩位图库roaring安装使用详解
2024-05-22 10:16:42
解决Python logging模块无法正常输出日志的问题
2023-10-03 17:04:25
golang db事务的统一封装的实现
2023-07-02 21:01:51
linux系统使用python获取cpu信息脚本分享
2021-10-18 17:45:30
redis不能访问本机真实ip地址的解决方案
2023-07-05 13:09:44
ASP长文章分页代码实例
2007-10-02 17:04:00
Flask框架Flask-Login用法分析
2022-05-20 08:21:27
python logging多进程多线程输出到同一个日志文件的实战案例
2021-01-08 16:25:17
python中filter,map,reduce的作用
2023-12-18 11:13:15
Python基础 括号()[]{}的详解
2023-07-22 07:35:39
一文搞懂Python中列表List和元组Tuple的使用
2022-10-09 02:24:58
一篇文章带你入门SQL编程
2024-01-12 13:05:22
Mysql的Table doesn't exist问题及解决
2024-01-16 05:03:13
python 3调用百度OCR API实现剪贴板文字识别
2022-12-13 19:01:14
深入理解Django的自定义过滤器
2021-01-25 04:01:54
Jmail发信的实例,模块化随时调用
2007-09-27 13:35:00