I'm using scrapy to parse a web site
I can generate a list of the interested link in the page using this code:
response.xpath('//a[@class="button-border"]/@href').extract()
However it returns a list with relative links, how can i create the absolute links, crawl all of them and apply another set of rules to every link?