与python3一起使用时ConfigParser库不起作用

时间:2018-10-20 00:38:33

标签: python configparser

我正在使用和导入ConfigParaser

import ConfigParser
config = ConfigParser.RawConfigParser()
config.read('Config.properties')
timeout_val=config.get('Section', 'commandtimeout') 

并使用

进行安装
pip install ConfigParser

运行python脚本时出现以下提及错误。

Traceback (most recent call last):
  File "system_offline.py", line 41, in <module>
    import ConfigParser
ImportError: No module named 'ConfigParser'

现在,我的问题是,如果在同一系统上使用python 2.7运行同一程序,则上述import语句可以正常工作。

想知道该程序与python3一起运行需要做些什么?

编辑:在使用python 2.7时,它可以工作,但是在python3中,我遇到了上面提到的错误。

2 个答案:

答案 0 :(得分:1)

ConfigParser模块在​​Python 3.0中是renamed to configparser

答案 1 :(得分:0)

如果您使用的是python 3,则可以使用,模块已重命名

导入配置解析器 config = configparser.RawConfigParser()