Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
149 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
   title = Field()
10
   price = Field()
11
 
12