Archived
1
0
This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
2014-03-28 14:11:36 +01:00

15 lines
301 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()