Lines Matching refs:XML
2 :mod:`xmllib` --- A parser for XML documents
6 :synopsis: A parser for XML documents.
13 single: XML
17 Use :mod:`xml.sax` instead. The newer XML package includes full support for XML
24 parsing text files formatted in XML (Extensible Markup Language).
195 not the delimiter itself. For example, the instruction ``<?XML text?>``
196 will cause this method to be called with the arguments ``'XML'`` and
252 `Extensible Markup Language (XML) 1.0 <http://www.w3.org/TR/REC-xml>`_
253 The XML specification, published by the World Wide Web Consortium (W3C), defines
254 the syntax and processor requirements for XML. References to additional
255 material on XML, including translations of the specification, are available at
256 http://www.w3.org/XML/.
258 `Python and XML Processing <https://www.python.org/topics/xml/>`_
259 The Python XML Topic Guide provides a great deal of information on using XML
260 from Python and links to other sources of information on XML.
262 `SIG for XML Processing in Python <https://www.python.org/sigs/xml-sig/>`_
263 The Python XML Special Interest Group is developing substantial support for
264 processing XML from Python.
269 XML Namespaces
272 .. index:: pair: XML; namespaces
274 This module has support for XML namespaces as defined in the XML Namespaces
277 Tag and attribute names that are defined in an XML namespace are handled as if
286 An older draft of the XML Namespaces proposal is also recognized, but triggers a
292 `Namespaces in XML <http://www.w3.org/TR/REC-xml-names/>`_
294 processing requirements for namespaces in XML.
305 (allow UTF-8 characters in input; this is required according to the XML