I have one spiner which scrape the page and gets all the urls.
i have another spiner which get a url and scrap on it.
i want to call the second spiner for each link i get from the first spiner.
the code for getting all links from the first spiner
for site in sites:
Link = site.xpath('a/@href').extract()
but i don't know how to call the spiner for each Link
help please