# -*- coding: utf-8 -*- # Define here the models for your scraped items # # See documentation in: # https://doc.scrapy.org/en/latest/topics/items.html import scrapy class BookItem(scrapy.Item): title = scrapy.Field() description = scrapy.Field() image_urls = scrapy.Field() images = scrapy.Field() rating = scrapy.Field() upc = scrapy.Field() product_type = scrapy.Field() price_excl_tax = scrapy.Field() price_incl_tax = scrapy.Field() tax = scrapy.Field() in_stock = scrapy.Field() count_reviews = scrapy.Field() category = scrapy.Field() currency_type = scrapy.Field()