| 
									
										
										
										
											1999-01-26 15:47:59 +00:00
										 |  |  | \section{\module{ConfigParser} --- | 
					
						
							| 
									
										
										
										
											1999-04-21 16:41:40 +00:00
										 |  |  |          Configuration file parser} | 
					
						
							| 
									
										
										
										
											1999-01-26 15:47:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | \declaremodule{standard}{ConfigParser} | 
					
						
							|  |  |  | \modulesynopsis{Configuration file parser.} | 
					
						
							| 
									
										
										
										
											2000-04-03 20:13:55 +00:00
										 |  |  | \moduleauthor{Ken Manheimer}{klm@digicool.com} | 
					
						
							|  |  |  | \moduleauthor{Barry Warsaw}{bwarsaw@python.org} | 
					
						
							| 
									
										
										
										
											2000-07-10 18:11:00 +00:00
										 |  |  | \moduleauthor{Eric S. Raymond}{esr@thyrsus.com} | 
					
						
							| 
									
										
										
										
											1999-01-26 15:47:59 +00:00
										 |  |  | \sectionauthor{Christopher G. Petrilli}{petrilli@amber.org} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-15 17:30:59 +00:00
										 |  |  | This module defines the class \class{ConfigParser}. | 
					
						
							|  |  |  | \indexii{.ini}{file}\indexii{configuration}{file}\index{ini file} | 
					
						
							|  |  |  | \index{Windows ini file} | 
					
						
							|  |  |  | The \class{ConfigParser} class implements a basic configuration file | 
					
						
							| 
									
										
										
										
											1999-01-26 15:47:59 +00:00
										 |  |  | parser language which provides a structure similar to what you would | 
					
						
							| 
									
										
										
										
											2002-12-30 23:50:19 +00:00
										 |  |  | find on Microsoft Windows INI files.  You can use this to write Python | 
					
						
							| 
									
										
										
										
											1999-01-26 15:47:59 +00:00
										 |  |  | programs which can be customized by end users easily. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 23:50:19 +00:00
										 |  |  | \begin{notice}[warning] | 
					
						
							|  |  |  |   This library does \emph{not} interpret or write the value-type | 
					
						
							|  |  |  |   prefixes used in the Windows Registry extended version of INI syntax. | 
					
						
							|  |  |  | \end{notice} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-27 20:05:36 +00:00
										 |  |  | The configuration file consists of sections, led by a | 
					
						
							| 
									
										
										
										
											1999-01-26 15:47:59 +00:00
										 |  |  | \samp{[section]} header and followed by \samp{name: value} entries, | 
					
						
							| 
									
										
										
										
											1999-06-15 17:30:59 +00:00
										 |  |  | with continuations in the style of \rfc{822}; \samp{name=value} is | 
					
						
							| 
									
										
										
										
											2000-04-03 20:13:55 +00:00
										 |  |  | also accepted.  Note that leading whitespace is removed from values. | 
					
						
							|  |  |  | The optional values can contain format strings which refer to other | 
					
						
							|  |  |  | values in the same section, or values in a special | 
					
						
							| 
									
										
										
										
											2002-10-25 20:20:58 +00:00
										 |  |  | \code{DEFAULT} section.  Additional defaults can be provided on | 
					
						
							| 
									
										
										
										
											2000-04-03 20:13:55 +00:00
										 |  |  | initialization and retrieval.  Lines beginning with \character{\#} or | 
					
						
							|  |  |  | \character{;} are ignored and may be used to provide comments. | 
					
						
							| 
									
										
										
										
											1999-01-26 15:47:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | For example: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{verbatim} | 
					
						
							| 
									
										
										
										
											2002-10-25 20:20:58 +00:00
										 |  |  | [My Section] | 
					
						
							| 
									
										
										
										
											1999-01-26 15:47:59 +00:00
										 |  |  | foodir: %(dir)s/whatever
 | 
					
						
							| 
									
										
										
										
											2000-04-03 20:13:55 +00:00
										 |  |  | dir=frob | 
					
						
							| 
									
										
										
										
											1999-01-26 15:47:59 +00:00
										 |  |  | \end{verbatim} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-04-03 20:13:55 +00:00
										 |  |  | would resolve the \samp{\%(dir)s} to the value of | 
					
						
							|  |  |  | \samp{dir} (\samp{frob} in this case).  All reference expansions are | 
					
						
							|  |  |  | done on demand. | 
					
						
							| 
									
										
										
										
											1999-01-26 15:47:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-04-03 20:13:55 +00:00
										 |  |  | Default values can be specified by passing them into the | 
					
						
							|  |  |  | \class{ConfigParser} constructor as a dictionary.  Additional defaults  | 
					
						
							|  |  |  | may be passed into the \method{get()} method which will override all | 
					
						
							| 
									
										
										
										
											1999-01-26 21:49:05 +00:00
										 |  |  | others. | 
					
						
							| 
									
										
										
										
											1999-01-26 15:47:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-25 20:20:58 +00:00
										 |  |  | \begin{classdesc}{RawConfigParser}{\optional{defaults}} | 
					
						
							|  |  |  | The basic configuration object.  When \var{defaults} is given, it is | 
					
						
							|  |  |  | initialized into the dictionary of intrinsic defaults.  This class | 
					
						
							|  |  |  | does not support the magical interpolation behavior. | 
					
						
							|  |  |  | \versionadded{2.3} | 
					
						
							|  |  |  | \end{classdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-26 15:47:59 +00:00
										 |  |  | \begin{classdesc}{ConfigParser}{\optional{defaults}} | 
					
						
							| 
									
										
										
										
											2002-10-25 20:20:58 +00:00
										 |  |  | Derived class of \class{RawConfigParser} that implements the magical | 
					
						
							| 
									
										
										
										
											2003-12-15 14:38:57 +00:00
										 |  |  | interpolation feature and adds optional arguments to the \method{get()} | 
					
						
							| 
									
										
										
										
											2002-10-25 20:20:58 +00:00
										 |  |  | and \method{items()} methods.  The values in \var{defaults} must be | 
					
						
							| 
									
										
										
										
											1999-01-26 15:47:59 +00:00
										 |  |  | appropriate for the \samp{\%()s} string interpolation.  Note that | 
					
						
							| 
									
										
										
										
											2000-09-27 22:48:44 +00:00
										 |  |  | \var{__name__} is an intrinsic default; its value is the section name, | 
					
						
							|  |  |  | and will override any value provided in \var{defaults}. | 
					
						
							| 
									
										
										
										
											1999-01-26 15:47:59 +00:00
										 |  |  | \end{classdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-25 21:52:00 +00:00
										 |  |  | \begin{classdesc}{SafeConfigParser}{\optional{defaults}} | 
					
						
							|  |  |  | Derived class of \class{ConfigParser} that implements a more-sane | 
					
						
							|  |  |  | variant of the magical interpolation feature.  This implementation is | 
					
						
							|  |  |  | more predictable as well. | 
					
						
							|  |  |  | % XXX Need to explain what's safer/more predictable about it.
 | 
					
						
							|  |  |  | New applications should prefer this version if they don't need to be | 
					
						
							|  |  |  | compatible with older versions of Python. | 
					
						
							|  |  |  | \versionadded{2.3} | 
					
						
							|  |  |  | \end{classdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-26 15:47:59 +00:00
										 |  |  | \begin{excdesc}{NoSectionError} | 
					
						
							|  |  |  | Exception raised when a specified section is not found. | 
					
						
							|  |  |  | \end{excdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{excdesc}{DuplicateSectionError} | 
					
						
							| 
									
										
										
										
											2000-07-16 19:01:10 +00:00
										 |  |  | Exception raised when multiple sections with the same name are found, | 
					
						
							| 
									
										
										
										
											2000-04-03 20:13:55 +00:00
										 |  |  | or if \method{add_section()} is called with the name of a section that  | 
					
						
							|  |  |  | is already present. | 
					
						
							| 
									
										
										
										
											1999-01-26 15:47:59 +00:00
										 |  |  | \end{excdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{excdesc}{NoOptionError} | 
					
						
							|  |  |  | Exception raised when a specified option is not found in the specified  | 
					
						
							|  |  |  | section. | 
					
						
							|  |  |  | \end{excdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{excdesc}{InterpolationError} | 
					
						
							| 
									
										
										
										
											2002-12-31 17:23:27 +00:00
										 |  |  | Base class for exceptions raised when problems occur performing string | 
					
						
							|  |  |  | interpolation. | 
					
						
							| 
									
										
										
										
											1999-01-26 15:47:59 +00:00
										 |  |  | \end{excdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-27 22:48:44 +00:00
										 |  |  | \begin{excdesc}{InterpolationDepthError} | 
					
						
							|  |  |  | Exception raised when string interpolation cannot be completed because | 
					
						
							|  |  |  | the number of iterations exceeds \constant{MAX_INTERPOLATION_DEPTH}. | 
					
						
							| 
									
										
										
										
											2002-12-31 17:23:27 +00:00
										 |  |  | Subclass of \exception{InterpolationError}. | 
					
						
							|  |  |  | \end{excdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{excdesc}{InterpolationMissingOptionError} | 
					
						
							|  |  |  | Exception raised when an option referenced from a value does not exist. | 
					
						
							|  |  |  | Subclass of \exception{InterpolationError}. | 
					
						
							|  |  |  | \versionadded{2.3} | 
					
						
							| 
									
										
										
										
											2000-09-27 22:48:44 +00:00
										 |  |  | \end{excdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 23:50:19 +00:00
										 |  |  | \begin{excdesc}{InterpolationSyntaxError} | 
					
						
							|  |  |  | Exception raised when the source text into which substitutions are | 
					
						
							|  |  |  | made does not conform to the required syntax. | 
					
						
							| 
									
										
										
										
											2002-12-31 17:23:27 +00:00
										 |  |  | Subclass of \exception{InterpolationError}. | 
					
						
							| 
									
										
										
										
											2002-12-31 12:23:10 +00:00
										 |  |  | \versionadded{2.3} | 
					
						
							| 
									
										
										
										
											2002-12-30 23:50:19 +00:00
										 |  |  | \end{excdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-26 15:47:59 +00:00
										 |  |  | \begin{excdesc}{MissingSectionHeaderError} | 
					
						
							|  |  |  | Exception raised when attempting to parse a file which has no section | 
					
						
							|  |  |  | headers. | 
					
						
							|  |  |  | \end{excdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{excdesc}{ParsingError} | 
					
						
							|  |  |  | Exception raised when errors occur attempting to parse a file. | 
					
						
							|  |  |  | \end{excdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-27 22:48:44 +00:00
										 |  |  | \begin{datadesc}{MAX_INTERPOLATION_DEPTH} | 
					
						
							|  |  |  | The maximum depth for recursive interpolation for \method{get()} when | 
					
						
							| 
									
										
										
										
											2002-10-25 20:20:58 +00:00
										 |  |  | the \var{raw} parameter is false.  This is relevant only for the | 
					
						
							|  |  |  | \class{ConfigParser} class. | 
					
						
							| 
									
										
										
										
											2000-09-27 22:48:44 +00:00
										 |  |  | \end{datadesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-26 21:49:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-05-11 15:14:15 +00:00
										 |  |  | \begin{seealso} | 
					
						
							|  |  |  |   \seemodule{shlex}{Support for a creating \UNIX{} shell-like | 
					
						
							| 
									
										
										
										
											2002-12-31 17:23:27 +00:00
										 |  |  |                     mini-languages which can be used as an alternate | 
					
						
							|  |  |  |                     format for application configuration files.} | 
					
						
							| 
									
										
										
										
											1999-05-11 15:14:15 +00:00
										 |  |  | \end{seealso} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-19 22:37:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-25 20:20:58 +00:00
										 |  |  | \subsection{RawConfigParser Objects \label{RawConfigParser-objects}} | 
					
						
							| 
									
										
										
										
											1999-01-26 15:47:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-25 20:20:58 +00:00
										 |  |  | \class{RawConfigParser} instances have the following methods: | 
					
						
							| 
									
										
										
										
											1999-01-26 15:47:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | \begin{methoddesc}{defaults}{} | 
					
						
							| 
									
										
										
										
											2000-05-23 02:28:26 +00:00
										 |  |  | Return a dictionary containing the instance-wide defaults. | 
					
						
							| 
									
										
										
										
											1999-01-26 15:47:59 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{methoddesc}{sections}{} | 
					
						
							| 
									
										
										
										
											2000-04-03 20:13:55 +00:00
										 |  |  | Return a list of the sections available; \code{DEFAULT} is not | 
					
						
							|  |  |  | included in the list. | 
					
						
							|  |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{methoddesc}{add_section}{section} | 
					
						
							|  |  |  | Add a section named \var{section} to the instance.  If a section by | 
					
						
							|  |  |  | the given name already exists, \exception{DuplicateSectionError} is | 
					
						
							|  |  |  | raised. | 
					
						
							| 
									
										
										
										
											1999-01-26 15:47:59 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{methoddesc}{has_section}{section} | 
					
						
							|  |  |  | Indicates whether the named section is present in the | 
					
						
							|  |  |  | configuration. The \code{DEFAULT} section is not acknowledged. | 
					
						
							|  |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{methoddesc}{options}{section} | 
					
						
							|  |  |  | Returns a list of options available in the specified \var{section}. | 
					
						
							|  |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-10 18:11:00 +00:00
										 |  |  | \begin{methoddesc}{has_option}{section, option} | 
					
						
							|  |  |  | If the given section exists, and contains the given option. return 1; | 
					
						
							| 
									
										
										
										
											2001-09-28 16:57:16 +00:00
										 |  |  | otherwise return 0. | 
					
						
							|  |  |  | \versionadded{1.6} | 
					
						
							| 
									
										
										
										
											2000-07-10 18:11:00 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-26 15:47:59 +00:00
										 |  |  | \begin{methoddesc}{read}{filenames} | 
					
						
							| 
									
										
										
										
											2000-05-09 15:06:32 +00:00
										 |  |  | Read and parse a list of filenames.  If \var{filenames} is a string or | 
					
						
							|  |  |  | Unicode string, it is treated as a single filename. | 
					
						
							| 
									
										
										
										
											2001-12-07 21:35:57 +00:00
										 |  |  | If a file named in \var{filenames} cannot be opened, that file will be | 
					
						
							|  |  |  | ignored.  This is designed so that you can specify a list of potential | 
					
						
							|  |  |  | configuration file locations (for example, the current directory, the | 
					
						
							|  |  |  | user's home directory, and some system-wide directory), and all | 
					
						
							|  |  |  | existing configuration files in the list will be read.  If none of the | 
					
						
							|  |  |  | named files exist, the \class{ConfigParser} instance will contain an | 
					
						
							|  |  |  | empty dataset.  An application which requires initial values to be | 
					
						
							|  |  |  | loaded from a file should load the required file or files using | 
					
						
							|  |  |  | \method{readfp()} before calling \method{read()} for any optional | 
					
						
							|  |  |  | files: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{verbatim} | 
					
						
							|  |  |  | import ConfigParser, os | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | config = ConfigParser.ConfigParser() | 
					
						
							|  |  |  | config.readfp(open('defaults.cfg')) | 
					
						
							|  |  |  | config.read(['site.cfg', os.path.expanduser('~/.myapp.cfg')]) | 
					
						
							|  |  |  | \end{verbatim} | 
					
						
							| 
									
										
										
										
											2000-05-09 15:06:32 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{methoddesc}{readfp}{fp\optional{, filename}} | 
					
						
							|  |  |  | Read and parse configuration data from the file or file-like object in | 
					
						
							|  |  |  | \var{fp} (only the \method{readline()} method is used).  If | 
					
						
							|  |  |  | \var{filename} is omitted and \var{fp} has a \member{name} attribute, | 
					
						
							|  |  |  | that is used for \var{filename}; the default is \samp{<???>}. | 
					
						
							| 
									
										
										
										
											1999-01-26 15:47:59 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-25 20:20:58 +00:00
										 |  |  | \begin{methoddesc}{get}{section, option} | 
					
						
							|  |  |  | Get an \var{option} value for the named \var{section}. | 
					
						
							| 
									
										
										
										
											1999-01-26 15:47:59 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{methoddesc}{getint}{section, option} | 
					
						
							|  |  |  | A convenience method which coerces the \var{option} in the specified | 
					
						
							|  |  |  | \var{section} to an integer. | 
					
						
							|  |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{methoddesc}{getfloat}{section, option} | 
					
						
							|  |  |  | A convenience method which coerces the \var{option} in the specified | 
					
						
							|  |  |  | \var{section} to a floating point number. | 
					
						
							|  |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{methoddesc}{getboolean}{section, option} | 
					
						
							|  |  |  | A convenience method which coerces the \var{option} in the specified | 
					
						
							| 
									
										
										
										
											2001-10-08 16:03:20 +00:00
										 |  |  | \var{section} to a Boolean value.  Note that the accepted values | 
					
						
							| 
									
										
										
										
											2003-08-14 19:58:35 +00:00
										 |  |  | for the option are \code{"1"}, \code{"yes"}, \code{"true"}, and \code{"on"}, | 
					
						
							|  |  |  | which cause this method to return \code{True}, and \code{"0"}, \code{"no"}, | 
					
						
							|  |  |  | \code{"false"}, and \code{"off"}, which cause it to return \code{False}.  These | 
					
						
							|  |  |  | string values are checked in a case-insensitive manner.  Any other value will | 
					
						
							| 
									
										
										
										
											2001-10-09 14:58:24 +00:00
										 |  |  | cause it to raise \exception{ValueError}. | 
					
						
							| 
									
										
										
										
											1999-01-26 15:47:59 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2000-07-10 18:11:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-25 20:20:58 +00:00
										 |  |  | \begin{methoddesc}{items}{section} | 
					
						
							|  |  |  | Return a list of \code{(\var{name}, \var{value})} pairs for each | 
					
						
							|  |  |  | option in the given \var{section}. | 
					
						
							| 
									
										
										
										
											2002-09-27 15:49:56 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-10 18:11:00 +00:00
										 |  |  | \begin{methoddesc}{set}{section, option, value} | 
					
						
							|  |  |  | If the given section exists, set the given option to the specified value; | 
					
						
							| 
									
										
										
										
											2001-09-28 16:57:16 +00:00
										 |  |  | otherwise raise \exception{NoSectionError}. | 
					
						
							|  |  |  | \versionadded{1.6} | 
					
						
							| 
									
										
										
										
											2000-07-10 18:11:00 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-14 15:00:02 +00:00
										 |  |  | \begin{methoddesc}{write}{fileobject} | 
					
						
							| 
									
										
										
										
											2000-07-10 18:11:00 +00:00
										 |  |  | Write a representation of the configuration to the specified file | 
					
						
							|  |  |  | object.  This representation can be parsed by a future \method{read()} | 
					
						
							| 
									
										
										
										
											2001-09-28 16:57:16 +00:00
										 |  |  | call. | 
					
						
							|  |  |  | \versionadded{1.6} | 
					
						
							| 
									
										
										
										
											2000-07-10 18:11:00 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2000-07-14 15:00:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | \begin{methoddesc}{remove_option}{section, option} | 
					
						
							|  |  |  | Remove the specified \var{option} from the specified \var{section}. | 
					
						
							|  |  |  | If the section does not exist, raise \exception{NoSectionError}.  | 
					
						
							|  |  |  | If the option existed to be removed, return 1; otherwise return 0. | 
					
						
							| 
									
										
										
										
											2001-09-28 16:57:16 +00:00
										 |  |  | \versionadded{1.6} | 
					
						
							| 
									
										
										
										
											2000-07-14 15:00:02 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{methoddesc}{remove_section}{section} | 
					
						
							|  |  |  | Remove the specified \var{section} from the configuration. | 
					
						
							| 
									
										
										
										
											2002-04-05 02:21:09 +00:00
										 |  |  | If the section in fact existed, return \code{True}. | 
					
						
							|  |  |  | Otherwise return \code{False}. | 
					
						
							| 
									
										
										
										
											2000-07-14 15:00:02 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-19 22:37:24 +00:00
										 |  |  | \begin{methoddesc}{optionxform}{option} | 
					
						
							|  |  |  | Transforms the option name \var{option} as found in an input file or | 
					
						
							|  |  |  | as passed in by  client code to the form that should be used in the | 
					
						
							|  |  |  | internal structures.  The default implementation returns a lower-case | 
					
						
							|  |  |  | version of \var{option}; subclasses may override this or client code | 
					
						
							|  |  |  | can set an attribute of this name on instances to affect this | 
					
						
							|  |  |  | behavior.  Setting this to \function{str()}, for example, would make | 
					
						
							|  |  |  | option names case sensitive. | 
					
						
							|  |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-10-25 20:20:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \subsection{ConfigParser Objects \label{ConfigParser-objects}} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The \class{ConfigParser} class extends some methods of the | 
					
						
							|  |  |  | \class{RawConfigParser} interface, adding some optional arguments. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{methoddesc}{get}{section, option\optional{, raw\optional{, vars}}} | 
					
						
							|  |  |  | Get an \var{option} value for the named \var{section}.  All the | 
					
						
							|  |  |  | \character{\%} interpolations are expanded in the return values, based | 
					
						
							|  |  |  | on the defaults passed into the constructor, as well as the options | 
					
						
							|  |  |  | \var{vars} provided, unless the \var{raw} argument is true. | 
					
						
							|  |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{methoddesc}{items}{section\optional{, raw\optional{, vars}}} | 
					
						
							| 
									
										
										
										
											2003-10-21 16:50:55 +00:00
										 |  |  | Return a list of \code{(\var{name}, \var{value})} pairs for each | 
					
						
							|  |  |  | option in the given \var{section}. Optional arguments have the | 
					
						
							|  |  |  | same meaning as for the \method{get()} method. | 
					
						
							| 
									
										
										
										
											2002-10-25 20:20:58 +00:00
										 |  |  | \versionadded{2.3} | 
					
						
							|  |  |  | \end{methoddesc} |