This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# Define here the models for your scraped items | |
# | |
# See documentation in: | |
# http://doc.scrapy.org/en/latest/topics/items.html | |
import scrapy | |
class AmazonItem(scrapy.Item): | |
# define the fields for your item here like: | |
product_name = scrapy.Field() | |
product_sale_price = scrapy.Field() | |
product_category = scrapy.Field() | |
product_original_price = scrapy.Field() | |
product_availability = scrapy.Field() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment