0
As I do for mine Spider save all Excel data in a single XML file links which I extract? Or also save in each single XLS file in the project folder?
Part of my Spider:
def parse(self, response):
divs = response.xpath('''meu caminho html''')
for div in divs:
#o arquivo xls sai dessa html
links = div.xpath('.//a/@href').extract_first()
yield {'Links': links,}