18Months / themoviedb-api

Provides a simple and intuitive interface for the Movie Database API making use of OpenStruct.
MIT License
91 stars 45 forks source link

Use the append_to_response capability of the API? #7

Closed vanhecke closed 7 years ago

vanhecke commented 7 years ago

The tmdb API has a neat feature called append_to_response.

It allows us to grab more information about an object in 1 request. I think it would be beneficial to use this in for example the Movie.detail method.

For example, the video method would be "fixed":

Tmdb::Movie.detail(550).video #=> false

But if we use the &append_to_response=videos we get the real list, which doesn't lie!

curl https://api.themoviedb.org/3/movie/550\?api_key\=API_KEY\&append_to_response\=videos
{
    "adult": false,
    "backdrop_path": "/87hTDiay2N2qWyX4Ds7ybXi9h8I.jpg",
    "belongs_to_collection": null,
    "budget": 63000000,
    "genres": [{
        "id": 18,
        "name": "Drama"
    }],
    "homepage": "http://www.foxmovies.com/movies/fight-club",
    "id": 550,
    "imdb_id": "tt0137523",
    "original_language": "en",
    "original_title": "Fight Club",
    "overview": "A ticking-time-bomb insomniac and a slippery soap salesman channel primal male aggression into a shocking new form of therapy. Their concept catches on, with underground \"fight clubs\" forming in every town, until an eccentric gets in the way and ignites an out-of-control spiral toward oblivion.",
    "popularity": 6.341339,
    "poster_path": "/adw6Lq9FiC9zjYEpOqfq03ituwp.jpg",
    "production_companies": [{
        "name": "Regency Enterprises",
        "id": 508
    }, {
        "name": "Fox 2000 Pictures",
        "id": 711
    }, {
        "name": "Taurus Film",
        "id": 20555
    }, {
        "name": "Linson Films",
        "id": 54050
    }, {
        "name": "Atman Entertainment",
        "id": 54051
    }, {
        "name": "Knickerbocker Films",
        "id": 54052
    }],
    "production_countries": [{
        "iso_3166_1": "DE",
        "name": "Germany"
    }, {
        "iso_3166_1": "US",
        "name": "United States of America"
    }],
    "release_date": "1999-10-15",
    "revenue": 100853753,
    "runtime": 139,
    "spoken_languages": [{
        "iso_639_1": "en",
        "name": "English"
    }],
    "status": "Released",
    "tagline": "How much can you know about yourself if you've never been in a fight?",
    "title": "Fight Club",
    "video": false,
    "vote_average": 8.199999999999999,
    "vote_count": 7692,
    "videos": {
        "results": [{
            "id": "58f730779251415dfe009fc7",
            "iso_639_1": "en",
            "iso_3166_1": "US",
            "key": "BdJKm16Co6M",
            "name": "Official #TBT Trailer",
            "site": "YouTube",
            "size": 360,
            "type": "Trailer"
        }]
    }
}

My question is:

I'll happily try and implement it myself and make a PR if you'd decide on the above.

druzn3k commented 7 years ago

Hi @Vanhecke . Unfortunately right now I cannot test it out, but couldn't the filters = {} parameter on resource take care of that? Something like:

Tmdb::Movie.detail(550, append_to_response: "videos").video

If not, knock yourself out :+1: but first put down an API proposal that won't break applications currently using this gem, so we can discuss (ye olde measure twice, cut once).

vanhecke commented 7 years ago

Oh @druzn3k I didn't know this was possible! It indeed does work quite well, see below. The only "downside" is that the included objects are Tmdb::Movie instances but I don't care.

Thanks!

Tmdb::Movie.detail(550, append_to_response: "videos,images,credits,keywords,similar").to_yaml

lots of beautiful data...

--- !ruby/object:Tmdb::Movie
table:
  :adult: false
  :backdrop_path: "/87hTDiay2N2qWyX4Ds7ybXi9h8I.jpg"
  :belongs_to_collection: 
  :budget: 63000000
  :homepage: http://www.foxmovies.com/movies/fight-club
  :id: 550
  :imdb_id: tt0137523
  :original_language: en
  :original_title: Fight Club
  :overview: A ticking-time-bomb insomniac and a slippery soap salesman channel primal
    male aggression into a shocking new form of therapy. Their concept catches on,
    with underground "fight clubs" forming in every town, until an eccentric gets
    in the way and ignites an out-of-control spiral toward oblivion.
  :popularity: 6.35305
  :poster_path: "/adw6Lq9FiC9zjYEpOqfq03ituwp.jpg"
  :release_date: '1999-10-15'
  :revenue: 100853753
  :runtime: 139
  :status: Released
  :tagline: How much can you know about yourself if you've never been in a fight?
  :title: Fight Club
  :video: false
  :vote_average: 8.2
  :vote_count: 7702
  :videos: !ruby/object:Tmdb::Movie
    table:
      :results:
      - !ruby/object:Tmdb::Movie
        table:
          :id: 58f730779251415dfe009fc7
          :iso_639_1: en
          :iso_3166_1: US
          :key: BdJKm16Co6M
          :name: 'Official #TBT Trailer'
          :site: YouTube
          :size: 360
          :type: Trailer
  :images: !ruby/object:Tmdb::Movie
    table:
      :backdrops:
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 1.777777777777778
          :file_path: "/87hTDiay2N2qWyX4Ds7ybXi9h8I.jpg"
          :height: 1080
          :iso_639_1: 
          :vote_average: 5.42
          :vote_count: 5
          :width: 1920
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 1.777777777777778
          :file_path: "/8uO0gUM8aNqYLs1OsTBQiXu0fEv.jpg"
          :height: 720
          :iso_639_1: en
          :vote_average: 5.391534391534392
          :vote_count: 27
          :width: 1280
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 1.777777777777778
          :file_path: "/wSJPjqp2AZWQ6REaqkMuXsCIs64.jpg"
          :height: 1080
          :iso_639_1: 
          :vote_average: 5.38
          :vote_count: 4
          :width: 1920
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 1.777777777777778
          :file_path: "/mMZRKb3NVo5ZeSPEIaNW9buLWQ0.jpg"
          :height: 1080
          :iso_639_1: xx
          :vote_average: 5.373309817754262
          :vote_count: 18
          :width: 1920
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 1.777777777777778
          :file_path: "/hNFMawyNDWZKKHU4GYCBz1krsRM.jpg"
          :height: 720
          :iso_639_1: xx
          :vote_average: 5.363984674329502
          :vote_count: 24
          :width: 1280
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 1.777777777777778
          :file_path: "/hC7P2OBMlPiz7eEfmTuvalyVEO6.jpg"
          :height: 1080
          :iso_639_1: en
          :vote_average: 5.3125
          :vote_count: 1
          :width: 1920
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 1.777777777777778
          :file_path: "/kEStYHdlIONI4G9AJ4G0S3mMoZB.jpg"
          :height: 1080
          :iso_639_1: 
          :vote_average: 5.3125
          :vote_count: 1
          :width: 1920
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 1.777777777777778
          :file_path: "/uREHNBE99QzhnQ2WeabU35h0tga.jpg"
          :height: 1080
          :iso_639_1: 
          :vote_average: 5.25230987917555
          :vote_count: 4
          :width: 1920
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 1.777777777777778
          :file_path: "/lIl7K5FslEOD4zUP8vfIK3IO2Tn.jpg"
          :height: 720
          :iso_639_1: xx
          :vote_average: 5.180375180375181
          :vote_count: 3
          :width: 1280
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 1.777777777777778
          :file_path: "/xSBNyN4CXQGh8lza886jkjnY9TW.jpg"
          :height: 720
          :iso_639_1: xx
          :vote_average: 5.180375180375181
          :vote_count: 3
          :width: 1280
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 1.777777777777778
          :file_path: "/8T0hpqWsgzKhWGsXGD8ilkwRPkC.jpg"
          :height: 720
          :iso_639_1: xx
          :vote_average: 5.18
          :vote_count: 18
          :width: 1280
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 1.777777777777778
          :file_path: "/xPe3fh59lTTA67NyVNCGLLRuOzz.jpg"
          :height: 720
          :iso_639_1: xx
          :vote_average: 5.173160173160173
          :vote_count: 3
          :width: 1280
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 1.777777777777778
          :file_path: "/tEQvxeLYpLDIWzufbGKdIfqfBEI.jpg"
          :height: 720
          :iso_639_1: xx
          :vote_average: 5.173160173160173
          :vote_count: 3
          :width: 1280
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 1.777777777777778
          :file_path: "/9Kr6UzouF674Smw3D9Hp2DlH1Vo.jpg"
          :height: 720
          :iso_639_1: xx
          :vote_average: 5.131578947368421
          :vote_count: 13
          :width: 1280
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 1.777777777777778
          :file_path: "/suPdcPnF3YHo3PwcwJgOuEOsTL3.jpg"
          :height: 720
          :iso_639_1: xx
          :vote_average: 5.085714285714285
          :vote_count: 12
          :width: 1280
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 1.777777777777778
          :file_path: "/fuSeIUKsizmfiPIwDH7lKiFNQoD.jpg"
          :height: 720
          :iso_639_1: xx
          :vote_average: 5.068027210884354
          :vote_count: 7
          :width: 1280
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 1.777777777777778
          :file_path: "/bIB14u0fKASoDnx3UJn5PhbBlhb.jpg"
          :height: 1080
          :iso_639_1: xx
          :vote_average: 5.059523809523809
          :vote_count: 9
          :width: 1920
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 1.777777777777778
          :file_path: "/1AKL15pxyyVrHKMVR8Md64sAJw9.jpg"
          :height: 720
          :iso_639_1: xx
          :vote_average: 5.053968253968254
          :vote_count: 12
          :width: 1280
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 1.777777777777778
          :file_path: "/90hpzX6Bll3jFZyK3ZEWRM2ky0j.jpg"
          :height: 1080
          :iso_639_1: xx
          :vote_average: 5.013227513227514
          :vote_count: 9
          :width: 1920
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 1.777777777777778
          :file_path: "/qhN7i453TFPBReEk2ohp51DUh6h.jpg"
          :height: 720
          :iso_639_1: xx
          :vote_average: 4.996825396825397
          :vote_count: 12
          :width: 1280
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 1.777777777777778
          :file_path: "/jeIYT2hvnXKz7v4OrEut5WKt3em.jpg"
          :height: 720
          :iso_639_1: xx
          :vote_average: 4.989648033126294
          :vote_count: 6
          :width: 1280
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 1.777777777777778
          :file_path: "/58ANn0FgFK7eB6vUopw1MMfPyZW.jpg"
          :height: 720
          :iso_639_1: xx
          :vote_average: 4.98015873015873
          :vote_count: 9
          :width: 1280
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 1.777777777777778
          :file_path: "/tsKF46QfepjVQSkvtYGPn7IICTC.jpg"
          :height: 1080
          :iso_639_1: en
          :vote_average: 4.976525821596244
          :vote_count: 8
          :width: 1920
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 1.777777777777778
          :file_path: "/dtxXKt6FvZ0HltdUAqflnkwfQm9.jpg"
          :height: 720
          :iso_639_1: xx
          :vote_average: 4.966931216931217
          :vote_count: 9
          :width: 1280
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 1.777777777777778
          :file_path: "/Atf7uL8VsJChMj4UW74iVxaLULR.jpg"
          :height: 1080
          :iso_639_1: en
          :vote_average: 4.949698189134809
          :vote_count: 8
          :width: 1920
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 1.777777777777778
          :file_path: "/1pBPSBjMv3oTUDM1aqar5AldS8e.jpg"
          :height: 1080
          :iso_639_1: en
          :vote_average: 4.911937377690802
          :vote_count: 10
          :width: 1920
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 1.777777777777778
          :file_path: "/3nv2TEz2u178xPXzdKlZdUh5uOI.jpg"
          :height: 1080
          :iso_639_1: 
          :vote_average: 0.0
          :vote_count: 0
          :width: 1920
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 1.777777777777778
          :file_path: "/q0qDYeZlVLlFi4KW2dtaETVp3XM.jpg"
          :height: 1080
          :iso_639_1: 
          :vote_average: 0.0
          :vote_count: 0
          :width: 1920
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 1.777777777777778
          :file_path: "/qRNDy8RLjd7WAD8GGTBmzGAFFGF.jpg"
          :height: 720
          :iso_639_1: 
          :vote_average: 0.0
          :vote_count: 0
          :width: 1280
      :posters:
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/4GpwvwDjgwiShr1UBJIn5fk1gwT.jpg"
          :height: 3000
          :iso_639_1: en
          :vote_average: 6.25
          :vote_count: 17
          :width: 2000
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.7091932457786116
          :file_path: "/1YxnYKJaY3oIdqdOBw8uh7Bb2gI.jpg"
          :height: 1066
          :iso_639_1: pt
          :vote_average: 5.759330759330759
          :vote_count: 11
          :width: 756
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/hpt3aa5i0TrSAnEdl3VJrRrje8C.jpg"
          :height: 1500
          :iso_639_1: en
          :vote_average: 5.436
          :vote_count: 36
          :width: 1000
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/wz1TQObQpRYLLN2xpQZapxt6gHT.jpg"
          :height: 2100
          :iso_639_1: en
          :vote_average: 5.42
          :vote_count: 10
          :width: 1400
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/dXRuldPtua2kJccNTugCix2V6tD.jpg"
          :height: 1500
          :iso_639_1: de
          :vote_average: 5.384615384615385
          :vote_count: 2
          :width: 1000
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/63j6sG0Q7GpLLNbGKgmFmAp7xT9.jpg"
          :height: 3000
          :iso_639_1: es
          :vote_average: 5.384
          :vote_count: 2
          :width: 2000
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/zu1BxIKlhTXXIATPINnzg2rwy97.jpg"
          :height: 1800
          :iso_639_1: fr
          :vote_average: 5.384
          :vote_count: 2
          :width: 1200
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/yFX6AIVDp6nF1CARItPVD45q2gj.jpg"
          :height: 1800
          :iso_639_1: hu
          :vote_average: 5.3125
          :vote_count: 1
          :width: 1200
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/hTjHSmQGiaUMyIx3Z25Q1iktCFD.jpg"
          :height: 2100
          :iso_639_1: ru
          :vote_average: 5.3125
          :vote_count: 1
          :width: 1400
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/y0uiOBNcCGeZOizzqMF7W7ZSO1H.jpg"
          :height: 1500
          :iso_639_1: ia
          :vote_average: 5.3125
          :vote_count: 1
          :width: 1000
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/k5w6XErKZn50S61JrztSYwUbg8K.jpg"
          :height: 1500
          :iso_639_1: de
          :vote_average: 5.297619047619047
          :vote_count: 1
          :width: 1000
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.7115768463073853
          :file_path: "/9nU7xqUKYt10nN1tCfd0lbZwwgq.jpg"
          :height: 1002
          :iso_639_1: hu
          :vote_average: 5.288600288600288
          :vote_count: 3
          :width: 713
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.7067708333333333
          :file_path: "/yQBc79UhZGeQhOCH7UJvBCoqq5q.jpg"
          :height: 1920
          :iso_639_1: en
          :vote_average: 5.288600288600288
          :vote_count: 3
          :width: 1357
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/5ObjyaGPmbmRsU5lerO5ss5JXhH.jpg"
          :height: 1500
          :iso_639_1: de
          :vote_average: 5.282738095238095
          :vote_count: 1
          :width: 1000
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.682825484764543
          :file_path: "/6cMPLU1jv8pG9BMmieXCHDTVRPm.jpg"
          :height: 2166
          :iso_639_1: es
          :vote_average: 5.259417199715708
          :vote_count: 4
          :width: 1479
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/tYnygTSBvN4rxypuJ9S9JjUGqMX.jpg"
          :height: 1500
          :iso_639_1: fr
          :vote_average: 5.258
          :vote_count: 6
          :width: 1000
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.7069635913750442
          :file_path: "/rH3JDnWAMkBZrFp747O1I6PrvFe.jpg"
          :height: 2829
          :iso_639_1: en
          :vote_average: 5.246
          :vote_count: 2
          :width: 2000
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/yRNREOLjN0jHDHZC20uWz7dpiWG.jpg"
          :height: 1800
          :iso_639_1: en
          :vote_average: 5.245421245421245
          :vote_count: 2
          :width: 1200
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6665
          :file_path: "/n0XZXIKMyC1voNE4Z4d8rOrj4Dq.jpg"
          :height: 2000
          :iso_639_1: en
          :vote_average: 5.245421245421245
          :vote_count: 2
          :width: 1333
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.7115768463073853
          :file_path: "/olTEZdZJ7UKLE1o4hkFDq4jXBs8.jpg"
          :height: 1002
          :iso_639_1: hu
          :vote_average: 5.245421245421245
          :vote_count: 2
          :width: 713
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.7598191579542244
          :file_path: "/5qEBvDRdY2S2CJ9tsoFktIt8Xue.jpg"
          :height: 3539
          :iso_639_1: es
          :vote_average: 5.245421245421245
          :vote_count: 2
          :width: 2689
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/dG6u8E17AGrcHkV0rnwgL8bwyBw.jpg"
          :height: 1500
          :iso_639_1: he
          :vote_average: 5.245421245421245
          :vote_count: 2
          :width: 1000
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.7029104887424492
          :file_path: "/cja40AM0dHodW6BoG6TWPqCZvbH.jpg"
          :height: 1821
          :iso_639_1: en
          :vote_average: 5.245310245310245
          :vote_count: 3
          :width: 1280
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.7101584342963654
          :file_path: "/At6bZI4lLFjQ3qEjhFzXjC1FfGI.jpg"
          :height: 1073
          :iso_639_1: da
          :vote_average: 5.238095238095238
          :vote_count: 1
          :width: 762
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.7075
          :file_path: "/r5m3KAA4b8MjgLskA47VKpa9Pcn.jpg"
          :height: 800
          :iso_639_1: en
          :vote_average: 5.230987917555082
          :vote_count: 4
          :width: 566
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.7114030971374942
          :file_path: "/ihdm2g5l2PfAxc9YOhVbDO43cM.jpg"
          :height: 2131
          :iso_639_1: pt
          :vote_average: 5.223214285714286
          :vote_count: 1
          :width: 1516
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/m9SPY8zxdtYJIrpeVYb8b2hcGzV.jpg"
          :height: 1500
          :iso_639_1: en
          :vote_average: 5.214285714285714
          :vote_count: 37
          :width: 1000
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6870588235294117
          :file_path: "/48qNiFUXaS1kxyfiJtdKF5btdwJ.jpg"
          :height: 850
          :iso_639_1: pt
          :vote_average: 5.208791208791209
          :vote_count: 2
          :width: 584
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6952247191011236
          :file_path: "/3uY08tijyHAncwCUoQbeNIuiMIw.jpg"
          :height: 2136
          :iso_639_1: pt
          :vote_average: 5.200892857142857
          :vote_count: 1
          :width: 1485
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6664315937940761
          :file_path: "/imCVaunF2Wl3ZRYOH1XB047sTyb.jpg"
          :height: 1418
          :iso_639_1: uk
          :vote_average: 5.187590187590187
          :vote_count: 3
          :width: 945
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.7173100871731009
          :file_path: "/8b2yZgggzAbM10AQ1d2ZVfB0Wm9.jpg"
          :height: 803
          :iso_639_1: ja
          :vote_average: 5.186813186813187
          :vote_count: 2
          :width: 576
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.7297297297297297
          :file_path: "/ySsxOvuHdtMVTujrXB3hlym40eb.jpg"
          :height: 740
          :iso_639_1: ca
          :vote_average: 5.186011904761905
          :vote_count: 1
          :width: 540
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6993736951983298
          :file_path: "/n76isoucmTVu48znhSNtFmaM4QT.jpg"
          :height: 958
          :iso_639_1: it
          :vote_average: 5.180375180375181
          :vote_count: 3
          :width: 670
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6258503401360545
          :file_path: "/ePONmERk6xhp0z9SNv7k362nO65.jpg"
          :height: 735
          :iso_639_1: ko
          :vote_average: 5.171130952380953
          :vote_count: 1
          :width: 460
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.7066666666666667
          :file_path: "/2OvCliXElHDc4bsaTEiri0Fopim.jpg"
          :height: 900
          :iso_639_1: en
          :vote_average: 5.162
          :vote_count: 5
          :width: 636
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.7089655172413794
          :file_path: "/tdWY5UzMeFjd2BWPILHhfrPMrFl.jpg"
          :height: 725
          :iso_639_1: ja
          :vote_average: 5.158730158730159
          :vote_count: 3
          :width: 514
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.75
          :file_path: "/eQq7fKMBWK7mM4p7J6R94Hv80ps.jpg"
          :height: 1240
          :iso_639_1: fr
          :vote_average: 5.151515151515151
          :vote_count: 3
          :width: 930
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6934812760055479
          :file_path: "/jg9VnULUnOMLH0ze1ryFP6Gjm4A.jpg"
          :height: 721
          :iso_639_1: en
          :vote_average: 5.151515151515151
          :vote_count: 3
          :width: 500
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/lbGdSS05NgSQbhDyfGKlRehsdeh.jpg"
          :height: 2400
          :iso_639_1: en
          :vote_average: 5.147679324894515
          :vote_count: 16
          :width: 1600
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/c3dATIFeYnb7PBZ44ngO66ywWaQ.jpg"
          :height: 1500
          :iso_639_1: he
          :vote_average: 5.124378109452737
          :vote_count: 4
          :width: 1000
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.7333333333333333
          :file_path: "/q45N5457v6VZBm5HUGCwfqsIi6E.jpg"
          :height: 1500
          :iso_639_1: ru
          :vote_average: 5.122448979591837
          :vote_count: 7
          :width: 1100
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.775
          :file_path: "/qjU7o5A8J1cgOroQGaBlaeIlBc9.jpg"
          :height: 600
          :iso_639_1: ja
          :vote_average: 5.120879120879121
          :vote_count: 2
          :width: 465
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.7056096430227168
          :file_path: "/lDMmIOBDMuN37lIOlAmhlJwiXM7.jpg"
          :height: 2157
          :iso_639_1: ko
          :vote_average: 5.120879120879121
          :vote_count: 2
          :width: 1522
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/yGoQIzq0XfZsfzvzPGe7QOixYPq.jpg"
          :height: 750
          :iso_639_1: fr
          :vote_average: 5.120772946859903
          :vote_count: 6
          :width: 500
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.7666263603385731
          :file_path: "/fSmXAyRItssRxNt0W33G88ZtRYO.jpg"
          :height: 3308
          :iso_639_1: ru
          :vote_average: 5.113553113553113
          :vote_count: 2
          :width: 2536
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/nLoU3Mth26JQlFumcyXQioCh2WG.jpg"
          :height: 1500
          :iso_639_1: en
          :vote_average: 5.103056147832268
          :vote_count: 4
          :width: 1000
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6754966887417219
          :file_path: "/7T2aIeZK0MUopZovsGWjrynAJnu.jpg"
          :height: 755
          :iso_639_1: he
          :vote_average: 5.098901098901099
          :vote_count: 2
          :width: 510
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/yVkt9BZgjlxdsRO0Y2Pg4rtJHB7.jpg"
          :height: 1500
          :iso_639_1: en
          :vote_average: 5.066137566137566
          :vote_count: 9
          :width: 1000
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/pKGrxTB35AkLsZCT8d8h6F9BSMN.jpg"
          :height: 1500
          :iso_639_1: en
          :vote_average: 5.065410779696494
          :vote_count: 28
          :width: 1000
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/q5rbkd4MY4J8AZEz0NxYWnWyzYD.jpg"
          :height: 1500
          :iso_639_1: en
          :vote_average: 5.064935064935066
          :vote_count: 14
          :width: 1000
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/awYPmDQc8Wga3P2RRutlpPD6PAD.jpg"
          :height: 2400
          :iso_639_1: en
          :vote_average: 5.0
          :vote_count: 7
          :width: 1600
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/adw6Lq9FiC9zjYEpOqfq03ituwp.jpg"
          :height: 3000
          :iso_639_1: en
          :vote_average: 4.968
          :vote_count: 11
          :width: 2000
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6709401709401709
          :file_path: "/A9mw2SLiQ6aob6Xjxwkb3jdmeQt.jpg"
          :height: 2340
          :iso_639_1: en
          :vote_average: 4.948764315852924
          :vote_count: 16
          :width: 1570
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/wOXItXPBEeGnGKQEMgPBtmOXC6q.jpg"
          :height: 1500
          :iso_639_1: en
          :vote_average: 4.914021164021164
          :vote_count: 9
          :width: 1000
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6668
          :file_path: "/h1H1bToJPiOob4xxcWfudEUFME5.jpg"
          :height: 2500
          :iso_639_1: en
          :vote_average: 4.825014343086632
          :vote_count: 20
          :width: 1667
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/adddWKIbkMVWAJkiWfuBFH4TGiJ.jpg"
          :height: 750
          :iso_639_1: de
          :vote_average: 0.0
          :vote_count: 0
          :width: 500
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6606666666666666
          :file_path: "/z9jcLcSfqc5CF4az5RLyjLyL4VK.jpg"
          :height: 1500
          :iso_639_1: en
          :vote_average: 0.0
          :vote_count: 0
          :width: 991
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6606666666666666
          :file_path: "/qw44uCiZRjRdOkeE70Ti3svQj4S.jpg"
          :height: 1500
          :iso_639_1: en
          :vote_average: 0.0
          :vote_count: 0
          :width: 991
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.7221633085896076
          :file_path: "/g4Qq90GZtCur0NXj2Fl1yNTex32.jpg"
          :height: 943
          :iso_639_1: he
          :vote_average: 0.0
          :vote_count: 0
          :width: 681
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/yrIiRT9UP3Z8rQU4MMhCjnbiCXe.jpg"
          :height: 1500
          :iso_639_1: en
          :vote_average: 0.0
          :vote_count: 0
          :width: 1000
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/clgXlDzoJta75gq1ZKp7jgslEPg.jpg"
          :height: 1500
          :iso_639_1: en
          :vote_average: 0.0
          :vote_count: 0
          :width: 1000
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/aBTVf0PySwF2HEb30MXlT86gMuW.jpg"
          :height: 750
          :iso_639_1: cs
          :vote_average: 0.0
          :vote_count: 0
          :width: 500
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.7051377513030529
          :file_path: "/ffwttvYtbp3jmKr3tomZjbXCZeL.jpg"
          :height: 1343
          :iso_639_1: hu
          :vote_average: 0.0
          :vote_count: 0
          :width: 947
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.732
          :file_path: "/zyYwkBZd2u1Z4GjYhkmEYrFuCJA.jpg"
          :height: 1000
          :iso_639_1: ru
          :vote_average: 0.0
          :vote_count: 0
          :width: 732
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.7158826269212856
          :file_path: "/aIuUr2P4O7bmdFUfg5NzhRbFs48.jpg"
          :height: 2147
          :iso_639_1: hu
          :vote_average: 0.0
          :vote_count: 0
          :width: 1537
      - !ruby/object:Tmdb::Movie
        table:
          :aspect_ratio: 0.6666666666666666
          :file_path: "/ynZC2YTWa2bblq8fXqmuhpaFgKh.jpg"
          :height: 1500
          :iso_639_1: en
          :vote_average: 0.0
          :vote_count: 0
          :width: 1000
  :credits: !ruby/object:Tmdb::Movie
    table:
      :cast:
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 4
          :character: The Narrator
          :credit_id: 52fe4250c3a36847f80149f3
          :id: 819
          :name: Edward Norton
          :order: 0
          :profile_path: "/eIkFHNlfretLS1spAcIoihKUS62.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 5
          :character: Tyler Durden
          :credit_id: 52fe4250c3a36847f80149f7
          :id: 287
          :name: Brad Pitt
          :order: 1
          :profile_path: "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 7
          :character: Robert 'Bob' Paulson
          :credit_id: 52fe4250c3a36847f80149ff
          :id: 7470
          :name: Meat Loaf
          :order: 2
          :profile_path: "/43nyfW3TxD3PxDqYB8tyqaKpDBH.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 30
          :character: Angel Face
          :credit_id: 52fe4250c3a36847f8014a51
          :id: 7499
          :name: Jared Leto
          :order: 3
          :profile_path: "/msugySeTCyCmlRWtyB6sMixTQYY.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 6
          :character: Marla Singer
          :credit_id: 52fe4250c3a36847f80149fb
          :id: 1283
          :name: Helena Bonham Carter
          :order: 4
          :profile_path: "/rHZMwkumoRvhKV5ZvwBONKENAhG.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 31
          :character: Richard Chesler
          :credit_id: 52fe4250c3a36847f8014a55
          :id: 7471
          :name: Zach Grenier
          :order: 5
          :profile_path: "/kYijshMQiGA3RP8bXFZ93GR4j8W.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 32
          :character: The Mechanic
          :credit_id: 52fe4250c3a36847f8014a59
          :id: 7497
          :name: Holt McCallany
          :order: 6
          :profile_path: "/5Mw4StSwWwTLyBapXz9nOg7iUl5.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 33
          :character: Ricky
          :credit_id: 52fe4250c3a36847f8014a5d
          :id: 7498
          :name: Eion Bailey
          :order: 7
          :profile_path: "/4MnRgrwuiJvHsfoiJrIUL4TkfoC.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 34
          :character: Intern
          :credit_id: 52fe4250c3a36847f8014a61
          :id: 7472
          :name: Richmond Arquette
          :order: 8
          :profile_path: "/xW4bb2qsPYilO27ex4Xoy2Ik1Ai.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 35
          :character: Thomas
          :credit_id: 52fe4250c3a36847f8014a65
          :id: 7219
          :name: David Andrews
          :order: 9
          :profile_path: "/pxmxn29UHW9r6uvLrd7bEwLswlQ.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 36
          :character: Group Leader
          :credit_id: 52fe4250c3a36847f8014a69
          :id: 68277
          :name: Christina Cabot
          :order: 10
          :profile_path: "/7UBTv5lW6apPdVLnOqTTBMTJWwY.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 37
          :character: Inspector Bird
          :credit_id: 52fe4250c3a36847f8014a6d
          :id: 956719
          :name: Tim DeZarn
          :order: 11
          :profile_path: "/bvj6Kaq1VzAEBkqCGVDvOaQKOhi.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 38
          :character: Inspector Dent
          :credit_id: 52fe4250c3a36847f8014a71
          :id: 59285
          :name: Ezra Buzzington
          :order: 12
          :profile_path: "/dl0SIqpOqS05UpJHKuDQqZTwUvP.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 39
          :character: Airport Security Officer
          :credit_id: 52fe4250c3a36847f8014a75
          :id: 17449
          :name: Bob Stephenson
          :order: 13
          :profile_path: "/jHjchnxDsghomSglNryppVWdBGC.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 40
          :character: Walter
          :credit_id: 52fe4250c3a36847f8014a79
          :id: 56112
          :name: David Lee Smith
          :order: 14
          :profile_path: "/xYkMA9AWtUN93KV5hWzlDkcnebB.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 42
          :character: Lou's Body Guard
          :credit_id: 52fe4250c3a36847f8014a81
          :id: 42824
          :name: Carl Ciarfalio
          :order: 15
          :profile_path: "/1JyIKBSkpK1tADOXpYYrO1khcQH.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 43
          :character: Car Salesman
          :credit_id: 52fe4251c3a36847f8014a85
          :id: 40277
          :name: Stuart Blumberg
          :order: 16
          :profile_path: "/nvHQBUin3CXD0kBsET1KBNaiekW.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 44
          :character: Man at Auto Shop
          :credit_id: 52fe4251c3a36847f8014a89
          :id: 122805
          :name: Mark Fite
          :order: 17
          :profile_path: "/A46OLuNRFPu1NA61VQBf0NzQNFN.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 45
          :character: Seminary Student
          :credit_id: 52fe4251c3a36847f8014a8d
          :id: 35521
          :name: Matt Winston
          :order: 18
          :profile_path: "/vjXom4PhSWEkXlQDhh8ubTFoiIq.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 46
          :character: Channel 4 Reporter
          :credit_id: 52fe4251c3a36847f8014a91
          :id: 1224996
          :name: Lauren Sánchez
          :order: 19
          :profile_path: "/iQ16P9a8TEzb4WsN8fjLsMCtvMA.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 41
          :character: Detective Stern
          :credit_id: 52fe4250c3a36847f8014a7d
          :id: 1219497
          :name: Thom Gossom Jr.
          :order: 20
          :profile_path: "/8je5ISnUinU4RfjRGqW0ktZLneX.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 52
          :character: Detective Kevin
          :credit_id: 52fe4251c3a36847f8014aa9
          :id: 1226835
          :name: Markus Redmond
          :order: 21
          :profile_path: "/yxMbPCGa8rMSrquc8v4UN7QLlWX.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 51
          :character: Detective Andrew
          :credit_id: 52fe4251c3a36847f8014aa5
          :id: 41352
          :name: Van Quattro
          :order: 22
          :profile_path: "/kNmOCRKD6PyG8t9tcDOpBFOrast.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 84
          :character: Detective Walker
          :credit_id: 588651eac3a3684628003490
          :id: 177175
          :name: Michael Girardin
          :order: 23
          :profile_path: "/SMcjobWI3ruYfnSu56Se5mOMQX.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 47
          :character: Policeman
          :credit_id: 52fe4251c3a36847f8014a95
          :id: 109100
          :name: David Jean Thomas
          :order: 24
          :profile_path: "/f5YBSiswUU9rctXbJQoXi0CdJBn.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 48
          :character: Salvator, Winking Bartender
          :credit_id: 52fe4251c3a36847f8014a99
          :id: 1221838
          :name: Paul Carafotes
          :order: 25
          :profile_path: "/enoYGFhHwLqKacISwjxk5yrFAOA.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 49
          :character: Proprietor of Dry Cleaners
          :credit_id: 52fe4251c3a36847f8014a9d
          :id: 145531
          :name: Christopher John Fields
          :order: 26
          :profile_path: "/jTWw4B74VhrPo8AN6Q9jq31eYDD.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 50
          :character: Bartender in Halo
          :credit_id: 52fe4251c3a36847f8014aa1
          :id: 9291
          :name: Michael Shamus Wiles
          :order: 27
          :profile_path: "/upfSW6BGze446iqsZRehzcToNm8.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 59
          :character: Group Leader
          :credit_id: 581fce4c92514168ad00899d
          :id: 1129738
          :name: George Maguire
          :order: 28
          :profile_path: "/u7eyYwbcxhYYlfUbsyhu7WBsJfW.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 60
          :character: Weeping Woman
          :credit_id: 581fce7fc3a368555600847b
          :id: 1317693
          :name: Eugenie Bondurant
          :order: 29
          :profile_path: "/e0kJKzmTuSS1Uk2S9Yaw6633HN3.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 61
          :character: Speaker
          :credit_id: 581fcf3a92514168ad008b09
          :id: 202080
          :name: Sydney 'Big Dawg' Colston
          :order: 30
          :profile_path: "/ofu7Z6xXpCpb4PJpOpbsH16cDR9.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 62
          :character: Chloe
          :credit_id: 581fcf5d92514168aa008b9e
          :id: 7473
          :name: Rachel Singer
          :order: 31
          :profile_path: "/gwCAgdmUkZg1LHjn9uZuiAwul8X.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 63
          :character: Airline Attendant
          :credit_id: 581fd16ec3a36855530096a4
          :id: 1172435
          :name: Christie Cronenweth
          :order: 32
          :profile_path: "/wQsaa133xR8klRucMHtoAedeMzc.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 64
          :character: Woman on Plane
          :credit_id: 581fd575c3a36855630075c4
          :id: 1705289
          :name: Dierdre Downing-Jackson
          :order: 33
          :profile_path: "/oqxygdk5UPsl7afucfq8Nxj3tpc.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 65
          :character: Doorman
          :credit_id: 581fd6bcc3a3685556008e6b
          :id: 62846
          :name: Charlie Dell
          :order: 34
          :profile_path: "/z0JgZxazJAVlHxLYXWM8eUZlOk8.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 66
          :character: Man in Suit
          :credit_id: 581fd6e192514168ad0093bc
          :id: 530040
          :name: Rob Lanza
          :order: 35
          :profile_path: "/7vQAlOkqsJb8J6LEGeVd5xmlNlU.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 67
          :character: Food Court Maitre D'
          :credit_id: 581fd956c3a368554d009932
          :id: 137425
          :name: Joel Bissonnette
          :order: 36
          :profile_path: "/2JrM1KCF0kjSlfqPUr3lfq9HFVD.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 68
          :character: Steph
          :credit_id: 581fda0292514168af009523
          :id: 175120
          :name: Evan Mirand
          :order: 37
          :profile_path: "/7g5eTHXJ4F10CcUoNKhPRmRncqS.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 69
          :character: Next Month's Opponent
          :credit_id: 58864e17925141107e0008b4
          :id: 1744132
          :name: Robby Robinson
          :order: 38
          :profile_path: "/sQx9PWf8PtBqvERvMDZbCfjZrR3.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 70
          :character: Cop at Marla's Building
          :credit_id: 58864e2fc3a3684480002f96
          :id: 168924
          :name: Lou Beatty Jr.
          :order: 39
          :profile_path: "/vgw7D3yM7ki7Y6TOFNZRqi96E08.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 71
          :character: Susan, Comsetics Dealer
          :credit_id: 58864fa392514113ea00076f
          :id: 157938
          :name: Valerie Bickford
          :order: 40
          :profile_path: "/ipMs4d6trwAReFp1QKbsZgAYDmv.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 72
          :character: Lou
          :credit_id: 58864fdac3a36845e6002f78
          :id: 7500
          :name: Peter Iacangelo
          :order: 41
          :profile_path: "/mmYWw6sWibxbFK7LuO4qFUnO9G0.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 73
          :character: 'Man #1 at Auto Shop'
          :credit_id: 5886500492514113ea000859
          :id: 1744135
          :name: Todd Peirce
          :order: 42
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 74
          :character: Raymond K. Hessel
          :credit_id: 58865057c3a36843c80032d9
          :id: 1744137
          :name: Joon Kim
          :order: 43
          :profile_path: "/iEMEz4B05UfKYefo2rcFk5wAfxu.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 75
          :character: Bus Driver with Broken Nose
          :credit_id: 588650819251411bb4000042
          :id: 1636371
          :name: Bennie Moore
          :order: 44
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 76
          :character: Police Commissioner Jacobs
          :credit_id: 588650a5925141125e000bcd
          :id: 1174793
          :name: Pat McNamara
          :order: 45
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 77
          :character: Banquest Speaker
          :credit_id: 588650b7c3a3684628003283
          :id: 1744138
          :name: Tyrone R. Livingston
          :order: 46
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 78
          :character: Airport Valet
          :credit_id: 588650cb925141107e000e39
          :id: 1744139
          :name: Owen Masterson
          :order: 47
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 79
          :character: 'Bruised Bar Patron #1'
          :credit_id: 58865114c3a36843020036a1
          :id: 1744140
          :name: Anderson Bourell
          :order: 48
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 80
          :character: 'Bruised Bar Patron #2'
          :credit_id: 5886512c92514116ac000756
          :id: 63537
          :name: Scotch Ellis Loring
          :order: 49
          :profile_path: "/7Tk72GCd4TLfJj16EvVroEtMv86.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 81
          :character: Hotel Desk Clerk
          :credit_id: 5886514992514113ea000ae7
          :id: 170315
          :name: Andi Carnick
          :order: 50
          :profile_path: "/ry0Nx6P0NRRO6NUnonQzxL6qaRz.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 82
          :character: Waiter at Clifton's
          :credit_id: 588651a192514116ac00088a
          :id: 1707776
          :name: Edward Kowalczyk
          :order: 51
          :profile_path: "/iFCGPfmFahEuRda1OWEZ8WPiy6Y.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 83
          :character: Desk Sergeant
          :credit_id: 588651b59251411158000f3f
          :id: 7140
          :name: Leonard Termo
          :order: 52
          :profile_path: "/jdXgGMSpQGeN6vCZO5OM758dh3t.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 85
          :character: BMW Salesman
          :credit_id: 5886520ec3a36843c80035ea
          :id: 74507
          :name: Michael Arturo
          :order: 53
          :profile_path: "/yMm3LVd8tm63B3e3DF415U5qRaI.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 86
          :character: Fight Spectator
          :credit_id: 58865232c3a3684628003526
          :id: 1383838
          :name: Greg Bronson
          :order: 54
          :profile_path: "/t8tzdPzXoSDqvg5XaCK5JNtQRYD.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 87
          :character: Fighter
          :credit_id: 58865242925141107e00117f
          :id: 1194120
          :name: Matt Cinquanta
          :order: 55
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 88
          :character: Champion Fighter
          :credit_id: 58865252c3a36843c8003665
          :id: 1744141
          :name: Tommy Dallace
          :order: 56
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 89
          :character: Irvin
          :credit_id: 58865265c3a3684628003584
          :id: 13925
          :name: Paul Dillon
          :order: 57
          :profile_path: "/6jouXtMcbJ7nTuDNwvaePnqCHTX.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 90
          :character: Vomiting Fight Spectator
          :credit_id: 5886527a9251411362000e93
          :id: 1744142
          :name: Tom Falzone
          :order: 58
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 91
          :character: Chanting Fighter
          :credit_id: 5886529f92514113ea000df8
          :id: 552271
          :name: Eddie Hargitay
          :order: 59
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 92
          :character: Banquest Guest
          :credit_id: 588652b5c3a3684480003740
          :id: 94561
          :name: Phil Hawn
          :order: 60
          :profile_path: "/yrBuFzfaYIkglYj0NpVpdZB25F3.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 93
          :character: Waiter in Bridgeworth Suites Corporate Video
          :credit_id: 588652d892514111a900118a
          :id: 1223916
          :name: Bruce Holman
          :order: 61
          :profile_path: "/3qIP6JvcNfKCmSee2STHt3JE0Wy.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 94
          :character: Fight Patron Saying 'I don't know. What's going on?'
          :credit_id: 588652f0c3a36845e60034af
          :id: 1744143
          :name: Jawara
          :order: 62
          :profile_path: "/kkJsBMhO0kJN1hG6xW8qAXnzllP.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 95
          :character: Waiter
          :credit_id: 58865312925141107e001361
          :id: 1525014
          :name: Baron Jay
          :order: 63
          :profile_path: "/dsYI4aUxeqx1RizSqmxIsXhruS8.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 96
          :character: Restaurant Maitre D'
          :credit_id: 58865333c3a36843c80037ef
          :id: 1577360
          :name: Jim Jenkins
          :order: 64
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 97
          :character: Passenger Clutching Armrest
          :credit_id: 5886535392514113ea000f8d
          :id: 1403525
          :name: Kevin Scott Mack
          :order: 65
          :profile_path: "/a6eWi1R0BwPMQkKZpLaxyu1rXGa.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 98
          :character: 'Fight Club Patron / Guy #2 in Video Store'
          :credit_id: 5886536592514113ea000fbb
          :id: 1744144
          :name: Trey Ore
          :order: 66
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 99
          :character: Fight Spectator
          :credit_id: 5886537d9251411158001378
          :id: 1744145
          :name: Louis Ortiz
          :order: 67
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 100
          :character: Fight Club Man
          :credit_id: 58865398c3a36845e60035ea
          :id: 1386468
          :name: Hugh Peddy
          :order: 68
          :profile_path: "/fB4Kyotps22hqd7G8ppur6i4KDN.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 101
          :character: Fight Club Man
          :credit_id: 588653aa92514111580013f2
          :id: 1744146
          :name: J.T. Pontino
          :order: 69
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 102
          :character: Waiter
          :credit_id: 588653c8c3a36843c800390b
          :id: 1744147
          :name: Chad Randau
          :order: 70
          :profile_path: "/Ao7XRsmXN35T3FpDA1zrCtx1MMe.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 103
          :character: Fighter
          :credit_id: 588653ec92514113ea001123
          :id: 133153
          :name: Marcio Rosario
          :order: 71
          :profile_path: "/d98hd1hEhnPtUTAc5SQ7PiSHLFJ.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 104
          :character: Riley Wilde - Fighter
          :credit_id: 58865401c3a36817620006fc
          :id: 1744148
          :name: Gregory Silva
          :order: 72
          :profile_path: "/tfajHRl56kJlqNhaW92XH9fj1vG.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 105
          :character: Fight Bully
          :credit_id: 588654119251411bb40007f2
          :id: 16060
          :name: Brian Tochi
          :order: 73
          :profile_path: "/2nAC2ssCFu74zkhg1722WQhArGO.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 106
          :character: Bar Worker
          :credit_id: 58865423c3a36818e9000600
          :id: 1744149
          :name: Alekxia Valdez
          :order: 74
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 107
          :character: Support Group Member
          :credit_id: 58865450c3a3681eb70000ce
          :id: 1744150
          :name: Michael Zagst
          :order: 75
          :profile_path: "/bqbjYLTFjE4aoYOntybwP2TmzEZ.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :cast_id: 108
          :character: Man at the Club
          :credit_id: 58865460c3a3684480003a41
          :id: 1744151
          :name: Gökhan Öncel
          :order: 76
          :profile_path: 
      :crew:
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 56380f0cc3a3681b5c0200be
          :department: Writing
          :id: 7469
          :job: Screenplay
          :name: Jim Uhls
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 52fe4250c3a36847f8014a05
          :department: Production
          :id: 7474
          :job: Producer
          :name: Ross Grayson Bell
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 52fe4250c3a36847f8014a0b
          :department: Production
          :id: 7475
          :job: Producer
          :name: Ceán Chaffin
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 52fe4250c3a36847f8014a11
          :department: Production
          :id: 1254
          :job: Producer
          :name: Art Linson
          :profile_path: "/dEtVivCXxQBtIzmJcUNupT1AB4H.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 52fe4250c3a36847f8014a17
          :department: Sound
          :id: 7477
          :job: Original Music Composer
          :name: John King
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 52fe4250c3a36847f8014a1d
          :department: Sound
          :id: 7478
          :job: Original Music Composer
          :name: Michael Simpson
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 52fe4250c3a36847f8014a23
          :department: Camera
          :id: 7479
          :job: Director of Photography
          :name: Jeff Cronenweth
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 52fe4250c3a36847f8014a29
          :department: Editing
          :id: 7480
          :job: Editor
          :name: James Haygood
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 52fe4250c3a36847f8014a2f
          :department: Production
          :id: 7481
          :job: Casting
          :name: Laray Mayfield
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 52fe4250c3a36847f8014a35
          :department: Art
          :id: 1303
          :job: Production Design
          :name: Alex McDowell
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 52fe4250c3a36847f8014a3b
          :department: Sound
          :id: 7763
          :job: Sound Editor
          :name: Ren Klyce
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 52fe4250c3a36847f8014a41
          :department: Sound
          :id: 7764
          :job: Sound Editor
          :name: Richard Hymns
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 52fe4250c3a36847f8014a47
          :department: Directing
          :id: 7467
          :job: Director
          :name: David Fincher
          :profile_path: "/dcBHejOsKvzVZVozWJAPzYthb8X.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 52fe4250c3a36847f8014a4d
          :department: Writing
          :id: 7468
          :job: Novel
          :name: Chuck Palahniuk
          :profile_path: "/8nOJDJ6SqwV2h7PjdLBDTvIxXvx.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 55422f369251414aee003e1c
          :department: Crew
          :id: 1447557
          :job: Compositors
          :name: Rachel Wyn Dunn
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 55731b7792514110f90024ab
          :department: Production
          :id: 1474687
          :job: Associate Producer
          :name: John S. Dorsey
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 55731b8192514111610027d7
          :department: Production
          :id: 376
          :job: Executive Producer
          :name: Arnon Milchan
          :profile_path: "/5crR5twLRcIdvRR06dB1O0EQ8x0.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c8c4c3a3685ec3000457
          :department: Crew
          :id: 1749899
          :job: Loader
          :name: Gary Kanner
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c88d9251410b870003ad
          :department: Crew
          :id: 1378726
          :job: Dialect Coach
          :name: Francie Brown
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cc66c3a3685ecd00063e
          :department: Lighting
          :id: 1749920
          :job: Rigging Grip
          :name: Ronald A. Miller
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cc4f9251410b9c0005ce
          :department: Lighting
          :id: 1552215
          :job: Rigging Gaffer
          :name: Martin Bosworth
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cc17c3a3685ecf0005a6
          :department: Lighting
          :id: 51333
          :job: Gaffer
          :name: Claudio Miranda
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c4869251410b990001e3
          :department: Art
          :id: 10855
          :job: Art Direction
          :name: Chris Gorak
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c4a3c3a3685ecd0001c0
          :department: Art
          :id: 7237
          :job: Set Decoration
          :name: Jay Hart
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c4eac3a3685ec6000218
          :department: Costume & Make-Up
          :id: 605
          :job: Costume Design
          :name: Michael Kaplan
          :profile_path: "/pgME9OWsN2y3UZw1OsXbqmN2fEx.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c54ec3a3685ec9000253
          :department: Art
          :id: 562696
          :job: Art Department Assistant
          :name: Dianne Chadwick
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c5bcc3a3685ec0000288
          :department: Art
          :id: 1749891
          :job: Art Department Coordinator
          :name: S. Quinn
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c5c89251410b96000268
          :department: Art
          :id: 60937
          :job: Assistant Art Director
          :name: Seth Reed
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c5e29251410b89000283
          :department: Art
          :id: 1533533
          :job: Conceptual Design
          :name: Josue Clotaire Fleurimond
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c5f6c3a3685ec00002bc
          :department: Art
          :id: 1341851
          :job: Construction Coordinator
          :name: Jeff Passanante
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c60cc3a3685ec00002cf
          :department: Art
          :id: 1463325
          :job: Construction Foreman
          :name: Tim R. Lafferty
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c61ac3a3685ec30002a5
          :department: Art
          :id: 1422059
          :job: Greensman
          :name: Craig B. Ayers Sr.
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c632c3a3685ec60002ce
          :department: Art
          :id: 83072
          :job: Leadman
          :name: P. Scott Bailey
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c6509251410b9c0002c8
          :department: Art
          :id: 1749892
          :job: Location Scout
          :name: Jack Robinson
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c65cc3a3685ecd0002c9
          :department: Art
          :id: 1728281
          :job: Painter
          :name: Tammy DeRuiter
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c670c3a3685ebc000311
          :department: Art
          :id: 1357044
          :job: Production Illustrator
          :name: Richard K. Buoen
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c687c3a3685ebc000327
          :department: Art
          :id: 1397810
          :job: Sculptor
          :name: Kenneth Garrett
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c69d9251410b93000302
          :department: Art
          :id: 1390518
          :job: Set Designer
          :name: Luis G. Hoyos
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c6b59251410b9300030f
          :department: Art
          :id: 1548670
          :job: Standby Painter
          :name: Bill 'Kauhane' Hoyt
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c6cb9251410b8d00031f
          :department: Camera
          :id: 37925
          :job: Camera Operator
          :name: Conrad W. Hall
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c6e99251410b90000311
          :department: Camera
          :id: 1493771
          :job: First Assistant Camera
          :name: John T. Connor
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c7299251410b9600032a
          :department: Camera
          :id: 1646055
          :job: Aerial Camera
          :name: Robert Mehnert
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c73cc3a3685ec9000380
          :department: Camera
          :id: 1401109
          :job: Steadicam Operator
          :name: Chris Haarhoff
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c75b9251410b8900037f
          :department: Camera
          :id: 1172443
          :job: Still Photographer
          :name: Merrick Morton
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c79ec3a3685ec60003af
          :department: Costume & Make-Up
          :id: 1408290
          :job: Hairstylist
          :name: Patricia Miller
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c7b2c3a3685ec00003eb
          :department: Costume & Make-Up
          :id: 1413224
          :job: Key Hair Stylist
          :name: Fríða Aradóttir
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c7cf9251410b9000039e
          :department: Costume & Make-Up
          :id: 1325234
          :job: Makeup Artist
          :name: Jean Ann Black
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c7efc3a3685ec30003c7
          :department: Costume & Make-Up
          :id: 1749896
          :job: Prosthetic Makeup Artist
          :name: Greg Solomon
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c7fcc3a3685ecd0003c8
          :department: Costume & Make-Up
          :id: 1532597
          :job: Set Costumer
          :name: Terry Anderson
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c8109251410b99000427
          :department: Costume & Make-Up
          :id: 1708007
          :job: Set Dressing Artist
          :name: Charles W. Belisle
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c8269251410b900003c1
          :department: Crew
          :id: 1181128
          :job: Additional Music
          :name: P.J. Hanke
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c83b9251410b87000389
          :department: Crew
          :id: 1749897
          :job: CG Supervisor
          :name: Yann Blondel
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c8589251410b960003ea
          :department: Crew
          :id: 1552998
          :job: Craft Service
          :name: Raymond Bulinski
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c8b09251410b8d000438
          :department: Crew
          :id: 1559615
          :job: Driver
          :name: Manny Demello
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c8dec3a3685ec000049b
          :department: Crew
          :id: 1352424
          :job: Mix Technician
          :name: Brandon Proctor
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c8f29251410b990004a9
          :department: Crew
          :id: 1749901
          :job: Post Production Assistant
          :name: Grace Karman Graham
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c906c3a3685ec3000485
          :department: Crew
          :id: 1599632
          :job: Post Production Supervisor
          :name: Peter Mavromates
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c91d9251410b9600045a
          :department: Crew
          :id: 1735467
          :job: Production Controller
          :name: Kieran Woo
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c94ec3a3685ebc00048b
          :department: Crew
          :id: 1749902
          :job: Production Office Assistant
          :name: Carrie Shaw
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c99c9251410b9600048c
          :department: Crew
          :id: 1749904
          :job: Propmaker
          :name: David B. Brenner
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c9a9c3a3685ecf00046a
          :department: Art
          :id: 1749906
          :job: Property Master
          :name: Roy 'Bucky' Moore
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c9cf9251410b8700047e
          :department: Crew
          :id: 1749907
          :job: Set Medic
          :name: Katherine Jones
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c9de9251410b890004fc
          :department: Crew
          :id: 1585177
          :job: Set Production Assistant
          :name: Michael Herron
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c9f0c3a3685ec90004fb
          :department: Crew
          :id: 1749908
          :job: Software Engineer
          :name: Lucio I. Flores
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c9fe9251410b8d0004f8
          :department: Crew
          :id: 1342072
          :job: Special Effects Coordinator
          :name: Cliff Wenger
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894ca33c3a3685ec9000520
          :department: Crew
          :id: 1749910
          :job: Stand In
          :name: Chad Keller
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894ca5dc3a3685ec900053f
          :department: Crew
          :id: 1535124
          :job: Stunt Coordinator
          :name: Michael Runyard
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894ca83c3a3685ec3000578
          :department: Crew
          :id: 169628
          :job: Stunts
          :name: Jeff Imada
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cb1e9251410b87000528
          :department: Crew
          :id: 12371
          :job: Utility Stunts
          :name: Richard Cetrone
          :profile_path: "/63LiC0atGVnNUUaEu86tce2il8Z.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894caa4c3a3685ebc000562
          :department: Crew
          :id: 1749916
          :job: Systems Administrators & Support
          :name: Leon Xiao
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cab49251410b990005b2
          :department: Crew
          :id: 1586924
          :job: Transportation Captain
          :name: Jim Alfonso
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cae99251410b9000055a
          :department: Crew
          :id: 1398980
          :job: Transportation Coordinator
          :name: Dave Robling
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cafd9251410b9300054d
          :department: Production
          :id: 8850
          :job: Unit Production Manager
          :name: Helen Pollak
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cb79c3a3685ec000062f
          :department: Crew
          :id: 1735477
          :job: Video Assist Operator
          :name: Wayne Tidwell
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cb97c3a3685ec60005d9
          :department: Directing
          :id: 1521769
          :job: Script Supervisor
          :name: Dina Waxman
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cbaa9251410b890005e8
          :department: Editing
          :id: 1552549
          :job: Color Timer
          :name: David Orr
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cbc4c3a3685ec60005f4
          :department: Editing
          :id: 1389534
          :job: Dialogue Editor
          :name: Richard Quinn
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cbe09251410b89000610
          :department: Editing
          :id: 423640
          :job: First Assistant Editor
          :name: Michael Matzdorff
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cbf79251410b930005d8
          :department: Lighting
          :id: 1622111
          :job: Best Boy Electric
          :name: Michael Arvanitis
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cc37c3a3685ebc000644
          :department: Lighting
          :id: 1614187
          :job: Lighting Technician
          :name: Kevin Brown
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cc7bc3a3685ecd000651
          :department: Production
          :id: 1530086
          :job: Casting Associate
          :name: Karen Meisels
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cc93c3a3685ec9000661
          :department: Production
          :id: 1749921
          :job: Location Manager
          :name: Flint Maloney
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cd079251411efc00004d
          :department: Production
          :id: 1749922
          :job: Production Accountant
          :name: Jim Davidson
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cd209251411ee600004d
          :department: Production
          :id: 1536630
          :job: Production Coordinator
          :name: Robb Earnest
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cd38c3a368771c000046
          :department: Production
          :id: 34528
          :job: Production Supervisor
          :name: Julie M. Anderson
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cd4ec3a368772c000049
          :department: Production
          :id: 1554372
          :job: Researcher
          :name: Carey Ann Strelecki
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cd609251411eeb000065
          :department: Sound
          :id: 1376902
          :job: ADR Supervisor
          :name: Gwendolyn Yates Whittle
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cd7a92514122bf000003
          :department: Sound
          :id: 578767
          :job: Boom Operator
          :name: Don Coufal
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cd95c3a3687ba300000e
          :department: Sound
          :id: 1749923
          :job: Assistant Sound Editor
          :name: Jessica Bellfort
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cdaac3a3687bc300000e
          :department: Sound
          :id: 1341856
          :job: Foley
          :name: Hilda Hodges
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cdc692514122b7000038
          :department: Sound
          :id: 1404546
          :job: Music Editor
          :name: Brian Richards
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cde492514122c1000053
          :department: Sound
          :id: 7763
          :job: Sound Designer
          :name: Ren Klyce
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cdfcc3a3687bb800004a
          :department: Sound
          :id: 7537
          :job: Sound Effects Editor
          :name: Steve Boeddeker
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894ce2cc3a3687ba7000053
          :department: Sound
          :id: 1511710
          :job: Sound Mixer
          :name: Jeff Wexler
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cebf92514122b00000c0
          :department: Visual Effects
          :id: 1749924
          :job: 3D Animator
          :name: Jim Rutherford
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cedb92514122b50000e4
          :department: Visual Effects
          :id: 5714
          :job: Animation Supervisor
          :name: Carlos Saldanha
          :profile_path: "/quMiXofILtHMqiraEpCFHkl1HoS.jpg"
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cef5c3a3687ba70000c6
          :department: Visual Effects
          :id: 1342601
          :job: Digital Compositors
          :name: Nicholas Brooks
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cf0fc3a3687b9f0000f1
          :department: Visual Effects
          :id: 1440848
          :job: Visual Effects
          :name: Joshua I. Kolden
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cf28c3a3687bb30000d8
          :department: Visual Effects
          :id: 1749925
          :job: Visual Effects Coordinator
          :name: Lauren A. Littleton
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cf3e92514122b7000122
          :department: Visual Effects
          :id: 1403191
          :job: Visual Effects Producer
          :name: Andrea D'Amico
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cf5892514122ad000137
          :department: Visual Effects
          :id: 1002652
          :job: Visual Effects Supervisor
          :name: Dennis Berardi
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cf90c3a3687ba3000138
          :department: Writing
          :id: 1463313
          :job: Storyboard
          :name: Collin Grant
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cfd192514122b7000179
          :department: Crew
          :id: 1749926
          :job: Sound Design Assistant
          :name: Misa Kageyama
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894cfef92514122bf00017c
          :department: Crew
          :id: 554001
          :job: Thanks
          :name: Johann Benét
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 5894c7859251410b90000374
          :department: Costume & Make-Up
          :id: 1325655
          :job: Costume Supervisor
          :name: Elinor Bardach
          :profile_path: 
      - !ruby/object:Tmdb::Movie
        table:
          :credit_id: 57fe1e549251410699007177
          :department: Costume & Make-Up
          :id: 1693424
          :job: Assistant Costume Designer
          :name: Mirela Rupic
          :profile_path: "/5z0I2eRwBrJjSv27ig4VnU0lmCZ.jpg"
  :keywords: !ruby/object:Tmdb::Movie
    table:
      :keywords:
      - !ruby/object:Tmdb::Movie
        table:
          :id: 825
          :name: support group
      - !ruby/object:Tmdb::Movie
        table:
          :id: 851
          :name: dual identity
      - !ruby/object:Tmdb::Movie
        table:
          :id: 1541
          :name: nihilism
      - !ruby/object:Tmdb::Movie
        table:
          :id: 3927
          :name: rage and hate
      - !ruby/object:Tmdb::Movie
        table:
          :id: 4142
          :name: insomnia
      - !ruby/object:Tmdb::Movie
        table:
          :id: 4565
          :name: dystopia
      - !ruby/object:Tmdb::Movie
        table:
          :id: 14819
          :name: violence
  :similar: !ruby/object:Tmdb::Movie
    table:
      :page: 1
      :results:
      - !ruby/object:Tmdb::Movie
        table:
          :adult: false
          :backdrop_path: "/4G6FNNLSIVrwSRZyFs91hQ3lZtD.jpg"
          :genre_ids:
          - 27
          - 53
          :id: 381288
          :original_language: en
          :original_title: Split
          :overview: Though Kevin has evidenced 23 personalities to his trusted psychiatrist,
            Dr. Fletcher, there remains one still submerged who is set to materialize
            and dominate all the others. Compelled to abduct three teenage girls led
            by the willful, observant Casey, Kevin reaches a war for survival among
            all of those contained within him — as well as everyone around him — as
            the walls between his compartments shatter apart.
          :release_date: '2016-11-15'
          :poster_path: "/rXMWOZiCt6eMX22jWuTOSdQ98bY.jpg"
          :popularity: 32.452977
          :title: Split
          :video: false
          :vote_average: 6.8
          :vote_count: 2520
      - !ruby/object:Tmdb::Movie
        table:
          :adult: false
          :backdrop_path: "/phszHPFVhPHhMZgo0fWTKBDQsJA.jpg"
          :genre_ids:
          - 28
          - 12
          - 878
          - 53
          :id: 76341
          :original_language: en
          :original_title: 'Mad Max: Fury Road'
          :overview: An apocalyptic story set in the furthest reaches of our planet,
            in a stark desert landscape where humanity is broken, and most everyone
            is crazed fighting for the necessities of life. Within this world exist
            two rebels on the run who just might be able to restore order. There's
            Max, a man of action and a man of few words, who seeks peace of mind following
            the loss of his wife and child in the aftermath of the chaos. And Furiosa,
            a woman of action and a woman who believes her path to survival may be
            achieved if she can make it across the desert back to her childhood homeland.
          :release_date: '2015-05-13'
          :poster_path: "/kqjL17yufvn9OVLyXYpvtyrFfak.jpg"
          :popularity: 24.514039
          :title: 'Mad Max: Fury Road'
          :video: false
          :vote_average: 7.2
          :vote_count: 7833
      - !ruby/object:Tmdb::Movie
        table:
          :adult: false
          :backdrop_path: "/4PwyB0ErucIANzW24Kori71J6gU.jpg"
          :genre_ids:
          - 878
          - 12
          - 53
          :id: 131631
          :original_language: en
          :original_title: 'The Hunger Games: Mockingjay - Part 1'
          :overview: Katniss Everdeen reluctantly becomes the symbol of a mass rebellion
            against the autocratic Capitol.
          :release_date: '2014-11-18'
          :poster_path: "/gj282Pniaa78ZJfbaixyLXnXEDI.jpg"
          :popularity: 12.314215
          :title: 'The Hunger Games: Mockingjay - Part 1'
          :video: false
          :vote_average: 6.6
          :vote_count: 4556
      - !ruby/object:Tmdb::Movie
        table:
          :adult: false
          :backdrop_path: "/rjUl3pd1LHVOVfG4IGcyA1cId5l.jpg"
          :genre_ids:
          - 878
          - 28
          - 18
          - 53
          :id: 119450
          :original_language: en
          :original_title: Dawn of the Planet of the Apes
          :overview: A group of scientists in San Francisco struggle to stay alive
            in the aftermath of a plague that is wiping out humanity, while Caesar
            tries to maintain dominance over his community of intelligent apes.
          :release_date: '2014-06-26'
          :poster_path: "/aJemoN7F9GrAYjIL94KXww3QWP9.jpg"
          :popularity: 8.308024
          :title: Dawn of the Planet of the Apes
          :video: false
          :vote_average: 7.4
          :vote_count: 3318
      - !ruby/object:Tmdb::Movie
        table:
          :adult: false
          :backdrop_path: "/9E1DF74YxPiNZMv8gwV0Qt0RAut.jpg"
          :genre_ids:
          - 18
          - 27
          - 53
          :id: 59726
          :original_language: en
          :original_title: Wake Wood
          :overview: The parents of a girl who was killed by a savage dog are granted
            the opportunity to spend three days with their deceased daughter.
          :release_date: '2011-03-25'
          :poster_path: "/5qGmSxKYJGhGDkR9zTJ07dQY39J.jpg"
          :popularity: 1.310374
          :title: Wake Wood
          :video: false
          :vote_average: 5.4
          :vote_count: 46
      - !ruby/object:Tmdb::Movie
        table:
          :adult: false
          :backdrop_path: "/8jNiQwGgAL5R2xwAcJTGWOZn3Mm.jpg"
          :genre_ids:
          - 37
          - 18
          - 12
          - 53
          :id: 281957
          :original_language: en
          :original_title: The Revenant
          :overview: In the 1820s, a frontiersman, Hugh Glass, sets out on a path
            of vengeance against those who left him for dead after a bear mauling.
          :release_date: '2015-12-25'
          :poster_path: "/oXUWEc5i3wYyFnL1Ycu8ppxxPvs.jpg"
          :popularity: 6.684852
          :title: The Revenant
          :video: false
          :vote_average: 7.2
          :vote_count: 5255
      - !ruby/object:Tmdb::Movie
        table:
          :adult: false
          :backdrop_path: "/9e5e7dJTMxQeF7zNx0CiJmxXE1I.jpg"
          :genre_ids:
          - 27
          - 878
          - 53
          :id: 11309
          :original_language: en
          :original_title: Hardware
          :overview: It was the movie that stunned audiences, shocked the MPAA and
            marked the debut of one of the most uncompromising filmmakers in modern
            horror. Golden Globe winner Dylan McDermott (The Practice) stars as a
            post-apocalyptic scavenger who brings home a battered cyborg skull for
            his metal-sculptor girlfriend. But this steel scrap contains the brain
            of the M.A.R.K. 13, the military's most ferocious bio-mechanical combat
            droid. It is cunning, cruel and can reassemble itself. Tonight, it is
            reborn....and no flesh shall be spared. Stacey Travis (Ghost World) co-stars
            - along with appearances by Iggy Pop, Lemmy of Motörhead and music by
            Ministry and Public Image Ltd.
          :release_date: '1990-09-14'
          :poster_path: "/nsFm5xniViTVr1oVUpKmgvlAOEA.jpg"
          :popularity: 1.103245
          :title: Hardware
          :video: false
          :vote_average: 5.6
          :vote_count: 76
      - !ruby/object:Tmdb::Movie
        table:
          :adult: false
          :backdrop_path: "/yTbPPmLAn7DiiM0sPYfZduoAjB.jpg"
          :genre_ids:
          - 28
          - 9648
          - 878
          - 53
          :id: 198663
          :original_language: en
          :original_title: The Maze Runner
          :overview: Set in a post-apocalyptic world, young Thomas is deposited in
            a community of boys after his memory is erased, soon learning they're
            all trapped in a maze that will require him to join forces with fellow
            "runners" for a shot at escape.
          :release_date: '2014-09-10'
          :poster_path: "/coss7RgL0NH6g4fC2s5atvf3dFO.jpg"
          :popularity: 7.738397
          :title: The Maze Runner
          :video: false
          :vote_average: 7.0
          :vote_count: 4361
      - !ruby/object:Tmdb::Movie
        table:
          :adult: false
          :backdrop_path: "/rPfyX0pkmn8Ea4gh3DfsmzFUf05.jpg"
          :genre_ids:
          - 18
          - 27
          - 80
          :id: 74997
          :original_language: en
          :original_title: The Human Centipede 2 (Full Sequence)
          :overview: Inspired by the fictional Dr. Heiter, disturbed loner Martin
            dreams of creating a 12-person centipede and sets out to realize his sick
            fantasy.
          :release_date: '2011-10-06'
          :poster_path: "/kFtAdkCO0vXN2RWu2oMcR9GZ9Hi.jpg"
          :popularity: 2.409055
          :title: The Human Centipede 2 (Full Sequence)
          :video: false
          :vote_average: 4.5
          :vote_count: 253
      - !ruby/object:Tmdb::Movie
        table:
          :adult: false
          :backdrop_path: "/wRCPG1lsgfTFkWJ7G3eWgxCgv0C.jpg"
          :genre_ids:
          - 12
          - 28
          - 878
          :id: 101299
          :original_language: en
          :original_title: 'The Hunger Games: Catching Fire'
          :overview: Katniss Everdeen has returned home safe after winning the 74th
            Annual Hunger Games along with fellow tribute Peeta Mellark. Winning means
            that they must turn around and leave their family and close friends, embarking
            on a "Victor's Tour" of the districts. Along the way Katniss senses that
            a rebellion is simmering, but the Capitol is still very much in control
            as President Snow prepares the 75th Annual Hunger Games (The Quarter Quell)
            - a competition that could change Panem forever.
          :release_date: '2013-11-15'
          :poster_path: "/Hn0KgefVEp0GkdTexS6gfKTMfi.jpg"
          :popularity: 5.963256
          :title: 'The Hunger Games: Catching Fire'
          :video: false
          :vote_average: 7.4
          :vote_count: 5377
      - !ruby/object:Tmdb::Movie
        table:
          :adult: false
          :backdrop_path: "/dUrRhiIb9sWckFsKmdNR39Ot1eG.jpg"
          :genre_ids:
          - 28
          - 878
          - 18
          :id: 110415
          :original_language: ko
          :original_title: Snowpiercer
          :overview: In a future where a failed global-warming experiment kills off
            most life on the planet, a class system evolves aboard the Snowpiercer,
            a train that travels around the globe via a perpetual-motion engine.
          :release_date: '2013-08-01'
          :poster_path: "/oP0ZWr6MsaQ1TV7xvnZJMKSfz0H.jpg"
          :popularity: 3.91078
          :title: Snowpiercer
          :video: false
          :vote_average: 6.7
          :vote_count: 2401
      - !ruby/object:Tmdb::Movie
        table:
          :adult: false
          :backdrop_path: "/xDEOxA01480uLTWuvQCw61VmDBt.jpg"
          :genre_ids:
          - 18
          - 80
          :id: 769
          :original_language: en
          :original_title: GoodFellas
          :overview: The true story of Henry Hill, a half-Irish, half-Sicilian Brooklyn
            kid who is adopted by neighbourhood gangsters at an early age and climbs
            the ranks of a Mafia family under the guidance of Jimmy Conway.
          :release_date: '1990-09-12'
          :poster_path: "/hAPeXBdGDGmXRPj4OZZ0poH65Iu.jpg"
          :popularity: 3.888457
          :title: GoodFellas
          :video: false
          :vote_average: 8.2
          :vote_count: 2528
      - !ruby/object:Tmdb::Movie
        table:
          :adult: false
          :backdrop_path: "/2TGwlIl9S3utFgyvnJAUexK8lua.jpg"
          :genre_ids:
          - 18
          - 27
          :id: 397514
          :original_language: en
          :original_title: The Windmill Massacre
          :overview: Jennifer, an Australian girl on the run from her past, turns
            up in Amsterdam and, in a desperate attempt to blend in, joins a coach-load
            of tourists on a tour of Holland's old windmills. When the bus breaks
            down in the middle of nowhere, she and the other tourists are forced to
            seek shelter in a disused shed beside a sinister windmill where a devil-worshiping
            miller once ground the bones of locals instead of grain. As members of
            the group start to disappear, Jennifer learns that they all have something
            in common – a shared secret that seems to mark them all for doom.
          :release_date: '2016-08-29'
          :poster_path: "/mkMpC1rVEnOFKoCuxXZE2cBgakp.jpg"
          :popularity: 2.086692
          :title: The Windmill Massacre
          :video: false
          :vote_average: 5.4
          :vote_count: 25
      - !ruby/object:Tmdb::Movie
        table:
          :adult: false
          :backdrop_path: "/unMc1jEyqCnzba976GviSFKGagt.jpg"
          :genre_ids:
          - 878
          - 18
          :id: 185
          :original_language: en
          :original_title: A Clockwork Orange
          :overview: Demonic gang-leader Alex goes on the spree of rape, mugging and
            murder with his pack of "droogs". But he's a boy who also likes Beethoven's
            Ninth and a bit of "the old in-out, in-out". He later finds himself at
            the mercy of the state and its brainwashing experiment designed to take
            violence off the streets.
          :release_date: '1971-12-18'
          :poster_path: "/kgAi87gyx6b4oGJYSC36tVkJyJu.jpg"
          :popularity: 5.611487
          :title: A Clockwork Orange
          :video: false
          :vote_average: 7.9
          :vote_count: 2590
      - !ruby/object:Tmdb::Movie
        table:
          :adult: false
          :backdrop_path: "/7nF6B9yCEq1ZCT82sGJVtNxOcl5.jpg"
          :genre_ids:
          - 18
          - 28
          - 53
          - 10752
          :id: 16869
          :original_language: en
          :original_title: Inglourious Basterds
          :overview: In Nazi-occupied France during World War II, a group of Jewish-American
            soldiers known as "The Basterds" are chosen specifically to spread fear
            throughout the Third Reich by scalping and brutally killing Nazis. The
            Basterds, lead by Lt. Aldo Raine soon cross paths with a French-Jewish
            teenage girl who runs a movie theater in Paris which is targeted by the
            soldiers.
          :release_date: '2009-08-18'
          :poster_path: "/6zYuTKyvcwmtNvXXvJZNT0IgBL0.jpg"
          :popularity: 5.546014
          :title: Inglourious Basterds
          :video: false
          :vote_average: 7.8
          :vote_count: 5211
      - !ruby/object:Tmdb::Movie
        table:
          :adult: false
          :backdrop_path: "/d9AqtruwS8nljKjL5aYzM42hQJr.jpg"
          :genre_ids:
          - 28
          - 53
          - 878
          :id: 280
          :original_language: en
          :original_title: 'Terminator 2: Judgment Day'
          :overview: Nearly 10 years have passed since Sarah Connor was targeted for
            termination by a cyborg from the future. Now her son, John, the future
            leader of the resistance, is the target for a newer, more deadly terminator.
            Once again, the resistance has managed to send a protector back to attempt
            to save John and his mother Sarah.
          :release_date: '1991-07-01'
          :poster_path: "/2y4dmgWYRMYXdD1UyJVcn2HSd1D.jpg"
          :popularity: 5.29073
          :title: 'Terminator 2: Judgment Day'
          :video: false
          :vote_average: 7.7
          :vote_count: 3624
      - !ruby/object:Tmdb::Movie
        table:
          :adult: false
          :backdrop_path: "/u6Qg7TH7Oh1IFWCQSRr4htFFt0A.jpg"
          :genre_ids:
          - 18
          - 27
          - 28
          - 53
          - 878
          :id: 6479
          :original_language: en
          :original_title: I Am Legend
          :overview: Robert Neville is a scientist who was unable to stop the spread
            of the terrible virus that was incurable and man-made. Immune, Neville
            is now the last human survivor in what is left of New York City and perhaps
            the world. For three years, Neville has faithfully sent out daily radio
            messages, desperate to find any other survivors who might be out there.
            But he is not alone.
          :release_date: '2007-12-14'
          :poster_path: "/6OA0I8hhW9zftWoCYxJAzXW9UIN.jpg"
          :popularity: 5.473647
          :title: I Am Legend
          :video: false
          :vote_average: 6.9
          :vote_count: 3971
      - !ruby/object:Tmdb::Movie
        table:
          :adult: false
          :backdrop_path: "/cZkPJ0noQvcR3oCCZ4pwYZeWUYi.jpg"
          :genre_ids:
          - 28
          - 53
          - 878
          :id: 59967
          :original_language: en
          :original_title: Looper
          :overview: In the futuristic action thriller Looper, time travel will be
            invented but it will be illegal and only available on the black market.
            When the mob wants to get rid of someone, they will send their target
            30 years into the past where a looper, a hired gun, like Joe is waiting
            to mop up. Joe is getting rich and life is good until the day the mob
            decides to close the loop, sending back Joe's future self for assassination.
          :release_date: '2012-09-26'
          :poster_path: "/o4qXZMrZlfuTfwwNGMyTcx6p2uO.jpg"
          :popularity: 4.72135
          :title: Looper
          :video: false
          :vote_average: 6.6
          :vote_count: 4179
      - !ruby/object:Tmdb::Movie
        table:
          :adult: false
          :backdrop_path: "/kqKcID44nGtIxhhzmziAX65abRx.jpg"
          :genre_ids:
          - 28
          - 878
          :id: 49049
          :original_language: en
          :original_title: Dredd
          :overview: In the future, America is a dystopian wasteland. The latest scourge
            is Ma-Ma, a prostitute-turned-drug pusher with a dangerous new drug and
            aims to take over the city. The only possibility of stopping her is an
            elite group of urban police called Judges, who combine the duties of judge,
            jury and executioner to deliver a brutal brand of swift justice. But even
            the top-ranking Judge, Dredd, discovers that taking down Ma-Ma isn’t as
            easy as it seems in this explosive adaptation of the hugely popular comic
            series.
          :release_date: '2012-09-07'
          :poster_path: "/71fkYuMVMtdbREh9Mp3gTFmI8Bv.jpg"
          :popularity: 3.45923
          :title: Dredd
          :video: false
          :vote_average: 6.6
          :vote_count: 1733
      - !ruby/object:Tmdb::Movie
        table:
          :adult: false
          :backdrop_path: "/eMWYoor3TroQyPw3lNsolnOGqnf.jpg"
          :genre_ids:
          - 27
          - 37
          - 12
          - 18
          :id: 294963
          :original_language: en
          :original_title: Bone Tomahawk
          :overview: During a shootout in a saloon, Sheriff Hunt injures a suspicious
            stranger. One of the villagers takes care of him in prison. One day they
            both disappear – only the spear of a cannibal tribe is found. Hunt and
            a few of his men go in search of the prisoner and his nurse.
          :release_date: '2015-10-23'
          :poster_path: "/8A51Ur47D0CNJhmvQlbif0vzyqZ.jpg"
          :popularity: 3.113247
          :title: Bone Tomahawk
          :video: false
          :vote_average: 6.7
          :vote_count: 423
      :total_pages: 42
      :total_results: 825
  :genres:
  - !ruby/object:Tmdb::Genre
    table:
      :id: 18
      :name: Drama
  :production_companies:
  - !ruby/object:Tmdb::Company
    table:
      :name: Regency Enterprises
      :id: 508
  - !ruby/object:Tmdb::Company
    table:
      :name: Fox 2000 Pictures
      :id: 711
  - !ruby/object:Tmdb::Company
    table:
      :name: Taurus Film
      :id: 20555
  - !ruby/object:Tmdb::Company
    table:
      :name: Linson Films
      :id: 54050
  - !ruby/object:Tmdb::Company
    table:
      :name: Atman Entertainment
      :id: 54051
  - !ruby/object:Tmdb::Company
    table:
      :name: Knickerbocker Films
      :id: 54052
  :production_countries:
  - !ruby/object:Tmdb::Country
    table:
      :iso_3166_1: DE
      :name: Germany
  - !ruby/object:Tmdb::Country
    table:
      :iso_3166_1: US
      :name: United States of America
  :spoken_languages:
  - !ruby/object:Tmdb::Language
    table:
      :iso_639_1: en
      :name: English
modifiable: true