items.py 281 B

123456789101112131415
  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 MovieItem(scrapy.Item):
  8. title = scrapy.Field()
  9. score = scrapy.Field()
  10. motto = scrapy.Field()