Skip to content

Instantly share code, notes, and snippets.

@harrywang
Created September 10, 2019 18:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save harrywang/f7973121dca108a472067f9320504092 to your computer and use it in GitHub Desktop.
Save harrywang/f7973121dca108a472067f9320504092 to your computer and use it in GitHub Desktop.
from scrapy.item import Item, Field
class QuoteItem(Item):
quote_content = Field()
tags = Field()
author_name = Field()
author_birthday = Field()
author_bornlocation = Field()
author_bio = Field()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment