HubobelsPython/venv/lib/python3.9/site-packages/scrapy/http/response/xml.py
2022-01-02 21:50:48 +01:00

12 lines
297 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):
pass