zoukankan      html  css  js  c++  java
  • configparser 文件的生成和读写

    # configparser 生成

    import configparser 

    config = configparser.ConfigParser()

    config[DEFUALT] = {'ServerAliveInterval':45,

                                   'Compreassion':'yes',
                                  'CompreassionLevel':'9'}

    config['bitbucket.rog'] = {}

    config['bitbucket.rog']['user'] = 'hg'

    config['topsecret.server.com'] = {}
    config['topsecret.server.com']['host Port'] = 52222
    config['topsecret.server.com']['ForwardXll'] = 'no'
    config['DEFAULT']['ForwardXll'] = 'yes'

    with open('example.ini') as configfile:

          config.write(configfile)

    #configparser 读取

    import configparser 

    config = configparser.ConfigParser()

    config.read('example.ini') #读入文件

    config.sections()

    config.defaults()

    config['bitbucket.org']['User']

    sec = config.remove_section('bitbucket.org)  #移除模块

    config.write(open('i.fig','w'))  #载入

  • 相关阅读:
    什么是封装?
    table
    POM文件
    Maven环境的搭建
    什么是maven
    J2EE的三层经典结构
    DOM对象和jQuery对象对比
    jQuery常用选择器分类
    什么是JQuery?它的特点是什么?
    jQuery准备函数语法
  • 原文地址:https://www.cnblogs.com/my-love-is-python/p/9077568.html
Copyright © 2011-2022 走看看