scrapy.http.response.json 源代码

"""
This module implements the JsonResponse class that is used when the response
has a JSON MIME type in its Content-Type header.

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

from scrapy.http.response.text import TextResponse


[文档] class JsonResponse(TextResponse): pass