scrapy中的无序.csv字段

时间:2015-04-01 14:28:40

标签: web-scraping scrapy

我正在开发一个带有scrapy框架的几个领域的蜘蛛。当我将报废的字段导出到.csv文件时,字段(或列)是无序的,而不是我在items.py文件中定义它们。

有谁知道如何解决这个问题?

提前致谢。

1 个答案:

答案 0 :(得分:0)

class myspider(BaseSpider):
    filehandle1 = open('file.xls','w')
    ---------------
    def parse(self, response):
            -----------
            self.filehandle2.write("%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\n"%(item['a'],item['h'],item['g'],item['f'],item['e'],item['d'],item['c'],item['b']))