From 6182d4104eef9a68c6958d3320656d7c6ff77900 Mon Sep 17 00:00:00 2001 From: "Jip J. Dekker" Date: Sun, 16 Mar 2014 22:54:34 +0100 Subject: [PATCH] Added an result item which the spiders will return. --- Scrapy/items.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Scrapy/items.py b/Scrapy/items.py index 17b9d3d..5fedc36 100644 --- a/Scrapy/items.py +++ b/Scrapy/items.py @@ -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() \ No newline at end of file