Python ini 解析器
是否有一个解析器可以读取和存储要写入的数据类型? 文件格式必须产生可读的。 搁置不提供。
Is there a parser which reads and stores the types of data to write?
File format must to produce a readable.
Shelve does not offer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 ConfigParser 类读取 ini 文件格式的配置文件:
http://docs.python.org/library/configparser.html#examples
ini 文件格式不存储所存储值的数据类型(您在读回数据时需要知道它们)。您可以通过以 json 格式对值进行编码来克服此限制:
作为 json,存储值的格式是人类可读的。
Use the
ConfigParser
class to read configuration files in the ini file format:http://docs.python.org/library/configparser.html#examples
The ini file format does not store the datatype of the values stored (you need to know them as you read the data back). You could overcome this limitation by encoding your values in json format:
Being json, the format of the stored value is human readable.
您可以使用以下功能
You could use the following function
有了
configobj
库,一切都变得非常简单。现在您可以使用 config 作为字典来提取所需的配置。
如果你想将其转换为
json
,那也很简单。With
configobj
library, it becomes very simple.Now you can use
config
as a dict to extract the desired configuration.If you want to convert it to
json
, that's simple too.