Created
August 31, 2017 07:36
-
-
Save harryandriyan/a0b34be312ffa5cbe1ed65cd601cec90 to your computer and use it in GitHub Desktop.
items.py of Republika
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from scrapy.item import Item, Field | |
class RepublikaItem(Item): | |
# List of fields | |
title = Field() | |
link = Field() | |
images = Field() | |
category = Field() | |
date = Field() | |
desc = Field() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment