-
Notifications
You must be signed in to change notification settings - Fork 129
/
movies-data-small.json
1058 lines (1058 loc) · 26.3 KB
/
movies-data-small.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
[
{
"filmtv_ID": 2,
"film_title": "Bugs Bunny's Third Movie: 1001 Rabbit Tales",
"year": 1982,
"genre": "Animation",
"duration": 76,
"country": "United States",
"director": "David Detiege, Art Davis, Bill Perez",
"actors": "N/A",
"avg_vote": 7.7,
"votes": 28
},
{
"filmtv_ID": 3,
"film_title": "18 anni tra una settimana",
"year": 1991,
"genre": "Drama",
"duration": 98,
"country": "Italy",
"director": "Luigi Perelli",
"actors": "Kim Rossi Stuart, Simona Cavallari, Ennio Fantastichini, Orso Maria Guerrini",
"avg_vote": 7,
"votes": 3
},
{
"filmtv_ID": 17,
"film_title": "Ride a Wild Pony",
"year": 1976,
"genre": "Romantic",
"duration": 91,
"country": "United States",
"director": "Don Chaffey",
"actors": "Michael Craig, John Meillon, Eva Griffith, Graham Rouse",
"avg_vote": 5.6,
"votes": 10
},
{
"filmtv_ID": 18,
"film_title": "Diner",
"year": 1982,
"genre": "Comedy",
"duration": 95,
"country": "United States",
"director": "Barry Levinson",
"actors": "Mickey Rourke, Steve Guttenberg, Ellen Barkin",
"avg_vote": 7.1,
"votes": 14
},
{
"filmtv_ID": 20,
"film_title": "A che servono questi quattrini?",
"year": 1942,
"genre": "Comedy",
"duration": 85,
"country": "Italy",
"director": "Esodo Pratelli",
"actors": "Eduardo De Filippo, Peppino De Filippo, Clelia Matania, Paolo Stoppa",
"avg_vote": 5.9,
"votes": 12
},
{
"filmtv_ID": 21,
"film_title": "The Uranian Conspiracy",
"year": 1978,
"genre": "Spy",
"duration": 117,
"country": "Italy, Germany, Israel",
"director": "Gianfranco Baldanello, Menahem Golan",
"actors": "Fabio Testi, Janet Agren",
"avg_vote": 5,
"votes": 2
},
{
"filmtv_ID": 22,
"film_title": "A ciascuno il suo",
"year": 1967,
"genre": "Drama",
"duration": 93,
"country": "Italy",
"director": "Elio Petri",
"actors": "Gian Maria Volonté, Irene Papas, Gabriele Ferzetti, Salvo Randone",
"avg_vote": 7.8,
"votes": 98
},
{
"filmtv_ID": 23,
"film_title": "Dead-Bang",
"year": 1989,
"genre": "Crime",
"duration": 109,
"country": "United States",
"director": "John Frankenheimer",
"actors": "Don Johnson, Penelope Ann Miller, William Forsythe, Bob Balaban",
"avg_vote": 6,
"votes": 17
},
{
"filmtv_ID": 24,
"film_title": "A... come assassino",
"year": 1966,
"genre": "Thriller",
"duration": 80,
"country": "Italy",
"director": "Ray Morrison (Angelo Dorigo)",
"actors": "Alan Steel, Mary Arden, Sergio Ciani, Ivano Davoli, Giovanna Galletti",
"avg_vote": 6.5,
"votes": 3
},
{
"filmtv_ID": 26,
"film_title": "At Close Range",
"year": 1986,
"genre": "Drama",
"duration": 115,
"country": "United States",
"director": "James Foley",
"actors": "Christopher Walken, Sean Penn, Chris Penn, Mary Stuart Masterson",
"avg_vote": 7.5,
"votes": 82
},
{
"filmtv_ID": 30,
"film_title": "A Ghentar si muore facile",
"year": 1968,
"genre": "Adventure",
"duration": 101,
"country": "Italy",
"director": "Leon Klimovsky",
"actors": "George Hilton, Ennio Girolami, Marta Padovan, Alfonso De La Vega",
"avg_vote": 5.5,
"votes": 2
},
{
"filmtv_ID": 31,
"film_title": "Does This Mean We are Married?",
"year": 1990,
"genre": "Comedy",
"duration": 90,
"country": "United States",
"director": "Carol Wiseman",
"actors": "Patsy Kensit, Stéphane Freiss, Mouss Diouf, Anne-Marie Pisani",
"avg_vote": 4,
"votes": 1
},
{
"filmtv_ID": 32,
"film_title": "Sleeping with the Enemy",
"year": 1990,
"genre": "Drama",
"duration": 96,
"country": "United States",
"director": "Joseph Ruben",
"actors": "Julia Roberts, Patrick Bergin, Kevin Anderson, Elizabeth Lawrence, Kyle Secor",
"avg_vote": 5,
"votes": 89
},
{
"filmtv_ID": 33,
"film_title": "Love Kills",
"year": 1991,
"genre": "Thriller",
"duration": 100,
"country": "United States",
"director": "Brian Grant",
"actors": "Virginia Madsen, Lenny Von Dohlen, Jim Metzler, Erich Anderson",
"avg_vote": 8,
"votes": 2
},
{
"filmtv_ID": 34,
"film_title": "In Bed With Madonna",
"year": 1990,
"genre": "Documentary",
"duration": 111,
"country": "United States",
"director": "Alek Keshishian",
"actors": "Madonna, Warren Beatty, Sandra Bernhard",
"avg_vote": 5.1,
"votes": 20
},
{
"filmtv_ID": 35,
"film_title": "Make Mine Mink",
"year": 1960,
"genre": "Comedy",
"duration": 100,
"country": "Great Britain",
"director": "Robert Asher",
"actors": "Terry-Thomas, Athene Seyler, Billie Withelaw, Hattie Jacques",
"avg_vote": 8,
"votes": 2
},
{
"filmtv_ID": 36,
"film_title": "Bowery at Midnight",
"year": 1942,
"genre": "Horror",
"duration": 62,
"country": "United States",
"director": "Wallace Fox",
"actors": "Bela Lugosi, John Archer, Wanda McKay, Dave O'Brien, Lew Kelly",
"avg_vote": 5.7,
"votes": 15
},
{
"filmtv_ID": 37,
"film_title": "A mezzanotte va la ronda del piacere",
"year": 1975,
"genre": "Comedy",
"duration": 100,
"country": "Italy",
"director": "Marcello Fondato",
"actors": "Claudia Cardinale, Monica Vitti, Vittorio Gassman, Giancarlo Giannini, Renato Pozzetto",
"avg_vote": 6,
"votes": 40
},
{
"filmtv_ID": 38,
"film_title": "Mr. Majestyk",
"year": 1974,
"genre": "Action",
"duration": 105,
"country": "United States",
"director": "Richard Fleischer",
"actors": "Charles Bronson, Linda Cristal, Al Lettieri, Lee Purcell",
"avg_vote": 6,
"votes": 23
},
{
"filmtv_ID": 39,
"film_title": "Crazy People",
"year": 1990,
"genre": "Comedy",
"duration": 92,
"country": "United States",
"director": "Tony Bill",
"actors": "Dudley Moore, Daryl Hannah, Paul Reiser, J. T. Walsh",
"avg_vote": 6,
"votes": 3
},
{
"filmtv_ID": 41,
"film_title": "Rouge baiser",
"year": 1985,
"genre": "Drama",
"duration": 110,
"country": "France",
"director": "Véra Belmont",
"actors": "Charlotte Valendrey, Lambert Wilson, Laurent Terzieff",
"avg_vote": 4,
"votes": 1
},
{
"filmtv_ID": 42,
"film_title": "Eldorádó",
"year": 1988,
"genre": "Drama",
"duration": 110,
"country": "Hungary",
"director": "Géza Bereményi",
"actors": "Károly Eperjes, Judit Pogány, Péter Andorai, Géza Balkay, Enikö Eszenyi",
"avg_vote": 8,
"votes": 1
},
{
"filmtv_ID": 43,
"film_title": "À pied, à cheval, en voiture",
"year": 1957,
"genre": "Comedy",
"duration": 100,
"country": "France",
"director": "Maurice Delbez",
"actors": "Nöel Nöel, Denis Grey, Gil Vidal, Jean-Pierre Cassel, Edmond Ardisson",
"avg_vote": 6,
"votes": 1
},
{
"filmtv_ID": 44,
"film_title": "Main pleine",
"year": 1989,
"genre": "Thriller",
"duration": 89,
"country": "France",
"director": "Laurent Heynemann",
"actors": "Christine Pascal, Gérard Darmon, Ninetto Davoli, Christophe Odent",
"avg_vote": 6,
"votes": 1
},
{
"filmtv_ID": 45,
"film_title": "Warning Sign",
"year": 1985,
"genre": "Action",
"duration": 99,
"country": "United States",
"director": "Hal Barwood",
"actors": "Sam Waterson, Kathleen Quinlan, Yaphet Kotto,Jeffrey DeMunn",
"avg_vote": 4.5,
"votes": 9
},
{
"filmtv_ID": 46,
"film_title": "Prague",
"year": 1992,
"genre": "Drama",
"duration": 88,
"country": "France, Great Britain",
"director": "Ian Sellar",
"actors": "Alan Cumming, Sandrine Bonnaire, Bruno Ganz",
"avg_vote": 6,
"votes": 1
},
{
"filmtv_ID": 47,
"film_title": "About Last Night",
"year": 1986,
"genre": "Comedy",
"duration": 113,
"country": "United States",
"director": "Edward Zwick",
"actors": "Rob Lowe, Demi Moore, James Belushi, Elizabeth Perkins",
"avg_vote": 5.8,
"votes": 29
},
{
"filmtv_ID": 49,
"film_title": "Fail-Safe",
"year": 1964,
"genre": "Drama",
"duration": 110,
"country": "United States",
"director": "Sidney Lumet",
"actors": "Henry Fonda, Dan O'Herlihy, Walter Matthau, Dom DeLuise",
"avg_vote": 8.3,
"votes": 67
},
{
"filmtv_ID": 50,
"film_title": "Free Fighter",
"year": 1990,
"genre": "Action",
"duration": 88,
"country": "United States, China",
"director": "Liu Chia Yung",
"actors": "Cynthia Rothrock, Mark Huston, Tong Chung, Shing Fulon",
"avg_vote": 7,
"votes": 2
},
{
"filmtv_ID": 51,
"film_title": "Some Like It Hot",
"year": 1959,
"genre": "Comedy",
"duration": 120,
"country": "United States",
"director": "Billy Wilder",
"actors": "Tony Curtis, Jack Lemmon, Marilyn Monroe, Joe E. Brown",
"avg_vote": 9.2,
"votes": 515
},
{
"filmtv_ID": 53,
"film_title": "A qualsiasi prezzo",
"year": 1968,
"genre": "Adventure",
"duration": 94,
"country": "Italy",
"director": "Emilio Miraglia",
"actors": "Walter Pidgeon, Ira Fürstenberg, Klaus Kinski, Tino Carraro",
"avg_vote": 2.5,
"votes": 3
},
{
"filmtv_ID": 54,
"film_title": "Johnny O'Clock",
"year": 1947,
"genre": "Thriller",
"duration": 95,
"country": "United States",
"director": "Robert Rossen",
"actors": "Dick Powell, Evelyn Keyes, Lee J. Cobb, Ellen Drew, Nina Foch",
"avg_vote": 8,
"votes": 17
},
{
"filmtv_ID": 55,
"film_title": "Back to School",
"year": 1986,
"genre": "Comedy",
"duration": 100,
"country": "United States",
"director": "Alan Metter",
"actors": "Rodney Dangerfield, Keith Gordon, Sally Kellerman, Robert Downey jr.",
"avg_vote": 6.6,
"votes": 16
},
{
"filmtv_ID": 56,
"film_title": "Ninja Academy",
"year": 1988,
"genre": "Comedy",
"duration": 89,
"country": "United States",
"director": "Nico Mastorakis",
"actors": "Will Egan, Gerald Okamura, Kelly Randall, Kathleen Stevens",
"avg_vote": 4,
"votes": 1
},
{
"filmtv_ID": 57,
"film_title": "Maid To Order",
"year": 1987,
"genre": "Comedy",
"duration": 96,
"country": "United States",
"director": "Amy Jones",
"actors": "Ally Sheedy, Beverly D'Angelo, Valerie Perrine, Michael Ontkean",
"avg_vote": 6,
"votes": 1
},
{
"filmtv_ID": 58,
"film_title": "Driving Miss Daisy",
"year": 1989,
"genre": "Comedy",
"duration": 100,
"country": "United States",
"director": "Bruce Beresford",
"actors": "Jessica Tandy, Morgan Freeman, Dan Aykroyd, Patty LuPone",
"avg_vote": 7.1,
"votes": 140
},
{
"filmtv_ID": 59,
"film_title": "Enid Is Sleeping",
"year": 1989,
"genre": "Comedy",
"duration": 102,
"country": "United States",
"director": "Maurice Phillips",
"actors": "Elizabeth Perkins, Judge Reinhold, Maurine Mueller, Michael J. Pollard",
"avg_vote": 6.5,
"votes": 3
},
{
"filmtv_ID": 60,
"film_title": "South of Reno",
"year": 1987,
"genre": "Drama",
"duration": 98,
"country": "Great Britain",
"director": "Mark Rezyka",
"actors": "Jeff Osterhage, Lisa Blount, Lewis Van Bergen",
"avg_vote": 4,
"votes": 1
},
{
"filmtv_ID": 61,
"film_title": "The Appaloosa",
"year": 1966,
"genre": "Western",
"duration": 98,
"country": "United States",
"director": "Sidney J. Furie",
"actors": "Marlon Brando, Anjanette Comer, John Saxon, Emilio Fernández, Alex Montoya",
"avg_vote": 7,
"votes": 22
},
{
"filmtv_ID": 62,
"film_title": "Table for Five",
"year": 1983,
"genre": "Drama",
"duration": 117,
"country": "United States",
"director": "Robert Lieberman",
"actors": "Jon Voight, Richard Crenna, Marie-Christine Barrault, Kevin Costner",
"avg_vote": 6,
"votes": 1
},
{
"filmtv_ID": 63,
"film_title": "...a tutte le auto della polizia...",
"year": 1975,
"genre": "Crime",
"duration": 100,
"country": "Italy",
"director": "Mario Caiano",
"actors": "Antonio Sabàto, Luciana Paluzzi, Gabriele Ferzetti, Enrico Maria Salerno",
"avg_vote": 5.5,
"votes": 24
},
{
"filmtv_ID": 64,
"film_title": "A tutte le volanti",
"year": 1991,
"genre": "Crime",
"duration": 85,
"country": "Italy",
"director": "Romolo Guerrieri",
"actors": "Tony Palazzo, Massimiliano Pazzaglia",
"avg_vote": 4,
"votes": 1
},
{
"filmtv_ID": 65,
"film_title": "Gas",
"year": 1981,
"genre": "Comedy",
"duration": 94,
"country": "Canada",
"director": "Les Rose",
"actors": "Donald Sutherland, Sterling Hayden, Susan Anspach, Howie Mandel",
"avg_vote": 4,
"votes": 1
},
{
"filmtv_ID": 66,
"film_title": "A Matter of Degrees",
"year": 1989,
"genre": "Comedy",
"duration": 100,
"country": "United States",
"director": "W.T. Morgan",
"actors": "Arye Gross, Judith Hoag, Tom Sizemore, Sarah Bork, Michael Balcanoff",
"avg_vote": 6,
"votes": 1
},
{
"filmtv_ID": 67,
"film_title": "You'll Like My Mother",
"year": 1973,
"genre": "Thriller",
"duration": 94,
"country": "United States",
"director": "Lamont Johnson",
"actors": "Patty Duke, Rosemary Murphy, Richard Thomas",
"avg_vote": 8,
"votes": 2
},
{
"filmtv_ID": 68,
"film_title": "Abbasso la miseria!",
"year": 1945,
"genre": "Comedy",
"duration": 90,
"country": "Italy",
"director": "Gennaro Righelli",
"actors": "Anna Magnani, Nino Besozzi, Virgilio Riento, Lauro Gazzolo",
"avg_vote": 6,
"votes": 29
},
{
"filmtv_ID": 69,
"film_title": "Abbasso la ricchezza!",
"year": 1946,
"genre": "Comedy",
"duration": 93,
"country": "Italy",
"director": "Gennaro Righelli",
"actors": "Anna Magnani, Vittorio De Sica, Virgilio Riento, Galeazzo Benti",
"avg_vote": 5.7,
"votes": 30
},
{
"filmtv_ID": 70,
"film_title": "Can You Feel Me Dancing?",
"year": 1986,
"genre": "Drama",
"duration": 120,
"country": "United States",
"director": "Michael Miller",
"actors": "Justine Bateman, Jason Bateman, Max Gail, Joe Nasser",
"avg_vote": 6,
"votes": 1
},
{
"filmtv_ID": 71,
"film_title": "Charlie Muffin",
"year": 1979,
"genre": "Spy",
"duration": 109,
"country": "Great Britain",
"director": "Jack Gold",
"actors": "David Hemmings, Sam Wanamaker, Jennie Linden, Ian Richardson, Ralph Richardson",
"avg_vote": 6.1,
"votes": 11
},
{
"filmtv_ID": 72,
"film_title": "Final Embrace",
"year": 1992,
"genre": "Thriller",
"duration": 98,
"country": "United States",
"director": "Oley Sassone",
"actors": "Robert Rusler, Nancy Valen, Dick Van Patten, Dee McCafferty",
"avg_vote": 4,
"votes": 1
},
{
"filmtv_ID": 73,
"film_title": "Abbronzatissimi",
"year": 1991,
"genre": "Comedy",
"duration": 114,
"country": "Italy",
"director": "Bruno Gaburro",
"actors": "Jerry Calà, Alba Parietti, Eva Grimaldi, Teo Teocoli",
"avg_vote": 3.4,
"votes": 75
},
{
"filmtv_ID": 74,
"film_title": "The Deep",
"year": 1977,
"genre": "Adventure",
"duration": 130,
"country": "United States",
"director": "Peter Yates",
"actors": "Nick Nolte, Jacqueline Bisset, Robert Shaw, Eli Wallach, Louis Gossett jr.",
"avg_vote": 5.1,
"votes": 28
},
{
"filmtv_ID": 75,
"film_title": "Strangers: the Story of a Mother and Daughter",
"year": 1979,
"genre": "Drama",
"duration": 120,
"country": "United States",
"director": "Milton Katselas",
"actors": "Bette Davis, Gena Rowlands, Ford Rainey, Donald Moffat",
"avg_vote": 8,
"votes": 2
},
{
"filmtv_ID": 76,
"film_title": "L'abito nero da sposa",
"year": 1945,
"genre": "History",
"duration": 90,
"country": "Italy",
"director": "Luigi Zampa",
"actors": "Fosco Giachetti, Jacqueline Laurent, Carlo Tamberlani, Enzo Fiermonte",
"avg_vote": 7,
"votes": 2
},
{
"filmtv_ID": 77,
"film_title": "Abe Lincoln in Illinois",
"year": 1940,
"genre": "Biography",
"duration": 110,
"country": "United States",
"director": "John Cromwell",
"actors": "Raymond Massey, Ruth Gordon, Gene Lockhart",
"avg_vote": 6.3,
"votes": 8
},
{
"filmtv_ID": 78,
"film_title": "Absolute Beginners",
"year": 1986,
"genre": "Musical",
"duration": 100,
"country": "Great Britain",
"director": "Julien Temple",
"actors": "Patsy Kensit, David Bowie, Eddie O'Connell",
"avg_vote": 6.4,
"votes": 27
},
{
"filmtv_ID": 79,
"film_title": "The Abyss",
"year": 1989,
"genre": "Fantasy",
"duration": 138,
"country": "United States",
"director": "James Cameron",
"actors": "Ed Harris, Mary Elizabeth Mastrantonio, Michael Biehn",
"avg_vote": 7.2,
"votes": 178
},
{
"filmtv_ID": 80,
"film_title": "Acapulco, prima spiaggia... a sinistra",
"year": 1983,
"genre": "Comedy",
"duration": 88,
"country": "Italy",
"director": "Sergio Martino",
"actors": "Gigi Sammarchi, Andrea Roncato, Simona Marchini, Gegia, Anna Kanakis",
"avg_vote": 4.1,
"votes": 71
},
{
"filmtv_ID": 82,
"film_title": "Accadde a Damasco",
"year": 1943,
"genre": "Comedy",
"duration": 88,
"country": "Italy, Spain",
"director": "José López Rubio, Primo Zeglio",
"actors": "Paola Barbara, Germana Paolieri, Miguel Ligero, Lauro Gazzolo",
"avg_vote": 3.5,
"votes": 3
},
{
"filmtv_ID": 83,
"film_title": "Accadde al penitenziario",
"year": 1955,
"genre": "Comedy",
"duration": 95,
"country": "Italy",
"director": "Giorgio Bianchi",
"actors": "Aldo Fabrizi, Walter Chiari, Alberto Sordi, Peppino De Filippo, Mara Berni, Nino Besozzi",
"avg_vote": 5.4,
"votes": 37
},
{
"filmtv_ID": 84,
"film_title": "It Happened Tomorrow",
"year": 1944,
"genre": "Comedy",
"duration": 84,
"country": "United States",
"director": "René Clair",
"actors": "Dick Powell, Linda Darnell, Jack Oakie, Edgard Kennedy, John Philliber",
"avg_vote": 7.5,
"votes": 52
},
{
"filmtv_ID": 85,
"film_title": "Es geschah am 20. Juli",
"year": 1955,
"genre": "War",
"duration": 75,
"country": "Germany",
"director": "Georg Wilhelm Pabst",
"actors": "Bernhard Wicki, Karl Ludwig Diehl, Carl Wery, Kurt Meisel, Erik Frey",
"avg_vote": 6,
"votes": 1
},
{
"filmtv_ID": 86,
"film_title": "It Happened in Athens",
"year": 1962,
"genre": "Comedy",
"duration": 92,
"country": "United States",
"director": "Andrew Marton",
"actors": "Jayne Mansfield, Trax Colton",
"avg_vote": 6.5,
"votes": 3
},
{
"filmtv_ID": 87,
"film_title": "Made in Heaven",
"year": 1987,
"genre": "Romantic",
"duration": 102,
"country": "United States",
"director": "Alan Rudolph",
"actors": "Timothy Hutton, Kelly McGillis, Maureen Stapleton, Tom Petty",
"avg_vote": 5.8,
"votes": 18
},
{
"filmtv_ID": 88,
"film_title": "September Affair",
"year": 1950,
"genre": "Comedy",
"duration": 104,
"country": "United States",
"director": "William Dieterle",
"actors": "Joan Fontaine, Joseph Cotten, Françoise Rosay",
"avg_vote": 7.2,
"votes": 4
},
{
"filmtv_ID": 89,
"film_title": "It Happened One Night",
"year": 1934,
"genre": "Comedy",
"duration": 108,
"country": "United States",
"director": "Frank Capra",
"actors": "Clark Gable, Claudette Colbert, Walter Connolly, Roscoe Karns",
"avg_vote": 8.6,
"votes": 157
},
{
"filmtv_ID": 90,
"film_title": "All's Fair",
"year": 1989,
"genre": "Comedy",
"duration": 89,
"country": "United States",
"director": "Rocky Lane",
"actors": "George Seagal, Sally Kellerman, Robert Carradine",
"avg_vote": 2,
"votes": 3
},
{
"filmtv_ID": 91,
"film_title": "Mortuary Academy",
"year": 1988,
"genre": "Comedy",
"duration": 90,
"country": "United States",
"director": "Michael Schroeder",
"actors": "Christopher Atkins, Perry Lang, Paul Bartel, Mary Woronov",
"avg_vote": 6,
"votes": 1
},
{
"filmtv_ID": 92,
"film_title": "Accattone",
"year": 1961,
"genre": "Drama",
"duration": 120,
"country": "Italy",
"director": "Pier Paolo Pasolini",
"actors": "Franco Citti, Franca Pasut, Adriana Asti, Paola Guidi",
"avg_vote": 8.8,
"votes": 241
},
{
"filmtv_ID": 93,
"film_title": "Gridlock",
"year": 1980,
"genre": "Comedy",
"duration": 97,
"country": "United States",
"director": "James Frawley",
"actors": "Desi Arnaz jr., Lisa Hartman, John Beck, William Bryant, Rod Burton",
"avg_vote": 6,
"votes": 1
},
{
"filmtv_ID": 94,
"film_title": "Arrêt sur image",
"year": 1987,
"genre": "Drama",
"duration": 77,
"country": "France",
"director": "Christine Allen",
"actors": "Valérie Dumas, Marvin Sither",
"avg_vote": 4.8,
"votes": 3
},
{
"filmtv_ID": 95,
"film_title": "Achtung! Banditi!",
"year": 1951,
"genre": "War",
"duration": 100,
"country": "Italy",
"director": "Carlo Lizzani",
"actors": "Andrea Checchi, Lamberto Maggiorani, Gina Lollobrigida",
"avg_vote": 6.9,
"votes": 48
},
{
"filmtv_ID": 96,
"film_title": "Acqua cheta",
"year": 1933,
"genre": "Comedy",
"duration": 68,
"country": "Italy",
"director": "Gero Zambuto",
"actors": "Gianfranco Giachetti, Andreina Pagnani, Germana Paolieri",
"avg_vote": 8,
"votes": 1
},
{
"filmtv_ID": 97,
"film_title": "Water",
"year": 1985,
"genre": "Grotesque",
"duration": 97,
"country": "Great Britain",
"director": "Dick Clement",
"actors": "Michael Caine, Valerie Perrine, Brenda Vaccaro",
"avg_vote": 6.7,
"votes": 6
},
{
"filmtv_ID": 100,
"film_title": "Acque di primavera",
"year": 1942,
"genre": "Drama",
"duration": 80,
"country": "Italy",
"director": "Nunzio Malasomma",
"actors": "Gino Cervi, Mariella Lotti, Paolo Stoppa, Vanna Vanni, Carlo Lombardi",
"avg_vote": 5.5,
"votes": 3
},
{
"filmtv_ID": 101,
"film_title": "Action Jackson",
"year": 1988,
"genre": "Crime",
"duration": 97,
"country": "United States",
"director": "Craig R. Baxley",
"actors": "Carl Weathers, Craig T. Nelson, Vanity, Sharon Stone",
"avg_vote": 5,
"votes": 32
},
{
"filmtv_ID": 102,
"film_title": "Shi no Toge",
"year": 1990,
"genre": "Drama",
"duration": 115,
"country": "Japan",
"director": "Koei Oguri",
"actors": "Keiko Matsuzaka, Ittoku Kishibe, Takenori Matsumura",
"avg_vote": 8,
"votes": 1
},
{
"filmtv_ID": 103,
"film_title": "East of Elephant Rock",
"year": 1977,
"genre": "Drama",
"duration": 92,
"country": "Great Britain",
"director": "John Boyd",
"actors": "John Hurt, Judy Bowker, Jeremy Kemp, Christopher Cazenove",
"avg_vote": 4,
"votes": 1
},
{
"filmtv_ID": 104,
"film_title": "Mail Order Bride",
"year": 1963,
"genre": "Western",
"duration": 90,
"country": "United States",
"director": "Burt Kennedy",
"actors": "Buddy Ebsen, Keir Dullea, Warren Oates, Marie Windsor, Lois Nettleton, Barbara Luna",
"avg_vote": 6.3,
"votes": 13
},
{
"filmtv_ID": 105,
"film_title": "Ad Ovest di Paperino",
"year": 1982,
"genre": "Comedy",
"duration": 95,
"country": "Italy",
"director": "Alessandro Benvenuti",
"actors": "Alessandro Benvenuti, Francesco Nuti, Athina Cenci",
"avg_vote": 6.5,
"votes": 71
},
{
"filmtv_ID": 107,
"film_title": "Ada",
"year": 1961,
"genre": "Drama",
"duration": 109,
"country": "United States",
"director": "Daniel Mann",
"actors": "Susan Hayward, Dean Martin, Wilfrid Hyde-White",
"avg_vote": 6.8,
"votes": 5
},
{
"filmtv_ID": 108,
"film_title": "Adamo ed Eva",
"year": 1949,
"genre": "Comedy",
"duration": 90,
"country": "Italy",
"director": "Mario Mattòli",
"actors": "Erminio Macario, Isa Barzizza, Gianni Agus",
"avg_vote": 4.8,
"votes": 8
},
{
"filmtv_ID": 109,
"film_title": "Adam and Evelyne",
"year": 1949,
"genre": "Comedy",
"duration": 92,
"country": "Great Britain",
"director": "Harold French",
"actors": "Stewart Granger, Jean Simmons, Helen Cherry",
"avg_vote": 7.1,
"votes": 11
},
{
"filmtv_ID": 110,
"film_title": "Farewell to the King",