Skip to content

Instantly share code, notes, and snippets.

@doroudi
Created October 17, 2019 19:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save doroudi/cf669a4d54a955f61614cfb19236835d to your computer and use it in GitHub Desktop.
Save doroudi/cf669a4d54a955f61614cfb19236835d to your computer and use it in GitHub Desktop.
Movies Model Class for imdb.com crawler
class MovieItem(scrapy.Item):
url = scrapy.Field()
name = scrapy.Field()
image = scrapy.Field()
genre = scrapy.Field()
contentRating = scrapy.Field()
actor = scrapy.Field()
creator = scrapy.Field()
description = scrapy.Field()
datePublished = scrapy.Field()
keywords = scrapy.Field()
aggregateRating = scrapy.Field()
review = scrapy.Field()
trailer = scrapy.Field()
duration = scrapy.Field()
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment