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
class FourmiItem(Item):
# define the fields for your item here like:
# name = Field()
pass
class Result(Item):
attribute = Field()
value = Field()
source = Field()
reliability = Field()
conditions = Field()