Advertisement
LightningStalker

items.py to go with Scrapey forum crawler

Sep 3rd, 2014
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.32 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2.  
  3. # Define here the models for your scraped items
  4. #
  5. # See documentation in:
  6. # http://doc.scrapy.org/en/latest/topics/items.html
  7.  
  8. import scrapy
  9.  
  10.  
  11. class CrawlerItem(scrapy.Item):
  12.     # define the fields for your item here like:
  13.     # name = scrapy.Field()
  14.     page = scrapy.Field()
  15.     pass
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement