📜  从蜘蛛内部查看 chrome 中的 scrapy 响应 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:07.038000             🧑  作者: Mango

代码示例1
from scrapy.shell import inspect_response


def parse(self, response):
    inspect_response(response, self)

# After running the file, it will open a shell where response can be viewed
# view(response)