Using Scrapy, I want to use my extracted url to read a binary file into memory and extract the contents.
Currently, I can find the URL on the page using a selector e.g.
myFile = response.xpath('//a[contains(@href,".interestingfileextension")]/@href').extract()
How do I then read that file into memory so that I can look for content in that file?
Many thanks
Make a request and explore the content in the callback: