configparser配置解析
使用configparser解析ini格式的配置文件
- lib: https://pypi.org/project/configparser/
- doc: https://docs.python.org/3/library/configparser.html
pip install configparser
get的时候,如果key在DEFAULT段中,get设置的deflault无效,总是返回DEFAULT段中的值
ini格式的config文件示例
[DEFAULT]
ServerAliveInterval = 45
Compression = yes
CompressionLevel = 9
ForwardX11 = yes
[bitbucket.org]
User = hg
[topsecret.server.com]
Port = 50022
ForwardX11 = no
本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!