1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578
|
% Questions:
% Should xmllib.py be moved into xml.parsers? What about pyexpat.so?
% Should ErrorPrinter go to standard error, not stdout?
\documentclass{howto}
\newcommand{\element}[1]{\code{#1}}
\newcommand{\attribute}[1]{\code{#1}}
\title{Python/XML Reference Guide}
\release{0.06}
\author{The Python/XML Special Interest Group}
\authoraddress{\email{xml-sig@python.org}\break (edited by \email{akuchling@acm.org})}
\begin{document}
\maketitle
\begin{abstract}
\noindent
XML is the eXtensible Markup Language, a subset of SGML, intended to
allow the creation and processing of application-specific markup
languages. Python makes an excellent language for processing XML
data. This document is the reference manual for the Python/XML
package, containing several XML modules.
This is a draft document; 'XXX' in the text indicates that something
has to be filled in later, or rewritten, or verified, or something.
THIS DOCUMENT IS SIGNIFICANTLY OUTDATED, DO NOT USE IT AS A BASIS OF
APPLICATION DEVELOPMENT.
\end{abstract}
\tableofcontents
\section{xml.parsers.xmllib}
This is a version of the \module{xmllib} module from Python 1.5,
modified to use the \module{sgmlop} C extension when it's available.
This produces a significant speedup, amounting to about a factor of 5.
The interface is unchanged from the original \module{xmllib} module;
consult the Python Library Reference documentation for that module.
%\section{{xml.dom}}
%\section{builder}
%\section{core}
%\section{esis_builder}
%\section{html_builder}
%\section{sax_builder}
%\section{transform}
%\section{transformer}
%\section{walker}
%\section{writer}
%\section{{xml.marshal}}
%\section{{xml.sax.drivers}}
%XXX Should all the driver modules be documented, or should they be
%treated as internal modules, whose details will be handled by a parser
%Factory function?
%\section{{xml.sax.drivers.drv_xmllib}}
%\section{{xml.sax.drivers.drv_xmlproc}}
%\section{{xml.sax.drivers.drv_xmlproc_val}}
%\section{{xml.sax.drivers.drv_xmltok}}
%\section{{xml.sax.drivers.drv_xmltoolkit}}
\section{{xml.sax.saxexts}}
\begin{funcdesc}{make_parser}{\optional{parser}}
A utility function that returns a \class{Parser} object for a
non-validating XML parser. If \var{parser} is specified, it must be a
parser name; otherwise, a list of available parsers is checked and the
fastest one chosen.
\end{funcdesc}
\begin{datadesc}{HTMLParserFactory}
An instance of the \class{ParserFactory} class that's already been
prepared with a list of HTML parsers. Simply call its
\method{make_parser()} method to get a \class{Parser} object.
\end{datadesc}
\begin{classdesc}{ParserFactory}{}
A general class to be used by applications for creating parsers on
foreign systems where the list of installed parsers is unknown.
\end{classdesc}
\begin{datadesc}{SGMLParserFactory}
An instance of the \class{ParserFactory} class that's already been
prepared with a list of SGML parsers. Simply call its
\method{make_parser()} method to get a parser object.
\end{datadesc}
\begin{datadesc}{XMLParserFactory}
An instance of the \class{ParserFactory} class that's already been
prepared with a list of nonvalidating XML parsers. Simply call its
\method{make_parser()} method to get a parser object.
\end{datadesc}
\begin{datadesc}{XMLValParserFactory}
An instance of the \class{ParserFactory} class that's already been
prepared with a list of validating XML parsers. Simply call its
\method{make_parser()} method to get a parser object.
\end{datadesc}
\begin{classdesc}{ExtendedParser}{}
This class is an experimental extended parser interface, that offers
additional functionality that may be useful. However, it's not
specified by the SAX specification.
\end{classdesc}
\subsection{\class{ExtendedParser} methods}
\begin{methoddesc}{close}{}
Called after the last call to feed, when there are no more data.
\end{methoddesc}
\begin{methoddesc}{feed}{data}
Feeds \var{data} to the parser.
\end{methoddesc}
\begin{methoddesc}{get_parser_name}{}
Returns a single-word parser name.
\end{methoddesc}
\begin{methoddesc}{get_parser_version}{}
Returns the version of the imported parser, which may not be the
one the driver was implemented for.
\end{methoddesc}
\begin{methoddesc}{is_dtd_reading}{}
True if the parser is non-validating, but conforms to the XML specification by
reading the DTD.
\end{methoddesc}
\begin{methoddesc}{is_validating}{}
Returns true if the parser is validating, false otherwise.
\end{methoddesc}
\begin{methoddesc}{reset}{}
Makes the parser start parsing afresh.
\end{methoddesc}
\subsection{\class{ParserFactory} methods}
\begin{methoddesc}{get_parser_list}{}
Returns the list of possible drivers. Currently this starts out as
\code{["xml.sax.drivers.drv_xmltok",
"xml.sax.drivers.drv_xmlproc",
"xml.sax.drivers.drv_xmltoolkit",
"xml.sax.drivers.drv_xmllib"]}.
\end{methoddesc}
\begin{methoddesc}{make_parser}{\optional{driver_name}}
Returns a SAX driver for the first available parser of the parsers
in the list. Note that the list contains drivers, so it first tries
the driver and if that exists imports it to see if the parser also
exists. If no parsers are available a \class{SAXException} is thrown.
Optionally, \var{driver_name} can be a string containing the name of
the driver to be used; the stored parser list will then not be used at
all.
\end{methoddesc}
\begin{methoddesc}{set_parser_list}{list}
Sets the driver list to \var{list}.
\end{methoddesc}
\section{{xml.sax.saxlib}}
\begin{classdesc}{AttributeList}{}
Interface for an attribute list. This interface provides
information about a list of attributes for an element (only
specified or defaulted attributes will be reported). Note that the
information returned by this object will be valid only during the
scope of the \method{DocumentHandler.startElement} callback, and the
attributes will not necessarily be provided in the order declared
or specified.
\end{classdesc}
\begin{classdesc}{DocumentHandler}{}
Handle general document events. This is the main client
interface for SAX: it contains callbacks for the most important
document events, such as the start and end of elements. You need
to create an object that implements this interface, and then
register it with the \class{Parser}. If you do not want to implement
the entire interface, you can derive a class from \class{HandlerBase},
which implements the default functionality. You can find the
location of any document event using the \class{Locator} interface
supplied by \method{setDocumentLocator()}.
\end{classdesc}
\begin{classdesc}{DTDHandler}{}
Handle DTD events. This interface specifies only those DTD
events required for basic parsing (unparsed entities and
attributes). If you do not want to implement the entire interface,
you can extend \class{HandlerBase}, which implements the default
behaviour.
\end{classdesc}
\begin{classdesc}{EntityResolver}{}
This is the basic interface for resolving entities. If you create an object
implementing this interface, then register the object with your
\class{Parser} instance, the parser will call the method in your object to
resolve all external entities. Note that \class{HandlerBase} implements
this interface with the default behaviour.
\end{classdesc}
\begin{classdesc}{ErrorHandler}{}
This is the basic interface for SAX error handlers. If you create an object
that implements this interface, then register the object with your
Parser, the parser will call the methods in your object to report
all warnings and errors. There are three levels of errors
available: warnings, (possibly) recoverable errors, and
unrecoverable errors. All methods take a SAXParseException as the
only parameter.
\end{classdesc}
\begin{classdesc}{HandlerBase}{}
Default base class for handlers. This class implements the default
behaviour for four SAX interfaces, inheriting from them all:
\class{EntityResolver}, \class{DTDHandler},
\class{DocumentHandler}, and \class{ErrorHandler}. Rather than
implementing those full interfaces, you may simply extend this
class and override the methods that you need. Note that the use of
this class is optional, since you are free to implement the
interfaces directly if you wish.
\end{classdesc}
\begin{classdesc}{Locator}{}
Interface for associating a SAX event with a document
location. A locator object will return valid results only during
calls to methods of the \class{SAXDocumentHandler} class;
at any other time, the results are unpredictable.
\end{classdesc}
\begin{classdesc}{Parser}{}
Basic interface for SAX parsers. All SAX
parsers must implement this basic interface: it allows users to
register handlers for different types of events and to initiate a
parse from a URI, a character stream, or a byte stream. SAX
parsers should also implement a zero-argument constructor.
\end{classdesc}
\begin{classdesc}{SAXException}{msg, exception, locator}
Encapsulate an XML error or warning. This class can contain
basic error or warning information from either the XML parser or
the application: you can subclass it to provide additional
functionality, or to add localization. Note that although you will
receive a \exception{SAXException} as the argument to the handlers in the
\class{ErrorHandler} interface, you are not actually required to throw
the exception; instead, you can simply read the information in
it.
\end{classdesc}
\begin{classdesc}{SAXParseException}{msg, exception, locator}
Encapsulate an XML parse error or warning.
This exception will include information for locating the error in the
original XML document. Note that although the application will
receive a \exception{SAXParseException} as the argument to the
handlers in the \class{ErrorHandler} interface, the application is not
actually required to throw the exception; instead, it can simply
read the information in it and take a different action.
Since this exception is a subclass of \exception{SAXException}, it inherits
the ability to wrap another exception.
\end{classdesc}
\subsection{\class{AttributeList} methods}
The \class{AttributeList} class supports some of the behaviour of
Python dictionaries; the \method{len()}, \method{has_key()},
\method{keys()} methods are available, and \code{attr['href']} will
retrieve the value of the \attribute{href} attribute. There are also
additional methods specific to \class{AttributeList}:
\begin{methoddesc}{getLength}{}
Return the number of attributes in the list.
\end{methoddesc}
\begin{methoddesc}{getName}{i}
Return the name of attribute \var{i} in the list.
\end{methoddesc}
\begin{methoddesc}{getType}{i}
Return the type of an attribute in the list. \var{i} can be
either the integer index or the attribute name.
\end{methoddesc}
\begin{methoddesc}{getValue}{i}
Return the value of an attribute in the list. \var{i} can be
either the integer index or the attribute name.
\end{methoddesc}
\subsection{\class{DocumentHandler} methods}
\begin{methoddesc}{characters}{ch, start, length}
Handle a character data event.
\end{methoddesc}
\begin{methoddesc}{endDocument}{}
Handle an event for the end of a document.
\end{methoddesc}
\begin{methoddesc}{endElement}{name}
Handle an event for the end of an element.
\end{methoddesc}
\begin{methoddesc}{ignorableWhitespace}{ch, start, length}
Handle an event for ignorable whitespace in element content.
\end{methoddesc}
\begin{methoddesc}{processingInstruction}{target, data}
Handle a processing instruction event.
\end{methoddesc}
\begin{methoddesc}{setDocumentLocator}{locator}
Receive
an object for locating the origin of SAX document events. You'll probably want to store the value of \var{locator} as an attribute of the handler instance.
\end{methoddesc}
\begin{methoddesc}{startDocument}{}
Handle an event for the beginning of a document.
\end{methoddesc}
\begin{methoddesc}{startElement}{name, attrs}
Handle an event for the beginning of an element.
\end{methoddesc}
\subsection{\class{DTDHandler} methods}
\begin{methoddesc}{notationDecl}{name, publicId, systemId}
Handle a notation declaration event.
\end{methoddesc}
\begin{methoddesc}{unparsedEntityDecl}{publicId, systemId, notationName}
Handle an unparsed entity declaration event.
\end{methoddesc}
\subsection{\class{EntityResolver} methods}
\begin{methoddesc}{resolveEntity}{name, publicId, systemId}
Resolve the system identifier of an entity.
\end{methoddesc}
\subsection{\class{ErrorHandler} methods}
\begin{methoddesc}{error}{exception}
Handle a recoverable error.
\end{methoddesc}
\begin{methoddesc}{fatalError}{exception}
Handle a non-recoverable error.
\end{methoddesc}
\begin{methoddesc}{warning}{exception}
Handle a warning.
\end{methoddesc}
\subsection{\class{Locator} methods}
\begin{methoddesc}{getColumnNumber}{}
Return the column number where the current event ends.
\end{methoddesc}
\begin{methoddesc}{getLineNumber}{}
Return the line number where the current event ends.
\end{methoddesc}
\begin{methoddesc}{getPublicId}{}
Return the public identifier for the current event.
\end{methoddesc}
\begin{methoddesc}{getSystemId}{}
Return the system identifier for the current event.
\end{methoddesc}
\subsection{\class{Parser} methods}
\begin{methoddesc}{parse}{systemId}
Parse an XML document from a system identifier.
\end{methoddesc}
\begin{methoddesc}{parseFile}{fileobj}
Parse an XML document from a file-like object.
\end{methoddesc}
\begin{methoddesc}{setDocumentHandler}{handler}
Register an object to receive basic document-related events.
\end{methoddesc}
\begin{methoddesc}{setDTDHandler}{handler}
Register an object to receive basic DTD-related events.
\end{methoddesc}
\begin{methoddesc}{setEntityResolver}{resolver}
Register an object to resolve external entities.
\end{methoddesc}
\begin{methoddesc}{setErrorHandler}{handler}
Register an object to receive error-message events.
\end{methoddesc}
\begin{methoddesc}{setLocale}{locale}
Allow an application to set the locale for errors and warnings.
SAX parsers are not required to provide localisation for errors
and warnings; if they cannot support the requested locale,
however, they must throw a SAX exception. Applications may
request a locale change in the middle of a parse.
\end{methoddesc}
\subsection{\class{SAXException} methods}
\begin{methoddesc}{getException}{}
Return the embedded exception, if any.
\end{methoddesc}
\begin{methoddesc}{getMessage}{}
Return a message for this exception.
\end{methoddesc}
\subsection{\class{SAXParseException} methods}
The \class{SAXParseException} class has a \member{locator}
attribute, containing an instance of the \class{Locator} class, which
represents the location in the document where the parse error
occurred. The following methods are delegated to this instance.
\begin{methoddesc}{getColumnNumber}{}
Return the column number of the end of the text where the exception
occurred.
\end{methoddesc}
\begin{methoddesc}{getLineNumber}{}
Return the line number of the end of the text where the exception occurred.
\end{methoddesc}
\begin{methoddesc}{getPublicId}{}
Return the public identifier of the entity where the exception occurred.
\end{methoddesc}
\begin{methoddesc}{getSystemId}{}
Return the system identifier of the entity where the exception occurred.
\end{methoddesc}
\section{{xml.sax.saxutils}}
\begin{classdesc}{Canonizer}{writer}
A SAX document handler that produces canonicalized XML output.
\var{writer} must support a \method{write()} method which accepts a
single string.
\end{classdesc}
\begin{classdesc}{ErrorPrinter}{}
A simple class that just prints error messages to standard error (\code{sys.stderr}).
\end{classdesc}
\begin{classdesc}{ESISDocHandler}{writer}
A SAX document handler that produces naive ESIS output.
\var{writer} must support a \method{write()} method which accepts a single string.
\end{classdesc}
\begin{classdesc}{EventBroadcaster}{list}
Takes a list of objects and forwards any method calls received
to all objects in the list. The attribute \member{list} holds the list and
can freely be modified by clients.
\end{classdesc}
\begin{classdesc}{Location}{locator}
Represents a location in an XML entity. Initialized by being passed
a locator, from which it reads off the current location, which is then
stored internally.
\end{classdesc}
\subsection{\class{Location} methods}
\begin{methoddesc}{getColumnNumber}{}
Return the column number of the location.
\end{methoddesc}
\begin{methoddesc}{getLineNumber}{}
Return the line number of the location.
\end{methoddesc}
\begin{methoddesc}{getPublicId}{}
Return the public identifier for the location.
\end{methoddesc}
\begin{methoddesc}{getSystemId}{}
Return the system identifier for the location.
\end{methoddesc}
\section{\module{xml.utils.iso8601}
%--- Utilities for handling ISO~8601 dates
}
\declaremodule{}{xml.utils.iso8601}
\moduleauthor{Fred L. Drake, Jr.}{fdrake@acm.org}
\sectionauthor{Fred L. Drake, Jr.}{fdrake@acm.org}
The \module{xml.utils.iso8601} module provides conversion routines
between the ISO~8601 representations of date/time values and the
floating point values used elsewhere in Python. The floating point
represtentation is particularly useful in conjunction with the
standard \module{time} module.
Currently, this module supports a small superset of the ISO~8601
profile described by the World Wide Web Consortium (W3C). This is a
subset of ISO~8601, but covers the cases expected to be used most
often in the context of XML processing and Web applications. Future
versions of this module may support a larger subset of
ISO~8601-defined formats.
\begin{funcdesc}{parse}{s}
Parse an ISO~8601 date representation (with an optional time-of-day
component) and return the date in seconds since the epoch.
\end{funcdesc}
\begin{funcdesc}{parse_timezone}{timezone}
Parse an ISO~8601 time zone designator and return the offset relative
to Universal Coordinated Time (UTC) in seconds. If \var{timezone} is
not valid, \exception{ValueError} is raised.
\end{funcdesc}
\begin{funcdesc}{tostring}{t\optional{, timezone}}
Return formatted date/time value according to the profile described by
the W3C. If \var{timezone} is provided, it must be the offset from
UTC in seconds specified as a number, or time zone designator which
can be parsed by \function{parse_timezone()}. If \var{timezone} is
specified as a string and cannot be parsed by
\function{parse_timezone()}, \exception{ValueError} will be raised.
\end{funcdesc}
\begin{funcdesc}{ctime}{t}
Return formatter date/time value using the local timezone. This is
equivalent to \samp{tostring(\var{t}, time.timezone)}.
\end{funcdesc}
\begin{seealso}
\seetext{International Organization for Standardization. \emph{Data
elements and interchange formats --- Information interchange ---
Representation of dates and times.} International Organization for
Standardization, 1988.}
\seetext{Gary Houston. \emph{ISO~8601 date/time representations}.
January 1993. Available online as compressed PostScript:
\url{ftp://ftp.informatik.uni-erlangen.de/pub/doc/ISO/ISO8601.ps.Z}.}
\seetext{Markus Kuhn. \emph{A Summary of the International Standard
Dateand Time Notation}. Available online at
\url{http://www.cl.cam.ac.uk/~mgk25/iso-time.html}.}
\seetext{Misha Wolf and Charles Wicksteed. \emph{Date and Time
Formats}. World Wide Web Consortium Technical Note, September 1998.
Available online at \url{http://www.w3.org/TR/NOTE-datetime}.}
\end{seealso}
\end{document}
|