典型的ConfigParser生成的文件如下所示:
[Section] bar=foo [Section 2] bar2= baz
现在,有没有办法索引列表,例如:
[Section 3] barList={ item1, item2 }
相关问题:每个部分Python的ConfigParser唯一键
也有点晚了,但也许有些帮助.我正在使用ConfigParser和JSON的组合:
[Foo] fibs: [1,1,2,3,5,8,13]
只需阅读:
>>> json.loads(config.get("Foo","fibs")) [1, 1, 2, 3, 5, 8, 13]
如果列表很长,你甚至可以打破行(感谢@ peter-smit):
[Bar] files_to_check = [ "/path/to/file1", "/path/to/file2", "/path/to/another file with space in the name" ]
当然我可以使用JSON,但我发现配置文件更具可读性,[DEFAULT]部分非常方便.
没有什么能阻止您将列表打包成分隔的字符串,然后在从配置中获取字符串后将其解压缩.如果您这样做,您的配置部分将如下所示:
[Section 3] barList=item1,item2
它并不漂亮,但它适用于大多数简单列表.
迟到了这个派对,但我最近在配置文件中使用专用部分实现了这个列表:
[paths] path1 = /some/path/ path2 = /another/path/ ...
并使用config.items( "paths" )
获取可迭代的路径项列表,如下所示:
path_items = config.items( "paths" ) for key, path in path_items: #do something with path
希望这有助于其他民间谷歌搜索这个问题;)
许多人不知道的一件事是允许多行配置值.例如:
;test.ini [hello] barlist = item1 item2
现在的价值config.get('hello','barlist')
是:
"\nitem1\nitem2"
您可以使用splitlines方法轻松拆分(不要忘记过滤空项).
如果我们看一下像Pyramid这样的大框架他们正在使用这种技术:
def aslist_cronly(value): if isinstance(value, string_types): value = filter(None, [x.strip() for x in value.splitlines()]) return list(value) def aslist(value, flatten=True): """ Return a list of strings, separating the input based on newlines and, if flatten=True (the default), also split on spaces within each line.""" values = aslist_cronly(value) if not flatten: return values result = [] for value in values: subvalues = value.split() result.extend(subvalues) return result
资源
我自己,如果这对你来说很常见,我可能会扩展ConfigParser:
class MyConfigParser(ConfigParser): def getlist(self,section,option): value = self.get(section,option) return list(filter(None, (x.strip() for x in value.splitlines()))) def getlistint(self,section,option): return [int(x) for x in self.getlist(section,option)]
请注意,使用此技术时需要注意一些事项
作为项目的新行应以空格开头(例如空格或制表符)
以空格开头的所有后续行都被视为前一项的一部分.如果它有一个=符号或者它以a开头; 跟随空白.
如果你想直接传入一个列表,那么你可以使用:
ast.literal_eval()
例如配置:
[section] option=["item1","item2","item3"]
代码是:
import ConfigParser import ast my_list = ast.literal_eval(config.get("section", "option")) print(type(my_list)) print(my_list)
输出:
["item1","item2","item3"]
我来这里寻求消费......
[global] spys = richard.sorge@cccp.gov, mata.hari@deutschland.gov
答案是将其拆分为逗号并删除空格:
SPYS = [e.strip() for e in parser.get('global', 'spys').split(',')]
要获得列表结果:
['richard.sorge@cccp.gov', 'mata.hari@deutschland.gov']
它可能无法准确回答OP的问题,但可能是一些人正在寻找的简单答案.
在任何这些答案中都没有提到converters
kwargConfigParser()
是相当令人失望的.
根据文档,您可以传递字典,ConfigParser
这将为get
解析器和节代理添加一个方法.所以对于一个列表:
example.ini
[Germ] germs: a,list,of,names, and,1,2, 3,numbers
解析器示例:
cp = ConfigParser(converters={'list': lambda x: [i.strip() for i in x.split(',')]}) cp.read('example.ini') cp.getlist('Germ', 'germs') ['a', 'list', 'of', 'names', 'and', '1', '2', '3', 'numbers'] cp['Germ'].getlist('germs') ['a', 'list', 'of', 'names', 'and', '1', '2', '3', 'numbers']
这是我个人的最爱,因为不需要子类化,我不必依赖最终用户来完美地编写JSON或可以解释的列表ast.literal_eval
.
这是我用于列表的内容:
配置文件内容:
[sect] alist = a b c
代码:
l = config.get('sect', 'alist').split('\n')
它适用于字符串
如果是数字
配置内容:
nlist = 1 2 3
码:
nl = config.get('sect', 'alist').split('\n') l = [int(nl) for x in nl]
谢谢.