16 lines
361 B
Python
16 lines
361 B
Python
# Define here the models for your scraped items
|
|
#
|
|
# See documentation in:
|
|
# https://docs.scrapy.org/en/latest/topics/items.html
|
|
|
|
from scrapy.item import Field, Item
|
|
|
|
|
|
class RlsbbScraperItem(Item):
|
|
article_id = Field()
|
|
article_title = Field()
|
|
title = Field()
|
|
date = Field()
|
|
summary = Field()
|
|
image_url = Field()
|
|
download_url = Field() |