mirror of https://github.com/scrapy/scrapy.git
13 lines
307 B
Python
13 lines
307 B
Python
"""
|
|
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):
|
|
__slots__ = ()
|