A web scraper build to search specific information for a given compound (and its pseudonyms)
1# Define here the models for your scraped items
2#
3# See documentation in:
4# http://doc.scrapy.org/en/latest/topics/items.html
5
6from scrapy.item import Item, Field
7
8
9class Result(Item):
10 attribute = Field()
11 value = Field()
12 source = Field()
13 reliability = Field()
14 conditions = Field()