Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
180 ashish 1
# Define here the models for your scraped items
2
#
3
# See documentation in:
4
# http://doc.scrapy.org/topics/items.html
5
 
6
from scrapy.item import Item, Field
7
 
8
class DemoItem(Item):
9
 
10
    name = Field()
11
    price = Field()
12
    ship_price = Field()
13
    guarantee_info = Field()