xml.py 296 B

1234567891011
  1. """
  2. This module implements the XmlResponse class which adds encoding
  3. discovering through XML 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 XmlResponse(TextResponse):
  8. pass