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