亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

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

Python configparser模塊操作代碼實例

瀏覽:92日期: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在线播放 | 日韩综合久久 | 亚洲三级毛片 | 欧美三级一区二区三区 | 国内国语一级毛片在线视频 | 一区二区三区四区无限乱码 | 日韩高清在线二区 | 免费大片在线观看高清 | 久久精品九九 | 欧美一级毛片日韩一级 | 日本黄色免费大片 | 99久久免费午夜国产精品 | 久久国产精品2020盗摄 | 一级片黄色a| 国产一久久香蕉国产线看观看 | 91视频免费观看网站 | 国产伦理播放一区二区 | 国产亚洲区 | 免费在线观看高清影片 | 婷婷丁香五| 成人性欧美丨区二区三区 | 国产高清免费在线观看 | 欧美一级毛片黄 | 一区免费| 欧美成人久久 | 久久精品视频1 | 性做爰片视频毛片 | 欧美综合社区 | 国产精品1区2区 | 国产亚洲精品福利片 | 日本大片成人免费网址 | 精品专区 | 亚洲国产美女在线观看 | 国产亚洲一区二区麻豆 | 特级黄毛片 | 日韩手机在线视频 | 麻豆传媒2021精品传媒一区 | 久久er精品 | 精品视频一区二区观看 | 国产chinesehdxxxx大胸 | 婷婷综合缴情亚洲狠狠图片 |