Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
bc866ce2
Commit
bc866ce2
authored
Jan 26, 1999
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Documentation for the ConfigParser module, by Christopher G. Petrilli
(petrilli@amber.org).
parent
7c43905c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
117 additions
and
3 deletions
+117
-3
Doc/lib/lib.tex
Doc/lib/lib.tex
+1
-0
Doc/lib/libcfgparser.tex
Doc/lib/libcfgparser.tex
+116
-0
Doc/lib/libundoc.tex
Doc/lib/libundoc.tex
+0
-3
No files found.
Doc/lib/lib.tex
View file @
bc866ce2
...
...
@@ -113,6 +113,7 @@ add new extensions to Python and how to embed it in other applications.
%\input{librand}
\input
{
libbisect
}
\input
{
libarray
}
\input
{
libcfgparser
}
\input
{
libfileinput
}
\input
{
libcalendar
}
\input
{
libcmd
}
...
...
Doc/lib/libcfgparser.tex
0 → 100644
View file @
bc866ce2
\section
{
\module
{
ConfigParser
}
---
Configuration file parser.
}
\declaremodule
{
standard
}{
ConfigParser
}
\modulesynopsis
{
Configuration file parser.
}
\sectionauthor
{
Christopher G. Petrilli
}{
petrilli@amber.org
}
This module defines the class
\class
{
ConfigParser
}
. The
\class
{
ConfigParser
}
class implements a basic configuration file
parser language which provides a structure similar to what you would
find on Microsoft Windows INI files. You can use this to write Python
programs which can be customized by end users easily.
The configuration file consists of sections, lead by a
\samp
{
[section]
}
header and followed by
\samp
{
name: value
}
entries,
with continuations in the style of
\rfc
{
959
}
. The optional values
can contain format strings which refer to other values in the same
section, or values in a special
\code
{
DEFAULT
}
section. Additional
defaults can provided upon instantiation of the class.
For example:
\begin{verbatim}
foodir:
%(dir)s/whatever
\end{verbatim}
would resolve the
\samp
{
\%
(dir)s
}
to the value of dir. All reference
expansions are done late, on demand.
Intrinsic defaults can be specified by passing them into the
\class
{
ConfigParser
}
constructor as a dictionary.
\begin{classdesc}
{
ConfigParser
}{
\optional
{
defaults
}}
Return a new instance of the
\class
{
ConfigParser
}
class. When
\var
{
defaults
}
is given, it is initialized into the dictionairy of
intrinsic defaults. They keys must be strings, and the values must be
appropriate for the
\samp
{
\%
()s
}
string interpolation. Note that
\var
{__
name
__}
is always an intrinsic default; it's value is the
section name.
\end{classdesc}
\begin{excdesc}
{
NoSectionError
}
Exception raised when a specified section is not found.
\end{excdesc}
\begin{excdesc}
{
DuplicateSectionError
}
Exception raised when mutliple sections with the same name are found.
\end{excdesc}
\begin{excdesc}
{
NoOptionError
}
Exception raised when a specified option is not found in the specified
section.
\end{excdesc}
\begin{excdesc}
{
InterpolationError
}
Exception raised when problems occur performing string interpolation.
\end{excdesc}
\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}
\subsection
{
ConfigParser Objects
\label
{
ConfigParser-objects
}}
\class
{
ConfigParser
}
instances have the following methods:
\begin{methoddesc}
{
defaults
}{}
Return a dictionairy containing the instance-wide defaults.
\end{methoddesc}
\begin{methoddesc}
{
sections
}{}
Return a list of the sections available.
\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}
\begin{methoddesc}
{
read
}{
filenames
}
Read and parse a list of filenames.
\end{methoddesc}
\begin{methoddesc}
{
get
}{
section, option
\optional
{
, raw
}}
Get an
\var
{
option
}
value for the provided
\var
{
section
}
. All the
\samp
{
\%
}
interpolations are expanded in the return values, based on
the defaults passed into the constructor, unless the
\var
{
raw
}
argument is true.
\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
\var
{
section
}
to a boolean value. Note that the only accepted values
for the option are
\code
{
0
}
and
\code
{
1
}
, any others will raise
\exception
{
ValueError
}
.
\end{methoddesc}
Doc/lib/libundoc.tex
View file @
bc866ce2
...
...
@@ -43,9 +43,6 @@ This is a package rather than a module.
Some of these are very old and/or not very robust; marked with ``hmm''.
\begin{description}
\item
[ConfigParser.py]
--- Parse a file of sectioned configuration parameters
\item
[cmp.py]
--- Efficiently compare files
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment