Archived
1
0

Added an result item which the spiders will return.

This commit is contained in:
Jip J. Dekker 2014-03-16 22:54:34 +01:00
parent f25af46aa0
commit 6182d4104e

View File

@ -5,7 +5,9 @@
from scrapy.item import Item, Field from scrapy.item import Item, Field
class FourmiItem(Item): class Result(Item):
# define the fields for your item here like: attribute = Field()
# name = Field() value = Field()
pass source = Field()
reliability = Field()
conditions = Field()