• 13.10 读取配置文件
    • 问题
    • 解决方案
    • 讨论

    13.10 读取配置文件

    问题

    怎样读取普通.ini格式的配置文件?

    解决方案

    configparser 模块能被用来读取配置文件。例如,假设你有如下的配置文件:

    1. ; config.ini
    2. ; Sample configuration file
    3.  
    4. [installation]
    5. library=%(prefix)s/lib
    6. include=%(prefix)s/include
    7. bin=%(prefix)s/bin
    8. prefix=/usr/local
    9.  
    10. # Setting related to debug configuration
    11. [debug]
    12. log_errors=true
    13. show_warnings=False
    14.  
    15. [server]
    16. port: 8080
    17. nworkers: 32
    18. pid-file=/tmp/spam.pid
    19. root=/www/root
    20. signature:
    21. =================================
    22. Brought to you by the Python Cookbook
    23. =================================

    下面是一个读取和提取其中值的例子:

    1. >>> from configparser import ConfigParser
    2. >>> cfg = ConfigParser()
    3. >>> cfg.read('config.ini')
    4. ['config.ini']
    5. >>> cfg.sections()
    6. ['installation', 'debug', 'server']
    7. >>> cfg.get('installation','library')
    8. '/usr/local/lib'
    9. >>> cfg.getboolean('debug','log_errors')
    10.  
    11. True
    12. >>> cfg.getint('server','port')
    13. 8080
    14. >>> cfg.getint('server','nworkers')
    15. 32
    16. >>> print(cfg.get('server','signature'))
    17.  
    18. \=================================
    19. Brought to you by the Python Cookbook
    20. \=================================
    21. >>>

    如果有需要,你还能修改配置并使用 cfg.write() 方法将其写回到文件中。例如:

    1. >>> cfg.set('server','port','9000')
    2. >>> cfg.set('debug','log_errors','False')
    3. >>> import sys
    4. >>> cfg.write(sys.stdout)
    1. [installation]
    2. library = %(prefix)s/lib
    3. include = %(prefix)s/include
    4. bin = %(prefix)s/bin
    5. prefix = /usr/local
    6.  
    7. [debug]
    8. log_errors = False
    9. show_warnings = False
    10.  
    11. [server]
    12. port = 9000
    13. nworkers = 32
    14. pid-file = /tmp/spam.pid
    15. root = /www/root
    16. signature =
    17. =================================
    18. Brought to you by the Python Cookbook
    19. =================================
    20. >>>

    讨论

    配置文件作为一种可读性很好的格式,非常适用于存储程序中的配置数据。在每个配置文件中,配置数据会被分组(比如例子中的“installation”、 “debug” 和 “server”)。每个分组在其中指定对应的各个变量值。

    对于可实现同样功能的配置文件和Python源文件是有很大的不同的。首先,配置文件的语法要更自由些,下面的赋值语句是等效的:

    1. prefix=/usr/local
    2. prefix: /usr/local

    配置文件中的名字是不区分大小写的。例如:

    1. >>> cfg.get('installation','PREFIX')
    2. '/usr/local'
    3. >>> cfg.get('installation','prefix')
    4. '/usr/local'
    5. >>>

    在解析值的时候,getboolean() 方法查找任何可行的值。例如下面都是等价的:

    1. log_errors = true
    2. log_errors = TRUE
    3. log_errors = Yes
    4. log_errors = 1

    或许配置文件和Python代码最大的不同在于,它并不是从上而下的顺序执行。文件是安装一个整体被读取的。如果碰到了变量替换,它实际上已经被替换完成了。例如,在下面这个配置中,prefix 变量在使用它的变量之前或之后定义都是可以的:

    1. [installation]
    2. library=%(prefix)s/lib
    3. include=%(prefix)s/include
    4. bin=%(prefix)s/bin
    5. prefix=/usr/local

    ConfigParser 有个容易被忽视的特性是它能一次读取多个配置文件然后合并成一个配置。例如,假设一个用户像下面这样构造了他们的配置文件:

    1. ; ~/.config.ini
    2. [installation]
    3. prefix=/Users/beazley/test
    4.  
    5. [debug]
    6. log_errors=False

    读取这个文件,它就能跟之前的配置合并起来。如:

    1. >>> # Previously read configuration
    2. >>> cfg.get('installation', 'prefix')
    3. '/usr/local'
    4.  
    5. >>> # Merge in user-specific configuration
    6. >>> import os
    7. >>> cfg.read(os.path.expanduser('~/.config.ini'))
    8. ['/Users/beazley/.config.ini']
    9.  
    10. >>> cfg.get('installation', 'prefix')
    11. '/Users/beazley/test'
    12. >>> cfg.get('installation', 'library')
    13. '/Users/beazley/test/lib'
    14. >>> cfg.getboolean('debug', 'log_errors')
    15. False
    16. >>>

    仔细观察下 prefix 变量是怎样覆盖其他相关变量的,比如 library 的设定值。产生这种结果的原因是变量的改写采取的是后发制人策略,以最后一个为准。你可以像下面这样做试验:

    1. >>> cfg.get('installation','library')
    2. '/Users/beazley/test/lib'
    3. >>> cfg.set('installation','prefix','/tmp/dir')
    4. >>> cfg.get('installation','library')
    5. '/tmp/dir/lib'
    6. >>>

    最后还有很重要一点要注意的是Python并不能支持.ini文件在其他程序(比如windows应用程序)中的所有特性。确保你已经参阅了configparser文档中的语法详情以及支持特性。

    原文:

    http://python3-cookbook.readthedocs.io/zh_CN/latest/c13/p10_read_configuration_files.html