色综合图-色综合图片-色综合图片二区150p-色综合图区-玖玖国产精品视频-玖玖香蕉视频

您的位置:首頁技術文章
文章詳情頁

Python configparser模塊操作代碼實例

瀏覽:89日期:2022-07-22 09:04:50

1、生成配置文件

’’’ 生成配置文件’’’import configparserconfig = configparser.ConfigParser()# 初始化賦值config['DEFAULT'] = {’ServerAliveInterval’: ’45’, ’Compression’: ’yes’, ’CompressionLevel’: ’9’}# 追加config[’DEFAULT’][’ForwardX11’] = ’yes’config[’bitbucket.org’] = {}config[’bitbucket.org’][’User’] = ’hg’config[’topsecret.server.com’] = {}topsecret = config[’topsecret.server.com’]topsecret[’Host Port’] = ’50022’ # mutates the parsertopsecret[’ForwardX11’] = ’no’ # same herewith open(’example.ini’, ’w’) as configfile: config.write(configfile)

2、讀取配置文件

# 讀import configparserconfig = configparser.ConfigParser()config.sections()config.read(’example.ini’)# {’serveraliveinterval’: ’45’, ’compression’: ’yes’, ’compressionlevel’: ’9’, ’forwardx11’: ’yes’}print(config.defaults())# hgprint(config[’bitbucket.org’]['User'])# 50022print(config['topsecret.server.com']['host port'])

3、刪除

# 刪除(創建一個新文件,并刪除 bitbucket.org)import configparserconfig = configparser.ConfigParser()config.sections()config.read(’example.ini’)rec = config.remove_section('bitbucket.org') # 刪除該項config.write(open('example.cfg','w'))

生成新文件 example.cfg

DEFAULT]serveraliveinterval = 45compression = yescompressionlevel = 9forwardx11 = yestopsecret.server.com]host port = 50022forwardx11 = no

刪除,并覆蓋原文件

# 刪除(刪除 bitbucket.org)import configparserconfig = configparser.ConfigParser()config.sections()config.read(’example.ini’)rec = config.remove_section('bitbucket.org') # 刪除該項config.write(open('example.ini','w'))

4、修改

import configparserconfig = configparser.ConfigParser()config.read(’example.ini’) #讀文件config.add_section(’yuan’) #添加sectionconfig.remove_section(’bitbucket.org’) #刪除sectionconfig.remove_option(’topsecret.server.com’,'forwardx11') #刪除一個配置項config.set(’topsecret.server.com’,’k1’,’11111’)config.set(’yuan’,’k2’,’22222’)with open(’new2.ini’,’w’) as f: config.write(f)

生成新文件 new2.ini

[DEFAULT]serveraliveinterval = 45compression = yescompressionlevel = 9forwardx11 = yes[topsecret.server.com]host port = 50022k1 = 11111[yuan]k2 = 22222

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網。

標簽: Python 編程
相關文章:
主站蜘蛛池模板: 99久久99这里只有免费费精品 | 久久综合久久美利坚合众国 | 男人天堂网在线视频 | 欧美老妇免费做爰视频 | 成人www | 欧美日韩综合高清一区二区 | 国产成人精品福利网站在线 | 亚洲a网| 国内交换一区二区三区 | 香蕉成人国产精品免费看网站 | 狠狠色噜噜狠狠狠米奇9999 | 国产一级一级一级成人毛片 | 精品欧美日韩一区二区三区 | 美国一级毛片免费看成人 | 成人午夜亚洲影视在线观看 | 亚洲国产日韩a在线亚洲 | 国产精品一区久久精品 | 大片刺激免费播放视频 | 手机看片福利永久 | 午夜影院免费体验 | 欧美一级黄视频 | 国产精品一区高清在线观看 | 嫩草一区二区三区四区乱码 | 久久综合88| 成人三级网址 | 亚洲国产天堂久久精品网 | freesex日本高清nice| 欧美xxxx成人免费网站 | 在线看片不卡 | 国产私拍福利精品视频推出 | 在线免费观看亚洲视频 | 一区二区视频在线 | 91色老99久久九九爱精品 | 日本韩国中文字幕 | 国产精品热久久毛片 | 成人精品一区二区久久久 | 美国一级片在线 | 亚洲综合色在线观看 | 亚洲国产精久久久久久久 | 色一伦一情一区二区三区 | 欧美一级片a |