1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Define here the models for your scraped items
#
# See documentation in:
# http://doc.scrapy.org/en/latest/topics/items.html

from scrapy.item import Item, Field

class GooglePlayMovieItem(Item):
    id = Field()
    name = Field()
    year = Field()
    month = Field()
    genre = Field()
    offers = Field()
    synopsis = Field()
    actors = Field()
    producers = Field()
    writers = Field()
    directors = Field()
    run_time = Field()
    similar_movies = Field()
    similar_movies_id = Field()
    content_rating = Field()
    rating = Field()
    image = Field()

class ItunesMovieItem(Item):
    id = Field()
    name = Field()
    year = Field()
    genre = Field()
    price = Field()
    description = Field()
    actors = Field()
    directors = Field()
    writers = Field()
    producers = Field()
    content_rating = Field()
    similar_movies = Field()
    similar_movies_id = Field()
    copyright = Field()
    stars = Field()
    star_ratings = Field()
    rotten_tomatoes_tomatometer = Field()
    rotten_tomatoes_reviews = Field()
    rotten_tomatoes_fresh = Field()
    rotten_tomatoes_rotten = Field()
    rotten_tomatoes_average_rating = Field()