[code.view]

[top] / python / PyMOTW / ConfigParser / ConfigParser_has_option.py

     #!/usr/bin/env python
     # encoding: utf-8
     #
     # Copyright (c) 2010 Doug Hellmann.  All rights reserved.
     #
     """Reading a configuration file.
     """
     #end_pymotw_header
     
     from ConfigParser import SafeConfigParser
     
     parser = SafeConfigParser()
     parser.read('multisection.ini')
     
     for section in [ 'wiki', 'none' ]:
         print '%s section exists: %s' % (section, parser.has_section(section))
         for candidate in [ 'username', 'password', 'url', 'description' ]:
             print '%s.%-12s  : %s' % (section, candidate, parser.has_option(section, candidate))
         print
     
     

[top] / python / PyMOTW / ConfigParser / ConfigParser_has_option.py

contact | logmethods.com