-
Notifications
You must be signed in to change notification settings - Fork 0
/
movies.csv
We can't make this file beautiful and searchable because it's too large.
19730 lines (19730 loc) · 944 KB
/
movies.csv
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
movieId,title,genres
1,Toy Story,"['animation', 'comedy', 'family']"
2,Jumanji,"['adventure', 'fantasy', 'family']"
3,Grumpier Old Men,"['romance', 'comedy']"
4,Waiting to Exhale,"['comedy', 'drama', 'romance']"
5,Father of the Bride Part II,['comedy']
6,Heat,"['action', 'crime', 'drama', 'thriller']"
7,Sabrina,"['comedy', 'romance']"
8,Tom and Huck,"['action', 'adventure', 'drama', 'family']"
9,Sudden Death,"['action', 'adventure', 'thriller']"
10,GoldenEye,"['adventure', 'action', 'thriller']"
11,The American President,"['comedy', 'drama', 'romance']"
12,Dracula: Dead and Loving It,"['comedy', 'horror']"
13,Balto,"['family', 'animation', 'adventure']"
14,Nixon,"['history', 'drama']"
15,Cutthroat Island,"['action', 'adventure']"
16,Casino,"['drama', 'crime']"
17,Sense and Sensibility,"['drama', 'romance']"
18,Four Rooms,"['crime', 'comedy']"
19,Ace Ventura: When Nature Calls,"['crime', 'comedy', 'adventure']"
20,Money Train,"['action', 'comedy', 'crime']"
21,Get Shorty,"['comedy', 'thriller', 'crime']"
22,Copycat,"['drama', 'thriller']"
23,Assassins,"['action', 'adventure', 'crime', 'thriller']"
24,Powder,"['drama', 'fantasy', 'science fiction', 'thriller']"
25,Leaving Las Vegas,"['drama', 'romance']"
26,Othello,['drama']
27,Now and Then,"['comedy', 'drama', 'family']"
28,Persuasion,"['drama', 'romance']"
29,The City of Lost Children,"['fantasy', 'science fiction', 'adventure']"
30,Shanghai Triad,"['drama', 'crime']"
31,Dangerous Minds,"['drama', 'crime']"
32,Twelve Monkeys,"['science fiction', 'thriller', 'mystery']"
33,Wings of Courage,"['romance', 'adventure']"
34,Babe,"['fantasy', 'drama', 'comedy', 'family']"
35,Carrington,"['history', 'drama', 'romance']"
36,Dead Man Walking,['drama']
37,Across the Sea of Time,"['adventure', 'history', 'drama', 'family']"
38,It Takes Two,"['comedy', 'family', 'romance']"
39,Clueless,"['comedy', 'drama', 'romance']"
40,"Cry, the Beloved Country",['drama']
41,Richard III,"['drama', 'war']"
42,Dead Presidents,"['action', 'crime', 'drama', 'history']"
43,Restoration,"['drama', 'romance']"
44,Mortal Kombat,"['action', 'fantasy']"
45,To Die For,"['fantasy', 'drama', 'comedy', 'thriller']"
46,How To Make An American Quilt,"['drama', 'romance']"
47,Se7en,"['crime', 'mystery', 'thriller']"
48,Pocahontas,"['adventure', 'animation', 'drama', 'family']"
49,When Night Is Falling,"['drama', 'romance']"
50,The Usual Suspects,"['drama', 'crime', 'thriller']"
51,Guardian Angel,"['action', 'thriller', 'drama']"
52,Mighty Aphrodite,"['comedy', 'romance']"
53,Lamerica,"['drama', 'foreign']"
54,The Big Green,"['action', 'adventure', 'comedy', 'family']"
55,Georgia,['drama']
56,Kids of the Round Table,[]
57,Home for the Holidays,"['comedy', 'drama', 'romance']"
58,The Postman,"['comedy', 'drama', 'romance']"
59,The Confessional,"['thriller', 'drama', 'mystery']"
60,The Indian in the Cupboard,"['adventure', 'family', 'fantasy']"
61,Eye for an Eye,"['drama', 'thriller']"
62,Mr. Holland's Opus,"['music', 'drama', 'family']"
63,Don't Be a Menace to South Central While Drinking Your Juice in the Hood,['comedy']
64,Two If by Sea,"['comedy', 'romance']"
65,Bio-Dome,['comedy']
66,Lawnmower Man 2: Beyond Cyberspace,"['action', 'science fiction']"
67,Two Bits,"['drama', 'family']"
68,French Twist,"['comedy', 'romance']"
69,Friday,['comedy']
70,From Dusk Till Dawn,"['horror', 'action', 'thriller', 'crime']"
71,Fair Game,"['action', 'thriller', 'romance']"
72,Kicking and Screaming,"['comedy', 'drama', 'romance']"
73,Les Miserables,"['drama', 'history']"
74,Bed of Roses,"['drama', 'romance']"
75,Big Bully,"['comedy', 'family']"
76,Screamers,"['horror', 'science fiction']"
77,Nico Icon,['documentary']
78,The Crossing Guard,"['drama', 'thriller']"
79,The Juror,"['drama', 'thriller']"
80,The White Balloon,"['family', 'drama']"
81,Things to Do in Denver When You're Dead,"['drama', 'crime']"
82,Antonia's Line,"['drama', 'comedy']"
83,Once Upon a Time... When We Were Colored,"['romance', 'drama']"
84,Last Summer in the Hamptons,[]
85,Angels and Insects,"['drama', 'romance']"
86,White Squall,"['action', 'drama']"
87,Dunston Checks In,"['adventure', 'comedy', 'family']"
88,Black Sheep,['comedy']
89,Nick of Time,"['crime', 'drama', 'thriller']"
90,The Journey of August King,['drama']
91,Mary Reilly,"['drama', 'horror', 'thriller', 'romance']"
92,Vampire in Brooklyn,"['comedy', 'horror', 'romance']"
93,Beautiful Girls,"['comedy', 'drama', 'romance']"
94,Broken Arrow,"['action', 'adventure', 'drama', 'thriller']"
95,A Midwinter's Tale,['comedy']
96,La Haine,['drama']
97,Shopping,"['action', 'adventure', 'drama', 'science fiction', 'thriller']"
98,Heidi Fleiss: Hollywood Madam,['documentary']
99,City Hall,"['drama', 'thriller']"
100,Bottle Rocket,"['comedy', 'crime', 'drama']"
101,Mr. Wrong,"['comedy', 'romance']"
102,Unforgettable,"['drama', 'mystery', 'science fiction', 'thriller']"
103,Happy Gilmore,['comedy']
104,The Bridges of Madison County,"['drama', 'romance']"
105,Nobody Loves Me,"['drama', 'comedy', 'family']"
106,Muppet Treasure Island,"['action', 'comedy', 'music', 'family', 'adventure']"
107,Catwalk,['documentary']
108,Headless Body in Topless Bar,['crime']
109,Braveheart,"['action', 'drama', 'history', 'war']"
110,Taxi Driver,"['crime', 'drama']"
111,Rumble in the Bronx,"['crime', 'action', 'comedy', 'thriller']"
112,Before and After,"['drama', 'thriller']"
113,Margaret's Museum,['drama']
114,Happiness Is in the Field,['comedy']
115,Anne Frank Remembered,"['documentary', 'drama', 'foreign']"
116,The Young Poisoner's Handbook,"['comedy', 'crime', 'drama']"
117,If Lucy Fell,"['comedy', 'romance']"
118,Steal Big Steal Little,"['comedy', 'drama']"
119,Race the Sun,"['action', 'adventure', 'comedy', 'drama', 'family']"
120,The Boys of St. Vincent,['drama']
121,Boomerang,"['comedy', 'romance']"
122,Chungking Express,"['drama', 'comedy', 'romance']"
123,The Star Maker,"['drama', 'romance']"
124,Flirting with Disaster,"['comedy', 'romance']"
125,The Neverending Story III: Escape from Fantasia,['fantasy']
126,The Silences of the Palace,['drama']
127,Jupiter's Wife,[]
128,Pie in the Sky,"['comedy', 'romance']"
129,Angela,"['comedy', 'drama']"
130,Frankie Starlight,"['drama', 'romance', 'war']"
131,Jade,"['action', 'thriller', 'mystery', 'romance']"
132,Nueba Yol,"['comedy', 'drama', 'romance']"
133,Sonic Outlaws,"['music', 'documentary']"
134,Down Periscope,['comedy']
135,From the Journals of Jean Seberg,['documentary']
136,Man of the Year,['comedy']
137,The Neon Bible,['drama']
138,Target,[]
139,Up Close & Personal,"['drama', 'romance']"
140,The Birdcage,['comedy']
141,Virgin Mary,['drama']
142,The Brothers McMullen,"['comedy', 'drama', 'romance']"
143,Bad Boys,"['action', 'comedy', 'crime', 'thriller']"
144,The Amazing Panda Adventure,"['action', 'adventure', 'drama', 'family']"
145,The Basketball Diaries,"['drama', 'crime']"
146,An Awfully Big Adventure,"['romance', 'drama', 'comedy']"
147,Amateur,"['crime', 'comedy', 'drama', 'thriller']"
148,Apollo 13,['drama']
149,Rob Roy,['adventure']
150,The Addiction,"['drama', 'horror']"
151,Batman Forever,"['action', 'crime', 'fantasy']"
152,Belle de Jour,"['drama', 'romance']"
153,Beyond Rangoon,"['drama', 'thriller']"
154,Blue in the Face,['comedy']
155,Canadian Bacon,"['action', 'comedy']"
156,Casper,"['fantasy', 'comedy', 'family']"
157,Clockers,"['mystery', 'crime', 'drama']"
158,Congo,"['action', 'adventure', 'drama', 'mystery', 'science fiction', 'thriller']"
159,Crimson Tide,"['action', 'thriller', 'drama']"
160,Crumb,['documentary']
161,Desperado,"['thriller', 'action', 'crime']"
162,Devil in a Blue Dress,"['drama', 'mystery', 'thriller']"
163,Die Hard: With a Vengeance,"['action', 'thriller']"
164,The Doom Generation,"['action', 'comedy', 'crime', 'drama']"
165,Feast of July,"['drama', 'crime']"
166,First Knight,"['action', 'adventure', 'drama', 'romance']"
167,Free Willy 2 - The Adventure Home,['adventure']
168,Hackers,"['action', 'crime', 'thriller', 'drama']"
169,Jeffrey,"['comedy', 'drama', 'romance']"
170,Johnny Mnemonic,"['adventure', 'action', 'drama', 'science fiction', 'thriller']"
171,Judge Dredd,['science fiction']
172,Jury Duty,"['comedy', 'drama']"
173,Kids,"['drama', 'crime']"
174,Living in Oblivion,"['drama', 'comedy']"
175,Lord of Illusions,"['mystery', 'horror', 'thriller']"
176,Love & Human Remains,"['comedy', 'drama']"
177,Mad Love,"['drama', 'family', 'romance']"
178,Mallrats,"['romance', 'comedy']"
179,Mighty Morphin Power Rangers: The Movie,"['action', 'adventure', 'science fiction', 'family', 'fantasy']"
180,Moonlight and Valentino,"['comedy', 'drama', 'romance']"
181,Mute Witness,"['thriller', 'foreign']"
182,Nadja,"['horror', 'thriller']"
183,The Net,"['crime', 'drama', 'mystery', 'thriller', 'action']"
184,Nine Months,['comedy']
185,Party Girl,['comedy']
186,The Prophecy,"['fantasy', 'horror', 'thriller']"
187,Reckless,"['fantasy', 'comedy', 'drama']"
188,Safe,['drama']
189,The Scarlet Letter,"['drama', 'history', 'romance']"
190,The Show,['documentary']
191,Showgirls,['drama']
192,Smoke,"['comedy', 'drama']"
193,Something to Talk About,['comedy']
194,Species,"['science fiction', 'horror', 'action']"
195,The Stars Fell on Henrietta,['drama']
196,Strange Days,"['crime', 'drama', 'science fiction', 'thriller']"
197,The Umbrellas of Cherbourg,"['drama', 'romance']"
198,The Tie That Binds,['thriller']
199,Three Wishes,"['drama', 'fantasy']"
200,Total Eclipse,"['drama', 'romance']"
201,"To Wong Foo, Thanks for Everything! Julie Newmar",['comedy']
202,Under Siege 2: Dark Territory,"['action', 'thriller']"
203,Unstrung Heroes,"['comedy', 'drama', 'family']"
204,Unzipped,['documentary']
205,A Walk in the Clouds,"['drama', 'romance']"
206,Waterworld,"['adventure', 'action']"
207,White Man's Burden,['drama']
208,Wild Bill,"['action', 'western']"
209,The Browning Version,['drama']
210,Bushwhacked,"['adventure', 'action', 'comedy', 'crime', 'family']"
211,Burnt by the Sun,['drama']
212,Before the Rain,"['drama', 'war']"
213,Before Sunrise,"['drama', 'romance']"
214,Billy Madison,['comedy']
215,The Babysitter,"['drama', 'thriller']"
216,Boys on the Side,"['comedy', 'drama']"
217,The Cure,"['drama', 'family']"
218,Castle Freak,"['thriller', 'drama', 'horror', 'mystery']"
219,Circle of Friends,"['drama', 'family', 'romance']"
220,Clerks,['comedy']
221,Don Juan DeMarco,"['romance', 'drama', 'comedy']"
222,Disclosure,"['drama', 'thriller', 'crime', 'mystery', 'romance']"
223,Dream Man,['thriller']
224,Drop Zone,"['action', 'adventure', 'thriller']"
225,Destiny Turns on the Radio,"['crime', 'comedy', 'fantasy']"
226,Death and the Maiden,"['drama', 'thriller', 'mystery']"
227,Dolores Claiborne,"['crime', 'drama', 'mystery']"
228,Dumb and Dumber,['comedy']
229,Eat Drink Man Woman,"['comedy', 'drama', 'romance']"
230,Exotica,"['drama', 'mystery']"
231,Exit to Eden,"['thriller', 'comedy', 'crime', 'romance']"
232,Ed Wood,"['comedy', 'drama', 'history']"
233,French Kiss,"['comedy', 'romance']"
234,Forget Paris,"['comedy', 'drama', 'romance']"
235,Far from Home: The Adventures of Yellow Dog,"['action', 'adventure', 'drama', 'family']"
236,A Goofy Movie,"['romance', 'animation', 'family', 'comedy', 'adventure']"
237,Hideaway,"['drama', 'thriller']"
238,Fluke,"['drama', 'family', 'fantasy']"
239,Farinelli,"['history', 'drama']"
240,Gordy,"['drama', 'family', 'fantasy']"
241,Gumby: The Movie,"['fantasy', 'animation', 'science fiction', 'family']"
242,The Glass Shield,"['drama', 'action', 'thriller', 'crime']"
243,Hoop Dreams,['documentary']
244,Heavenly Creatures,"['drama', 'fantasy']"
245,Houseguest,"['comedy', 'family']"
246,Immortal Beloved,"['drama', 'music', 'romance']"
247,Heavyweights,"['comedy', 'family', 'drama']"
248,The Hunted,"['action', 'thriller']"
249,I.Q.,"['comedy', 'drama', 'romance']"
250,Interview with the Vampire,"['horror', 'romance']"
251,Jefferson in Paris,"['drama', 'romance']"
252,The Jerky Boys,"['comedy', 'crime']"
253,Junior,"['comedy', 'family', 'romance']"
254,Just Cause,"['action', 'drama', 'mystery', 'thriller']"
255,A Kid in King Arthur's Court,"['adventure', 'fantasy', 'comedy', 'science fiction', 'family']"
256,Kiss of Death,"['action', 'crime', 'drama', 'thriller']"
257,Star Wars,"['adventure', 'action', 'science fiction']"
258,Little Women,"['drama', 'romance']"
259,A Little Princess,"['drama', 'family', 'fantasy']"
260,Ladybird Ladybird,['drama']
261,L'Enfer,"['crime', 'drama']"
262,Like Water for Chocolate,"['drama', 'romance']"
263,Legends of the Fall,"['adventure', 'drama', 'romance', 'war']"
264,Major Payne,"['adventure', 'comedy', 'family']"
265,Little Odessa,"['action', 'drama']"
266,Mi Vida Loca,"['crime', 'drama']"
267,Love Affair,"['drama', 'romance']"
268,Losing Isaiah,['drama']
269,The Madness of King George,"['comedy', 'drama', 'history']"
270,Mary Shelley's Frankenstein,"['drama', 'horror', 'science fiction', 'romance']"
271,Man of the House,"['action', 'comedy', 'family']"
272,Mixed Nuts,"['comedy', 'drama', 'romance']"
273,Milk Money,"['comedy', 'romance']"
274,Miracle on 34th Street,"['fantasy', 'drama', 'family']"
275,Miami Rhapsody,"['comedy', 'romance']"
276,My Family,"['comedy', 'drama']"
277,Murder in the First,"['crime', 'drama']"
278,Nobody's Fool,"['drama', 'comedy']"
279,Nell,"['drama', 'thriller']"
280,New Jersey Drive,"['crime', 'drama']"
281,New York Cop,"['action', 'thriller', 'crime', 'drama']"
282,Beyond Bedlam,['horror']
283,Nemesis 2 - Nebula,"['science fiction', 'action', 'thriller']"
284,Nina Takes a Lover,"['drama', 'romance']"
285,Natural Born Killers,"['crime', 'thriller', 'drama']"
286,Only You,"['comedy', 'drama', 'romance']"
287,Once Were Warriors,['drama']
288,Poison Ivy II: Lily,"['drama', 'romance', 'thriller']"
289,Outbreak,"['action', 'drama', 'science fiction', 'thriller']"
290,Leon: The Professional,"['thriller', 'crime', 'drama']"
291,The Perez Family,"['comedy', 'drama', 'romance']"
292,A Pyromaniac's Love Story,"['comedy', 'drama', 'romance']"
293,Pulp Fiction,"['thriller', 'crime']"
294,Panther,['drama']
295,Pushing Hands,"['comedy', 'drama']"
296,Priest,"['drama', 'romance']"
297,Quiz Show,"['history', 'drama']"
298,Picture Bride,"['drama', 'history']"
299,Queen Margot,"['drama', 'history']"
300,The Quick and the Dead,"['action', 'western']"
301,Roommates,"['drama', 'comedy']"
302,Prêt-à-Porter,"['drama', 'comedy']"
303,Three Colors: Red,"['drama', 'mystery', 'romance']"
304,Three Colors: Blue,"['drama', 'music', 'mystery']"
305,Three Colors: White,"['comedy', 'drama', 'mystery']"
306,"Red Firecracker, Green Firecracker",['drama']
307,Rent-a-Kid,"['comedy', 'family', 'tv movie']"
308,Relative Fear,"['horror', 'drama']"
309,Stuart Saves His Family,"['comedy', 'drama']"
310,The Swan Princess,['animation']
311,The Secret of Roan Inish,"['drama', 'family', 'fantasy']"
312,The Specialist,"['action', 'thriller']"
313,Stargate,"['action', 'adventure', 'science fiction']"
314,The Santa Clause,"['fantasy', 'drama', 'comedy', 'family']"
315,The Shawshank Redemption,"['drama', 'crime']"
316,Shallow Grave,"['crime', 'thriller']"
317,Suture,"['drama', 'thriller']"
318,Strawberry and Chocolate,"['comedy', 'drama']"
319,Swimming with Sharks,"['crime', 'comedy']"
320,The Sum of Us,"['comedy', 'drama', 'romance']"
321,Senior Trip,['comedy']
322,To Live,"['drama', 'romance', 'war']"
323,Tank Girl,"['action', 'comedy', 'fantasy', 'science fiction']"
324,Tales from the Crypt: Demon Knight,"['horror', 'comedy', 'thriller']"
325,Star Trek: Generations,"['science fiction', 'action', 'adventure', 'thriller']"
326,Tales from the Hood,"['crime', 'horror', 'thriller']"
327,Tom & Viv,"['drama', 'romance']"
328,Village of the Damned,"['thriller', 'horror', 'science fiction']"
329,Tommy Boy,['comedy']
330,Vanya on 42nd Street,"['drama', 'romance']"
331,The Underneath,"['thriller', 'crime']"
332,The Walking Dead,"['drama', 'war']"
333,What's Eating Gilbert Grape,"['romance', 'drama']"
334,Virtuosity,"['action', 'crime', 'science fiction', 'thriller']"
335,While You Were Sleeping,"['comedy', 'drama', 'romance']"
336,The War,['drama']
337,Double Happiness,"['comedy', 'romance']"
338,Muriel's Wedding,"['drama', 'comedy', 'romance']"
339,The Baby-Sitters Club,"['comedy', 'drama', 'family']"
340,Ace Ventura: Pet Detective,"['comedy', 'mystery']"
341,"The Adventures of Priscilla, Queen of the Desert","['drama', 'comedy']"
342,Backbeat,"['drama', 'music']"
343,Bitter Moon,"['thriller', 'drama', 'romance']"
344,Bullets Over Broadway,"['action', 'comedy', 'thriller']"
345,Clear and Present Danger,"['action', 'drama', 'thriller']"
346,The Client,"['drama', 'thriller', 'crime', 'mystery']"
347,"Corrina, Corrina","['comedy', 'drama', 'family', 'romance']"
348,Crooklyn,"['comedy', 'drama']"
349,The Crow,"['fantasy', 'action', 'thriller']"
350,Cobb,['drama']
351,The Flintstones,"['fantasy', 'comedy', 'family']"
352,Forrest Gump,"['comedy', 'drama', 'romance']"
353,Four Weddings and a Funeral,"['comedy', 'drama', 'romance']"
354,Higher Learning,"['romance', 'drama', 'crime']"
355,I Like It Like That,"['comedy', 'drama', 'romance']"
356,I Love Trouble,"['action', 'comedy', 'romance']"
357,It Could Happen to You,"['comedy', 'drama', 'romance']"
358,The Jungle Book,"['adventure', 'drama', 'family']"
359,"The Wonderful, Horrible Life of Leni Riefenstahl","['documentary', 'foreign']"
360,The Lion King,"['family', 'animation', 'drama']"
361,Little Buddha,"['drama', 'history']"
362,New Nightmare,"['horror', 'thriller', 'mystery', 'fantasy']"
363,The Mask,"['romance', 'comedy', 'crime', 'fantasy']"
364,Maverick,"['action', 'adventure', 'comedy', 'drama', 'western']"
365,Mrs. Parker and the Vicious Circle,['drama']
366,The Naked Gun 33⅓: The Final Insult,"['comedy', 'crime']"
367,The Paper,"['comedy', 'drama']"
368,Reality Bites,['drama']
369,Red Rock West,"['crime', 'drama', 'thriller']"
370,Ri¢hie Ri¢h,"['comedy', 'family']"
371,Safe Passage,['drama']
372,The River Wild,"['action', 'adventure', 'crime', 'thriller']"
373,Speed,"['action', 'adventure', 'crime']"
374,Speechless,"['comedy', 'romance']"
375,Timecop,"['thriller', 'science fiction', 'action', 'crime']"
376,True Lies,"['action', 'thriller']"
377,When a Man Loves a Woman,"['drama', 'romance']"
378,Wolf,['fantasy']
379,Wyatt Earp,"['drama', 'action', 'western']"
380,Bad Company,"['action', 'crime', 'romance', 'thriller']"
381,A Man of No Importance,"['comedy', 'drama']"
382,S.F.W.,"['comedy', 'drama']"
383,A Low Down Dirty Shame,"['action', 'comedy', 'crime']"
384,"Boys Life: Three Stories of Love, Lust, and Liberation",['drama']
385,Colonel Chabert,['drama']
386,"Faster, Pussycat! Kill! Kill!","['action', 'crime']"
387,Jason's Lyric,"['crime', 'drama', 'romance']"
388,The Secret Adventures of Tom Thumb,"['animation', 'science fiction']"
389,Street Fighter,"['action', 'adventure', 'thriller']"
390,Coldblooded,"['action', 'comedy']"
391,Desert Winds,[]
392,Fall Time,"['action', 'adventure', 'crime', 'drama', 'thriller']"
393,The Fear,"['horror', 'thriller']"
394,Frank and Ollie,['documentary']
395,Girl in the Cadillac,"['romance', 'adventure', 'crime', 'drama']"
396,Homage,"['thriller', 'drama']"
397,Mirage,"['action', 'thriller']"
398,Open Season,['comedy']
399,Dos Crímenes,[]
400,Brother Minister: The Assassination of Malcolm X,['documentary']
401,Highlander: The Final Dimension,"['action', 'fantasy', 'science fiction']"
402,Federal Hill,[]
403,In the Mouth of Madness,"['horror', 'mystery', 'thriller']"
404,8 Seconds,"['drama', 'romance']"
405,Above the Rim,"['crime', 'drama']"
406,Addams Family Values,"['comedy', 'family', 'fantasy']"
407,Martin Lawrence: You So Crazy,['comedy']
408,The Age of Innocence,"['drama', 'romance']"
409,Airheads,"['comedy', 'crime', 'music']"
410,The Air Up There,"['comedy', 'family']"
411,Another Stakeout,"['action', 'comedy']"
412,Bad Girls,"['action', 'adventure', 'comedy', 'drama', 'western']"
413,Barcelona,"['comedy', 'drama', 'romance']"
414,Being Human,"['drama', 'comedy', 'fantasy']"
415,The Beverly Hillbillies,['comedy']
416,Beverly Hills Cop III,"['action', 'comedy', 'crime']"
417,Black Beauty,"['action', 'adventure', 'drama', 'family']"
418,Blink,"['mystery', 'crime', 'drama', 'thriller']"
419,Blown Away,"['drama', 'action', 'thriller']"
420,Blue Chips,['drama']
421,Blue Sky,"['drama', 'romance']"
422,Body Snatchers,"['horror', 'science fiction', 'thriller']"
423,Boxing Helena,"['drama', 'romance']"
424,A Bronx Tale,"['drama', 'crime']"
425,Cabin Boy,['comedy']
426,Calendar Girl,"['drama', 'comedy']"
427,Carlito's Way,"['action', 'crime', 'drama', 'thriller']"
428,City Slickers II: The Legend of Curly's Gold,"['action', 'comedy', 'drama', 'western']"
429,Clean Slate,"['comedy', 'thriller', 'mystery']"
430,Cliffhanger,"['action', 'adventure', 'thriller']"
431,Coneheads,"['comedy', 'science fiction', 'family']"
432,Color of Night,"['drama', 'mystery', 'romance', 'thriller']"
433,Cops & Robbersons,"['action', 'comedy', 'family']"
434,The Cowboy Way,"['western', 'action', 'comedy']"
435,Dangerous Game,['drama']
436,Dave,['comedy']
437,Dazed and Confused,"['comedy', 'drama']"
438,Demolition Man,"['crime', 'action', 'science fiction']"
439,The Endless Summer 2,['documentary']
440,Even Cowgirls Get the Blues,"['western', 'drama', 'comedy', 'romance']"
441,Fatal Instinct,['comedy']
442,Farewell My Concubine,['drama']
443,The Favor,"['drama', 'comedy', 'romance']"
444,Fearless,['drama']
445,Fear of a Black Hat,['comedy']
446,With Honors,"['comedy', 'drama']"
447,Flesh and Bone,"['drama', 'mystery', 'romance']"
448,Widows' Peak,"['comedy', 'thriller', 'mystery', 'romance', 'foreign']"
449,For Love or Money,"['comedy', 'romance']"
450,The Firm,"['drama', 'mystery', 'thriller']"
451,Free Willy,"['family', 'adventure']"
452,Fresh,"['crime', 'drama', 'thriller']"
453,The Fugitive,"['adventure', 'action', 'thriller', 'crime', 'mystery']"
454,Geronimo: An American Legend,"['history', 'action', 'drama', 'western']"
455,The Getaway,"['drama', 'action', 'thriller']"
456,Getting Even with Dad,"['family', 'comedy', 'crime']"
457,Go Fish,"['drama', 'romance']"
458,A Good Man in Africa,"['comedy', 'drama']"
459,Guilty as Sin,"['drama', 'thriller']"
460,Hard Target,"['action', 'adventure', 'crime', 'thriller']"
461,Heaven & Earth,"['history', 'war', 'action', 'drama']"
462,Hot Shots! Part Deux,"['action', 'comedy', 'war']"
463,Live Nude Girls,['comedy']
464,The Englishman Who Went Up a Hill But Came Down a Mountain,"['drama', 'comedy', 'romance']"
465,The House of the Spirits,"['romance', 'drama']"
466,House Party 3,['comedy']
467,The Hudsucker Proxy,"['comedy', 'drama']"
468,I'll Do Anything,"['comedy', 'drama']"
469,In the Army Now,['comedy']
470,In the Line of Fire,"['action', 'drama', 'thriller', 'crime', 'mystery']"
471,In the Name of the Father,['drama']
472,The Inkwell,"['comedy', 'drama', 'romance']"
473,What's Love Got to Do with It,"['drama', 'music']"
474,Jimmy Hollywood,['comedy']
475,Judgment Night,"['action', 'thriller', 'crime']"
476,Jurassic Park,"['adventure', 'science fiction']"
477,Kalifornia,"['thriller', 'crime']"
478,Killing Zoe,"['action', 'crime', 'drama', 'thriller']"
479,King of the Hill,['drama']
480,Lassie,"['action', 'adventure', 'drama', 'family']"
481,Last Action Hero,"['adventure', 'fantasy', 'action', 'comedy', 'family']"
482,Life With Mikey,"['comedy', 'family']"
483,Lightning Jack,"['action', 'comedy', 'western']"
484,M. Butterfly,"['drama', 'romance']"
485,Made in America,['comedy']
486,Malice,"['drama', 'crime']"
487,The Man without a Face,['drama']
488,Manhattan Murder Mystery,"['comedy', 'mystery']"
489,Menace II Society,"['drama', 'action', 'crime']"
490,Executive Decision,"['action', 'adventure', 'drama', 'thriller']"
491,In the Realm of the Senses,"['drama', 'romance']"
492,What Happened Was...,"['thriller', 'comedy', 'drama', 'romance']"
493,Much Ado About Nothing,"['drama', 'comedy', 'romance']"
494,Mr. Jones,"['drama', 'romance']"
495,Mr. Wonderful,"['comedy', 'romance']"
496,Mrs. Doubtfire,"['comedy', 'drama', 'family']"
497,Naked,"['comedy', 'drama']"
498,The Next Karate Kid,['adventure']
499,The New Age,"['comedy', 'drama']"
500,No Escape,"['action', 'drama', 'science fiction', 'thriller']"
501,North,"['comedy', 'drama', 'family', 'fantasy', 'science fiction']"
502,Orlando,"['romance', 'drama', 'fantasy']"
503,A Perfect World,"['crime', 'drama', 'thriller']"
504,Philadelphia,['drama']
505,The Piano,"['drama', 'romance']"
506,Poetic Justice,"['drama', 'romance']"
507,The Program,['drama']
508,The Puppet Masters,"['horror', 'science fiction', 'thriller']"
509,Radioland Murders,"['comedy', 'crime', 'drama', 'music', 'mystery', 'romance']"
510,The Ref,['comedy']
511,The Remains of the Day,"['drama', 'romance']"
512,Renaissance Man,"['comedy', 'war']"
513,Rising Sun,"['action', 'drama', 'thriller']"
514,The Road to Wellville,"['comedy', 'romance']"
515,RoboCop 3,"['action', 'adventure', 'crime', 'science fiction', 'thriller']"
516,Robin Hood: Men in Tights,['comedy']
517,Romeo Is Bleeding,"['action', 'crime', 'drama', 'thriller']"
518,Romper Stomper,"['action', 'drama', 'thriller']"
519,Ruby in Paradise,"['drama', 'romance']"
520,Rudy,['drama']
521,The Saint of Fort Washington,['drama']
522,Savage Nights,['drama']
523,Schindler's List,"['drama', 'history', 'war']"
524,The Scout,"['comedy', 'drama']"
525,Searching for Bobby Fischer,['drama']
526,Second Best,['drama']
527,The Secret Garden,"['drama', 'family', 'fantasy']"
528,Serial Mom,"['comedy', 'crime', 'horror', 'thriller']"
529,The Shadow,"['adventure', 'fantasy', 'action', 'thriller', 'science fiction']"
530,Shadowlands,"['drama', 'romance']"
531,Short Cuts,"['comedy', 'drama']"
532,A Simple Twist of Fate,"['drama', 'family']"
533,Sirens,"['comedy', 'drama']"
534,Six Degrees of Separation,"['mystery', 'drama', 'comedy']"
535,Sleepless in Seattle,"['comedy', 'drama', 'romance']"
536,Sliver,"['drama', 'thriller']"
537,Blade Runner,"['science fiction', 'drama', 'thriller']"
538,Son in Law,"['comedy', 'drama', 'romance']"
539,So I Married an Axe Murderer,"['comedy', 'crime', 'romance']"
540,Striking Distance,"['crime', 'action', 'mystery', 'thriller']"
541,Harem,"['history', 'drama', 'romance']"
542,Super Mario Bros.,"['adventure', 'comedy', 'family', 'fantasy']"
543,Surviving the Game,"['action', 'adventure', 'thriller', 'crime']"
544,Terminal Velocity,"['action', 'thriller']"
545,Thirty Two Short Films About Glenn Gould,"['drama', 'music']"
546,Threesome,"['comedy', 'drama', 'family', 'romance']"
547,The Nightmare Before Christmas,"['fantasy', 'animation', 'family']"
548,The Three Musketeers,"['action', 'adventure', 'comedy']"
549,Tombstone,"['action', 'adventure', 'drama', 'history', 'western']"
550,Trial by Jury,"['drama', 'action', 'thriller']"
551,True Romance,"['action', 'thriller', 'crime', 'romance']"
552,The War Room,"['documentary', 'history']"
553,The Pagemaster,"['fantasy', 'science fiction', 'family', 'animation']"
554,"Paris, France","['drama', 'comedy']"
555,"The Beans of Egypt, Maine",[]
556,Killer,"['thriller', 'drama', 'romance']"
557,Welcome to the Dollhouse,"['comedy', 'drama']"
558,Germinal,"['drama', 'romance']"
559,Chasers,"['comedy', 'romance']"
560,Cronos,"['drama', 'horror', 'thriller']"
561,Naked in New York,"['comedy', 'romance']"
562,Kika,"['comedy', 'drama']"
563,Bhaji on the Beach,"['comedy', 'drama']"
564,Little Big League,"['comedy', 'family']"
565,The Slingshot,['drama']
566,Wide Eyed and Legless,"['tv movie', 'drama', 'romance', 'comedy']"
567,Foreign Student,"['drama', 'romance']"
568,"Ciao, Professore!","['comedy', 'foreign']"
569,Spanking the Monkey,"['comedy', 'drama']"
570,The Little Rascals,"['romance', 'comedy', 'family']"
571,À la mode,['comedy']
572,Andre,"['drama', 'family', 'adventure']"
573,The Escort,"['thriller', 'crime', 'drama']"
574,Princess Caraboo,"['comedy', 'drama', 'history', 'mystery']"
575,The Celluloid Closet,"['history', 'documentary']"
576,Café au Lait,"['drama', 'comedy', 'romance', 'foreign']"
577,Dear Diary,"['comedy', 'drama']"
578,I Don't Want to Talk About It,"['romance', 'drama']"
579,The Brady Bunch Movie,['comedy']
580,Home Alone,"['comedy', 'family']"
581,Ghost,"['fantasy', 'drama', 'thriller', 'mystery', 'romance']"
582,Aladdin,"['animation', 'family', 'comedy', 'adventure', 'fantasy', 'romance']"
583,Terminator 2: Judgment Day,"['action', 'thriller', 'science fiction']"
584,Dances with Wolves,"['adventure', 'drama', 'western']"
585,Tough and Deadly,"['thriller', 'action', 'drama']"
586,Batman,"['fantasy', 'action']"
587,The Silence of the Lambs,"['crime', 'drama', 'thriller']"
588,Snow White and the Seven Dwarfs,"['fantasy', 'animation', 'family']"
589,Beauty and the Beast,"['romance', 'family', 'animation', 'fantasy', 'music']"
590,Pinocchio,"['animation', 'family']"
591,Pretty Woman,"['romance', 'comedy']"
592,Window to Paris,"['comedy', 'drama', 'fantasy']"
593,The Wild Bunch,"['adventure', 'western']"
594,Love and a .45,"['crime', 'thriller']"
595,The Wooden Man's Bride,"['drama', 'foreign', 'romance']"
596,A Great Day in Harlem,[]
597,Bye Bye Love,"['comedy', 'romance']"
598,One Fine Day,"['comedy', 'romance']"
599,Candyman: Farewell to the Flesh,['horror']
600,Century,"['romance', 'drama']"
601,Fargo,"['crime', 'drama', 'thriller']"
602,Homeward Bound II: Lost in San Francisco,"['adventure', 'comedy', 'drama', 'family']"
603,Heavy Metal,"['animation', 'science fiction']"
604,Hellraiser: Bloodline,"['horror', 'thriller', 'science fiction']"
605,The Pallbearer,"['comedy', 'romance']"
606,Jane Eyre,"['drama', 'romance']"
607,Loaded,"['drama', 'mystery', 'thriller']"
608,Bread and Chocolate,"['comedy', 'foreign']"
609,The Aristocats,"['animation', 'comedy', 'family', 'adventure']"
610,The Flower of My Secret,"['drama', 'romance']"
611,Two Much,"['comedy', 'romance']"
612,Ed,"['comedy', 'family']"
613,Scream of Stone,"['adventure', 'drama', 'documentary']"
614,My Favorite Season,['drama']
615,A Modern Affair,[]
616,Condition Red,"['thriller', 'action', 'drama']"
617,Halfaouine: Boy of the Terraces,"['comedy', 'drama']"
618,A Thin Line Between Love and Hate,"['comedy', 'thriller', 'crime', 'romance']"
619,The Last Supper,"['comedy', 'thriller', 'crime', 'drama']"
620,Primal Fear,"['crime', 'drama', 'mystery', 'thriller']"
621,Rude,[]
622,Carried Away,"['drama', 'romance']"
623,All Dogs Go to Heaven 2,"['romance', 'animation', 'family', 'adventure', 'fantasy']"
624,Land and Freedom,"['drama', 'history', 'war', 'romance']"
625,Denise Calls Up,['comedy']
626,Theodore Rex,"['fantasy', 'science fiction', 'family']"
627,A Family Thing,"['comedy', 'drama']"
628,Frisk,"['drama', 'thriller']"
629,Sgt. Bilko,"['comedy', 'family']"
630,Jack & Sarah,"['comedy', 'drama', 'romance']"
631,Girl 6,['comedy']
632,Diabolique,"['drama', 'horror', 'mystery', 'thriller']"
633,"Little Indian, Big City","['adventure', 'drama', 'comedy', 'family']"
634,Roula,"['romance', 'drama']"
635,Peanuts – Die Bank zahlt alles,['comedy']
636,Happy Weekend,['comedy']
637,Nelly and Monsieur Arnaud,"['drama', 'romance']"
638,Courage Under Fire,"['drama', 'thriller', 'mystery', 'war']"
639,Mission: Impossible,"['adventure', 'action', 'thriller']"
640,Cold Fever,"['drama', 'comedy']"
641,Moll Flanders,"['drama', 'romance']"
642,The Superwife,['comedy']
643,"301, 302","['horror', 'mystery', 'thriller']"
644,DragonHeart,['fantasy']
645,Und keiner weint mir nach,['drama']
646,My Mother's Courage,['drama']
647,Eddie,"['action', 'comedy']"
648,Yankee Zulu,"['drama', 'comedy']"
649,Billy's Holiday,[]
650,Purple Noon,"['crime', 'drama', 'thriller']"
651,August,"['romance', 'comedy', 'drama']"
652,James and the Giant Peach,"['adventure', 'animation', 'family']"
653,Fear,"['drama', 'thriller', 'romance']"
654,Kids in the Hall: Brain Candy,['comedy']
655,Faithful,"['comedy', 'crime', 'drama']"
656,Underground,"['war', 'drama', 'comedy']"
657,All Things Fair,"['war', 'drama', 'romance']"
658,Bloodsport II,"['action', 'thriller']"
659,Pather Panchali,['drama']
660,The World of Apu,['drama']
661,Mystery Science Theater 3000: The Movie,"['comedy', 'science fiction']"
662,Tarantella,[]
663,Space Jam,"['animation', 'comedy', 'drama', 'family', 'fantasy']"
664,Barbarella,['science fiction']
665,Hostile Intentions,"['thriller', 'action', 'drama']"
666,They Bite,"['comedy', 'horror', 'science fiction']"
667,Some Folks Call It a Sling Blade,"['drama', 'thriller']"
668,The Run of the Country,"['drama', 'romance']"
669,Alphaville,"['drama', 'science fiction', 'mystery']"
670,Coup de Torchon,['drama']
671,Tigrero: A Film That Was Never Made,"['documentary', 'foreign']"
672,The Eye of Vichy,[]
673,Windows,"['horror', 'drama', 'thriller']"
674,It's My Party,['drama']
675,Country Life,"['drama', 'romance']"
676,Operation Dumbo Drop,"['action', 'adventure', 'comedy', 'family']"
677,The Promise,"['drama', 'romance']"
678,Mrs. Winterbourne,"['comedy', 'romance', 'drama']"
679,Solo,"['action', 'adventure', 'science fiction', 'thriller']"
680,Under The Domim Tree,"['drama', 'foreign']"
681,The Substitute,"['action', 'thriller']"
682,True Crime,"['crime', 'mystery', 'thriller']"
683,Butterfly Kiss,"['crime', 'drama', 'romance', 'thriller']"
684,Feeling Minnesota,"['action', 'comedy', 'drama', 'thriller']"
685,Delta of Venus,"['drama', 'romance']"
686,To Cross the Rubicon,[]
687,Angus,"['comedy', 'drama', 'family', 'romance']"
688,Priest Daens,"['drama', 'history']"
689,Faces,['drama']
690,Boys,"['romance', 'drama', 'mystery']"
691,The Quest,"['action', 'adventure']"
692,Cosi,"['comedy', 'romance']"
693,Sunset Park,['drama']
694,Mulholland Falls,"['drama', 'mystery', 'thriller']"
695,The Truth About Cats & Dogs,"['comedy', 'romance']"
696,Oliver & Company,"['animation', 'comedy', 'family']"
697,Celtic Pride,['comedy']
698,Flipper,"['adventure', 'family']"
699,Captives,"['drama', 'thriller', 'mystery', 'romance']"
700,Of Love and Shadows,['drama']
701,Dead Man,"['drama', 'fantasy', 'western']"
702,The Horseman on the Roof,"['war', 'adventure', 'drama', 'romance']"
703,Switchblade Sisters,"['action', 'crime', 'drama']"
704,Mouth to Mouth,"['comedy', 'foreign']"
705,The Visitors,"['fantasy', 'comedy', 'science fiction']"
706,Multiplicity,"['comedy', 'fantasy', 'science fiction']"
707,"The Haunted World of Edward D. Wood, Jr.",['documentary']
708,Two Friends,"['drama', 'foreign']"
709,The Craft,"['drama', 'fantasy', 'horror', 'thriller']"
710,The Great White Hype,"['comedy', 'drama']"
711,Last Dance,"['drama', 'thriller']"
712,War Stories Our Mother Never Told Us,[]
713,Cold Comfort Farm,"['comedy', 'drama', 'romance']"
714,"Institute Benjamenta, or This Dream People Call Human Life","['animation', 'drama']"
715,Heaven's Prisoners,"['drama', 'mystery', 'thriller']"
716,Original Gangstas,"['action', 'drama', 'crime', 'thriller']"
717,The Rock,"['action', 'adventure', 'thriller']"
718,Getting Away with Murder,['comedy']
719,Cemetery Man,"['fantasy', 'drama', 'horror', 'comedy']"
720,Twister,"['action', 'adventure', 'drama']"
721,Barb Wire,"['action', 'science fiction']"
722,Le Garçu,['drama']
723,Honeymoon,['comedy']
724,Ghost in the Shell,"['action', 'animation', 'science fiction']"
725,Thinner,"['horror', 'thriller']"
726,Spy Hard,"['action', 'comedy']"
727,Brothers in Trouble,"['comedy', 'drama']"
728,A Close Shave,"['family', 'animation', 'comedy']"
729,Force of Evil,"['drama', 'action', 'crime']"
730,The Stupids,"['comedy', 'family']"
731,The Arrival,"['action', 'mystery', 'science fiction', 'thriller']"
732,The Man from Down Under,"['drama', 'war']"
733,Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb,"['drama', 'comedy', 'war']"
734,Careful,"['horror', 'comedy', 'drama', 'fantasy']"
735,Vermont Is for Lovers,[]
736,A Month by the Lake,"['comedy', 'drama', 'romance']"
737,Gold Diggers: The Secret of Bear Mountain,['drama']
738,Kim,"['family', 'adventure']"
739,Carmen Miranda: Bananas Is My Business,['documentary']
740,Ashes of Time,"['drama', 'action']"
741,The Jar,[]
742,Maya Lin: A Strong Clear Vision,['documentary']
743,Stalingrad,"['drama', 'history', 'war']"
744,The Phantom,"['adventure', 'action']"
745,Striptease,"['drama', 'thriller', 'crime']"
746,The Last of the High Kings,"['drama', 'comedy']"
747,Heavy,"['drama', 'romance']"
748,Jack,"['comedy', 'drama', 'science fiction']"
749,I Shot Andy Warhol,['drama']
750,The Grass Harp,"['comedy', 'drama', 'family']"
751,Someone Else's America,['drama']
752,Life is Rosy,"['music', 'romance']"
753,Quartier Mozart,[]
754,Touki Bouki,"['drama', 'romance']"
755,God's Gift,['drama']
756,Spirits of the Dead,"['drama', 'mystery', 'horror']"
757,Babyfever,[]
758,Pharaoh's Army,"['western', 'drama', 'war']"
759,Trainspotting,"['drama', 'crime']"
760,Til There Was You,"['comedy', 'romance']"
761,Independence Day,"['action', 'adventure', 'science fiction']"
762,Stealing Beauty,"['drama', 'romance']"
763,The Fan,"['drama', 'mystery', 'thriller']"
764,The Hunchback of Notre Dame,"['drama', 'animation', 'family']"
765,The Cable Guy,"['comedy', 'drama', 'thriller']"
766,Kingpin,['comedy']
767,Eraser,"['action', 'drama', 'mystery', 'thriller']"
768,The Gate of Heavenly Peace,['documentary']
769,The Nutty Professor,"['fantasy', 'comedy', 'romance', 'science fiction']"
770,"I, the Worst of All","['drama', 'foreign']"
771,An Unforgettable Summer,"['drama', 'romance', 'war']"
772,A Hungarian Fairy Tale,[]
773,My Life and Times With Antonin Artaud,[]
774,Midnight Dancers,[]
775,Somebody to Love,"['comedy', 'drama']"
776,A Very Natural Thing,['drama']
777,The Old Lady Who Walked in the Sea,['comedy']
778,Daylight,"['action', 'adventure', 'thriller']"
779,The Frighteners,"['horror', 'comedy']"
780,Lone Star,"['drama', 'mystery', 'romance']"
781,Harriet the Spy,"['comedy', 'drama', 'family']"
782,Phenomenon,"['drama', 'fantasy', 'romance', 'science fiction']"
783,Walking and Talking,"['comedy', 'drama', 'romance']"
784,She's the One,"['comedy', 'romance']"
785,A Time to Kill,"['crime', 'drama', 'thriller']"
786,American Buffalo,['drama']
787,Rendezvous in Paris,"['romance', 'comedy']"
788,Alaska,['adventure']
789,Fled,"['action', 'comedy', 'thriller']"
790,Kazaam,"['fantasy', 'comedy', 'science fiction', 'family']"
791,Magic Hunter,[]
792,Larger Than Life,"['family', 'comedy']"
793,A Boy Called Hate,[]
794,Power 98,"['action', 'mystery', 'thriller']"
795,Two Deaths,"['war', 'drama']"
796,A Very Brady Sequel,['comedy']
797,Stefano Quantestorie,['comedy']
798,Death in the Garden,"['adventure', 'drama']"
799,Hedd Wyn,"['war', 'drama']"
800,La Collectionneuse,"['drama', 'comedy', 'romance']"
801,Kaspar Hauser,"['drama', 'foreign']"
802,Regular Guys,"['comedy', 'foreign']"
803,Diebinnen,['drama']
804,The Convent,['thriller']
805,The Adventures of Pinocchio,"['animation', 'family', 'fantasy']"
806,Joe's Apartment,"['fantasy', 'comedy', 'music']"
807,The First Wives Club,['comedy']
808,Stonewall,"['romance', 'drama', 'comedy']"
809,Ransom,"['action', 'thriller']"
810,High School High,['comedy']
811,Phat Beach,['comedy']
812,Foxfire,"['action', 'drama', 'thriller']"
813,Chain Reaction,"['action', 'drama', 'science fiction', 'thriller']"
814,Matilda,"['comedy', 'family', 'fantasy']"
815,Emma,"['drama', 'comedy', 'romance']"
816,The Crow: City of Angels,"['action', 'fantasy', 'thriller']"
817,House Arrest,"['comedy', 'family']"
818,Eyes Without a Face,"['drama', 'horror', 'thriller']"
819,Bordello of Blood,"['horror', 'comedy']"
820,Lotto Land,['drama']
821,The Story of Xinghua,[]
822,The Day the Sun Turned Cold,[]
823,Flirt,"['drama', 'romance']"
824,The Big Squeeze,['drama']
825,The Spitfire Grill,"['comedy', 'drama']"
826,Escape from L.A.,"['action', 'adventure', 'science fiction', 'thriller']"
827,Cyclo,"['crime', 'drama']"
828,Basquiat,"['drama', 'history']"
829,Tin Cup,"['comedy', 'drama', 'romance']"
830,Dingo,"['drama', 'music']"
831,The Ballad of Narayama,['drama']
832,Every Other Weekend,['drama']
833,Mille bolle blu,[]
834,Crows and Sparrows,[]
835,The Godfather,"['drama', 'crime']"
836,Maybe... Maybe Not,"['comedy', 'drama']"
837,Police Story 3: Supercop,"['action', 'crime', 'thriller']"
838,Manny & Lo,"['drama', 'comedy']"
839,Wife,['drama']
840,Small Faces,[]
841,Bound,"['crime', 'drama', 'romance', 'thriller']"
842,Carpool,"['comedy', 'family']"
843,Death in Brunswick,['drama']
844,Kansas City,"['thriller', 'drama', 'music', 'crime']"
845,Gone Fishin',"['comedy', 'family']"
846,Lover's Knot,"['romance', 'comedy']"
847,Vive L'Amour,['drama']
848,Shadow of Angels,['drama']
849,Killer: A Journal of Murder,['drama']
850,Nothing to Lose,"['action', 'crime', 'drama']"
851,Project S,"['action', 'adventure', 'crime']"
852,Girls Town,"['comedy', 'drama']"
853,Bye-Bye,['drama']
854,The Relic,"['horror', 'mystery', 'thriller']"
855,The Island of Dr. Moreau,"['fantasy', 'horror', 'science fiction']"
856,First Kid,"['comedy', 'family']"
857,The Trigger Effect,"['drama', 'thriller']"
858,Sweet Nothing,[]
859,Bogus,"['fantasy', 'comedy', 'family']"
860,Bulletproof,"['action', 'adventure', 'comedy', 'thriller']"
861,Talk of Angels,"['drama', 'romance', 'war']"
862,The Land Before Time III: The Time of the Great Giving,"['animation', 'adventure', 'family']"
863,1-900,[]
864,Baton Rouge,['thriller']
865,Halloween: The Curse of Michael Myers,"['horror', 'thriller']"
866,Twelfth Night,"['drama', 'comedy', 'romance']"
867,Mother Night,"['drama', 'history']"
868,Liebelei,"['drama', 'romance']"
869,Venice,"['drama', 'romance']"
870,Wild Reeds,"['drama', 'romance']"
871,For Whom the Bell Tolls,"['drama', 'history', 'romance', 'thriller']"
872,The Philadelphia Story,"['comedy', 'romance']"
873,Singin' in the Rain,"['comedy', 'music', 'romance']"
874,An American in Paris,"['drama', 'comedy', 'music', 'romance']"
875,Funny Face,"['music', 'comedy', 'romance']"
876,Breakfast at Tiffany's,"['comedy', 'drama', 'romance']"
877,Vertigo,"['mystery', 'romance', 'thriller']"
878,Rear Window,"['drama', 'mystery', 'thriller']"
879,It Happened One Night,"['comedy', 'romance']"
880,Gaslight,"['drama', 'mystery', 'thriller', 'crime']"
881,The Gay Divorcee,"['comedy', 'music', 'romance']"
882,North by Northwest,"['mystery', 'thriller']"
883,The Apartment,"['comedy', 'drama', 'romance']"
884,Some Like It Hot,"['comedy', 'romance']"
885,Charade,"['comedy', 'mystery', 'romance', 'thriller']"
886,Casablanca,"['drama', 'romance']"
887,The Maltese Falcon,"['mystery', 'crime', 'thriller']"
888,My Fair Lady,"['drama', 'family', 'music', 'romance']"
889,Sabrina,"['comedy', 'drama', 'romance']"
890,Roman Holiday,"['comedy', 'romance']"
891,The Little Princess,"['drama', 'comedy', 'family']"
892,Meet Me in St. Louis,"['comedy', 'music', 'romance']"
893,The Wizard of Oz,"['adventure', 'family', 'fantasy']"
894,Gone with the Wind,"['drama', 'romance', 'war']"
895,My Favorite Year,"['comedy', 'drama']"
896,Sunset Boulevard,['drama']
897,Citizen Kane,"['mystery', 'drama']"
898,2001: A Space Odyssey,"['science fiction', 'mystery', 'adventure']"
899,Golden Earrings,"['adventure', 'romance']"
900,All About Eve,['drama']
901,The Women,"['comedy', 'drama']"
902,Rebecca,"['drama', 'mystery']"
903,Foreign Correspondent,"['mystery', 'thriller', 'war']"
904,Notorious,"['thriller', 'drama', 'romance']"
905,Spellbound,"['drama', 'mystery', 'thriller']"
906,An Affair to Remember,"['drama', 'romance']"
907,To Catch a Thief,"['crime', 'drama', 'mystery', 'romance', 'thriller']"
908,Father of the Bride,"['comedy', 'drama', 'family', 'romance']"
909,The Band Wagon,"['comedy', 'music']"
910,Ninotchka,"['comedy', 'romance']"
911,Love in the Afternoon,"['comedy', 'drama', 'romance']"
912,Gigi,"['comedy', 'music', 'romance']"
913,The Reluctant Debutante,"['comedy', 'romance']"
914,The Adventures of Robin Hood,"['action', 'adventure', 'romance']"
915,The Mark of Zorro,"['action', 'adventure', 'drama', 'romance', 'western']"
916,Laura,"['drama', 'mystery']"
917,The Ghost and Mrs. Muir,"['fantasy', 'romance', 'mystery']"
918,Lost Horizon,"['adventure', 'fantasy', 'drama', 'mystery']"
919,Top Hat,"['comedy', 'music', 'romance']"
920,To Be or Not to Be,"['comedy', 'war']"
921,My Man Godfrey,"['comedy', 'romance']"
922,Giant,"['action', 'drama', 'western']"
923,East of Eden,['drama']
924,The Thin Man,"['comedy', 'crime', 'mystery']"
925,His Girl Friday,"['comedy', 'drama']"
926,Around the World in Eighty Days,"['adventure', 'comedy', 'family', 'fantasy', 'romance']"
927,It's a Wonderful Life,"['drama', 'family', 'fantasy']"
928,Mr. Smith Goes to Washington,"['comedy', 'drama']"
929,Bringing Up Baby,"['comedy', 'romance']"
930,Penny Serenade,"['drama', 'romance']"
931,The Scarlet Letter,['drama']
932,Lady of Burlesque,"['comedy', 'thriller', 'mystery', 'romance']"
933,Of Human Bondage,['drama']
934,Angel on My Shoulder,"['comedy', 'fantasy', 'romance']"
935,Little Lord Fauntleroy,"['drama', 'family']"
936,They Made Me a Criminal,"['thriller', 'crime', 'drama', 'mystery']"
937,The Inspector General,"['comedy', 'music', 'romance']"
938,Angel and the Badman,"['romance', 'western']"
939,The 39 Steps,"['action', 'thriller', 'mystery']"
940,A Walk in the Sun,"['war', 'drama']"
941,The Outlaw,"['action', 'adventure', 'western']"
942,Night of the Living Dead,['horror']
943,The African Queen,"['adventure', 'war', 'romance']"
944,Beat the Devil,"['action', 'adventure', 'comedy', 'crime', 'drama', 'romance']"
945,Cat on a Hot Tin Roof,"['drama', 'romance']"
946,The Last Time I Saw Paris,"['romance', 'drama']"
947,Meet John Doe,"['drama', 'comedy', 'romance']"
948,Algiers,"['drama', 'action', 'mystery', 'romance']"
949,Something to Sing About,['comedy']
950,A Farewell to Arms,"['drama', 'romance', 'war']"
951,Moonlight Murder,"['music', 'mystery']"
952,Nothing Personal,['drama']
953,"Yes, Madam","['action', 'foreign']"
954,Dangerous Ground,['drama']
955,Picnic,"['drama', 'romance']"
956,Madagascar Skin,[]
957,The Pompatus of Love,"['comedy', 'romance', 'drama']"
958,Small Wonders,"['documentary', 'family']"
959,Fly Away Home,"['action', 'adventure', 'drama', 'family']"
960,Bliss,"['drama', 'romance']"
961,Grace of My Heart,"['drama', 'comedy', 'music']"
962,Brother of Sleep,['drama']
963,Maximum Risk,"['action', 'adventure', 'thriller']"
964,Michael Collins,"['drama', 'thriller']"
965,The Rich Man's Wife,"['drama', 'thriller']"
966,Infinity,"['drama', 'romance']"
967,Big Night,['drama']
968,Last Man Standing,"['action', 'crime', 'drama', 'thriller']"
969,Caught,"['action', 'drama', 'thriller']"
970,Set It Off,"['drama', 'action', 'crime']"
971,2 Days in the Valley,"['comedy', 'crime']"
972,Curdled,"['comedy', 'crime', 'thriller']"
973,L'associé,['comedy']
974,Ed's Next Move,[]
975,Extreme Measures,"['drama', 'thriller']"
976,The Glimmer Man,"['action', 'adventure', 'crime', 'drama', 'thriller']"
977,D3: The Mighty Ducks,"['action', 'comedy', 'drama', 'family']"
978,The Chamber,"['crime', 'drama']"
979,The Apple Dumpling Gang,"['comedy', 'family']"
980,"Davy Crockett, King of the Wild Frontier","['action', 'adventure', 'family', 'western']"
981,Escape to Witch Mountain,"['adventure', 'fantasy', 'science fiction', 'family']"
982,The Love Bug,"['comedy', 'family', 'fantasy']"
983,Herbie Rides Again,"['romance', 'comedy', 'family', 'fantasy']"
984,Old Yeller,"['adventure', 'drama', 'western']"
985,The Parent Trap,"['comedy', 'family']"
986,Pollyanna,['adventure']
987,Homeward Bound: The Incredible Journey,"['adventure', 'comedy', 'drama', 'family']"
988,The Shaggy Dog,"['comedy', 'family']"
989,Swiss Family Robinson,"['adventure', 'family']"
990,That Darn Cat!,"['drama', 'family', 'comedy']"
991,"20,000 Leagues Under the Sea","['adventure', 'drama', 'science fiction']"
992,Cool Runnings,['comedy']
993,Angels in the Outfield,"['fantasy', 'drama', 'comedy', 'family']"
994,Cinderella,"['family', 'fantasy', 'animation', 'romance']"
995,Winnie the Pooh and the Blustery Day,"['animation', 'family', 'music']"
996,The Three Caballeros,"['animation', 'family', 'music']"
997,The Sword in the Stone,"['animation', 'family']"
998,So Dear to My Heart,"['animation', 'drama', 'family']"
999,Robin Hood: Prince of Thieves,['adventure']