Added an result item which the spiders will return.
This commit is contained in:
parent
f25af46aa0
commit
6182d4104e
@ -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()
|
Reference in New Issue
Block a user