Scrapy get request url in parse
The ‘response’ variable that’s passed to parse() has the info you want. You shouldn’t need to override anything. eg. (EDITED) def parse(self, response): print “URL: ” + response.request.url
The ‘response’ variable that’s passed to parse() has the info you want. You shouldn’t need to override anything. eg. (EDITED) def parse(self, response): print “URL: ” + response.request.url