Created
June 19, 2016 21:19
-
-
Save aconanlai/15b028c53edef29d53bb04948a41f0fb to your computer and use it in GitHub Desktop.
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 CraigslistItem(Item): | |
title = Field() | |
link = Field() | |
description = Field() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment