mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-25 17:42:25 +01:00
18 lines
381 B
Python
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()
|