我试图在python 3.6或python 3.5.1中使用标准库中的configparser模块
我的ini文件看起来像这样:
[common]
domain = http://some_domain_name:8888
about = about/
loginPath = /accounts/login/?next=/home
fileBrowserLink = /filebrowser
partNewDirName = some_dir
[HUE_310]
partNewFilePath = ${common:domain}
我的“主”程序如下所示:
from configparser import ConfigParser
parser = ConfigParser()
parser.read('configfile.ini')
lll = parser.get('HUE_310', 'partNewFilePath')
print(lll)
而是
http://some_domain_name:8888
我得到了${common:domain}
我将Pycharm社区用作我的IDE。我使用virtualenv。
我不知道我的代码有什么问题...
最佳答案
如果要扩展插值,则必须创建configparser.ExtendedInterpolation
类的实例,方法是调用它,然后在创建interpolation=
实例时将其与ConfigParser
关键字参数一起使用,如下所示:
from configparser import ConfigParser, ExtendedInterpolation
parser = ConfigParser(interpolation=ExtendedInterpolation())
parser.read('configfile.ini')
lll = parser.get('HUE_310', 'partNewFilePath')
print(lll) # -> http://some_domain_name:8888
关于python - 扩展插值在configparser中不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42839889/