-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmovie_data_competition.json
1401 lines (1401 loc) · 33.6 KB
/
movie_data_competition.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
{
"dumbo_2019": {
"rating": "PG",
"n_genres": 3,
"genres": [
"Animation",
"Kids & Family",
"Science Fiction & Fantasy"
],
"n_directors": 1,
"directors": [
"Tim Burton"
],
"n_writers": 1,
"writers": [
"Ehren Kruger"
],
"theater_release_date": "03/29/19",
"runtime": 130,
"studio": "Walt Disney Pictures",
"cast": [
"Colin Farrell",
"Michael Keaton",
"Danny DeVito",
"Eva Green",
"Alan Arkin",
"Finley Hobbins",
"Nico Parker",
"Deobia Oparei"
]
},
"viaje_inesperado": {
"rating": "NR",
"n_genres": 2,
"genres": [
"Art House & International",
"Drama"
],
"n_directors": 1,
"directors": [
"Juan Jos\u00e9 Jusid"
],
"cast": [
"Valentina Etchegoyen",
"Tom\u00e1s Wickz"
]
},
"when_margaux_meets_margaux": {
"rating": "NR",
"n_genres": 2,
"genres": [
"Art House & International",
"Comedy"
],
"n_directors": 1,
"directors": [
"Sophie Filli\u00e8res"
],
"n_writers": 1,
"writers": [
"Sophie Filli\u00e8res"
],
"runtime": 95,
"studio": "Christmas in July",
"cast": [
"Sandrine Kiberlain",
"Agathe Bonitzer",
"Melvil Poupaud",
"Lucie Desclozeaux",
"Laurent Bateau",
"Th\u00e9o Cholbi",
"Anthony Paliotti",
"Florence M\u00fcller"
]
},
"shazam": {
"rating": "PG-13",
"n_genres": 2,
"genres": [
"Action & Adventure",
"Science Fiction & Fantasy"
],
"n_directors": 1,
"directors": [
"David F. Sandberg"
],
"n_writers": 1,
"writers": [
"Henry Gayden"
],
"theater_release_date": "04/05/19",
"runtime": 130,
"studio": "New Line Cinema",
"cast": [
"Zachary Levi",
"Mark Strong (II)",
"Asher Angel",
"Jack Dylan Grazer",
"Djimon Hounsou",
"Faithe Herman",
"Grace Fulton",
"Ian Chen",
"Jovan Armand",
"Marta Milans",
"Cooper Andrews",
"Ron Cephas Jones"
]
},
"pet_sematary_2019": {
"rating": "NR",
"n_genres": 1,
"genres": [
"Horror"
],
"n_directors": 2,
"directors": [
"Kevin K\u00f6lsch",
"Dennis Widmyer"
],
"n_writers": 2,
"writers": [
"Jeff Buhler",
"David Kajganich"
],
"theater_release_date": "04/05/19",
"studio": "Paramount Pictures",
"cast": [
"Jason Clarke",
"Amy Seimetz",
"Jet\u00e9 Laurence",
"Hugo Lavoie",
"Lucas Lavoie",
"John Lithgow",
"Obssa Ahmed",
"Alyssa Brooke Levine",
"Sonia Maria Chirila",
"Maria Herrera",
"Naomi Frenette"
]
},
"after_2019": {
"rating": "NR",
"n_genres": 2,
"genres": [
"Drama",
"Romance"
],
"n_directors": 1,
"directors": [
"Jenny Gage"
],
"n_writers": 1,
"writers": [
"Susan McMartin"
],
"theater_release_date": "04/12/19",
"studio": "Aviron Pictures",
"cast": [
"Josephine Langford",
"Hero Fiennes Tiffin",
"Selma Blair",
"Jennifer Beals",
"Peter Gallagher",
"Meadow Williams"
]
},
"edmond_2018": {
"rating": "NR",
"n_genres": 3,
"genres": [
"Art House & International",
"Comedy",
"Drama"
],
"n_directors": 1,
"directors": [
"Alexis Michalik"
],
"n_writers": 1,
"writers": [
"Alexis Michalik"
],
"studio": "L\u00e9gende Films",
"cast": [
"Thomas Soliv\u00e9r\u00e8s",
"Olivier Gourmet",
"Mathilde Seigner",
"Tom Leeb",
"Lucie Boujenah",
"Alice de Lencquesaing",
"Cl\u00e9mentine C\u00e9lari\u00e9",
"Igor Gotesman",
"Dominique Pinon",
"Simon Abkarian",
"Marc Andreoni",
"Antoine Dul\u00e9ry",
"Jean-Michel Martial",
"Adrien Cauchetier",
"Sophie de Furst",
"Maud Baecker",
"Jeanne Ar\u00e8nes",
"Olivier LeJeune",
"Bernard Blancan",
"Antoine Du Merle",
"Nicolas Brian\u00e7on",
"Blandine Bellavoir",
"Benjamin Bellecour",
"Marc Citti",
"Lionel Abelanski",
"Dominique Besnehard",
"Alexis Michalik",
"Guillaume Bouch\u00e8de",
"Helene Babu",
"Fay\u00e7al Safi",
"Michel Derville",
"Arnaud Dupont",
"Alexandre Blazy"
]
},
"the_curse_of_la_llorona_2019": {
"rating": "R",
"n_genres": 1,
"genres": [
"Horror"
],
"n_directors": 1,
"directors": [
"Michael Chaves"
],
"n_writers": 2,
"writers": [
"Mikki Daughtry",
"Tobias Iaconis"
],
"theater_release_date": "04/19/19",
"runtime": 93,
"studio": "New Line Cinema",
"cast": [
"Linda Cardellini",
"Raymond Cruz",
"Patricia Velasquez",
"Marisol Ramirez",
"Sean Patrick Thomas",
"Jaynee-Lynne Kinchen",
"Roman Christou",
"Tony Amendola"
]
},
"avengers_endgame": {
"rating": "NR",
"n_genres": 3,
"genres": [
"Action & Adventure",
"Drama",
"Science Fiction & Fantasy"
],
"n_directors": 2,
"directors": [
"Anthony Russo",
"Joe Russo"
],
"n_writers": 2,
"writers": [
"Christopher Markus",
"Stephen McFeely"
],
"theater_release_date": "04/26/19",
"studio": "Marvel Studios",
"cast": [
"Robert Downey Jr.",
"Chris Evans",
"Mark Ruffalo",
"Chris Hemsworth",
"Scarlett Johansson",
"Jeremy Renner",
"Don Cheadle",
"Paul Rudd",
"Brie Larson",
"Karen Gillan",
"Danai Gurira",
"Bradley Cooper",
"Josh Brolin",
"Winston Duke",
"Benedict Wong",
"Gwyneth Paltrow"
]
},
"pokemon_detective_pikachu": {
"rating": "NR",
"n_genres": 3,
"genres": [
"Action & Adventure",
"Animation",
"Kids & Family"
],
"n_directors": 1,
"directors": [
"Rob Letterman"
],
"n_writers": 1,
"writers": [
"Rob Letterman"
],
"theater_release_date": "05/10/19",
"studio": "Warner Bros. Pictures",
"cast": [
"Ryan Reynolds",
"Ken Watanabe",
"Justice Smith",
"Kathryn Newton",
"Bill Nighy",
"Suki Waterhouse",
"Rita Ora",
"Chris Geere",
"Karan Soni",
"Ikue Otani",
"Priyanga Burford",
"Bern Collaco",
"Omar Chaparro",
"Kadiff Kirwan",
"Paul Kitson",
"Jag Patel",
"Abbie Murphy",
"Alex Klaus",
"Max Fincham"
]
},
"john_wick_chapter_3_parabellum": {
"rating": "NR",
"n_genres": 1,
"genres": [
"Action & Adventure"
],
"n_directors": 1,
"directors": [
"Chad Stahelski"
],
"n_writers": 4,
"writers": [
"Derek Kolstad",
"Chris Collins",
"Marc Abrams",
"Shay Hatten"
],
"theater_release_date": "05/17/19",
"studio": "Summit Entertainment",
"cast": [
"Keanu Reeves",
"Laurence Fishburne",
"Ian McShane",
"Lance Reddick",
"Halle Berry",
"Anjelica Huston",
"Asia Kate Dillon",
"Mark Dacascos",
"Jason Mantzoukas",
"Yayan Ruhian",
"Cecep Arif Rahman",
"Tiger Hu Chen",
"Said Taghmaoui",
"Jerome Flynn",
"Tobias Segal",
"Boban Marjanovic"
]
},
"uglydolls": {
"rating": "NR",
"n_genres": 4,
"genres": [
"Action & Adventure",
"Animation",
"Comedy",
"Musical & Performing Arts"
],
"n_directors": 1,
"directors": [
"Kelly Asbury"
],
"theater_release_date": "05/03/19",
"studio": "STXfilms",
"cast": [
"Emma Roberts",
"Kelly Clarkson",
"Gabriel Iglesias",
"Nick Jonas",
"Janelle Mon\u00e1e",
"Bebe Rexha",
"Charli XCX",
"Wanda Sykes",
"Lizzo",
"Pitbull",
"Leehom Wang"
]
},
"the_sun_is_also_a_star": {
"rating": "PG-13",
"n_genres": 2,
"genres": [
"Drama",
"Romance"
],
"n_directors": 1,
"directors": [
"Ry Russo-Young"
],
"n_writers": 1,
"writers": [
"Tracy Oliver"
],
"theater_release_date": "05/17/19",
"studio": "Warner Bros. Pictures",
"cast": [
"Yara Shahidi",
"Charles Melton",
"John Leguizamo",
"Faith Logan",
"Gbenga Akinnagbe",
"Jake Choi",
"Camrus Johnson",
"Cathy Shim",
"Anais Lee"
]
},
"a_dogs_journey": {
"rating": "NR",
"n_genres": 1,
"genres": [
"Kids & Family"
],
"n_directors": 1,
"directors": [
"Gail Mancuso"
],
"n_writers": 4,
"writers": [
"Bruce Cameron",
"Cathryn Michon",
"Wallace Wolodarsky",
"Maya Forbes"
],
"theater_release_date": "05/17/19",
"cast": [
"Dennis Quaid",
"Betty Gilpin",
"Abby Ryder Fortson",
"Josh Gad",
"Marg Helgenberger",
"Kathryn Prescott",
"Ian Chen"
]
},
"aladdin": {
"rating": "NR",
"n_genres": 3,
"genres": [
"Action & Adventure",
"Kids & Family",
"Science Fiction & Fantasy"
],
"n_directors": 1,
"directors": [
"Guy Ritchie"
],
"n_writers": 2,
"writers": [
"John August",
"Guy Ritchie"
],
"theater_release_date": "05/24/19",
"studio": "Walt Disney Pictures",
"cast": [
"Will Smith",
"Naomi Scott",
"Mena Massoud",
"Marwan Kenzari",
"Navid Negahban"
]
},
"bad_boys_4": {
"rating": "NR",
"n_genres": 2,
"genres": [
"Action & Adventure",
"Comedy"
],
"theater_release_date": "05/24/19",
"cast": [
"Martin Lawrence"
]
},
"claire_darling": {
"rating": "NR",
"n_genres": 2,
"genres": [
"Art House & International",
"Drama"
],
"n_directors": 1,
"directors": [
"Julie Bertuccelli"
],
"n_writers": 2,
"writers": [
"Julie Bertuccelli",
"Sophie Filli\u00e8res"
],
"runtime": 94,
"cast": [
"Catherine Deneuve",
"Alice Taglioni",
"Chiara Mastroianni",
"Colomba Giovanni",
"Mona Goinard",
"Samir Guesmi",
"Amine Mejri",
"Johan Leysen",
"Julien Chavrial",
"Simon Thomas (XXXVII)",
"Joseph Flammer"
]
},
"hotel_mumbai": {
"tomatometer": 77,
"rating": "NR",
"n_genres": 1,
"genres": [
"Drama"
],
"n_directors": 1,
"directors": [
"Anthony Maras"
],
"n_writers": 2,
"writers": [
"John Collee",
"Anthony Maras"
],
"theater_release_date": "03/22/19",
"runtime": 123,
"studio": "Bleecker Street",
"cast": [
"Armie Hammer",
"Jason Isaacs",
"Nazanin Boniadi",
"Dev Patel",
"Angus McLaren",
"Tilda Cobham-Hervey",
"Anupam Kher"
]
},
"godzilla_king_of_the_monsters_2019": {
"rating": "PG-13",
"n_genres": 2,
"genres": [
"Action & Adventure",
"Science Fiction & Fantasy"
],
"n_directors": 1,
"directors": [
"Michael Dougherty"
],
"n_writers": 2,
"writers": [
"Michael Dougherty",
"Zach Shields"
],
"theater_release_date": "05/31/19",
"studio": "Warner Bros. Pictures",
"cast": [
"Vera Farmiga",
"Ken Watanabe",
"Sally Hawkins",
"Kyle Chandler",
"Millie Bobby Brown",
"Bradley Whitford",
"Thomas Middleditch",
"Charles Dance",
"O'Shea Jackson, Jr.",
"Aisha Hinds",
"Ziyi Zhang",
"Randy Havens",
"Anthony Ramos"
]
},
"rocketman_2019": {
"rating": "NR",
"n_genres": 1,
"genres": [
"Drama"
],
"n_directors": 1,
"directors": [
"Dexter Fletcher"
],
"theater_release_date": "05/31/19",
"runtime": 85,
"studio": "Paramount Pictures",
"cast": [
"Taron Egerton",
"Jamie Bell",
"Richard Madden",
"Gemma Jones",
"Bryce Dallas Howard",
"Steven Mackintosh"
]
},
"charlies_angels_2019": {
"rating": "NR",
"n_genres": 2,
"genres": [
"Action & Adventure",
"Comedy"
],
"n_directors": 1,
"directors": [
"Elizabeth Banks"
],
"n_writers": 1,
"writers": [
"Evan Spiliotopoulos"
],
"theater_release_date": "11/01/19",
"studio": "Brownstone Entertainment"
},
"the_secret_life_of_pets_2": {
"rating": "NR",
"n_genres": 2,
"genres": [
"Animation",
"Comedy"
],
"n_directors": 2,
"directors": [
"Chris Renaud",
"Jonathan Del Val"
],
"n_writers": 1,
"writers": [
"Brian Lynch"
],
"theater_release_date": "06/07/19",
"studio": "Universal Pictures",
"cast": [
"Lake Bell",
"Hannibal Buress",
"Dana Carvey",
"Harrison Ford",
"Tiffany Haddish",
"Kevin Hart",
"Pete Holmes",
"Garth Jennings",
"Ellie Kemper",
"Nick Kroll",
"Bobby Moynihan",
"Patton Oswalt",
"Jenny Slate",
"Eric Stonestreet"
]
},
"justice_league_part_two_2019": {
"rating": "NR",
"n_genres": 2,
"genres": [
"Action & Adventure",
"Science Fiction & Fantasy"
],
"n_directors": 1,
"directors": [
"Zack Snyder"
],
"theater_release_date": "06/14/19"
},
"men_in_black_international": {
"rating": "NR",
"n_genres": 3,
"genres": [
"Action & Adventure",
"Comedy",
"Science Fiction & Fantasy"
],
"n_directors": 1,
"directors": [
"F. Gary Gray"
],
"n_writers": 2,
"writers": [
"Matt Holloway",
"Art Marcum"
],
"theater_release_date": "06/14/19",
"studio": "Columbia Pictures Corporation",
"cast": [
"Rebecca Ferguson",
"Tessa Thompson",
"Chris Hemsworth",
"Liam Neeson",
"Emma Thompson"
]
},
"toy_story_4": {
"rating": "NR",
"n_genres": 3,
"genres": [
"Animation",
"Comedy",
"Science Fiction & Fantasy"
],
"n_directors": 1,
"directors": [
"Josh Cooley"
],
"n_writers": 2,
"writers": [
"Rashida Jones",
"Will McCormack"
],
"theater_release_date": "06/21/19",
"runtime": 90,
"studio": "Disney/Pixar",
"cast": [
"Tom Hanks",
"Joan Cusack",
"Tim Allen",
"Bonnie Hunt",
"Annie Potts",
"Don Rickles",
"Jodi Benson",
"Jeff Garlin",
"Estelle Harris"
]
},
"childs_play_2019": {
"rating": "R",
"n_genres": 1,
"genres": [
"Horror"
],
"n_directors": 1,
"directors": [
"Lars Klevberg"
],
"n_writers": 1,
"writers": [
"Tyler Burton Smith"
],
"theater_release_date": "06/21/19",
"cast": [
"Aubrey Plaza",
"Gabriel Bateman",
"Brian Tyree Henry"
]
},
"spider_man_far_from_home": {
"rating": "NR",
"n_genres": 2,
"genres": [
"Action & Adventure",
"Science Fiction & Fantasy"
],
"theater_release_date": "07/05/19",
"cast": [
"Tom Holland (II)",
"Zendaya",
"Jake Gyllenhaal",
"Cobie Smulders",
"Samuel L. Jackson"
]
},
"top_gun_maverick": {
"rating": "NR",
"n_genres": 1,
"genres": [
"Action & Adventure"
],
"n_directors": 1,
"directors": [
"Joseph Kosinski"
],
"n_writers": 3,
"writers": [
"Justin Marks",
"Peter Craig",
"Eric Warren Singer"
],
"theater_release_date": "06/26/20",
"cast": [
"Tom Cruise"
]
},
"untitled_annabelle_film": {
"rating": "NR",
"n_genres": 2,
"genres": [
"Horror",
"Mystery & Suspense"
],
"theater_release_date": "07/03/19",
"studio": "Warner Bros. Pictures",
"cast": [
"Patrick Wilson",
"Vera Farmiga",
"McKenna Grace",
"Madison Iseman",
"Steve Coulter"
]
},
"stuber": {
"rating": "NR",
"n_genres": 2,
"genres": [
"Action & Adventure",
"Comedy"
],
"n_directors": 1,
"directors": [
"Michael Dowse"
],
"n_writers": 1,
"writers": [
"Tripper Clancy"
],
"theater_release_date": "07/12/19",
"runtime": 105,
"studio": "20th Century Fox",
"cast": [
"Kumail Nanjiani",
"Dave Bautista",
"Iko Uwais",
"Natalie Morales",
"Betty Gilpin",
"Jimmy Tatro",
"Mira Sorvino",
"Karen Gillan"
]
},
"the_lion_king_2019": {
"rating": "NR",
"n_genres": 3,
"genres": [
"Action & Adventure",
"Animation",
"Drama"
],
"theater_release_date": "07/19/19",
"studio": "Walt Disney Pictures",
"cast": [
"Donald Glover",
"James Earl Jones"
]
},
"47_meters_down_uncaged": {
"rating": "NR",
"n_genres": 1,
"genres": [
"Horror"
],
"n_directors": 1,
"directors": [
"Johannes Roberts"
],
"n_writers": 2,
"writers": [
"Johannes Roberts",
"Ernest Riera"
],
"theater_release_date": "06/28/19",
"cast": [
"Nia Long",
"John Corbett",
"Brec Bassinger",
"Sophie N\u00e9lisse",
"Sistine Rose Stallone",
"Corinne Fox",
"Brianne Tju",
"Davi Santos",
"Khylin Rhambo"
]
},
"the_new_mutants": {
"rating": "NR",
"n_genres": 1,
"genres": [
"Action & Adventure"
],
"n_directors": 1,
"directors": [
"Josh Boone"
],
"n_writers": 2,
"writers": [
"Josh Boone",
"Knate Lee"
],
"theater_release_date": "08/02/19",
"cast": [
"Anya Taylor-Joy",
"Maisie Williams",
"Charlie Heaton",
"Henry Zaga",
"Alice Braga",
"Blu Hunt"
]
},
"fast_and_furious_presents_hobbs_and_shaw": {
"rating": "NR",
"n_genres": 2,
"genres": [
"Action & Adventure",
"Mystery & Suspense"
],
"n_directors": 1,
"directors": [
"David Leitch"
],
"n_writers": 1,
"writers": [
"Chris Morgan"
],
"theater_release_date": "08/02/19",
"studio": "Universal Pictures",
"cast": [
"Dwayne Johnson",
"Jason Statham",
"Idris Elba",
"Vanessa Kirby",
"Helen Mirren",
"Eiza Gonzalez"
]
},
"artemis_fowl_2019": {
"rating": "NR",
"n_genres": 2,
"genres": [
"Action & Adventure",
"Kids & Family"
],
"n_directors": 1,
"directors": [
"Kenneth Branagh"
],
"n_writers": 1,
"writers": [
"Conor McPherson"
],
"theater_release_date": "08/09/19",
"cast": [
"Ferdia Shaw",
"Lara McDonnell",
"Tamara Smart",
"Nonzo Anozie",
"Josh Gad",
"Judi Dench"
]
},
"whered_you_go_bernadette": {
"rating": "PG-13",
"n_genres": 2,
"genres": [
"Comedy",
"Drama"
],
"n_directors": 1,
"directors": [
"Richard Linklater"
],
"n_writers": 3,
"writers": [
"Richard Linklater",
"Holly Gent Palmo",
"Vince Palmo Jr."
],
"theater_release_date": "08/09/19",
"studio": "Annapurna Pictures",
"cast": [
"Cate Blanchett",
"Billy Crudup",
"Kristen Wiig",
"Judy Greer",
"Troian Bellisario",
"Laurence Fishburne",
"James Urbaniak",
"Emma Nelson (IV)",
"Zoe Chao"
]
},
"once_upon_a_time_in_hollywood": {
"rating": "NR",
"n_genres": 1,
"genres": [
"Drama"
],
"n_directors": 1,
"directors": [
"Quentin Tarantino"
],
"theater_release_date": "07/26/19",
"cast": [
"Brad Pitt",
"Leonardo DiCaprio"
]