Python Configparser模块读取、写入配置文件
生活随笔
收集整理的這篇文章主要介紹了
Python Configparser模块读取、写入配置文件
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
寫代碼中需要用到讀取配置,最近在寫python,記錄一下。
如下,假設有這樣的配置。
[db] db_host=127.0.0.1 db_port=3306 db_user=root db_pass= [concurrent] thread=200 processor=400可以使用ConfigParser模塊來讀取、寫入配置。
1 #coding=utf-8 2 import ConfigParser 3 import sys 4 5 cf = ConfigParser.ConfigParser() 6 cf.read(sys.argv[1]) 7 8 # 返回所有的section 9 s = cf.sections() 10 print s #['db', 'concurrent'] 11 12 # 返回db下面所有的options 13 db_options = cf.options("db") 14 print db_options #['db_host', 'db_port', 'db_user', 'db_pass'] 15 16 print cf.get("db", "db_host") #127.0.0.1 17 print cf.getint("db", "db_port") #3306 18 19 # 修改一個值, 并寫回去 20 cf.set("db", "db_host", "losthost") 21 # 添加一個section 22 cf.add_section("new_concurrent") 23 cf.set("new_concurrent", "thread", "500") 24 25 ##刪除一個section 26 cf.remove_section('concurrent') 27 cf.write(open("test_new.conf", "w")) 28 #cf.write(open(sys.argv[1], "w"))完.
轉載于:https://www.cnblogs.com/xudong-bupt/p/7434967.html
總結
以上是生活随笔為你收集整理的Python Configparser模块读取、写入配置文件的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 梦到开飞机是什么意思
- 下一篇: 梦到喉咙出血怎么回事