开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
捐赠
捐赠前请先登录
扫描微信二维码支付
取消
支付完成
支付提示
将跳转至支付宝完成支付
确定
取消
1 Star 0 Fork 0

source-code-analysis/python3.8.1

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
master
分支 (1)
master
master
分支 (1)
master
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (1)
master
python3.8.1
/
Doc
/
library
/
xml.sax.reader.rst
python3.8.1
/
Doc
/
library
/
xml.sax.reader.rst
xml.sax.reader.rst 11.97 KB
一键复制 编辑 原始数据 按行查看 历史
zhangweibo 提交于 2021年11月16日 09:46 +08:00 . git init

:mod:`xml.sax.xmlreader` --- Interface for XML parsers

.. module:: xml.sax.xmlreader
 :synopsis: Interface which SAX-compliant XML parsers must implement.

.. moduleauthor:: Lars Marius Garshol <larsga@garshol.priv.no>
.. sectionauthor:: Martin v. Löwis <martin@v.loewis.de>

Source code: :source:`Lib/xml/sax/xmlreader.py`


SAX parsers implement the :class:`XMLReader` interface. They are implemented in a Python module, which must provide a function :func:`create_parser`. This function is invoked by :func:`xml.sax.make_parser` with no arguments to create a new parser object.

Base class which can be inherited by SAX parsers.

In some cases, it is desirable not to parse an input source at once, but to feed chunks of the document as they get available. Note that the reader will normally not read the entire file, but read it in chunks as well; still :meth:`parse` won't return until the entire document is processed. So these interfaces should be used if the blocking behaviour of :meth:`parse` is not desirable.

When the parser is instantiated it is ready to begin accepting data from the feed method immediately. After parsing has been finished with a call to close the reset method must be called to make the parser ready to accept new data, either from feed or using the parse method.

Note that these methods must not be called during parsing, that is, after parse has been called and before it returns.

By default, the class also implements the parse method of the XMLReader interface using the feed, close and reset methods of the IncrementalParser interface as a convenience to SAX 2.0 driver writers.

Interface for associating a SAX event with a document location. A locator object will return valid results only during calls to DocumentHandler methods; at any other time, the results are unpredictable. If information is not available, methods may return None.

Encapsulation of the information needed by the :class:`XMLReader` to read entities.

This class may include information about the public identifier, system identifier, byte stream (possibly with character encoding information) and/or the character stream of an entity.

Applications will create objects of this class for use in the :meth:`XMLReader.parse` method and for returning from EntityResolver.resolveEntity.

An :class:`InputSource` belongs to the application, the :class:`XMLReader` is not allowed to modify :class:`InputSource` objects passed to it from the application, although it may make copies and modify those.

This is an implementation of the :class:`Attributes` interface (see section :ref:`attributes-objects`). This is a dictionary-like object which represents the element attributes in a :meth:`startElement` call. In addition to the most useful dictionary operations, it supports a number of other methods as described by the interface. Objects of this class should be instantiated by readers; attrs must be a dictionary-like object containing a mapping from attribute names to attribute values.

Namespace-aware variant of :class:`AttributesImpl`, which will be passed to :meth:`startElementNS`. It is derived from :class:`AttributesImpl`, but understands attribute names as two-tuples of namespaceURI and localname. In addition, it provides a number of methods expecting qualified names as they appear in the original document. This class implements the :class:`AttributesNS` interface (see section :ref:`attributes-ns-objects`).

XMLReader Objects

The :class:`XMLReader` interface supports the following methods:

.. method:: XMLReader.parse(source)

 Process an input source, producing SAX events. The *source* object can be a
 system identifier (a string identifying the input source -- typically a file
 name or a URL), a :class:`pathlib.Path` or :term:`path-like <path-like object>`
 object, or an :class:`InputSource` object. When
 :meth:`parse` returns, the input is completely processed, and the parser object
 can be discarded or reset.

 .. versionchanged:: 3.5
 Added support of character streams.

 .. versionchanged:: 3.8
 Added support of path-like objects.


.. method:: XMLReader.getContentHandler()

 Return the current :class:`~xml.sax.handler.ContentHandler`.


.. method:: XMLReader.setContentHandler(handler)

 Set the current :class:`~xml.sax.handler.ContentHandler`. If no
 :class:`~xml.sax.handler.ContentHandler` is set, content events will be
 discarded.


.. method:: XMLReader.getDTDHandler()

 Return the current :class:`~xml.sax.handler.DTDHandler`.


.. method:: XMLReader.setDTDHandler(handler)

 Set the current :class:`~xml.sax.handler.DTDHandler`. If no
 :class:`~xml.sax.handler.DTDHandler` is set, DTD
 events will be discarded.


.. method:: XMLReader.getEntityResolver()

 Return the current :class:`~xml.sax.handler.EntityResolver`.


.. method:: XMLReader.setEntityResolver(handler)

 Set the current :class:`~xml.sax.handler.EntityResolver`. If no
 :class:`~xml.sax.handler.EntityResolver` is set,
 attempts to resolve an external entity will result in opening the system
 identifier for the entity, and fail if it is not available.


.. method:: XMLReader.getErrorHandler()

 Return the current :class:`~xml.sax.handler.ErrorHandler`.


.. method:: XMLReader.setErrorHandler(handler)

 Set the current error handler. If no :class:`~xml.sax.handler.ErrorHandler`
 is set, errors will be raised as exceptions, and warnings will be printed.


.. method:: XMLReader.setLocale(locale)

 Allow an application to set the locale for errors and warnings.

 SAX parsers are not required to provide localization for errors and warnings; if
 they cannot support the requested locale, however, they must raise a SAX
 exception. Applications may request a locale change in the middle of a parse.


.. method:: XMLReader.getFeature(featurename)

 Return the current setting for feature *featurename*. If the feature is not
 recognized, :exc:`SAXNotRecognizedException` is raised. The well-known
 featurenames are listed in the module :mod:`xml.sax.handler`.


.. method:: XMLReader.setFeature(featurename, value)

 Set the *featurename* to *value*. If the feature is not recognized,
 :exc:`SAXNotRecognizedException` is raised. If the feature or its setting is not
 supported by the parser, *SAXNotSupportedException* is raised.


.. method:: XMLReader.getProperty(propertyname)

 Return the current setting for property *propertyname*. If the property is not
 recognized, a :exc:`SAXNotRecognizedException` is raised. The well-known
 propertynames are listed in the module :mod:`xml.sax.handler`.


.. method:: XMLReader.setProperty(propertyname, value)

 Set the *propertyname* to *value*. If the property is not recognized,
 :exc:`SAXNotRecognizedException` is raised. If the property or its setting is
 not supported by the parser, *SAXNotSupportedException* is raised.


IncrementalParser Objects

Instances of :class:`IncrementalParser` offer the following additional methods:

.. method:: IncrementalParser.feed(data)

 Process a chunk of *data*.


.. method:: IncrementalParser.close()

 Assume the end of the document. That will check well-formedness conditions that
 can be checked only at the end, invoke handlers, and may clean up resources
 allocated during parsing.


.. method:: IncrementalParser.reset()

 This method is called after close has been called to reset the parser so that it
 is ready to parse new documents. The results of calling parse or feed after
 close without calling reset are undefined.


Locator Objects

Instances of :class:`Locator` provide these methods:

.. method:: Locator.getColumnNumber()

 Return the column number where the current event begins.


.. method:: Locator.getLineNumber()

 Return the line number where the current event begins.


.. method:: Locator.getPublicId()

 Return the public identifier for the current event.


.. method:: Locator.getSystemId()

 Return the system identifier for the current event.


InputSource Objects

.. method:: InputSource.setPublicId(id)

 Sets the public identifier of this :class:`InputSource`.


.. method:: InputSource.getPublicId()

 Returns the public identifier of this :class:`InputSource`.


.. method:: InputSource.setSystemId(id)

 Sets the system identifier of this :class:`InputSource`.


.. method:: InputSource.getSystemId()

 Returns the system identifier of this :class:`InputSource`.


.. method:: InputSource.setEncoding(encoding)

 Sets the character encoding of this :class:`InputSource`.

 The encoding must be a string acceptable for an XML encoding declaration (see
 section 4.3.3 of the XML recommendation).

 The encoding attribute of the :class:`InputSource` is ignored if the
 :class:`InputSource` also contains a character stream.


.. method:: InputSource.getEncoding()

 Get the character encoding of this InputSource.


.. method:: InputSource.setByteStream(bytefile)

 Set the byte stream (a :term:`binary file`) for this input source.

 The SAX parser will ignore this if there is also a character stream specified,
 but it will use a byte stream in preference to opening a URI connection itself.

 If the application knows the character encoding of the byte stream, it should
 set it with the setEncoding method.


.. method:: InputSource.getByteStream()

 Get the byte stream for this input source.

 The getEncoding method will return the character encoding for this byte stream,
 or ``None`` if unknown.


.. method:: InputSource.setCharacterStream(charfile)

 Set the character stream (a :term:`text file`) for this input source.

 If there is a character stream specified, the SAX parser will ignore any byte
 stream and will not attempt to open a URI connection to the system identifier.


.. method:: InputSource.getCharacterStream()

 Get the character stream for this input source.


The :class:`Attributes` Interface

:class:`Attributes` objects implement a portion of the :term:`mapping protocol <mapping>`, including the methods :meth:`~collections.abc.Mapping.copy`, :meth:`~collections.abc.Mapping.get`, :meth:`~object.__contains__`, :meth:`~collections.abc.Mapping.items`, :meth:`~collections.abc.Mapping.keys`, and :meth:`~collections.abc.Mapping.values`. The following methods are also provided:

.. method:: Attributes.getLength()

 Return the number of attributes.


.. method:: Attributes.getNames()

 Return the names of the attributes.


.. method:: Attributes.getType(name)

 Returns the type of the attribute *name*, which is normally ``'CDATA'``.


.. method:: Attributes.getValue(name)

 Return the value of attribute *name*.

The :class:`AttributesNS` Interface

This interface is a subtype of the :class:`Attributes` interface (see section :ref:`attributes-objects`). All methods supported by that interface are also available on :class:`AttributesNS` objects.

The following methods are also available:

.. method:: AttributesNS.getValueByQName(name)

 Return the value for a qualified name.


.. method:: AttributesNS.getNameByQName(name)

 Return the ``(namespace, localname)`` pair for a qualified *name*.


.. method:: AttributesNS.getQNameByName(name)

 Return the qualified name for a ``(namespace, localname)`` pair.


.. method:: AttributesNS.getQNames()

 Return the qualified names of all attributes.

Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/python_sourcecode/python3.8.1.git
git@gitee.com:python_sourcecode/python3.8.1.git
python_sourcecode
python3.8.1
python3.8.1
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /