scrapy-deltafetch
scrapy-deltafetch copied to clipboard
Does this plugin support redirected url?
I ran this plugin for https://quotes.toscrape.com/ but It redirects every requests and this plugin doesn't work for redirects
I get all HTTP 200 responses for quotestoscrape. Are you using quotesbot project?
But when I test for redirects I see it actually doesn't filter out properly. Because it checks for response.request here: https://github.com/scrapy-plugins/scrapy-deltafetch/blob/master/scrapy_deltafetch/middleware.py#L85 instead of response.meta['redirect_urls'] which should be proper value for redirected items.
So it won't work for redirects @mtabbasi