0
如何創建一組文件的時候啓動我scrapy蜘蛛像這樣:在Scrapy指定哪些文件將數據導出到根據刮出結果
year1.csv
year2.csv
year3.csv
也很清楚的文件,如果它存在,並且有內容在裏面。
和分析過程中,根據scrapy結果像這樣出口到每一個文件:
def parse(self,response):
if response.css('#Contact1'):
yield{
'Name': response.css('#ContactName1 a::text').extract_first()
}
if response.css('#Contact1').extract_first() is "1":
export to year1.csv
if response.css('#Contact1').extract_first() is "2":
export to year2.csv
if response.css('#Contact1').extract_first() is "2":
export to year3.csv