[问题]scrapy如何将item的资料成对的储存起来?

楼主: allen511081 (蓝)   2014-12-19 17:48:17
小弟不才,继上次问题解决后,现在又出现新的问题,
我该如何让scrapy针对表格抓下来的资料做成对储存?
我是用两个item的字段将我的资料分别抓下来,部分程式码如下:
for sel in response.xpath('//tr/td'):
item = BirdItem()
item['birdname'] = sel.xpath('text()').extract()
item['count'] = sel.xpath('text()').extract()
yield item
这部分我分别用birdname抓鸟名,count抓数量,我该如何将它们合并在一起储存?
作者: dritchie (卍~迈斯纳效应~卍)   2014-12-19 21:05:00
tuple?
作者: ug945 (ug945)   2014-12-20 00:12:00
http://goo.gl/N51vqn 把整个Item用FeedExport输出成Json
作者: jimmytzeng (jimmytseng)   2014-12-21 08:19:00
pipeline存到db或csv
作者: kenshin528 (成立奥凶帝国!!)   2014-12-22 22:35:00
http://goo.gl/ZMuQRt 最近写了一篇pipline的用法@@
楼主: allen511081 (蓝)   2014-12-25 11:56:00
有写了pipeline,但是格式还不是我要的,我该如何做?

Links booklink

Contact Us: admin [ a t ] ucptt.com