forked from AragonSkills/DAW2018
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pelis.json
2011 lines (2010 loc) · 137 KB
/
pelis.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[ { 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMDFkYTc0MGEtZmNhMC00ZDIzLWFmNTEtODM1ZmRlYWMwMWFmXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0111161/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_1',
'movie_title': 'Cadena perpetua',
'place': '1',
'rating': '9.216782478283923',
'star_cast': 'Frank Darabont (dir.), Tim Robbins, Morgan Freeman',
'vote': None,
'year': '1994'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BY2Q2NzQ3ZDUtNWU5OC00Yjc0LThlYmEtNWM3NTFmM2JiY2VhXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UY268_CR3,0,182,268_AL_.jpg'],
'link': '/title/tt0068646/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_2',
'movie_title': 'El padrino',
'place': '2',
'rating': '9.159942075001865',
'star_cast': 'Francis Ford Coppola (dir.), Marlon Brando, Al Pacino',
'vote': None,
'year': '1972'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMjZiNzIxNTQtNDc5Zi00YWY1LThkMTctMDgzYjY4YjI1YmQyL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UY268_CR3,0,182,268_AL_.jpg'],
'link': '/title/tt0071562/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_3',
'movie_title': 'El padrino: Parte II',
'place': '3',
'rating': '8.995474035488085',
'star_cast': 'Francis Ford Coppola (dir.), Al Pacino, Robert De Niro',
'vote': None,
'year': '1974'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMTMxNTMwODM0NF5BMl5BanBnXkFtZTcwODAyMTk2Mw@@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0468569/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_4',
'movie_title': 'El caballero oscuro',
'place': '4',
'rating': '8.955022721475416',
'star_cast': 'Christopher Nolan (dir.), Christian Bale, Heath Ledger',
'vote': None,
'year': '2008'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMWU4N2FjNzYtNTVkNC00NzQ0LTg0MjAtYTJlMjFhNGUxZDFmXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0050083/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_5',
'movie_title': '12 hombres sin piedad',
'place': '5',
'rating': '8.90801742469471',
'star_cast': 'Sidney Lumet (dir.), Henry Fonda, Lee J. Cobb',
'vote': None,
'year': '1957'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BNDE4OTMxMTctNmRhYy00NWE2LTg3YzItYTk3M2UwOTU5Njg4XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0108052/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_6',
'movie_title': 'La lista de Schindler',
'place': '6',
'rating': '8.898055694809628',
'star_cast': 'Steven Spielberg (dir.), Liam Neeson, Ralph Fiennes',
'vote': None,
'year': '1993'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BYWY1ZWQ5YjMtMDE0MS00NWIzLWE1M2YtODYzYTk2OTNlYWZmXkEyXkFqcGdeQXVyNDUyOTg3Njg@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0167260/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_7',
'movie_title': 'El señor de los anillos: El retorno del rey',
'place': '7',
'rating': '8.86867710830058',
'star_cast': 'Peter Jackson (dir.), Elijah Wood, Viggo Mortensen',
'vote': None,
'year': '2003'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMTkxMTA5OTAzMl5BMl5BanBnXkFtZTgwNjA5MDc3NjE@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0110912/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_8',
'movie_title': 'Pulp Fiction',
'place': '8',
'rating': '8.86821814559087',
'star_cast': 'Quentin Tarantino (dir.), John Travolta, Uma Thurman',
'vote': None,
'year': '1994'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BOTQ5NDI3MTI4MF5BMl5BanBnXkFtZTgwNDQ4ODE5MDE@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0060196/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_9',
'movie_title': 'El bueno, el feo y el malo',
'place': '9',
'rating': '8.833855783108495',
'star_cast': 'Sergio Leone (dir.), Clint Eastwood, Eli Wallach',
'vote': None,
'year': '1966'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMzFjMWNhYzQtYTIxNC00ZWQ1LThiOTItNWQyZmMxNDYyMjA5XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0137523/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_10',
'movie_title': ' El club de la lucha',
'place': '1',
'rating': '8.786934808641643',
'star_cast': 'David Fincher (dir.), Brad Pitt, Edward Norton',
'vote': None,
'year': '1999'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BN2EyZjM3NzUtNWUzMi00MTgxLWI0NTctMzY4M2VlOTdjZWRiXkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0120737/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_11',
'movie_title': 'El señor de los anillos: La comunidad del anillo',
'place': '11',
'rating': '8.76928682491373',
'star_cast': 'Peter Jackson (dir.), Elijah Wood, Ian McKellen',
'vote': None,
'year': '2001'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BNWIwODRlZTUtY2U3ZS00Yzg1LWJhNzYtMmZiYmEyNmU1NjMzXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UY268_CR1,0,182,268_AL_.jpg'],
'link': '/title/tt0109830/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_12',
'movie_title': 'Forrest Gump',
'place': '12',
'rating': '8.73518992437525',
'star_cast': 'Robert Zemeckis (dir.), Tom Hanks, Robin Wright',
'vote': None,
'year': '1994'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BYmU1NDRjNDgtMzhiMi00NjZmLTg5NGItZDNiZjU5NTU4OTE0XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0080684/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_13',
'movie_title': 'Star Wars: Episodio V - El Imperio contraataca',
'place': '13',
'rating': '8.7294812478596',
'star_cast': 'Irvin Kershner (dir.), Mark Hamill, Harrison Ford',
'vote': None,
'year': '1980'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMjAxMzY3NjcxNF5BMl5BanBnXkFtZTcwNTI5OTM0Mw@@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt1375666/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_14',
'movie_title': 'Origen',
'place': '14',
'rating': '8.723374060350856',
'star_cast': 'Christopher Nolan (dir.), Leonardo DiCaprio, Joseph '
'Gordon-Levitt',
'vote': None,
'year': '2010'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMDY0NmI4ZjctN2VhZS00YzExLTkyZGItMTJhOTU5NTg4MDU4XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UY268_CR1,0,182,268_AL_.jpg'],
'link': '/title/tt0167261/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_15',
'movie_title': 'El señor de los anillos: Las dos torres',
'place': '15',
'rating': '8.688609800208026',
'star_cast': 'Peter Jackson (dir.), Elijah Wood, Ian McKellen',
'vote': None,
'year': '2002'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BZjA0OWVhOTAtYWQxNi00YzNhLWI4ZjYtNjFjZTEyYjJlNDVlL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0073486/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_16',
'movie_title': 'Alguien voló sobre el nido del cuco',
'place': '16',
'rating': '8.671292894481791',
'star_cast': 'Milos Forman (dir.), Jack Nicholson, Louise Fletcher',
'vote': None,
'year': '1975'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BNThjMzczMjctZmIwOC00NTQ4LWJhZWItZDdhNTk5ZTdiMWFlXkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0099685/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_17',
'movie_title': 'Uno de los nuestros',
'place': '17',
'rating': '8.663047840413142',
'star_cast': 'Martin Scorsese (dir.), Robert De Niro, Ray Liotta',
'vote': None,
'year': '1990'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BNzQzOTk3OTAtNDQ0Zi00ZTVkLWI0MTEtMDllZjNkYzNjNTc4L2ltYWdlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0133093/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_18',
'movie_title': 'Matrix',
'place': '18',
'rating': '8.650323863586992',
'star_cast': 'Lana Wachowski (dir.), Keanu Reeves, Laurence Fishburne',
'vote': None,
'year': '1999'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMTc5MDY1MjU5MF5BMl5BanBnXkFtZTgwNDM2OTE4MzE@._V1_UY268_CR4,0,182,268_AL_.jpg'],
'link': '/title/tt0047478/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_19',
'movie_title': 'Los siete samuráis',
'place': '19',
'rating': '8.633728552268368',
'star_cast': 'Akira Kurosawa (dir.), Toshirô Mifune, Takashi Shimura',
'vote': None,
'year': '1954'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BNzVlY2MwMjktM2E4OS00Y2Y3LWE3ZjctYzhkZGM3YzA1ZWM2XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0076759/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_20',
'movie_title': 'Star Wars: Episodio IV - Una nueva esperanza',
'place': '20',
'rating': '8.609163024018239',
'star_cast': 'George Lucas (dir.), Mark Hamill, Harrison Ford',
'vote': None,
'year': '1977'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BNDJiNTEwMjMtOGQ1ZC00OTczLWFjZjctZWQ0MGJjZmFkMjcwXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0317248/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_21',
'movie_title': 'Ciudad de Dios',
'place': '21',
'rating': '8.608901056966772',
'star_cast': 'Fernando Meirelles (dir.), Alexandre Rodrigues, Leandro '
'Firmino',
'vote': None,
'year': '2002'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BOTUwODM5MTctZjczMi00OTk4LTg3NWUtNmVhMTAzNTNjYjcyXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0114369/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_22',
'movie_title': 'Seven',
'place': '22',
'rating': '8.605073185692309',
'star_cast': 'David Fincher (dir.), Morgan Freeman, Brad Pitt',
'vote': None,
'year': '1995'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BNjNhZTk0ZmEtNjJhMi00YzFlLWE1MmEtYzM1M2ZmMGMwMTU4XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0102926/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_23',
'movie_title': 'El silencio de los corderos',
'place': '23',
'rating': '8.5893088493278',
'star_cast': 'Jonathan Demme (dir.), Jodie Foster, Anthony Hopkins',
'vote': None,
'year': '1991'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BZjc4NDZhZWMtNGEzYS00ZWU2LThlM2ItNTA0YzQ0OTExMTE2XkEyXkFqcGdeQXVyNjUwMzI2NzU@._V1_UY268_CR1,0,182,268_AL_.jpg'],
'link': '/title/tt0038650/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_24',
'movie_title': '¡Qué bello es vivir!',
'place': '24',
'rating': '8.579350403846512',
'star_cast': 'Frank Capra (dir.), James Stewart, Donna Reed',
'vote': None,
'year': '1946'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BYmJmM2Q4NmMtYThmNC00ZjRlLWEyZmItZTIwOTBlZDQ3NTQ1XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0118799/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_25',
'movie_title': 'La vida es bella',
'place': '25',
'rating': '8.570509596082685',
'star_cast': 'Roberto Benigni (dir.), Roberto Benigni, Nicoletta Braschi',
'vote': None,
'year': '1997'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BYTViNjMyNmUtNDFkNC00ZDRlLThmMDUtZDU2YWE4NGI2ZjVmXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0114814/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_26',
'movie_title': 'Sospechosos habituales',
'place': '26',
'rating': '8.555073521943884',
'star_cast': 'Bryan Singer (dir.), Kevin Spacey, Gabriel Byrne',
'vote': None,
'year': '1995'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BZDAwYTlhMDEtNTg0OS00NDY2LWJjOWItNWY3YTZkM2UxYzUzXkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_UY268_CR4,0,182,268_AL_.jpg'],
'link': '/title/tt0110413/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_27',
'movie_title': 'El profesional (Léon)',
'place': '27',
'rating': '8.53978271282384',
'star_cast': 'Luc Besson (dir.), Jean Reno, Gary Oldman',
'vote': None,
'year': 'Léon'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BOGJjNzZmMmUtMjljNC00ZjU5LWJiODQtZmEzZTU0MjBlNzgxL2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0245429/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_28',
'movie_title': 'El viaje de Chihiro',
'place': '28',
'rating': '8.539769536426643',
'star_cast': 'Hayao Miyazaki (dir.), Daveigh Chase, Suzanne Pleshette',
'vote': None,
'year': '2001'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BZjhkMDM4MWItZTVjOC00ZDRhLThmYTAtM2I5NzBmNmNlMzI1XkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_UY268_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0120815/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_29',
'movie_title': 'Salvar al soldado Ryan',
'place': '29',
'rating': '8.539451484180496',
'star_cast': 'Steven Spielberg (dir.), Tom Hanks, Matt Damon',
'vote': None,
'year': '1998'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BZjdkOTU3MDktN2IxOS00OGEyLWFmMjktY2FiMmZkNWIyODZiXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0816692/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_30',
'movie_title': 'Interstellar',
'place': '30',
'rating': '8.50843319036159',
'star_cast': 'Christopher Nolan (dir.), Matthew McConaughey, Anne Hathaway',
'vote': None,
'year': '2014'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMTUxMzQyNjA5MF5BMl5BanBnXkFtZTYwOTU2NTY3._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0120689/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_31',
'movie_title': 'La milla verde',
'place': '31',
'rating': '8.507866760130197',
'star_cast': 'Frank Darabont (dir.), Tom Hanks, Michael Clarke Duncan',
'vote': None,
'year': '1999'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BZjA0MTM4MTQtNzY5MC00NzY3LWI1ZTgtYzcxMjkyMzU4MDZiXkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0120586/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_32',
'movie_title': 'American History X',
'place': '32',
'rating': '8.507143707951228',
'star_cast': 'Tony Kaye (dir.), Edward Norton, Edward Furlong',
'vote': None,
'year': '1998'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMTYxOTEwOTU0MV5BMl5BanBnXkFtZTgwNDc4NjQ3MTI@._V1_UY268_CR3,0,182,268_AL_.jpg'],
'link': '/title/tt0064116/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_33',
'movie_title': 'Hasta que llegó su hora',
'place': '33',
'rating': '8.504204569719413',
'star_cast': 'Sergio Leone (dir.), Henry Fonda, Charles Bronson',
'vote': None,
'year': '1968'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BOWQ0MjRmZmUtY2Q2Yi00ODcxLWE4NGMtMTNjMDY1YmUzMjVkXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0054215/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_34',
'movie_title': 'Psicosis',
'place': '34',
'rating': '8.504204417868214',
'star_cast': 'Alfred Hitchcock (dir.), Anthony Perkins, Janet Leigh',
'vote': None,
'year': '1960'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BZDRjMmI3ZjgtMGE3Mi00NjY5LTg0NWMtMmU3YzgyMjhmMjIzL2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0021749/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_35',
'movie_title': 'Luces de la ciudad',
'place': '35',
'rating': '8.501683151406144',
'star_cast': 'Charles Chaplin (dir.), Charles Chaplin, Virginia Cherrill',
'vote': None,
'year': '1931'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BY2IzZGY2YmEtYzljNS00NTM5LTgwMzUtMzM1NjQ4NGI0OTk0XkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0034583/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_36',
'movie_title': 'Casablanca',
'place': '36',
'rating': '8.501329481880882',
'star_cast': 'Michael Curtiz (dir.), Humphrey Bogart, Ingrid Bergman',
'vote': None,
'year': '1942'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMTYxNDA3MDQwNl5BMl5BanBnXkFtZTcwNTU4Mzc1Nw@@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt1675434/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_37',
'movie_title': 'Intocable',
'place': '37',
'rating': '8.488348481067064',
'star_cast': 'Olivier Nakache (dir.), François Cluzet, Omar Sy',
'vote': None,
'year': '2011'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BYjJiZjMzYzktNjU0NS00OTkxLWEwYzItYzdhYWJjN2QzMTRlL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0027977/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_38',
'movie_title': 'Tiempos modernos',
'place': '38',
'rating': '8.48716144980537',
'star_cast': 'Charles Chaplin (dir.), Charles Chaplin, Paulette Goddard',
'vote': None,
'year': '1936'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BOWRiZDIxZjktMTA1NC00MDQ2LWEzMjUtMTliZmY3NjQ3ODJiXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UY268_CR6,0,182,268_AL_.jpg'],
'link': '/title/tt0253474/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_39',
'movie_title': 'El pianista',
'place': '39',
'rating': '8.481746636868797',
'star_cast': 'Roman Polanski (dir.), Adrien Brody, Thomas Kretschmann',
'vote': None,
'year': '2002'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMTI1MTY2OTIxNV5BMl5BanBnXkFtZTYwNjQ4NjY3._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0407887/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_40',
'movie_title': 'Infiltrados',
'place': '40',
'rating': '8.479064163303645',
'star_cast': 'Martin Scorsese (dir.), Leonardo DiCaprio, Matt Damon',
'vote': None,
'year': '2006'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMjA0ODEzMTc1Nl5BMl5BanBnXkFtZTcwODM2MjAxNA@@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0082971/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_41',
'movie_title': 'En busca del arca perdida',
'place': '41',
'rating': '8.477352382839847',
'star_cast': 'Steven Spielberg (dir.), Harrison Ford, Karen Allen',
'vote': None,
'year': '1981'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMGU2NzRmZjUtOGUxYS00ZjdjLWEwZWItY2NlM2JhNjkxNTFmXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0103064/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_42',
'movie_title': 'Terminator 2: El juicio final',
'place': '42',
'rating': '8.476563399115625',
'star_cast': 'James Cameron (dir.), Arnold Schwarzenegger, Linda Hamilton',
'vote': None,
'year': '1991'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BNGUxYWM3M2MtMGM3Mi00ZmRiLWE0NGQtZjE5ODI2OTJhNTU0XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UY268_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0047396/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_43',
'movie_title': 'La ventana indiscreta',
'place': '43',
'rating': '8.475953062801771',
'star_cast': 'Alfred Hitchcock (dir.), James Stewart, Grace Kelly',
'vote': None,
'year': '1954'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BZmU0M2Y1OGUtZjIxNi00ZjBkLTg1MjgtOWIyNThiZWIwYjRiXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0088763/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_44',
'movie_title': 'Regreso al futuro',
'place': '44',
'rating': '8.474122599489327',
'star_cast': 'Robert Zemeckis (dir.), Michael J. Fox, Christopher Lloyd',
'vote': None,
'year': '1985'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BOTVhMWQ5MDktMGE3OS00MjVlLWExZWYtMzY2MTg4ZGFiZDQ5L2ltYWdlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt2582802/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_45',
'movie_title': 'Whiplash',
'place': '45',
'rating': '8.471923897714138',
'star_cast': 'Damien Chazelle (dir.), Miles Teller, J.K. Simmons',
'vote': None,
'year': '2014'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMDliMmNhNDEtODUyOS00MjNlLTgxODEtN2U3NzIxMGVkZTA1L2ltYWdlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0172495/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_46',
'movie_title': 'Gladiator',
'place': '46',
'rating': '8.464285774862017',
'star_cast': 'Ridley Scott (dir.), Russell Crowe, Joaquin Phoenix',
'vote': None,
'year': '2000'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BYTYxNGMyZTYtMjE3MS00MzNjLWFjNmYtMDk3N2FmM2JiM2M1XkEyXkFqcGdeQXVyNjY5NDU4NzI@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0110357/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_47',
'movie_title': 'El rey león',
'place': '47',
'rating': '8.459060416922009',
'star_cast': 'Roger Allers (dir.), Matthew Broderick, Jeremy Irons',
'vote': None,
'year': '1994'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMjA4NDI0MTIxNF5BMl5BanBnXkFtZTYwNTM0MzY2._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0482571/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_48',
'movie_title': 'El truco final (El prestigio)',
'place': '48',
'rating': '8.457117067511106',
'star_cast': 'Christopher Nolan (dir.), Christian Bale, Hugh Jackman',
'vote': None,
'year': 'El prestigio'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BZTcyNjk1MjgtOWI3Mi00YzQwLWI5MTktMzY4ZmI2NDAyNzYzXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UY268_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0209144/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_49',
'movie_title': 'Memento',
'place': '49',
'rating': '8.449830741264137',
'star_cast': 'Christopher Nolan (dir.), Guy Pearce, Carrie-Anne Moss',
'vote': None,
'year': '2000'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMDg1MDgzMmQtNDhlYS00MzZiLTllZGItNzliZTE1ODBiZDQwXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0078788/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_50',
'movie_title': 'Apocalypse Now',
'place': '50',
'rating': '8.44892156011647',
'star_cast': 'Francis Ford Coppola (dir.), Martin Sheen, Marlon Brando',
'vote': None,
'year': '1979'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BNDNhN2IxZWItNGEwYS00ZDNhLThiM2UtODU3NWJlZjBkYjQxXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UY268_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0078748/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_51',
'movie_title': 'Alien, el octavo pasajero',
'place': '51',
'rating': '8.438473125457554',
'star_cast': 'Ridley Scott (dir.), Sigourney Weaver, Tom Skerritt',
'vote': None,
'year': '1979'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMmExYWJjNTktNGUyZS00ODhmLTkxYzAtNWIzOGEyMGNiMmUwXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0032553/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_52',
'movie_title': 'El gran dictador',
'place': '52',
'rating': '8.426240245715904',
'star_cast': 'Charles Chaplin (dir.), Charles Chaplin, Paulette Goddard',
'vote': None,
'year': '1940'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BM2FhYjEyYmYtMDI1Yy00YTdlLWI2NWQtYmEzNzAxOGY1NjY2XkEyXkFqcGdeQXVyNTA3NTIyNDg@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0095765/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_53',
'movie_title': 'Cinema Paradiso',
'place': '53',
'rating': '8.421086407788678',
'star_cast': 'Giuseppe Tornatore (dir.), Philippe Noiret, Enzo Cannavale',
'vote': None,
'year': '1988'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMTU0NTkyNzYwMF5BMl5BanBnXkFtZTgwMDU0NDk5MTI@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0043014/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_54',
'movie_title': 'El crepúsculo de los dioses',
'place': '54',
'rating': '8.420207829131229',
'star_cast': 'Billy Wilder (dir.), William Holden, Gloria Swanson',
'vote': None,
'year': '1950'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BNTkxYjUxNDYtZGY0My00NTc2LThiZmYtNmNmNmU0NGVkZWYwXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0057012/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_55',
'movie_title': '¿Teléfono rojo? Volamos hacia Moscú',
'place': '55',
'rating': '8.41764374086935',
'star_cast': 'Stanley Kubrick (dir.), Peter Sellers, George C. Scott',
'vote': None,
'year': '1964'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BZjEwNDVhZjMtYzA1MS00ZWUxLThjOGUtZTliNGZiNGYyMjA3XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UY268_CR4,0,182,268_AL_.jpg'],
'link': '/title/tt0095327/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_56',
'movie_title': 'La tumba de las luciérnagas',
'place': '56',
'rating': '8.414516325462854',
'star_cast': 'Isao Takahata (dir.), Tsutomu Tatsumi, Ayano Shiraishi',
'vote': None,
'year': '1988'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BNDUzNjYwNDYyNl5BMl5BanBnXkFtZTcwNjU3ODQ0MQ@@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0405094/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_57',
'movie_title': 'La vida de los otros',
'place': '57',
'rating': '8.41328387941739',
'star_cast': 'Florian Henckel von Donnersmarck (dir.), Ulrich Mühe, '
'Martina Gedeck',
'vote': None,
'year': '2006'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BYjQ5NjM0Y2YtNjZkNC00ZDhkLWJjMWItN2QyNzFkMDE3ZjAxXkEyXkFqcGdeQXVyODIxMzk5NjA@._V1_UY268_CR3,0,182,268_AL_.jpg'],
'link': '/title/tt2380307/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_58',
'movie_title': 'Coco',
'place': '58',
'rating': '8.410358946810117',
'star_cast': 'Lee Unkrich (dir.), Anthony Gonzalez, Gael García Bernal',
'vote': None,
'year': '2017'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BOTI5Nzc0OTMtYzBkMS00NjkxLThmM2UtNjM2ODgxN2M5NjNkXkEyXkFqcGdeQXVyNjQ2MjQ5NzM@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0050825/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_59',
'movie_title': 'Senderos de gloria',
'place': '59',
'rating': '8.400892485526715',
'star_cast': 'Stanley Kubrick (dir.), Kirk Douglas, Ralph Meeker',
'vote': None,
'year': '1957'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BZWFlYmY2MGEtZjVkYS00YzU4LTg0YjQtYzY1ZGE3NTA5NGQxXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0081505/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_60',
'movie_title': 'El resplandor',
'place': '60',
'rating': '8.393378569161312',
'star_cast': 'Stanley Kubrick (dir.), Jack Nicholson, Shelley Duvall',
'vote': None,
'year': '1980'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMjIyNTQ5NjQ1OV5BMl5BanBnXkFtZTcwODg1MDU4OA@@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt1853728/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_61',
'movie_title': 'Django desencadenado',
'place': '61',
'rating': '8.393072136371625',
'star_cast': 'Quentin Tarantino (dir.), Jamie Foxx, Christoph Waltz',
'vote': None,
'year': '2012'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMjExMTg5OTU0NF5BMl5BanBnXkFtZTcwMjMxMzMzMw@@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0910970/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_62',
'movie_title': 'WALL·E',
'place': '62',
'rating': '8.376814483171508',
'star_cast': 'Andrew Stanton (dir.), Ben Burtt, Elissa Knight',
'vote': None,
'year': '2008'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMTVlNWM4NTAtNDQxYi00YWU5LWIwM2MtZmVjYWFmODZiODE5XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UY268_CR4,0,182,268_AL_.jpg'],
'link': '/title/tt0119698/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_63',
'movie_title': 'La princesa Mononoke',
'place': '63',
'rating': '8.361300214473488',
'star_cast': 'Hayao Miyazaki (dir.), Yôji Matsuda, Yuriko Ishida',
'vote': None,
'year': '1997'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BNTBmZWJkNjctNDhiNC00MGE2LWEwOTctZTk5OGVhMWMyNmVhXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0169547/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_64',
'movie_title': 'American Beauty',
'place': '64',
'rating': '8.360778735099066',
'star_cast': 'Sam Mendes (dir.), Kevin Spacey, Annette Bening',
'vote': None,
'year': '1999'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMTk4ODQzNDY3Ml5BMl5BanBnXkFtZTcwODA0NTM4Nw@@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt1345836/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_65',
'movie_title': 'El caballero oscuro: La leyenda renace',
'place': '65',
'rating': '8.357278219055875',
'star_cast': 'Christopher Nolan (dir.), Christian Bale, Tom Hardy',
'vote': None,
'year': '2012'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMTc0MjgyNTUyNF5BMl5BanBnXkFtZTcwNDQzMDg0Nw@@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0051201/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_66',
'movie_title': 'Testigo de cargo',
'place': '66',
'rating': '8.355040922074602',
'star_cast': 'Billy Wilder (dir.), Tyrone Power, Marlene Dietrich',
'vote': None,
'year': '1957'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMTI3NTQyMzU5M15BMl5BanBnXkFtZTcwMTM2MjgyMQ@@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0364569/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_67',
'movie_title': 'Old Boy',
'place': '67',
'rating': '8.353902915744122',
'star_cast': 'Chan-wook Park (dir.), Min-sik Choi, Ji-tae Yu',
'vote': None,
'year': '2003'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BYzVlMWViZGEtYjEyYy00YWZmLThmZGEtYmM4MDZlN2Q5MmRmXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0090605/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_68',
'movie_title': 'Aliens: El regreso',
'place': '68',
'rating': '8.352171820338226',
'star_cast': 'James Cameron (dir.), Sigourney Weaver, Michael Biehn',
'vote': None,
'year': '1986'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMGFkNWI4MTMtNGQ0OC00MWVmLTk3MTktOGYxN2Y2YWVkZWE2XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0087843/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_69',
'movie_title': 'Érase una vez en América',
'place': '69',
'rating': '8.349924112129639',
'star_cast': 'Sergio Leone (dir.), Robert De Niro, James Woods',
'vote': None,
'year': '1984'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BNGRmOWY0MGUtNTVhMy00NzRlLTljNDAtNTBiNTRlODgxNmY2XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UY268_CR4,0,182,268_AL_.jpg'],
'link': '/title/tt0082096/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_70',
'movie_title': 'Das Boot: El submarino',
'place': '70',
'rating': '8.336817409310617',
'star_cast': 'Wolfgang Petersen (dir.), Jürgen Prochnow, Herbert '
'Grönemeyer',
'vote': None,
'year': '1981'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BYjBiOTYxZWItMzdiZi00NjlkLWIzZTYtYmFhZjhiMTljOTdkXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0033467/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_71',
'movie_title': 'Ciudadano Kane',
'place': '71',
'rating': '8.335050989470952',
'star_cast': 'Orson Welles (dir.), Orson Welles, Joseph Cotten',
'vote': None,
'year': '1941'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BZDA3NDExMTUtMDlhOC00MmQ5LWExZGUtYmI1NGVlZWI4OWNiXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0053125/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_72',
'movie_title': 'Con la muerte en los talones',
'place': '72',
'rating': '8.323953192098827',
'star_cast': 'Alfred Hitchcock (dir.), Cary Grant, Eva Marie Saint',
'vote': None,
'year': '1959'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BYTE4ODEwZDUtNDFjOC00NjAxLWEzYTQtYTI1NGVmZmFlNjdiL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0052357/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_73',
'movie_title': 'Vértigo (De entre los muertos)',
'place': '73',
'rating': '8.32376321923807',
'star_cast': 'Alfred Hitchcock (dir.), James Stewart, Kim Novak',
'vote': None,
'year': 'De entre los muertos'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMzkzMmU0YTYtOWM3My00YzBmLWI0YzctOGYyNTkwMWE5MTJkXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0112573/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_74',
'movie_title': 'Braveheart',
'place': '74',
'rating': '8.31944245071742',
'star_cast': 'Mel Gibson (dir.), Mel Gibson, Sophie Marceau',
'vote': None,
'year': '1995'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BZmExNmEwYWItYmQzOS00YjA5LTk2MjktZjEyZDE1Y2QxNjA1XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0105236/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_75',
'movie_title': 'Reservoir Dogs',
'place': '75',
'rating': '8.316769561292977',
'star_cast': 'Quentin Tarantino (dir.), Harvey Keitel, Tim Roth',
'vote': None,
'year': '1992'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BOWZlMjFiYzgtMTUzNC00Y2IzLTk1NTMtZmNhMTczNTk0ODk1XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0086190/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_76',
'movie_title': 'Star Wars: Episodio VI - El retorno del Jedi',
'place': '76',
'rating': '8.316724310651502',
'star_cast': 'Richard Marquand (dir.), Mark Hamill, Harrison Ford',
'vote': None,
'year': '1983'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMTQ4MzQzMzM2Nl5BMl5BanBnXkFtZTgwMTQ1NzU3MDI@._V1_UY268_CR4,0,182,268_AL_.jpg'],
'link': '/title/tt5074352/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_77',
'movie_title': 'Dangal',
'place': '77',
'rating': '8.316066067226489',
'star_cast': 'Nitesh Tiwari (dir.), Aamir Khan, Sakshi Tanwar',
'vote': None,
'year': '2016'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BZjIwMTM0ZDEtMTdiMy00NmQ0LWJmYmMtNGJmNmMzZmJlZjVkXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0022100/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_78',
'movie_title': 'M, el vampiro de Düsseldorf',
'place': '78',
'rating': '8.31363974036683',
'star_cast': 'Fritz Lang (dir.), Peter Lorre, Ellen Widmann',
'vote': None,
'year': '1931'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BODRmZDVmNzUtZDA4ZC00NjhkLWI2M2UtN2M0ZDIzNDcxYThjL2ltYWdlXkEyXkFqcGdeQXVyNTk0MzMzODA@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt5311514/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_79',
'movie_title': 'Your name',
'place': '79',
'rating': '8.308473616685802',
'star_cast': 'Makoto Shinkai (dir.), Ryûnosuke Kamiki, Mone Kamishiraishi',
'vote': None,
'year': '2016'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BOTdiNzJlOWUtNWMwNS00NmFlLWI0YTEtZmI3YjIzZWUyY2Y3XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0180093/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_80',
'movie_title': 'Réquiem por un sueño',
'place': '80',
'rating': '8.30218388254188',
'star_cast': 'Darren Aronofsky (dir.), Ellen Burstyn, Jared Leto',
'vote': None,
'year': '2000'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BNTVmYTk2NjAtYzY3MS00YjFjLTlkYzktYzg3YzMyZDQyOWRiXkEyXkFqcGdeQXVyNjQ2MjQ5NzM@._V1_UY268_CR2,0,182,268_AL_.jpg'],
'link': '/title/tt0986264/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_81',
'movie_title': 'Taare Zameen Par',
'place': '81',
'rating': '8.29705787039075',
'star_cast': 'Aamir Khan (dir.), Darsheel Safary, Aamir Khan',
'vote': None,
'year': '2007'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMTg5NDkwMTk5N15BMl5BanBnXkFtZTYwODg3MDk2._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0086879/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_82',
'movie_title': 'Amadeus',
'place': '82',
'rating': '8.294698317575923',
'star_cast': 'Milos Forman (dir.), F. Murray Abraham, Tom Hulce',
'vote': None,
'year': '1984'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BNDg4NjM1YjMtYmNhZC00MjM0LWFiZmYtNGY1YjA3MzZmODc5XkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0211915/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_83',
'movie_title': 'Amelie',
'place': '83',
'rating': '8.294380614632718',
'star_cast': 'Jean-Pierre Jeunet (dir.), Audrey Tautou, Mathieu Kassovitz',
'vote': None,
'year': '2001'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMTY3MjM1Mzc4N15BMl5BanBnXkFtZTgwODM0NzAxMDE@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0066921/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_84',
'movie_title': 'La naranja mecánica',
'place': '84',
'rating': '8.29326916092884',
'star_cast': 'Stanley Kubrick (dir.), Malcolm McDowell, Patrick Magee',
'vote': None,
'year': '1971'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BYWY5ZjhjNGYtZmI2Ny00ODM0LWFkNzgtZmI1YzA2N2MxMzA0XkEyXkFqcGdeQXVyNjUwNzk3NDc@._V1_UY268_CR2,0,182,268_AL_.jpg'],
'link': '/title/tt0056172/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_85',
'movie_title': 'Lawrence de Arabia',
'place': '85',
'rating': '8.292541305137288',
'star_cast': "David Lean (dir.), Peter O'Toole, Alec Guinness",
'vote': None,
'year': '1962'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMTY4NzcwODg3Nl5BMl5BanBnXkFtZTcwNTEwOTMyMw@@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0338013/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_86',
'movie_title': '¡Olvídate de mí!',
'place': '86',
'rating': '8.290057043011675',
'star_cast': 'Michel Gondry (dir.), Jim Carrey, Kate Winslet',
'vote': None,
'year': '2004'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BZmRmYmZkZTktZDc5ZC00ZjZmLTg4NWMtYjM3MjcyNTVjNGQ5L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0036775/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_87',
'movie_title': 'Perdición',
'place': '87',
'rating': '8.289914335044532',
'star_cast': 'Billy Wilder (dir.), Fred MacMurray, Barbara Stanwyck',
'vote': None,
'year': '1944'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BNGQxNDgzZWQtZTNjNi00M2RkLWExZmEtNmE1NjEyZDEwMzA5XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0075314/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_88',
'movie_title': 'Taxi Driver',
'place': '88',
'rating': '8.287148768930313',
'star_cast': 'Martin Scorsese (dir.), Robert De Niro, Jodie Foster',
'vote': None,
'year': '1976'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BZDRjNGViMjQtOThlMi00MTA3LThkYzQtNzJkYjBkMGE0YzE1XkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_UY268_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0045152/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_89',
'movie_title': 'Cantando bajo la lluvia',
'place': '89',
'rating': '8.279496261359949',
'star_cast': "Stanley Donen (dir.), Gene Kelly, Donald O'Connor",
'vote': None,
'year': '1952'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMmNlYzRiNDctZWNhMi00MzI4LThkZTctMTUzMmZkMmFmNThmXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0062622/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_90',
'movie_title': '2001: Una odisea del espacio',
'place': '90',
'rating': '8.279485207297189',
'star_cast': 'Stanley Kubrick (dir.), Keir Dullea, Gary Lockwood',
'vote': None,
'year': '1968'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BN2YxZDUxYzMtYzQxNy00NTRjLThmZjQtY2Q4Njg2MTUyOTkzL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0056592/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_91',
'movie_title': 'Matar a un ruiseñor',
'place': '91',
'rating': '8.279078388619231',
'star_cast': 'Robert Mulligan (dir.), Gregory Peck, John Megna',
'vote': None,
'year': '1962'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BZWRlNDdkNzItMzhlZC00YTdmLWIwNjktYjY5NjQ1ZmQ3N2FkXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UY268_CR9,0,182,268_AL_.jpg'],
'link': '/title/tt1187043/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_92',
'movie_title': '3 Idiots',
'place': '92',
'rating': '8.2786179486834',
'star_cast': 'Rajkumar Hirani (dir.), Aamir Khan, Madhavan',
'vote': None,
'year': '2009'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMDU2ZWJlMjktMTRhMy00ZTA5LWEzNDgtYmNmZTEwZTViZWJkXkEyXkFqcGdeQXVyNDQ2OTk4MzI@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0114709/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_93',
'movie_title': 'Toy Story',
'place': '93',
'rating': '8.278404575966599',
'star_cast': 'John Lasseter (dir.), Tom Hanks, Tim Allen',
'vote': None,
'year': '1995'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BNzc2ZThkOGItZGY5YS00MDYwLTkyOTAtNDRmZWIwMGRhYTc0L2ltYWdlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0093058/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_94',
'movie_title': 'La chaqueta metálica',
'place': '94',
'rating': '8.278202442808183',
'star_cast': 'Stanley Kubrick (dir.), Matthew Modine, R. Lee Ermey',
'vote': None,
'year': '1987'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BZWNmODRmOTAtYTJhYi00NjllLTg3MTktNTBmZDZiNjJjZWVjXkEyXkFqcGdeQXVyNTc1NTQxODI@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0070735/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_95',
'movie_title': 'El golpe',
'place': '95',
'rating': '8.27376467860389',
'star_cast': 'George Roy Hill (dir.), Paul Newman, Robert Redford',
'vote': None,
'year': '1973'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BOTJiNDEzOWYtMTVjOC00ZjlmLWE0NGMtZmE1OWVmZDQ2OWJhXkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0361748/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_96',
'movie_title': 'Malditos bastardos',
'place': '96',
'rating': '8.273726281078146',
'star_cast': 'Quentin Tarantino (dir.), Brad Pitt, Diane Kruger',
'vote': None,
'year': '2009'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BOTI3NTcwNzEtNDA1MS00ZjE0LThkNDEtMmU4MjVmNTQ1ZDBmXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UY268_CR2,0,182,268_AL_.jpg'],
'link': '/title/tt0040522/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_97',
'movie_title': 'Ladrón de bicicletas',
'place': '97',
'rating': '8.273398266502673',
'star_cast': 'Vittorio De Sica (dir.), Lamberto Maggiorani, Enzo Staiola',
'vote': None,
'year': '1948'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BZjhhMThhNDItNTY2MC00MmU1LTliNDEtNDdhZjdlNTY5ZDQ1XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0012349/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_98',
'movie_title': 'El chico',
'place': '98',
'rating': '8.270999558008747',
'star_cast': 'Charles Chaplin (dir.), Charles Chaplin, Edna Purviance',
'vote': None,
'year': '1921'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMTgxOTY4Mjc0MF5BMl5BanBnXkFtZTcwNTA4MDQyMw@@._V1_UY268_CR3,0,182,268_AL_.jpg'],
'link': '/title/tt0435761/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_99',
'movie_title': 'Toy Story 3',
'place': '99',
'rating': '8.270253890152219',
'star_cast': 'Lee Unkrich (dir.), Tom Hanks, Tim Allen',
'vote': None,
'year': '2010'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMTA2NDYxOGYtYjU1Mi00Y2QzLTgxMTQtMWI1MGI0ZGQ5MmU4XkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_UY268_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0208092/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_100',
'movie_title': ' Snatch: Cerdos y diamantes',
'place': '10',
'rating': '8.260869289478041',
'star_cast': 'Guy Ritchie (dir.), Jason Statham, Brad Pitt',
'vote': None,
'year': '2000'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BOTI0MzcxMTYtZDVkMy00NjY1LTgyMTYtZmUxN2M3NmQ2NWJhXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0119217/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_101',
'movie_title': 'El indomable Will Hunting',
'place': '101',
'rating': '8.257797620068068',
'star_cast': 'Gus Van Sant (dir.), Robin Williams, Matt Damon',
'vote': None,
'year': '1997'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BNDM2MzMwMzcxNF5BMl5BanBnXkFtZTcwNTczMDk3OA@@._V1_UY268_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt2106476/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_102',
'movie_title': 'La caza',
'place': '102',
'rating': '8.257287575389393',
'star_cast': 'Thomas Vinterberg (dir.), Mads Mikkelsen, Thomas Bo Larsen',
'vote': None,
'year': '2012'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BN2IyNTE4YzUtZWU0Mi00MGIwLTgyMmQtMzQ4YzQxYWNlYWE2XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0071853/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_103',
'movie_title': 'Los caballeros de la mesa cuadrada y sus locos seguidores',
'place': '103',
'rating': '8.256614016369562',
'star_cast': 'Terry Gilliam (dir.), Graham Chapman, John Cleese',
'vote': None,
'year': '1975'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BNWM1NmYyM2ItMTFhNy00NDU0LThlYWUtYjQyYTJmOTY0ZmM0XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0059578/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_104',
'movie_title': 'La muerte tenía un precio',
'place': '104',
'rating': '8.25142987815599',
'star_cast': 'Sergio Leone (dir.), Clint Eastwood, Lee Van Cleef',
'vote': None,
'year': '1965'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BNjdjNGQ4NDEtNTEwYS00MTgxLTliYzQtYzE2ZDRiZjFhZmNlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0086250/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_105',
'movie_title': 'El precio del poder',
'place': '105',
'rating': '8.250028397025543',
'star_cast': 'Brian De Palma (dir.), Al Pacino, Michelle Pfeiffer',
'vote': None,
'year': '1983'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMDQ2YzEyZGItYWRhOS00MjBmLTkzMDUtMTdjYzkyMmQxZTJlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UY268_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0119488/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_106',
'movie_title': 'LA Confidential',
'place': '106',
'rating': '8.2487957031916',
'star_cast': 'Curtis Hanson (dir.), Kevin Spacey, Russell Crowe',
'vote': None,
'year': '1997'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BN2YxYmUyZGItZWEzYy00NTA3LThhM2UtZThhNDM5NWYxZGQ1L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0053604/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_107',
'movie_title': 'El apartamento',
'place': '107',
'rating': '8.247100615326808',
'star_cast': 'Billy Wilder (dir.), Jack Lemmon, Shirley MacLaine',
'vote': None,
'year': '1960'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMTg5YWIyMWUtZDY5My00Zjc1LTljOTctYmI0MWRmY2M2NmRkXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0017136/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_108',
'movie_title': 'Metrópolis',
'place': '108',
'rating': '8.244965167015682',
'star_cast': 'Fritz Lang (dir.), Brigitte Helm, Alfred Abel',
'vote': None,
'year': '1927'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMTYzMzU4NDUwOF5BMl5BanBnXkFtZTcwMTM5MjA5Ng@@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt1832382/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_109',
'movie_title': 'Nader y Simin, una separación',
'place': '109',
'rating': '8.240144209990394',
'star_cast': 'Asghar Farhadi (dir.), Payman Maadi, Leila Hatami',
'vote': None,
'year': '2011'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMTk1MDU5MjQ5NF5BMl5BanBnXkFtZTgwMDM2OTE4MzE@._V1_UY268_CR3,0,182,268_AL_.jpg'],
'link': '/title/tt0042876/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_110',
'movie_title': 'Rashomon, el bosque ensangrentado',
'place': '110',
'rating': '8.239497826689739',
'star_cast': 'Akira Kurosawa (dir.), Toshirô Mifune, Machiko Kyô',
'vote': None,
'year': '1950'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMjNkMzc2N2QtNjVlNS00ZTk5LTg0MTgtODY2MDAwNTMwZjBjXkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0097576/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_111',
'movie_title': 'Indiana Jones y la última cruzada',
'place': '111',
'rating': '8.236166717881739',
'star_cast': 'Steven Spielberg (dir.), Harrison Ford, Sean Connery',
'vote': None,
'year': '1989'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BZThiZjAzZjgtNDU3MC00YThhLThjYWUtZGRkYjc2ZWZlOTVjXkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0055630/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_112',
'movie_title': 'Yojimbo',
'place': '112',
'rating': '8.226625170399394',
'star_cast': 'Akira Kurosawa (dir.), Toshirô Mifune, Eijirô Tôno',
'vote': None,
'year': '1961'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMTk3NDE2NzI4NF5BMl5BanBnXkFtZTgwNzE1MzEyMTE@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt1049413/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_113',
'movie_title': 'Up',
'place': '113',
'rating': '8.226598205011237',
'star_cast': 'Pete Docter (dir.), Edward Asner, Jordan Nagai',
'vote': None,
'year': '2009'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMTY2MTAzODI5NV5BMl5BanBnXkFtZTgwMjM4NzQ0MjE@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0042192/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_114',
'movie_title': 'Eva al desnudo',
'place': '114',
'rating': '8.225618156956305',
'star_cast': 'Joseph L. Mankiewicz (dir.), Bette Davis, Anne Baxter',
'vote': None,
'year': '1950'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BYzc4ODgyZmYtMGFkZC00NGQyLWJiMDItMmFmNjJiZjcxYzVmXkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0372784/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_115',
'movie_title': 'Batman Begins',
'place': '115',
'rating': '8.222599920014295',
'star_cast': 'Christopher Nolan (dir.), Christian Bale, Michael Caine',
'vote': None,
'year': '2005'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BNzAyOGIxYjAtMGY2NC00ZTgyLWIwMWEtYzY0OWQ4NDFjOTc5XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0053291/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_116',
'movie_title': 'Con faldas y a lo loco',
'place': '116',
'rating': '8.21990407974687',
'star_cast': 'Billy Wilder (dir.), Marilyn Monroe, Tony Curtis',
'vote': None,
'year': '1959'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BODM3YWY4NmQtN2Y3Ni00OTg0LWFhZGQtZWE3ZWY4MTJlOWU4XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0105695/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_117',
'movie_title': 'Sin perdón',
'place': '117',
'rating': '8.215442396611971',
'star_cast': 'Clint Eastwood (dir.), Clint Eastwood, Gene Hackman',
'vote': None,
'year': '1992'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BNjAzMzEwYzctNjc1MC00Nzg5LWFmMGItMTgzYmMyNTY2OTQ4XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UY268_CR2,0,182,268_AL_.jpg'],
'link': '/title/tt0476735/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_118',
'movie_title': 'Mi padre y mi hijo',
'place': '118',
'rating': '8.215360593342087',
'star_cast': 'Çagan Irmak (dir.), Resit Kurt, Fikret Kuskan',
'vote': None,
'year': '2005'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BNjgxNjFhYTItMjliNS00OTQzLWFiZDgtODgyZmQ3MTdlMmNmL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UY268_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0040897/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_119',
'movie_title': 'El tesoro de Sierra Madre',
'place': '119',
'rating': '8.215248242573553',
'star_cast': 'John Huston (dir.), Humphrey Bogart, Walter Huston',
'vote': None,
'year': '1948'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMGU0MDlmYjYtNWI3Yy00OWJiLTljZTItNjBlMjMwMWFkZDllXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0363163/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_120',
'movie_title': 'El hundimiento',
'place': '120',
'rating': '8.211685701521336',
'star_cast': 'Oliver Hirschbiegel (dir.), Bruno Ganz, Alexandra Maria Lara',
'vote': None,
'year': '2004'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMzNmY2IwYzAtNDQ1NC00MmI4LThkOTgtZmVhYmExOTVhMWRkXkEyXkFqcGdeQXVyMTk5NDA3Nw@@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0095016/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_121',
'movie_title': 'Jungla de cristal',
'place': '121',
'rating': '8.206939325917734',
'star_cast': 'John McTiernan (dir.), Bruce Willis, Alan Rickman',
'vote': None,
'year': '1988'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMjMxNzgwMDUyMl5BMl5BanBnXkFtZTgwMTQ0NTIyNDM@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt5027774/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_122',
'movie_title': 'Tres anuncios en las afueras',
'place': '122',
'rating': '8.206201357239546',
'star_cast': 'Martin McDonagh (dir.), Frances McDormand, Woody Harrelson',
'vote': None,
'year': '2017'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BNDc0YTQ5NGEtM2NkYS00MWRhLThiNzAtNmY3NWU3YzNkMjIyXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0113277/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_123',
'movie_title': 'Heat',
'place': '123',
'rating': '8.205549427774733',
'star_cast': 'Michael Mann (dir.), Al Pacino, Robert De Niro',
'vote': None,
'year': '1995'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BYjRmODkzNDItMTNhNi00YjJlLTg0ZjAtODlhZTM0YzgzYThlXkEyXkFqcGdeQXVyNzQ1ODk3MTQ@._V1_UX182_CR0,0,182,268_AL_.jpg'],
'link': '/title/tt0081398/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_124',
'movie_title': 'Toro salvaje',
'place': '124',
'rating': '8.20267675790738',
'star_cast': 'Martin Scorsese (dir.), Robert De Niro, Cathy Moriarty',
'vote': None,
'year': '1980'},
{ 'images': [ 'https://ia.media-imdb.com/images/M/MV5BMWU4NmM5OTgtODk1MC00NThiLThkNjMtOWM5MGIzYjEyNmY5XkEyXkFqcGdeQXVyNTI4MjkwNjA@._V1_UY268_CR4,0,182,268_AL_.jpg'],
'link': '/title/tt0044741/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=e31d89dd-322d-4646-8962-327b42fe94b1&pf_rd_r=0KPYTQTJR9SDK69327YN&pf_rd_s=center-1&pf_rd_t=15506&pf_rd_i=top&ref_=chttp_tt_125',
'movie_title': 'Vivir',
'place': '125',