博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
configparser模块
阅读量:5343 次
发布时间:2019-06-15

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

 

configparser模块是一种文件数据处理格式的方法,常用与生成、解析或修改.ini配置文件

  1.常见.ini文件格式内容如下

[DEFAULT]ServerAliveInterval = 45Compression = yesCompressionLevel = 9ForwardX11 = yes[bitbucket.org]User = hg[topsecret.server.com]Port = 50022ForwardX11 = no

 

  2. configparser模块的简单使用

# -*- coding:utf-8 -*-# Author:Wong Du'''configparser模块是一种文件数据处理格式方法,常用于生成和修改常见配置文档,文件后缀名为.ini'''import configparserconfig = configparser.ConfigParser()    # ConfigParser implementing interpolation,生成对象# 姿势一config["DEFAULT"] = {
'ServerAliveInterval': '45', 'Compression': 'yes', 'CompressionLevel': '9'} # 配置缺省信息# 姿势二config['bitbucket.org'] = {}config['bitbucket.org']['User'] = 'hg'config['DEFAULT']['ForwardX11'] = 'yes'# 姿势三config['topsecret.server.com'] = {}topsecret = config['topsecret.server.com']topsecret['Host Port'] = '50022' # mutates the parsertopsecret['ForwardX11'] = 'no' # same here# 写入到文件当中with open('example.ini', 'w') as configfile: config.write(configfile)

 

转载于:https://www.cnblogs.com/Caiyundo/p/9438030.html

你可能感兴趣的文章
windows超过最大连接数解决命令
查看>>
12个大调都是什么
查看>>
angular、jquery、vue 的区别与联系
查看>>
参数范围的选择
查看>>
使用 MarkDown & DocFX 升级 Rafy 帮助文档
查看>>
THUPC2019/CTS2019/APIO2019游记
查看>>
Nodejs Express模块server.address().address为::
查看>>
4.3.5 Sticks (POJ1011)
查看>>
POJ 2960 S-Nim 博弈论 sg函数
查看>>
Dijkstra模版
查看>>
一个简单的插件式后台任务管理程序
查看>>
GDB调试多进程程序
查看>>
组合数
查看>>
CMD批处理延时启动的几个方法
查看>>
转:LoadRunner中web_custom_request 和 web_submit_data的差别
查看>>
HTC G7直刷MIUI开启A2SD+亲测教程
查看>>
shiro的rememberMe不生效
查看>>
const 不兼容的类型限定符问题
查看>>
OpenCV的配置
查看>>
spring Cache + Redis 开发数据字典以及自定义标签
查看>>