我创建了一个用于控制MCU板I2C引脚的小型Python GUI。现在我想尝试将此GUI的设置保存到配置文件中,以便根据所使用的MCU更改文件设置。
我不知道如何创建配置文件。我试图查看有关如何创建和使用配置文件的链接(例如ConfigParse
),但无法理解。有人可以帮帮我吗?
我在Windows 7上使用Python 3.4。
答案 0 :(得分:4)
您使用ConfigParser进入了正确的轨道!链接是在使用它编程时应该非常有用的文档。
对你而言,最有用的想法可能就是例子,可以找到here。编写配置文件的简单程序可以在下面找到
import configparser
config = configparser.ConfigParser()
config['DEFAULT'] = {'ServerAliveInterval': '45',
'Compression': 'yes',
'CompressionLevel': '9'}
config['bitbucket.org'] = {}
config['bitbucket.org']['User'] = 'hg'
config['topsecret.server.com'] = {}
topsecret = config['topsecret.server.com']
topsecret['Port'] = '50022' # mutates the parser
topsecret['ForwardX11'] = 'no' # same here
config['DEFAULT']['ForwardX11'] = 'yes'
with open('example.ini', 'w') as configfile:
config.write(configfile)
该程序会将一些信息写入文件" example.ini"。一个程序来读这个:
import configparser
config = configparser.ConfigParser()
config.read('example.ini')
print(config.sections()) #Prints ['bitbucket.org', 'topsecret.server.com']
然后你可以像使用任何其他词典一样简单地使用它。访问以下值:
config['DEFAULT']['Compression'] #Prints 'yes'
归功于python docs。