Files
crawlab/deployfile/5ca46b508ffaed82c65f0f9c/juejin/items.py
2019-04-03 18:02:14 +08:00

18 lines
381 B
Python

# -*- coding: utf-8 -*-
# Define here the models for your scraped items
#
# See documentation in:
# http://doc.scrapy.org/en/latest/topics/items.html
import scrapy
class JuejinItem(scrapy.Item):
# define the fields for your item here like:
_id = scrapy.Field()
title = scrapy.Field()
link = scrapy.Field()
like = scrapy.Field()
task_id = scrapy.Field()