Subversion Repositories SmartDukaan

Rev

Rev 147 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 147 Rev 151
Line 4... Line 4...
4
# http://doc.scrapy.org/topics/items.html
4
# http://doc.scrapy.org/topics/items.html
5
 
5
 
6
from scrapy.item import Item, Field
6
from scrapy.item import Item, Field
7
 
7
 
8
class DemoItem(Item):
8
class DemoItem(Item):
9
    # define the fields for your item here like:
-
 
-
 
9
   
10
    # name = Field()
10
    name = Field()
11
    pass
11
    site = Field()