相关疑难解决方法(0)

如何用Python3读写INI文件?

我需要使用Python3 读取,编写和创建一个INI文件.

FILE.INI

default_path = "/path/name/"
default_file = "file.txt"
Run Code Online (Sandbox Code Playgroud)

Python文件:

#    Read file and and create if it not exists
config = iniFile( 'FILE.INI' )

#    Get "default_path"
config.default_path

#    Print (string)/path/name
print config.default_path

#    Create or Update
config.append( 'default_path', 'var/shared/' )
config.append( 'default_message', 'Hey! help me!!' )
Run Code Online (Sandbox Code Playgroud)

更新的 FILE.INI

default_path    = "var/shared/"
default_file    = "file.txt"
default_message = "Hey! help me!!"
Run Code Online (Sandbox Code Playgroud)

python ini python-3.x

100
推荐指数
6
解决办法
15万
查看次数

ConfigParser读取大写键并将其设为小写

我发现了一个有趣的观察.我写了一个配置文件读取程序,

import ConfigParser
class  ConfReader(object):
    ConfMap = dict()

    def __init__(self):
        self.config = ConfigParser.ConfigParser()
        self.config.read('./Config.ini')
        self.__loadConfigMap()

    def __loadConfigMap(self):
        for sec in self.config.sections():
            for key,value in self.config.items(sec):
                print 'key = ', key, 'Value = ', value
                keyDict = str(sec) + '_' + str(key)
                print 'keyDict = ' + keyDict  
                self.ConfMap[keyDict] = value

    def getValue(self, key):
        value = ''
        try:
            print ' Key = ', key
            value = self.ConfMap[key] 
        except KeyError as KE:
            print 'Key', KE , ' didn\'t found in configuration.'
    return …
Run Code Online (Sandbox Code Playgroud)

python python-2.7

56
推荐指数
1
解决办法
2万
查看次数

标签 统计

python ×2

ini ×1

python-2.7 ×1

python-3.x ×1