Files
crawlab/backend/template/spiders/jd/jd/items.py
2020-02-03 11:58:05 +08:00

16 lines
323 B
Python

# -*- 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
class JdItem(scrapy.Item):
# define the fields for your item here like:
name = scrapy.Field()
price = scrapy.Field()
url = scrapy.Field()