-
Notifications
You must be signed in to change notification settings - Fork 0
/
scrape.html
5041 lines (5041 loc) · 239 KB
/
scrape.html
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
{
"@type": "ItemList",
"itemListElement": [
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0111161/",
"name": "The Shawshank Redemption",
"description": "A banker convicted of uxoricide forms a friendship over a quarter century with a hardened convict, while maintaining his innocence and trying to remain hopeful through simple compassion.",
"image": "https://m.media-amazon.com/images/M/MV5BMDAyY2FhYjctNDc5OS00MDNlLThiMGUtY2UxYWVkNGY2ZjljXkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 9.3,
"ratingCount": 2957213
},
"contentRating": "A",
"genre": "Drama",
"duration": "PT2H22M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0068646/",
"name": "The Godfather",
"description": "The aging patriarch of an organized crime dynasty transfers control of his clandestine empire to his reluctant son.",
"image": "https://m.media-amazon.com/images/M/MV5BZTg0ZjcwOGUtZGIyOS00YTFlLWI5ZWQtYjA2NDgxMWJhZmNjXkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 9.2,
"ratingCount": 2061534
},
"contentRating": "A",
"genre": "Crime, Drama",
"duration": "PT2H55M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0468569/",
"name": "The Dark Knight",
"description": "When a menace known as the Joker wreaks havoc and chaos on the people of Gotham, Batman, James Gordon and Harvey Dent must work together to put an end to the madness.",
"image": "https://m.media-amazon.com/images/M/MV5BMTMxNTMwODM0NF5BMl5BanBnXkFtZTcwODAyMTk2Mw@@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 9,
"ratingCount": 2939008
},
"contentRating": "UA",
"genre": "Action, Crime, Drama",
"duration": "PT2H32M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0071562/",
"name": "The Godfather Part II",
"alternateName": "The Godfather: Part II",
"description": "The early life and career of Vito Corleone in 1920s New York City is portrayed, while his son, Michael, expands and tightens his grip on the family crime syndicate.",
"image": "https://m.media-amazon.com/images/M/MV5BNzc1OWY5MjktZDllMi00ZDEzLWEwMGItYjk1YmRhYjBjNTVlXkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 9,
"ratingCount": 1392776
},
"contentRating": "A",
"genre": "Crime, Drama",
"duration": "PT3H22M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0050083/",
"name": "12 Angry Men",
"description": "The jury in a New York City murder trial is frustrated by a single member whose skeptical caution forces them to more carefully consider the evidence before jumping to a hasty verdict.",
"image": "https://m.media-amazon.com/images/M/MV5BYjE4NzdmOTYtYjc5Yi00YzBiLWEzNDEtNTgxZGQ2MWVkN2NiXkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 9,
"ratingCount": 890505
},
"contentRating": "U",
"genre": "Crime, Drama",
"duration": "PT1H36M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0167260/",
"name": "The Lord of the Rings: The Return of the King",
"description": "Gandalf and Aragorn lead the World of Men against Sauron's army to draw his gaze from Frodo and Sam as they approach Mount Doom with the One Ring.",
"image": "https://m.media-amazon.com/images/M/MV5BMTZkMjBjNWMtZGI5OC00MGU0LTk4ZTItODg2NWM3NTVmNWQ4XkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 9,
"ratingCount": 2024542
},
"contentRating": "U",
"genre": "Action, Adventure, Drama",
"duration": "PT3H21M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0108052/",
"name": "Schindler's List",
"description": "In German-occupied Poland during World War II, industrialist Oskar Schindler gradually becomes concerned for his Jewish workforce after witnessing their persecution by the Nazis.",
"image": "https://m.media-amazon.com/images/M/MV5BNjM1ZDQxYWUtMzQyZS00MTE1LWJmZGYtNGUyNTdlYjM3ZmVmXkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 9,
"ratingCount": 1483246
},
"contentRating": "A",
"genre": "Biography, Drama, History",
"duration": "PT3H15M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0110912/",
"name": "Pulp Fiction",
"description": "The lives of two mob hitmen, a boxer, a gangster and his wife, and a pair of diner bandits intertwine in four tales of violence and redemption.",
"image": "https://m.media-amazon.com/images/M/MV5BYTViYTE3ZGQtNDBlMC00ZTAyLTkyODMtZGRiZDg0MjA2YThkXkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.9,
"ratingCount": 2271018
},
"contentRating": "A",
"genre": "Crime, Drama",
"duration": "PT2H34M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0120737/",
"name": "The Lord of the Rings: The Fellowship of the Ring",
"description": "A meek Hobbit from the Shire and eight companions set out on a journey to destroy the powerful One Ring and save Middle-earth from the Dark Lord Sauron.",
"image": "https://m.media-amazon.com/images/M/MV5BNzIxMDQ2YTctNDY4MC00ZTRhLTk4ODQtMTVlOWY4NTdiYmMwXkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.9,
"ratingCount": 2054385
},
"contentRating": "U",
"genre": "Action, Adventure, Drama",
"duration": "PT2H58M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0060196/",
"name": "Il buono, il brutto, il cattivo",
"alternateName": "Il Buono, Il Brutto, Il Cattivo",
"description": "A bounty hunting scam joins two men in an uneasy alliance against a third in a race to find a fortune in gold buried in a remote cemetery.",
"image": "https://m.media-amazon.com/images/M/MV5BMWM5ZjQxM2YtNDlmYi00ZDNhLWI4MWUtN2VkYjBlMTY1ZTkwXkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.8,
"ratingCount": 828646
},
"contentRating": "A",
"genre": "Adventure, Drama, Western",
"duration": "PT2H41M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0109830/",
"name": "Forrest Gump",
"description": "The history of the United States from the 1950s to the '70s unfolds from the perspective of an Alabama man with an IQ of 75, who yearns to be reunited with his childhood sweetheart.",
"image": "https://m.media-amazon.com/images/M/MV5BMzUyOTViYjUtZmMwMC00ZTE5LTg2MWQtYWQzYzE5MDc5MGMxXkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.8,
"ratingCount": 2314180
},
"contentRating": "UA",
"genre": "Drama, Romance",
"duration": "PT2H22M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0167261/",
"name": "The Lord of the Rings: The Two Towers",
"description": "While Frodo and Sam edge closer to Mordor with the help of the shifty Gollum, the divided fellowship makes a stand against Sauron's new ally, Saruman, and his hordes of Isengard.",
"image": "https://m.media-amazon.com/images/M/MV5BMGQxMDdiOWUtYjc1Ni00YzM1LWE2NjMtZTg3Y2JkMjEzMTJjXkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.8,
"ratingCount": 1825274
},
"contentRating": "UA",
"genre": "Action, Adventure, Drama",
"duration": "PT2H59M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0137523/",
"name": "Fight Club",
"description": "An insomniac office worker and a devil-may-care soap maker form an underground fight club that evolves into much more.",
"image": "https://m.media-amazon.com/images/M/MV5BOTgyOGQ1NDItNGU3Ny00MjU3LTg2YWEtNmEyYjBiMjI1Y2M5XkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.8,
"ratingCount": 2389340
},
"contentRating": "A",
"genre": "Drama",
"duration": "PT2H19M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt1375666/",
"name": "Inception",
"description": "A thief who steals corporate secrets through the use of dream-sharing technology is given the inverse task of planting an idea into the mind of a C.E.O., but his tragic past may doom the project and his team to disaster.",
"image": "https://m.media-amazon.com/images/M/MV5BMjAxMzY3NjcxNF5BMl5BanBnXkFtZTcwNTI5OTM0Mw@@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.8,
"ratingCount": 2607968
},
"contentRating": "UA",
"genre": "Action, Adventure, Sci-Fi",
"duration": "PT2H28M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0080684/",
"name": "Star Wars: Episode V - The Empire Strikes Back",
"description": "After the Empire overpowers the Rebel Alliance, Luke Skywalker begins his Jedi training with Yoda. At the same time, Darth Vader and bounty hunter Boba Fett pursue his friends across the galaxy.",
"image": "https://m.media-amazon.com/images/M/MV5BMTkxNGFlNDktZmJkNC00MDdhLTg0MTEtZjZiYWI3MGE5NWIwXkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.7,
"ratingCount": 1407490
},
"contentRating": "UA",
"genre": "Action, Adventure, Fantasy",
"duration": "PT2H4M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0133093/",
"name": "The Matrix",
"description": "When a beautiful stranger leads computer hacker Neo to a forbidding underworld, he discovers the shocking truth--the life he knows is the elaborate deception of an evil cyber-intelligence.",
"image": "https://m.media-amazon.com/images/M/MV5BN2NmN2VhMTQtMDNiOS00NDlhLTliMjgtODE2ZTY0ODQyNDRhXkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.7,
"ratingCount": 2099767
},
"contentRating": "A",
"genre": "Action, Sci-Fi",
"duration": "PT2H16M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0099685/",
"name": "Goodfellas",
"alternateName": "GoodFellas",
"description": "The story of Henry Hill and his life in the mafia, covering his relationship with his wife Karen and his mob partners Jimmy Conway and Tommy DeVito.",
"image": "https://m.media-amazon.com/images/M/MV5BN2E5NzI2ZGMtY2VjNi00YTRjLWI1MDUtZGY5OWU1MWJjZjRjXkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.7,
"ratingCount": 1287133
},
"contentRating": "A",
"genre": "Biography, Crime, Drama",
"duration": "PT2H25M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0073486/",
"name": "One Flew Over the Cuckoo's Nest",
"description": "In the Fall of 1963, a Korean War veteran and criminal pleads insanity and is admitted to a mental institution, where he rallies up the scared patients against the tyrannical nurse.",
"image": "https://m.media-amazon.com/images/M/MV5BYjBkMjgzMzYtNzRiMS00NDc3LWE4YTUtZjYxYjZhNjNhYzhhXkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.7,
"ratingCount": 1091462
},
"contentRating": "A",
"genre": "Drama",
"duration": "PT2H13M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0816692/",
"name": "Interstellar",
"description": "When Earth becomes uninhabitable in the future, a farmer and ex-NASA pilot, Joseph Cooper, is tasked to pilot a spacecraft, along with a team of researchers, to find a new planet for humans.",
"image": "https://m.media-amazon.com/images/M/MV5BYzdjMDAxZGItMjI2My00ODA1LTlkNzItOWFjMDU5ZDJlYWY3XkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.7,
"ratingCount": 2184823
},
"contentRating": "UA",
"genre": "Adventure, Drama, Sci-Fi",
"duration": "PT2H49M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0114369/",
"name": "Se7en",
"description": "Two detectives, a rookie and a veteran, hunt a serial killer who uses the seven deadly sins as his motives.",
"image": "https://m.media-amazon.com/images/M/MV5BY2IzNzMxZjctZjUxZi00YzAxLTk3ZjMtODFjODdhMDU5NDM1XkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.6,
"ratingCount": 1847105
},
"contentRating": "A",
"genre": "Crime, Drama, Mystery",
"duration": "PT2H7M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0038650/",
"name": "It's a Wonderful Life",
"description": "An angel is sent from Heaven to help a desperately frustrated businessman by showing him what life would have been like if he had never existed.",
"image": "https://m.media-amazon.com/images/M/MV5BMDM4OWFhYjEtNTE5Yy00NjcyLTg5N2UtZDQwNDZlYjlmNDU5XkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.6,
"ratingCount": 507931
},
"contentRating": "PG",
"genre": "Drama, Family, Fantasy",
"duration": "PT2H10M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0047478/",
"name": "Shichinin no samurai",
"alternateName": "Shichinin No Samurai",
"description": "Farmers from a village exploited by bandits hire a veteran samurai for protection, who gathers six other samurai to join him.",
"image": "https://m.media-amazon.com/images/M/MV5BZjliMWExOTMtZDQ3ZS00NWU3LWIyN2EtMjllNzk3ZTNlYzg4XkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.6,
"ratingCount": 373917
},
"contentRating": "U",
"genre": "Action, Drama",
"duration": "PT3H27M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0102926/",
"name": "The Silence of the Lambs",
"description": "A young F.B.I. cadet must receive the help of an incarcerated and manipulative cannibal killer to help catch another serial killer, a madman who skins his victims.",
"image": "https://m.media-amazon.com/images/M/MV5BNDdhOGJhYzctYzYwZC00YmI2LWI0MjctYjg4ODdlMDExYjBlXkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.6,
"ratingCount": 1587224
},
"contentRating": "A",
"genre": "Crime, Drama, Thriller",
"duration": "PT1H58M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0120815/",
"name": "Saving Private Ryan",
"description": "Following the Normandy Landings, a group of U.S. soldiers go behind enemy lines to retrieve a paratrooper whose brothers have been killed in action.",
"image": "https://m.media-amazon.com/images/M/MV5BZGZhZGQ1ZWUtZTZjYS00MDJhLWFkYjctN2ZlYjE5NWYwZDM2XkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.6,
"ratingCount": 1528980
},
"contentRating": "A",
"genre": "Drama, War",
"duration": "PT2H49M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0317248/",
"name": "Cidade de Deus",
"alternateName": "City of God",
"description": "In the slums of Rio, two kids' paths diverge as one struggles to become a photographer and the other a kingpin.",
"image": "https://m.media-amazon.com/images/M/MV5BZDY5ZDk5ZjQtZTAzNi00NDI2LWExMWQtNDhlZjY2NGIxYzI5XkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.6,
"ratingCount": 816924
},
"contentRating": "A",
"genre": "Crime, Drama",
"duration": "PT2H10M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0118799/",
"name": "La vita \u00e8 bella",
"alternateName": "Life Is Beautiful",
"description": "When an open-minded Jewish waiter and his son become victims of the Holocaust, he uses a perfect mixture of will, humor and imagination to protect his son from the dangers around their camp.",
"image": "https://m.media-amazon.com/images/M/MV5BZTBhOGYzZjQtYzE0Mi00MGIwLWE0MWYtNzMxNTM2OTFkM2NjXkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.6,
"ratingCount": 757673
},
"contentRating": "U",
"genre": "Comedy, Drama, Romance",
"duration": "PT1H56M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0120689/",
"name": "The Green Mile",
"description": "A tale set on death row, where gentle giant John Coffey possesses the mysterious power to heal people's ailments. When the lead guard, Paul Edgecombe, recognizes John's gift, he tries to help stave off the condemned man's execution.",
"image": "https://m.media-amazon.com/images/M/MV5BMTUxMzQyNjA5MF5BMl5BanBnXkFtZTYwOTU2NTY3._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.6,
"ratingCount": 1441990
},
"contentRating": "UA",
"genre": "Crime, Drama, Fantasy",
"duration": "PT3H9M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0103064/",
"name": "Terminator 2: Judgment Day",
"description": "A cyborg, identical to the one who failed to kill Sarah Connor, must now protect her ten year old son John from an even more advanced and powerful cyborg.",
"image": "https://m.media-amazon.com/images/M/MV5BNGMyMGNkMDUtMjc2Ni00NWFlLTgyODEtZTY2MzBiZTg0OWZiXkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.6,
"ratingCount": 1200251
},
"contentRating": "A",
"genre": "Action, Adventure, Sci-Fi",
"duration": "PT2H17M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0076759/",
"name": "Star Wars",
"alternateName": "Star Wars: Episode IV - A New Hope",
"description": "Luke Skywalker joins forces with a Jedi Knight, a cocky pilot, a Wookiee and two droids to save the galaxy from the Empire's world-destroying battle station, while also attempting to rescue Princess Leia from the mysterious Darth ...",
"image": "https://m.media-amazon.com/images/M/MV5BOGUwMDk0Y2MtNjBlNi00NmRiLTk2MWYtMGMyMDlhYmI4ZDBjXkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.6,
"ratingCount": 1476333
},
"contentRating": "U",
"genre": "Action, Adventure, Fantasy",
"duration": "PT2H1M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0088763/",
"name": "Back to the Future",
"description": "Marty McFly, a 17-year-old high school student, is accidentally sent 30 years into the past in a time-traveling DeLorean invented by his close friend, the maverick scientist Doc Brown.",
"image": "https://m.media-amazon.com/images/M/MV5BZmM3ZjE0NzctNjBiOC00MDZmLTgzMTUtNGVlOWFlOTNiZDJiXkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.5,
"ratingCount": 1339736
},
"contentRating": "U",
"genre": "Adventure, Comedy, Sci-Fi",
"duration": "PT1H56M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0245429/",
"name": "Sen to Chihiro no kamikakushi",
"alternateName": "Spirited Away",
"description": "During her family's move to the suburbs, a sullen 10-year-old girl wanders into a world ruled by gods, witches and spirits, and where humans are changed into beasts.",
"image": "https://m.media-amazon.com/images/M/MV5BNzk4NjRhYTUtNzcwYS00Y2E1LWJmNmItZTM4YTI3NjUwNGJkXkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.6,
"ratingCount": 876585
},
"contentRating": "U",
"genre": "Animation, Adventure, Family",
"duration": "PT2H4M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0253474/",
"name": "The Pianist",
"description": "During WWII, acclaimed Polish musician Wladyslaw faces various struggles as he loses contact with his family. As the situation worsens, he hides in the ruins of Warsaw in order to survive.",
"image": "https://m.media-amazon.com/images/M/MV5BMjEwNmEwYjgtNTk3ZC00NjljLTg5ZDctZTY3ZGQwZjRkZmQxXkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.5,
"ratingCount": 936597
},
"contentRating": "13",
"genre": "Biography, Drama, Music",
"duration": "PT2H30M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt6751668/",
"name": "Gisaengchung",
"alternateName": "Parasite",
"description": "Greed and class discrimination threaten the newly formed symbiotic relationship between the wealthy Park family and the destitute Kim clan.",
"image": "https://m.media-amazon.com/images/M/MV5BYjk1Y2U4MjQtY2ZiNS00OWQyLWI3MmYtZWUwNmRjYWRiNWNhXkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.5,
"ratingCount": 1003263
},
"contentRating": "A",
"genre": "Drama, Thriller",
"duration": "PT2H12M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0054215/",
"name": "Psycho",
"description": "A secretary on the run for embezzlement takes refuge at a secluded California motel owned by a repressed man and his overbearing mother.",
"image": "https://m.media-amazon.com/images/M/MV5BYjZhMzFiZjItODA3ZC00MmRhLWIzMGYtMmVjOWUwYTA3MTRjXkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.5,
"ratingCount": 734210
},
"contentRating": "A",
"genre": "Horror, Mystery, Thriller",
"duration": "PT1H49M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0172495/",
"name": "Gladiator",
"description": "A former Roman General sets out to exact vengeance against the corrupt emperor who murdered his family and sent him into slavery.",
"image": "https://m.media-amazon.com/images/M/MV5BYWQ4YmNjYjEtOWE1Zi00Y2U4LWI4NTAtMTU0MjkxNWQ1ZmJiXkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.5,
"ratingCount": 1668222
},
"contentRating": "UA",
"genre": "Action, Adventure, Drama",
"duration": "PT2H35M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0110357/",
"name": "The Lion King",
"description": "Lion prince Simba and his father are targeted by his bitter uncle, who wants to ascend the throne himself.",
"image": "https://m.media-amazon.com/images/M/MV5BZGRiZDZhZjItM2M3ZC00Y2IyLTk3Y2MtMWY5YjliNDFkZTJlXkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.5,
"ratingCount": 1168975
},
"contentRating": "U",
"genre": "Animation, Adventure, Drama",
"duration": "PT1H28M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt9362722/",
"name": "Spider-Man: Across the Spider-Verse",
"alternateName": "Spider-man: Across the Spider-verse",
"description": "Miles Morales catapults across the multiverse, where he encounters a team of Spider-People charged with protecting its very existence. When the heroes clash on how to handle a new threat, Miles must redefine what it means to be a ...",
"image": "https://m.media-amazon.com/images/M/MV5BMzczYTIwNmItMzI2Yi00NjE2LWFlNTMtYjUxYTBkZjQ4Nzk5XkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.6,
"ratingCount": 411267
},
"contentRating": "U",
"genre": "Animation, Action, Adventure",
"duration": "PT2H20M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0407887/",
"name": "The Departed",
"description": "An undercover cop and a mole in the police attempt to identify each other while infiltrating an Irish gang in South Boston.",
"image": "https://m.media-amazon.com/images/M/MV5BNzJlOWYxZWQtMTQ5MC00NmU0LWFhMWQtZjk0OGI1OTIzZjU0XkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.5,
"ratingCount": 1450491
},
"contentRating": "A",
"genre": "Crime, Drama, Thriller",
"duration": "PT2H31M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt2582802/",
"name": "Whiplash",
"description": "A promising young drummer enrolls at a cut-throat music conservatory where his dreams of greatness are mentored by an instructor who will stop at nothing to realize a student's potential.",
"image": "https://m.media-amazon.com/images/M/MV5BMmNkODhkYjctMDMyOC00ZTNjLTkwZTItM2ExMTAxMGU1ZGQ1XkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.5,
"ratingCount": 1026008
},
"contentRating": "A",
"genre": "Drama, Music",
"duration": "PT1H46M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0095327/",
"name": "Hotaru no haka",
"alternateName": "Grave of the Fireflies",
"description": "A young boy and his little sister struggle to survive in Japan during World War II.",
"image": "https://m.media-amazon.com/images/M/MV5BNTY5MmE2OGMtN2IxNC00MDY4LTkwMGEtZDUzOTYyNWE0ZTNjXkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.5,
"ratingCount": 326000
},
"contentRating": "U",
"genre": "Animation, Drama, War",
"duration": "PT1H28M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0120586/",
"name": "American History X",
"description": "Living a life marked by violence, neo-Nazi Derek finally goes to prison after killing two black youths. Upon his release, Derek vows to change; he hopes to prevent his brother, Danny, who idolizes Derek, from following in his foot...",
"image": "https://m.media-amazon.com/images/M/MV5BMzhiOTQ0NDItOTg0Zi00OGVmLWE0OGEtMTI4NDM0NWMxZWU4XkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.5,
"ratingCount": 1206754
},
"contentRating": "R",
"genre": "Crime, Drama",
"duration": "PT1H59M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0110413/",
"name": "L\u00e9on",
"description": "12-year-old Mathilda is reluctantly taken in by L\u00e9on, a professional assassin, after her family is murdered. An unusual relationship forms as she becomes his prot\u00e9g\u00e9e and learns the assassin's trade.",
"image": "https://m.media-amazon.com/images/M/MV5BNjZmZmM3ODMtZmI4OS00ZjU0LTk0OWMtMWI0ZDMzZTc2NGUwXkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.5,
"ratingCount": 1271743
},
"contentRating": "A",
"genre": "Action, Crime, Drama",
"duration": "PT1H50M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0482571/",
"name": "The Prestige",
"description": "Rival 19th-century magicians engage in a bitter battle for trade secrets.",
"image": "https://m.media-amazon.com/images/M/MV5BYTFkNTMzYjUtYmViNS00MGNiLTg2YTQtMDUwMmFiYzRiODEyXkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.5,
"ratingCount": 1473589
},
"contentRating": "U",
"genre": "Drama, Mystery, Sci-Fi",
"duration": "PT2H10M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0056058/",
"name": "Seppuku",
"description": "When a ronin requesting seppuku at a feudal lord's palace is told of the brutal suicide of another ronin who previously visited, he reveals how their pasts are intertwined - and in doing so challenges the clan's integrity.",
"image": "https://m.media-amazon.com/images/M/MV5BZThiZjU5ZDQtZDI4Mi00ZGYyLTkzOTktYmIzZTFlZTkxYzg5XkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.6,
"ratingCount": 72744
},
"contentRating": "Not Rated",
"genre": "Action, Drama, Mystery",
"duration": "PT2H13M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0034583/",
"name": "Casablanca",
"description": "A cynical expatriate American cafe owner struggles to decide whether or not to help his former lover and her fugitive husband escape the Nazis in French Morocco.",
"image": "https://m.media-amazon.com/images/M/MV5BNWEzN2U1YTYtYTQyMS00NTVkLWE2NGQtZWFlMmM0MDNjMmRiXkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.5,
"ratingCount": 616463
},
"contentRating": "U",
"genre": "Drama, Romance, War",
"duration": "PT1H42M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0114814/",
"name": "The Usual Suspects",
"description": "The sole survivor of a pier shoot-out tells the story of how a notorious criminal influenced the events that began with five criminals meeting in a seemingly random police lineup.",
"image": "https://m.media-amazon.com/images/M/MV5BOTE5MDUxZDUtZWZmZC00NDVmLWFhOGQtNWI2YTc4NzY3MGQ0XkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.5,
"ratingCount": 1164449
},
"contentRating": "A",
"genre": "Crime, Drama, Mystery",
"duration": "PT1H46M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt1675434/",
"name": "Intouchables",
"description": "After he becomes a quadriplegic from a paragliding accident, an aristocrat hires a young man from the projects to be his caregiver.",
"image": "https://m.media-amazon.com/images/M/MV5BMTYxNDA3MDQwNl5BMl5BanBnXkFtZTcwNTU4Mzc1Nw@@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.5,
"ratingCount": 950396
},
"contentRating": "UA",
"genre": "Comedy, Drama",
"duration": "PT1H52M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt15239678/",
"name": "Dune: Part Two",
"description": "Paul Atreides unites with the Fremen while on a warpath of revenge against the conspirators who destroyed his family. Facing a choice between the love of his life and the fate of the universe, he endeavors to prevent a terrible fu...",
"image": "https://m.media-amazon.com/images/M/MV5BMTgxZmM2NjEtMTBlNy00Yjg4LWEzODAtN2IxZDg3MjIyYTY0XkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.5,
"ratingCount": 535887
},
"contentRating": "UA",
"genre": "Action, Adventure, Drama",
"duration": "PT2H46M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0095765/",
"name": "Nuovo Cinema Paradiso",
"alternateName": "Cinema Paradiso",
"description": "Salvatore, a famous film director, returns to his hometown for the funeral of the local theater's film projectionist, Alfredo. He reminisces about his life as a young boy falling in love with cinema.",
"image": "https://m.media-amazon.com/images/M/MV5BMTljNzc4YWEtYTZlMS00ODMyLWIwMTAtNWQxY2VkMDEwYTk5XkEyXkFqcGc@._V1_.jpg",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": 10,
"worstRating": 1,
"ratingValue": 8.5,
"ratingCount": 289933
},
"contentRating": "U",
"genre": "Drama, Romance",
"duration": "PT2H54M"
}
},
{
"@type": "ListItem",
"item": {
"@type": "Movie",
"url": "https://www.imdb.com/title/tt0027977/",