Scrapy request+response+download time

前端 未结 3 1451
忘了有多久
忘了有多久 2021-02-14 01:28

UPD: Not close question because I think my way is not so clear as should be

Is it possible to get current request + response + download time for saving

3条回答
  •  礼貌的吻别
    2021-02-14 02:14

    Not sure if you need a Middleware here. Scrapy has a request.meta which you can query and yield. For download latency, simply yield

    download_latency=response.meta.get('download_latency'),
    

    The amount of time spent to fetch the response, since the request has been started, i.e. HTTP message sent over the network. This meta key only becomes available when the response has been downloaded. While most other meta keys are used to control Scrapy behavior, this one is supposed to be read-only.

提交回复
热议问题