zoukankan      html  css  js  c++  java
  • ConfigParser模块用法

    ConfigParser 是Python自带的模块, 用来读写配置文件, 用法及其简单。 直接上代码,不解释,不多说。

    配置文件的格式是: []包含的叫section,    section 下有option=value这样的键值

    配置文件   test.conf 

    [section1]
    name = tank
    age = 28
    
    [section2]
    ip = 192.168.1.1
    port = 8080

    Python代码(python2.7的写法)

    # -* - coding: UTF-8 -* -  
    import ConfigParser
    
    conf = ConfigParser.ConfigParser()
    conf.read("c:\test.conf")
    
    # 获取指定的section, 指定的option的值
    name = conf.get("section1", "name")
    print(name)
    age = conf.get("section1", "age")
    print age
    
    #获取所有的section
    sections = conf.sections()
    print sections
    
    #写配置文件
    
    # 更新指定section, option的值
    conf.set("section2", "port", "8081")
    
    # 写入指定section, 增加新option的值
    conf.set("section2", "IEPort", "80")
    
    # 添加新的 section
    conf.add_section("new_section")
    conf.set("new_section", "new_option", "http://www.cnblogs.com/tankxiao")
    
    # 写回配置文件
    conf.write(open("c:\test.conf","w"))

     python3的写法稍微有点变动

    import configparser
    
    conf = configparser.ConfigParser()
  • 相关阅读:
    shell的格式化输出命令printf
    shell数组
    shell字符串
    shell注释
    shell运算符
    shell替换
    shell特殊变量
    shell变量
    linux修改主机名
    ssh免密码登录设置
  • 原文地址:https://www.cnblogs.com/yrxns/p/7194025.html
Copyright © 2011-2022 走看看