scrapy.http.response.xml 源代码

"""
This module implements the XmlResponse class which adds encoding
discovering through XML encoding declarations to the TextResponse class.

See documentation in docs/topics/request-response.rst
"""

from scrapy.http.response.text import TextResponse


[文档]class XmlResponse(TextResponse): pass