Python ini 解析器

发布于 2024-11-16 01:28:34 字数 51 浏览 6 评论 0原文

是否有一个解析器可以读取和存储要写入的数据类型? 文件格式必须产生可读的。 搁置不提供。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

z祗昰~ 2024-11-23 01:28:34

使用 ConfigParser 类读取 ini 文件格式的配置文件:

http://docs.python.org/library/configparser.html#examples

ini 文件格式不存储所存储值的数据类型(您在读回数据时需要知道它们)。您可以通过以 json 格式对值进行编码来克服此限制:

import simplejson
from ConfigParser import ConfigParser

parser = ConfigParser()
parser.read('example.cfg')

value = 123
#or value = True
#or value = 'Test'

#Write any data to 'Section1->Foo' in the file:
parser.set('Section1', 'foo', simplejson.dumps(value))

#Now you can close the parser and start again...

#Retrieve the value from the file:
out_value = simplejson.loads(parser.get('Section1', 'foo'))

#It will match the input in both datatype and value:
value === out_value

作为 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:

import simplejson
from ConfigParser import ConfigParser

parser = ConfigParser()
parser.read('example.cfg')

value = 123
#or value = True
#or value = 'Test'

#Write any data to 'Section1->Foo' in the file:
parser.set('Section1', 'foo', simplejson.dumps(value))

#Now you can close the parser and start again...

#Retrieve the value from the file:
out_value = simplejson.loads(parser.get('Section1', 'foo'))

#It will match the input in both datatype and value:
value === out_value

Being json, the format of the stored value is human readable.

我早已燃尽 2024-11-23 01:28:34

您可以使用以下功能

def getvalue(parser, section, option):
    try:
        return parser.getint(section, option)
    except ValueError:
        pass
    try:
        return parser.getfloat(section, option)
    except ValueError:
        pass
    try:
        return parser.getbool(section, option)
    except ValueError:
        pass
    return parser.get(section, option)

You could use the following function

def getvalue(parser, section, option):
    try:
        return parser.getint(section, option)
    except ValueError:
        pass
    try:
        return parser.getfloat(section, option)
    except ValueError:
        pass
    try:
        return parser.getbool(section, option)
    except ValueError:
        pass
    return parser.get(section, option)
心头的小情儿 2024-11-23 01:28:34

有了configobj库,一切都变得非常简单。

import sys
import json
from configobj import ConfigObj

if(len(sys.argv) < 2):
    print "USAGE: pass ini file as argument"
    sys.exit(-1)

config = sys.argv[1]
config = ConfigObj(config)

现在您可以使用 config 作为字典来提取所需的配置。

如果你想将其转换为json,那也很简单。

config_json = json.dumps(config)
print config_json

With configobj library, it becomes very simple.

import sys
import json
from configobj import ConfigObj

if(len(sys.argv) < 2):
    print "USAGE: pass ini file as argument"
    sys.exit(-1)

config = sys.argv[1]
config = ConfigObj(config)

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.

config_json = json.dumps(config)
print config_json
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文