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-06-01 20:29:51 +02:00

13 lines
304 B
Python

# For more information on item definitions, see the Scrapy 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()