items.py 375 B

123456789101112131415161718
  1. # -*- coding: utf-8 -*-
  2. # Define here the models for your scraped items
  3. #
  4. # See documentation in:
  5. # https://doc.scrapy.org/en/latest/topics/items.html
  6. import scrapy
  7. class MyfirstspiderItem(scrapy.Item):
  8. # define the fields for your item here like:
  9. # name = scrapy.Field()
  10. author = scrapy.Field()
  11. content = scrapy.Field()
  12. tag = scrapy.Field()
  13. pass