国产成人精品久久免费动漫-国产成人精品天堂-国产成人精品区在线观看-国产成人精品日本-a级毛片无码免费真人-a级毛片毛片免费观看久潮喷

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

Python configparser模塊操作代碼實例

瀏覽:73日期: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 編程
相關文章:
主站蜘蛛池模板: 亚洲悠悠色综合中文字幕 | 亚洲精品国产福利 | 免费永久观看美女视频网站网址 | 日本a级毛片免费视频播放 日本a级三级三级三级久久 | 日本又黄又爽又免费 | 久久中文字幕免费视频 | 八戒午夜精品视频在线观看 | 亚洲wu码| 国内国语一级毛片在线视频 | 久久精品福利视频 | 色视频一区二区三区 | 九色porny真实丨国产18 | 国产免费一区二区三区在线观看 | 久久99一区| se94se最新网站 | 日日撸夜夜操 | 热e国产| 国产成人精品999在线观看 | 久草高清视频 | 精品一区二区三区在线播放 | 日本一级毛片免费 | 免费三级网站 | 在线播放成人高清免费视频 | 国产成人免费影片在线观看 | 欧美一级看片a免费观看 | 国产成人精品免费 | 国内外成人免费视频 | 91极品尤物 | 国产成人精品一区二区三在线观看 | 黄色在线视频网 | 国产精亚洲视频 | 手机看片1024久久精品你懂的 | 日韩免费一级 | 久久在线国产 | 国产成a人亚洲精v品久久网 | 91香蕉国产亚洲一区二区三区 | 亚洲综合干| 久久se精品一区精品二区 | 国产精品高清在线观看地址 | 欧美亚洲在线 | 亚洲精品国产拍拍拍拍拍 |