items.py 281 字节
Newer Older
1 2 3 4 5 6 7 8 9 10
# -*- coding: utf-8 -*-

# Define here the models for your scraped items
#
# See documentation in:
# https://doc.scrapy.org/en/latest/topics/items.html

import scrapy


11
class MovieItem(scrapy.Item):
12

13
    title = scrapy.Field()
14
    score = scrapy.Field()
15
    motto = scrapy.Field()