html.py 299 B

1234567891011
  1. """
  2. This module implements the HtmlResponse class which adds encoding
  3. discovering through HTML encoding declarations to the TextResponse class.
  4. See documentation in docs/topics/request-response.rst
  5. """
  6. from scrapy.http.response.text import TextResponse
  7. class HtmlResponse(TextResponse):
  8. pass