Source code for scrapy.http.response.html

"""
This module implements the HtmlResponse class which adds encoding
discovering through HTML encoding declarations to the TextResponse class.

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

from scrapy.http.response.text import TextResponse


[docs]class HtmlResponse(TextResponse): pass