Bootstrap

使用python 读取ini配置文件

新建一个env.ini文件:

[apidemo01]
URL=192.168.2.4:9999
[cdd]
password=123456
使用pyhon 读取ini文件中想要获取的内容:

class TestCase:
    def test_01(self):
        # configparser 文件对象
        config = configparser.ConfigParser()
        # 读取那个文件
        config.read("env.ini",encoding="utf-8")
        url = config.get("cdd", "password")
        print(url)

;