13 lines
299 B
Python
13 lines
299 B
Python
# Define here the models for your scraped items
|
|
#
|
|
# See documentation in:
|
|
# http://doc.scrapy.org/en/latest/topics/items.html
|
|
|
|
from scrapy.item import Item, Field
|
|
|
|
class Result(Item):
|
|
attribute = Field()
|
|
value = Field()
|
|
source = Field()
|
|
reliability = Field()
|
|
conditions = Field() |