ratr 0.1.1 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
- data/Gemfile +3 -0
- data/Gemfile.lock +27 -0
- data/README.md +50 -0
- data/bin/ratr +113 -0
- data/examples/movies.csv +1116 -0
- data/examples/movies_small.csv +25 -0
- data/lib/ratr/version.rb +3 -0
- data/ratr-0.1.1.gem +0 -0
- data/ratr.gemspec +21 -0
- metadata +28 -4
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
ZTJjODU4ZWJjMTU5MmVlMzEyOGNkMDY1MDA1NThlODM4MjhlNzNkYw==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZDIyZWMzZGMwNzc5NDk4YjY4NWRlNWQ2M2U0Yzk1YjU2NGJmM2Q3NA==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
Y2FmMDVlOTJmYTc1ZjViNDJiMTcwNjY2NGYwYWYwZDdhYjc0ZDk2MGFlNDdj
|
|
10
|
+
Y2Q5OTg1MjU1NjU4Y2YwZWZkMWNkMjBjODkzYjhjZjI4NmVlNDQ3YzZkN2U2
|
|
11
|
+
ZTAwYjk2YTg3NjJjMGMzNmNhNWRlZDQ3NDkzZTZlZGQ0YmNhYTY=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZDM3YzRlNGMyODQwNmZiMjAxZjljYWNjNzhkYzkwMzE1NjcwMWJlZWEzNTAz
|
|
14
|
+
NTdmMWRjOTkwZDM0OTYwMjE4NTY4MWNhYmJmM2RlYmEzODRmOWZkN2Y3ZmNi
|
|
15
|
+
NjY1M2UyZmZlZmFhZTU5NDkzYTQ5M2I3NzQ5ZTJjZDk4MjliNTI=
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
ratr (0.2.0)
|
|
5
|
+
faraday (~> 0.9)
|
|
6
|
+
faraday_middleware (~> 0.9)
|
|
7
|
+
typhoeus (~> 0.7)
|
|
8
|
+
|
|
9
|
+
GEM
|
|
10
|
+
remote: https://rubygems.org/
|
|
11
|
+
specs:
|
|
12
|
+
ethon (0.7.3)
|
|
13
|
+
ffi (>= 1.3.0)
|
|
14
|
+
faraday (0.9.1)
|
|
15
|
+
multipart-post (>= 1.2, < 3)
|
|
16
|
+
faraday_middleware (0.9.1)
|
|
17
|
+
faraday (>= 0.7.4, < 0.10)
|
|
18
|
+
ffi (1.9.8)
|
|
19
|
+
multipart-post (2.0.0)
|
|
20
|
+
typhoeus (0.7.1)
|
|
21
|
+
ethon (>= 0.7.1)
|
|
22
|
+
|
|
23
|
+
PLATFORMS
|
|
24
|
+
ruby
|
|
25
|
+
|
|
26
|
+
DEPENDENCIES
|
|
27
|
+
ratr!
|
data/README.md
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
Ratr
|
|
2
|
+
====
|
|
3
|
+
|
|
4
|
+
Ratr is a command line tool that takes in a CSV of movie titles and years
|
|
5
|
+
and then performs an average between the Rotten Tomatoes score (critic and audience)
|
|
6
|
+
and the IMDB rating as well.
|
|
7
|
+
|
|
8
|
+
USAGE
|
|
9
|
+
-----
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
gem install ratr
|
|
13
|
+
ratr
|
|
14
|
+
|
|
15
|
+
20 Feet from Stardom 2013 99 82 9.05
|
|
16
|
+
12 Years a Slave 2013 8.1 96 90 8.9
|
|
17
|
+
7th Heaven 1927 7.9 100 87 8.866666666666665
|
|
18
|
+
7 Faces of Dr. Lao 1964 7.3 100 78 8.366666666666667
|
|
19
|
+
8 Mile 2002 6.9 76 54 6.633333333333333
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
TODOs
|
|
23
|
+
-----
|
|
24
|
+
|
|
25
|
+
* Thread management in a real-world example is going to need to be a lil better
|
|
26
|
+
than my off-the-cuff example.
|
|
27
|
+
|
|
28
|
+
* handle exceptional errors with approriate measures
|
|
29
|
+
** 500 level responses are probably going to be universal -- should stop activity
|
|
30
|
+
|
|
31
|
+
* TATFT
|
|
32
|
+
|
|
33
|
+
* Make this OO instead of proceedural
|
|
34
|
+
|
|
35
|
+
My personal notes:
|
|
36
|
+
* One API source can have multiple ratings (ie rotten tomatoes has two scores).
|
|
37
|
+
* An individual rating source seems to have two to three important dimensions.
|
|
38
|
+
** Scalar (how to get this to a ten point scale)
|
|
39
|
+
** N/A (stored as nil, N/A, -1)
|
|
40
|
+
** Weight -- should I apply the same weight to audience ratings as critic ratings?
|
|
41
|
+
|
|
42
|
+
* From best case to worst case in terms of RT runtime: 3.7 - 7.7 minutes (.2 sec per req
|
|
43
|
+
to doubling request time due to timeouts at .4 seconds per req). This solution
|
|
44
|
+
actually runs fairly comfortably in that timeframe. From what I can tell, it looks like
|
|
45
|
+
RT may have a short lived cache, where those hits don't count against your rate limit. Makes
|
|
46
|
+
subsequent runs faster if done quickly after first.
|
|
47
|
+
* For the sake of this exercise, I think client side caching of the requests is probably
|
|
48
|
+
a no-no in terms of runtime, but will need to be captured on the testing end to avoid
|
|
49
|
+
quickly hitting my request limit on RT's API.
|
|
50
|
+
|
data/bin/ratr
ADDED
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
require 'csv'
|
|
4
|
+
require 'ostruct'
|
|
5
|
+
require 'faraday'
|
|
6
|
+
require 'faraday_middleware'
|
|
7
|
+
require 'typhoeus'
|
|
8
|
+
require 'typhoeus/adapters/faraday'
|
|
9
|
+
|
|
10
|
+
# RT is really the problem child when it comes to requesting
|
|
11
|
+
# multiple searches at once. It will return a 403 (forbidden)
|
|
12
|
+
# code on rate limit exceeded which is a pain in the bum.
|
|
13
|
+
#
|
|
14
|
+
# Faraday has ERR::Timeout retries built in, but this is
|
|
15
|
+
# unfortunatley not able to tap into it. The best I can do
|
|
16
|
+
# is to roll my own custom retry mechanism. The idea is
|
|
17
|
+
# to try and retry sooner than the 0.02 under most circumstances.
|
|
18
|
+
def tomato_request(movie, http)
|
|
19
|
+
retry_count = 3
|
|
20
|
+
http.get do |request|
|
|
21
|
+
request.url '/api/public/v1.0/movies.json'
|
|
22
|
+
request.params['q'] = "#{movie.title} #{movie.year}"
|
|
23
|
+
request.params['apikey'] = "ww8qgxbhjbqudvupbr8sqd7x"
|
|
24
|
+
request.params['page_limit'] = 1
|
|
25
|
+
end
|
|
26
|
+
rescue Faraday::Error::ClientError
|
|
27
|
+
case retry_count
|
|
28
|
+
when 3
|
|
29
|
+
sleep 0.05
|
|
30
|
+
when 2
|
|
31
|
+
sleep 0.1
|
|
32
|
+
when 1
|
|
33
|
+
sleep 0.2
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
retry_count -=1
|
|
37
|
+
retry
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
# read incoming csv file
|
|
41
|
+
movies = []
|
|
42
|
+
CSV.foreach("examples/movies_small.csv") do |row|
|
|
43
|
+
#assign each movie a title and year. Note: year is not guaranteed
|
|
44
|
+
movies << OpenStruct.new(title: row[0], year: row[1])
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
manager = Typhoeus::Hydra.new(max_concurrency: 2)
|
|
48
|
+
omdb = Faraday.new(url: 'http://www.omdbapi.com') do |faraday|
|
|
49
|
+
faraday.request :json # form-encode POST params
|
|
50
|
+
faraday.response :json # log requests to STDOUT
|
|
51
|
+
faraday.adapter :typhoeus # make requests with Net::HTTP
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
tomatoes = Faraday.new(url: 'http://api.rottentomatoes.com') do |faraday|
|
|
55
|
+
faraday.request :json
|
|
56
|
+
faraday.response :json
|
|
57
|
+
faraday.response :raise_error
|
|
58
|
+
faraday.adapter :typhoeus
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
# Fork a thread out for the OMDB requests
|
|
62
|
+
omdb_responses = {}
|
|
63
|
+
t1 = Thread.new {
|
|
64
|
+
omdb.in_parallel(manager) do
|
|
65
|
+
movies.each_with_index do |movie, index|
|
|
66
|
+
omdb_responses[index] = omdb.get do |request|
|
|
67
|
+
request.url '/'
|
|
68
|
+
request.params['t'] = movie.title
|
|
69
|
+
request.params['y'] = movie.year
|
|
70
|
+
end
|
|
71
|
+
end
|
|
72
|
+
end
|
|
73
|
+
omdb_responses
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
# Fork out a thread for RT requests
|
|
77
|
+
tomato_responses = {}
|
|
78
|
+
t2 = Thread.new {
|
|
79
|
+
movies.each_with_index do |movie, index|
|
|
80
|
+
tomato_responses[index] = tomato_request(movie, tomatoes)
|
|
81
|
+
end
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
# block until the threads are complete
|
|
85
|
+
t1.join
|
|
86
|
+
t2.join
|
|
87
|
+
|
|
88
|
+
movies.each_with_index do |movie, index|
|
|
89
|
+
movie.imdb_rating = omdb_responses[index].body['imdbRating']
|
|
90
|
+
tomato_ratings = tomato_responses[index].body["movies"][0] && tomato_responses[index].body["movies"][0]["ratings"]
|
|
91
|
+
|
|
92
|
+
if tomato_ratings
|
|
93
|
+
movie.tomatoes_critic_rating = tomato_ratings["critics_score"]
|
|
94
|
+
movie.tomatoes_audience_rating = tomato_ratings["audience_score"]
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
scores = []
|
|
98
|
+
scores << movie.imdb_rating.to_f unless movie.imdb_rating == nil || movie.imdb_rate == 'N/A'
|
|
99
|
+
scores << (movie.tomatoes_critic_rating.to_f / 10.0) unless movie.tomatoes_critic_rating == nil || movie.tomatoes_critic_rating == '-1'
|
|
100
|
+
scores << (movie.tomatoes_audience_rating.to_f / 10.0) unless movie.tomatoes_audience_rating == nil || movie.tomatoes_audience_rating == '-1'
|
|
101
|
+
|
|
102
|
+
if scores.size > 0
|
|
103
|
+
movie.average = scores.reduce(0) {|m,v| m+=v} / scores.size if scores.size > 0
|
|
104
|
+
else
|
|
105
|
+
movie.average = 0
|
|
106
|
+
end
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
# sort the movies collection by average rating -- then display.
|
|
111
|
+
movies.sort {|a,b| b.average <=> a.average}.each do |movie|
|
|
112
|
+
puts "#{movie.title} (#{movie.year}): #{movie.average}"
|
|
113
|
+
end
|
data/examples/movies.csv
ADDED
|
@@ -0,0 +1,1116 @@
|
|
|
1
|
+
7 Faces of Dr. Lao,1964
|
|
2
|
+
7th Heaven,1927
|
|
3
|
+
8 Mile,2002
|
|
4
|
+
12 Years a Slave,2013
|
|
5
|
+
20 Feet from Stardom,2013
|
|
6
|
+
2001: A Space Odyssey,1968
|
|
7
|
+
20000 Leagues Under the Sea,1954
|
|
8
|
+
The Abyss,1989
|
|
9
|
+
The Accidental Tourist,1988
|
|
10
|
+
The Accountant,2001
|
|
11
|
+
The Accused,1988
|
|
12
|
+
Adaptation,2002
|
|
13
|
+
Adventures of Don Juan,1948
|
|
14
|
+
"The Adventures of Priscilla, Queen of the Desert",1994
|
|
15
|
+
The Adventures of Robin Hood,1938
|
|
16
|
+
Affliction,1997
|
|
17
|
+
The African Queen,1951
|
|
18
|
+
The Age of Innocence,1993
|
|
19
|
+
Air Force,1943
|
|
20
|
+
Airport,1970
|
|
21
|
+
Aladdin,1992
|
|
22
|
+
The Alamo,1960
|
|
23
|
+
The Alaskan Eskimo,1953
|
|
24
|
+
Albert Schweitzer,1957
|
|
25
|
+
Alexander's Ragtime Band,1938
|
|
26
|
+
Alice in Wonderland,2010
|
|
27
|
+
Alice Doesn't Live Here Anymore,1974
|
|
28
|
+
Alien,1979
|
|
29
|
+
Aliens,1986
|
|
30
|
+
All About Eve,1950
|
|
31
|
+
All About My Mother ,1999
|
|
32
|
+
All Quiet on the Western Front,1930
|
|
33
|
+
All That Jazz,1979
|
|
34
|
+
All That Money Can Buy ,1941
|
|
35
|
+
All the King's Men,1949
|
|
36
|
+
All the President's Men,1976
|
|
37
|
+
Almost Famous,2000
|
|
38
|
+
Ama Girls,1958
|
|
39
|
+
Amadeus,1984
|
|
40
|
+
Amarcord,1974
|
|
41
|
+
America America,1963
|
|
42
|
+
American Beauty,1999
|
|
43
|
+
American Dream,1990
|
|
44
|
+
An American in Paris,1951
|
|
45
|
+
An American Werewolf in London,1981
|
|
46
|
+
Amour,2012
|
|
47
|
+
Amphibious Fighters,1943
|
|
48
|
+
Anastasia,1956
|
|
49
|
+
Anchors Aweigh,1945
|
|
50
|
+
The Anderson Platoon ,1967
|
|
51
|
+
Angel and Big Joe,1975
|
|
52
|
+
Anna and the King of Siam,1946
|
|
53
|
+
Anna Karenina,2012
|
|
54
|
+
Anne Frank Remembered,1995
|
|
55
|
+
Anne of the Thousand Days,1969
|
|
56
|
+
Annie Get Your Gun,1950
|
|
57
|
+
Annie Hall,1977
|
|
58
|
+
Anthony Adverse,1936
|
|
59
|
+
Antonia's Line ,1995
|
|
60
|
+
The Apartment,1960
|
|
61
|
+
Apocalypse Now,1979
|
|
62
|
+
Apollo 13,1995
|
|
63
|
+
The Appointments of Dennis Jennings,1988
|
|
64
|
+
Argo,2012
|
|
65
|
+
"Arise, My Love",1940
|
|
66
|
+
Arthur,1981
|
|
67
|
+
Arthur Rubinstein – The Love of Life ,1969
|
|
68
|
+
The Artist,2011
|
|
69
|
+
As Good as It Gets,1997
|
|
70
|
+
The Assault ,1986
|
|
71
|
+
Atonement,2007
|
|
72
|
+
Avatar,2009
|
|
73
|
+
The Aviator,2004
|
|
74
|
+
The Awful Truth,1937
|
|
75
|
+
Babe,1995
|
|
76
|
+
Babel,2006
|
|
77
|
+
Babette's Feast ,1987
|
|
78
|
+
The Bachelor and the Bobby-Soxer,1947
|
|
79
|
+
Back to the Future,1985
|
|
80
|
+
The Bad and the Beautiful,1952
|
|
81
|
+
Bad Girl,1931
|
|
82
|
+
Balance,1989
|
|
83
|
+
The Barbarian Invasions,2003
|
|
84
|
+
The Barefoot Contessa,1954
|
|
85
|
+
Barry Lyndon,1975
|
|
86
|
+
Batman,1989
|
|
87
|
+
The Battle of Midway,1942
|
|
88
|
+
Battleground,1949
|
|
89
|
+
Bear Country,1953
|
|
90
|
+
A Beautiful Mind,2001
|
|
91
|
+
Beauty and the Beast,1991
|
|
92
|
+
Becket,1964
|
|
93
|
+
Bedknobs and Broomsticks,1971
|
|
94
|
+
Beetlejuice,1988
|
|
95
|
+
Beginners,2011
|
|
96
|
+
Being There,1979
|
|
97
|
+
Belle Époque ,1993
|
|
98
|
+
The Bells of St. Mary's,1945
|
|
99
|
+
Ben-Hur,1959
|
|
100
|
+
Benjy,1951
|
|
101
|
+
The Bespoke Overcoat,1956
|
|
102
|
+
Best Boy,1979
|
|
103
|
+
The Best Years of Our Lives,1946
|
|
104
|
+
Beyond the Line of Duty,1942
|
|
105
|
+
The Big Broadcast of 1938,1938
|
|
106
|
+
The Big Country,1958
|
|
107
|
+
The Big House,1930
|
|
108
|
+
Big Mama,2000
|
|
109
|
+
Bill and Coo,1948
|
|
110
|
+
Bird,1988
|
|
111
|
+
Birds Anonymous,1957
|
|
112
|
+
The Bishop's Wife,1947
|
|
113
|
+
Black and White in Color ,1976
|
|
114
|
+
Black Fox,1962
|
|
115
|
+
Black Hawk Down,2001
|
|
116
|
+
Black Narcissus,1947
|
|
117
|
+
Black Orpheus ,1959
|
|
118
|
+
The Black Stallion,1979
|
|
119
|
+
Black Swan,2010
|
|
120
|
+
The Black Swan,1942
|
|
121
|
+
The Blind Side,2009
|
|
122
|
+
Blithe Spirit,1946
|
|
123
|
+
Blood and Sand,1941
|
|
124
|
+
The Blood of Yingzhou District,2006
|
|
125
|
+
Blood on the Sun,1945
|
|
126
|
+
Blossoms in the Dust,1941
|
|
127
|
+
Blue Jasmine,2013
|
|
128
|
+
Blue Sky,1994
|
|
129
|
+
Bob's Birthday,1994
|
|
130
|
+
Body and Soul,1947
|
|
131
|
+
The Bolero,1973
|
|
132
|
+
Bonnie and Clyde,1967
|
|
133
|
+
Bored of Education,1936
|
|
134
|
+
Born Free,1966
|
|
135
|
+
Born into Brothels,2004
|
|
136
|
+
Born on the Fourth of July,1989
|
|
137
|
+
Born Yesterday,1950
|
|
138
|
+
Bound for Glory,1976
|
|
139
|
+
The Bourne Ultimatum,2007
|
|
140
|
+
Bowling for Columbine,2002
|
|
141
|
+
The Box,1967
|
|
142
|
+
A Boy and His Dog,1946
|
|
143
|
+
Boys and Girls,1983
|
|
144
|
+
Boys Don't Cry,1999
|
|
145
|
+
Boys Town,1938
|
|
146
|
+
Bram Stoker's Dracula,1992
|
|
147
|
+
Brave,2012
|
|
148
|
+
The Brave One,1956
|
|
149
|
+
Braveheart,1995
|
|
150
|
+
Breakfast at Tiffany's,1961
|
|
151
|
+
Breaking Away,1979
|
|
152
|
+
Breaking the Sound Barrier,1952
|
|
153
|
+
Breathing Lessons: The Life and Work of Mark O'Brien,1996
|
|
154
|
+
The Bridge of San Luis Rey,1929
|
|
155
|
+
The Bridge on the River Kwai,1957
|
|
156
|
+
Broadway Melody of 1936,1935
|
|
157
|
+
The Broadway Melody,1929
|
|
158
|
+
Brokeback Mountain,2005
|
|
159
|
+
Broken Lance,1954
|
|
160
|
+
Broken Rainbow,1985
|
|
161
|
+
The Buddy Holly Story,1978
|
|
162
|
+
Bugsy,1991
|
|
163
|
+
Bullets over Broadway,1994
|
|
164
|
+
Bullitt,1968
|
|
165
|
+
Bunny,1998
|
|
166
|
+
Burnt by the Sun ,1994
|
|
167
|
+
Busy Little Bears,1939
|
|
168
|
+
Butch Cassidy and the Sundance Kid,1969
|
|
169
|
+
BUtterfield 8,1960
|
|
170
|
+
Butterflies Are Free,1972
|
|
171
|
+
Cabaret,1972
|
|
172
|
+
Cactus Flower,1969
|
|
173
|
+
Calamity Jane,1953
|
|
174
|
+
California Suite,1978
|
|
175
|
+
Call Me Madam,1953
|
|
176
|
+
Camelot,1967
|
|
177
|
+
The Candidate,1972
|
|
178
|
+
Capote,2005
|
|
179
|
+
"Captain Carey, U.S.A.",1950
|
|
180
|
+
Captains Courageous,1937
|
|
181
|
+
Casals Conducts: 1964,1964
|
|
182
|
+
Cat Ballou,1965
|
|
183
|
+
Cavalcade,1933
|
|
184
|
+
Chagall,1963
|
|
185
|
+
The Champ,1931
|
|
186
|
+
Champion,1949
|
|
187
|
+
A Chance to Live,1949
|
|
188
|
+
Character ,1997
|
|
189
|
+
Charade,1984
|
|
190
|
+
The Charge of the Light Brigade,1936
|
|
191
|
+
Chariots of Fire,1981
|
|
192
|
+
Charly,1968
|
|
193
|
+
Chernobyl Heart,2003
|
|
194
|
+
Chicago,2002
|
|
195
|
+
The Chicken ,1965
|
|
196
|
+
Children of a Lesser God,1986
|
|
197
|
+
Chinatown,1974
|
|
198
|
+
"The Chronicles of Narnia: The Lion, the Witch and the Wardrobe",2005
|
|
199
|
+
The Chubbchubbs!,2002
|
|
200
|
+
Churchill's Island,1941
|
|
201
|
+
The Cider House Rules,1999
|
|
202
|
+
Cimarron,1931
|
|
203
|
+
The Circus,1928
|
|
204
|
+
Citizen Kane,1941
|
|
205
|
+
City of Wax,1934
|
|
206
|
+
City Slickers,1991
|
|
207
|
+
Cleopatra,1934
|
|
208
|
+
Cleopatra,1963
|
|
209
|
+
Climbing the Matterhorn,1947
|
|
210
|
+
Close Encounters of the Third Kind,1977
|
|
211
|
+
Close Harmony,1981
|
|
212
|
+
A Close Shave,1995
|
|
213
|
+
Closed Mondays,1974
|
|
214
|
+
Closely Watched Trains ,1967
|
|
215
|
+
Coal Miner's Daughter,1980
|
|
216
|
+
Cocoon,1985
|
|
217
|
+
Cold Mountain,2003
|
|
218
|
+
The Color of Money,1986
|
|
219
|
+
Come and Get It,1936
|
|
220
|
+
"Come Back, Little Sheba",1952
|
|
221
|
+
Coming Home,1978
|
|
222
|
+
Common Threads: Stories from the Quilt,1989
|
|
223
|
+
The Constant Gardener,2005
|
|
224
|
+
Cool Hand Luke,1967
|
|
225
|
+
Coquette,1929
|
|
226
|
+
The Counterfeiters ,2007
|
|
227
|
+
The Country Cousin,1936
|
|
228
|
+
The Country Girl,1954
|
|
229
|
+
The Cove,2009
|
|
230
|
+
Cover Girl,1944
|
|
231
|
+
The Cowboy and the Lady,1938
|
|
232
|
+
Crac,1981
|
|
233
|
+
Crash,2005
|
|
234
|
+
Crash Dive,1943
|
|
235
|
+
Crashing the Water Barrier,1956
|
|
236
|
+
Crazy Heart,2009
|
|
237
|
+
Cries and Whispers ,1973
|
|
238
|
+
The Critic,1963
|
|
239
|
+
Cromwell,1970
|
|
240
|
+
"Crouching Tiger, Hidden Dragon",2000
|
|
241
|
+
The Crunch Bird,1971
|
|
242
|
+
The Crying Game,1992
|
|
243
|
+
Curfew,2012
|
|
244
|
+
The Curious Case of Benjamin Button,2008
|
|
245
|
+
Cyrano de Bergerac,1950
|
|
246
|
+
Cyrano de Bergerac,1990
|
|
247
|
+
Dallas Buyers Club,2013
|
|
248
|
+
A Damsel in Distress,1937
|
|
249
|
+
Dances with Wolves,1990
|
|
250
|
+
Dangerous,1935
|
|
251
|
+
Dangerous Liaisons,1988
|
|
252
|
+
Dangerous Moves ,1984
|
|
253
|
+
The Danish Poet,2006
|
|
254
|
+
The Dark Angel,1935
|
|
255
|
+
The Dark Knight,2008
|
|
256
|
+
Darling,1965
|
|
257
|
+
The Dawn Patrol,1930
|
|
258
|
+
Day for Night ,1973
|
|
259
|
+
Day of the Painter,1960
|
|
260
|
+
Days of Heaven,1978
|
|
261
|
+
Days of Wine and Roses,1962
|
|
262
|
+
Dead Man Walking,1995
|
|
263
|
+
Dead Poets Society,1989
|
|
264
|
+
"Deadly Deception: General Electric, Nuclear Weapons and Our Environment",1991
|
|
265
|
+
Dear Diary,1996
|
|
266
|
+
Death Becomes Her,1992
|
|
267
|
+
Death on the Nile,1978
|
|
268
|
+
December 7th,1943
|
|
269
|
+
Declaration of Independence,1938
|
|
270
|
+
The Deer Hunter,1978
|
|
271
|
+
The Defiant Ones,1958
|
|
272
|
+
The Departed,2006
|
|
273
|
+
Departures,2008
|
|
274
|
+
Der Fuehrer's Face,1942
|
|
275
|
+
Dersu Uzala,1975
|
|
276
|
+
The Descendants,2011
|
|
277
|
+
Desert Victory,1943
|
|
278
|
+
Design for Death,1947
|
|
279
|
+
Designing Woman,1957
|
|
280
|
+
Destination Moon,1950
|
|
281
|
+
The Diary of Anne Frank,1959
|
|
282
|
+
Dick Tracy,1990
|
|
283
|
+
Dirty Dancing,1987
|
|
284
|
+
The Dirty Dozen,1967
|
|
285
|
+
The Discreet Charm of the Bourgeoisie ,1972
|
|
286
|
+
Disraeli,1929
|
|
287
|
+
The Divine Lady,1929
|
|
288
|
+
The Divorcee,1930
|
|
289
|
+
Django Unchained,2012
|
|
290
|
+
Doctor Dolittle,1967
|
|
291
|
+
Doctor Zhivago,1965
|
|
292
|
+
Dodsworth,1936
|
|
293
|
+
Dog Day Afternoon,1975
|
|
294
|
+
Don't,1974
|
|
295
|
+
The Dot and the Line ,1965
|
|
296
|
+
A Double Life,1947
|
|
297
|
+
Down and Out in America,1986
|
|
298
|
+
The Dove,1927
|
|
299
|
+
Dr. Jekyll and Mr. Hyde,1932
|
|
300
|
+
Dr. Seuss' How the Grinch Stole Christmas ,2000
|
|
301
|
+
Dreamgirls,2006
|
|
302
|
+
Driving Miss Daisy,1989
|
|
303
|
+
The Duchess,2008
|
|
304
|
+
Dumbo,1941
|
|
305
|
+
E.T.: The Extra-Terrestrial,1982
|
|
306
|
+
Earthquake,1974
|
|
307
|
+
East of Eden,1955
|
|
308
|
+
Easter Parade,1948
|
|
309
|
+
Ed Wood,1994
|
|
310
|
+
Educating Peter,1992
|
|
311
|
+
Election Night ,1998
|
|
312
|
+
The Eleanor Roosevelt Story,1965
|
|
313
|
+
Elizabeth,1998
|
|
314
|
+
Elizabeth: The Golden Age,2007
|
|
315
|
+
Elmer Gantry,1960
|
|
316
|
+
Emma,1996
|
|
317
|
+
The Empire Strikes Back,1980
|
|
318
|
+
The Enemy Below,1957
|
|
319
|
+
The English Patient,1996
|
|
320
|
+
Erin Brockovich,2000
|
|
321
|
+
Ersatz ,1961
|
|
322
|
+
Eternal Sunshine of the Spotless Mind,2004
|
|
323
|
+
Every Child,1979
|
|
324
|
+
Evita,1996
|
|
325
|
+
Exodus,1960
|
|
326
|
+
The Exorcist,1973
|
|
327
|
+
Facing Your Danger,1946
|
|
328
|
+
The Facts of Life,1960
|
|
329
|
+
Fame,1980
|
|
330
|
+
Fanny & Alexander ,1983
|
|
331
|
+
Fantasia,1940
|
|
332
|
+
The Fantastic Flying Books of Mr. Morris Lessmore,2011
|
|
333
|
+
Fantastic Voyage,1966
|
|
334
|
+
A Farewell to Arms,1932
|
|
335
|
+
Fargo,1996
|
|
336
|
+
The Farmer's Daughter,1947
|
|
337
|
+
Father Goose,1964
|
|
338
|
+
Fellini's Casanova ,1976
|
|
339
|
+
Ferdinand the Bull,1938
|
|
340
|
+
Fiddler on the Roof,1971
|
|
341
|
+
The Fighter,2010
|
|
342
|
+
The Fighting Lady,1944
|
|
343
|
+
Finding Nemo,2003
|
|
344
|
+
Finding Neverland,2004
|
|
345
|
+
First Steps,1947
|
|
346
|
+
A Fish Called Wanda,1988
|
|
347
|
+
The Fisher King,1991
|
|
348
|
+
Flamenco at 5:15,1983
|
|
349
|
+
Flashdance,1983
|
|
350
|
+
The Flight of the Gossamer Condor,1978
|
|
351
|
+
Flowers and Trees,1932
|
|
352
|
+
The Fly ,1980
|
|
353
|
+
The Fly,1986
|
|
354
|
+
The Fog of War ,2003
|
|
355
|
+
Forbidden Games,1952
|
|
356
|
+
A Force in Readiness,1961
|
|
357
|
+
For Scent-imental Reasons,1949
|
|
358
|
+
For the Birds,2001
|
|
359
|
+
For Whom the Bell Tolls,1943
|
|
360
|
+
Forrest Gump,1994
|
|
361
|
+
The Fortune Cookie,1966
|
|
362
|
+
Frank Film,1973
|
|
363
|
+
A Free Soul,1931
|
|
364
|
+
Freeheld,2007
|
|
365
|
+
The French Connection,1971
|
|
366
|
+
Frida,2002
|
|
367
|
+
From Here to Eternity,1953
|
|
368
|
+
Frozen,2013
|
|
369
|
+
The Fugitive,1993
|
|
370
|
+
The Full Monty,1997
|
|
371
|
+
Funny Girl,1968
|
|
372
|
+
A Funny Thing Happened on the Way to the Forum,1966
|
|
373
|
+
Gandhi,1982
|
|
374
|
+
The Garden of Allah,1936
|
|
375
|
+
The Garden of the Finzi-Continis ,1971
|
|
376
|
+
Gaslight,1944
|
|
377
|
+
Gate of Hell ,1954
|
|
378
|
+
Gentleman's Agreement,1947
|
|
379
|
+
Gerald McBoing-Boing,1950
|
|
380
|
+
Geri's Game,1997
|
|
381
|
+
Get Out Your Handkerchiefs ,1978
|
|
382
|
+
Ghost,1990
|
|
383
|
+
The Ghost and the Darkness,1996
|
|
384
|
+
Giant,1956
|
|
385
|
+
Gigi,1958
|
|
386
|
+
"Girl, Interrupted",1999
|
|
387
|
+
The Girl with the Dragon Tattoo,2011
|
|
388
|
+
Giuseppina,1960
|
|
389
|
+
Give Me Liberty,1936
|
|
390
|
+
Gladiator,2000
|
|
391
|
+
Glass ,1959
|
|
392
|
+
The Glenn Miller Story,1954
|
|
393
|
+
Glory,1989
|
|
394
|
+
The Godfather,1972
|
|
395
|
+
God of Love,2010
|
|
396
|
+
Gods and Monsters,1998
|
|
397
|
+
Going My Way,1944
|
|
398
|
+
Gold Diggers of 1935,1935
|
|
399
|
+
The Golden Compass,2007
|
|
400
|
+
The Golden Fish ,1959
|
|
401
|
+
Goldfinger,1964
|
|
402
|
+
Gone with the Wind,1939
|
|
403
|
+
The Good Earth,1937
|
|
404
|
+
Good Will Hunting,1997
|
|
405
|
+
The Goodbye Girl,1977
|
|
406
|
+
"Goodbye, Mr. Chips",1939
|
|
407
|
+
Goodfellas,1990
|
|
408
|
+
Gosford Park,2001
|
|
409
|
+
The Graduate,1967
|
|
410
|
+
Grand Canyon,1958
|
|
411
|
+
Grand Hotel,
|
|
412
|
+
Grand Prix,1966
|
|
413
|
+
Grandad of Races,1950
|
|
414
|
+
The Grapes of Wrath,1940
|
|
415
|
+
Gravity,2013
|
|
416
|
+
Gravity Is My Enemy,1977
|
|
417
|
+
Great (Great ,1975
|
|
418
|
+
The Great American Cowboy,1973
|
|
419
|
+
The Great Beauty,2013
|
|
420
|
+
The Great Caruso,1951
|
|
421
|
+
The Great Gatsby,1974
|
|
422
|
+
The Great Gatsby,2013
|
|
423
|
+
The Great Lie,1941
|
|
424
|
+
The Great McGinty,1940
|
|
425
|
+
The Great Race,1965
|
|
426
|
+
The Great Waltz,1938
|
|
427
|
+
The Great Ziegfeld,1936
|
|
428
|
+
The Greatest Show on Earth,1952
|
|
429
|
+
Green Dolphin Street,1947
|
|
430
|
+
Guess Who's Coming to Dinner,1967
|
|
431
|
+
The Guns of Navarone,1961
|
|
432
|
+
Hamlet,1948
|
|
433
|
+
Hannah and Her Sisters,1986
|
|
434
|
+
Happy Feet,2006
|
|
435
|
+
Harry and the Hendersons,1987
|
|
436
|
+
Harry and Tonto,1974
|
|
437
|
+
Harvey,1950
|
|
438
|
+
The Harvey Girls,1946
|
|
439
|
+
Harvie Krumpet,2003
|
|
440
|
+
He Makes Me Feel Like Dancin',1983
|
|
441
|
+
Hearts and Minds,1974
|
|
442
|
+
Heaven Can Wait,1978
|
|
443
|
+
Heavenly Music,1943
|
|
444
|
+
The Heiress,1949
|
|
445
|
+
Helen Keller in Her Story ,1955
|
|
446
|
+
Helium,2013
|
|
447
|
+
"Hello, Dolly!",1969
|
|
448
|
+
The Hellstrom Chronicle,1971
|
|
449
|
+
The Help,2011
|
|
450
|
+
Henry V,1989
|
|
451
|
+
Her,2013
|
|
452
|
+
Here Comes Mr. Jordan,1941
|
|
453
|
+
Here Comes the Groom,1951
|
|
454
|
+
Heureux Anniversaire ,1962
|
|
455
|
+
The High and the Mighty,1954
|
|
456
|
+
High Noon,1952
|
|
457
|
+
The Hindenburg,1975
|
|
458
|
+
Hitler Lives,1945
|
|
459
|
+
The Hole,1962
|
|
460
|
+
A Hole in the Head,1959
|
|
461
|
+
Holiday Inn,1942
|
|
462
|
+
The Horse with the Flying Tail,1960
|
|
463
|
+
The Hospital,1971
|
|
464
|
+
The Hours,2002
|
|
465
|
+
The House I Live In,1945
|
|
466
|
+
The House on 92nd Street,1945
|
|
467
|
+
How Green Was My Valley,1941
|
|
468
|
+
How to Sleep,1935
|
|
469
|
+
Howards End,1992
|
|
470
|
+
Hud,1963
|
|
471
|
+
Hugo,2011
|
|
472
|
+
The Human Comedy,1943
|
|
473
|
+
The Hunt for Red October,1990
|
|
474
|
+
The Hurricane,1937
|
|
475
|
+
The Hurt Locker,2009
|
|
476
|
+
Hustle & Flow,2005
|
|
477
|
+
The Hustler,1961
|
|
478
|
+
I Am a Promise: The Children of Stanton Elementary School,1993
|
|
479
|
+
I Want to Live!,1958
|
|
480
|
+
I Wanted Wings,1941
|
|
481
|
+
I Won't Play,1944
|
|
482
|
+
If You Love This Planet,1982
|
|
483
|
+
Il Postino ,1995
|
|
484
|
+
I'll Cry Tomorrow,1955
|
|
485
|
+
I'll Find a Way,1977
|
|
486
|
+
In a Better World,2010
|
|
487
|
+
In Old Arizona,1928
|
|
488
|
+
In Old Chicago,1937
|
|
489
|
+
In the Heat of the Night,1967
|
|
490
|
+
In the Region of Ice,1976
|
|
491
|
+
In the Shadow of the Stars,1991
|
|
492
|
+
In Which We Serve,1942
|
|
493
|
+
Inception,2010
|
|
494
|
+
An Inconvenient Truth,2006
|
|
495
|
+
The Incredibles,2004
|
|
496
|
+
Independence Day,1996
|
|
497
|
+
Indiana Jones and the Last Crusade,1989
|
|
498
|
+
Indiana Jones and the Temple of Doom,1984
|
|
499
|
+
Indochine,1992
|
|
500
|
+
The Informer,1935
|
|
501
|
+
Inglourious Basterds,2009
|
|
502
|
+
Innerspace,1987
|
|
503
|
+
Inocente,2012
|
|
504
|
+
Inside Job,2010
|
|
505
|
+
Interrupted Melody,1955
|
|
506
|
+
Into the Arms of Strangers: Stories of the Kindertransport,2000
|
|
507
|
+
Investigation of a Citizen Above Suspicion ,1970
|
|
508
|
+
Iris,2001
|
|
509
|
+
Irma la Douce,1963
|
|
510
|
+
The Iron Lady,2011
|
|
511
|
+
Is It Always Right to Be Right?,1970
|
|
512
|
+
It Happened One Night,1934
|
|
513
|
+
"It's a Mad, Mad, Mad, Mad World",1963
|
|
514
|
+
It's Tough to Be a Bird,1969
|
|
515
|
+
World Without Sun ,1964
|
|
516
|
+
Jaws,1975
|
|
517
|
+
The Jazz Singer,1927
|
|
518
|
+
Jerry Maguire,1996
|
|
519
|
+
Jezebel,1938
|
|
520
|
+
JFK,1991
|
|
521
|
+
Joan of Arc,1948
|
|
522
|
+
Johann Mouse,1952
|
|
523
|
+
Johnny Belinda,1948
|
|
524
|
+
The Johnstown Flood,1989
|
|
525
|
+
The Joker Is Wild,1957
|
|
526
|
+
The Jolson Story,1946
|
|
527
|
+
Journey of Hope ,1990
|
|
528
|
+
Judgment at Nuremberg,1961
|
|
529
|
+
Julia,1977
|
|
530
|
+
Julius Caesar,1953
|
|
531
|
+
Juno,2007
|
|
532
|
+
Jurassic Park,1993
|
|
533
|
+
Karl Hess: Toward Liberty,1980
|
|
534
|
+
Kentucky,1938
|
|
535
|
+
Key Largo,1948
|
|
536
|
+
The Killing Fields,1984
|
|
537
|
+
The King and I,1956
|
|
538
|
+
King Gimp,1999
|
|
539
|
+
King Kong,1976
|
|
540
|
+
King Kong,2005
|
|
541
|
+
King of Jazz,1930
|
|
542
|
+
King Solomon's Mines,1950
|
|
543
|
+
The King's Speech,2010
|
|
544
|
+
Kiss of the Spider Woman,1985
|
|
545
|
+
Kitty Foyle ,1940
|
|
546
|
+
Klute,1971
|
|
547
|
+
Knighty Knight Bugs,1958
|
|
548
|
+
Kokoda Front Line,1942
|
|
549
|
+
Kolya,1996
|
|
550
|
+
Krakatoa,1933
|
|
551
|
+
Kramer vs. Kramer,1979
|
|
552
|
+
Kukan,1941
|
|
553
|
+
L.A. Confidential,1997
|
|
554
|
+
La Cucaracha,1934
|
|
555
|
+
La Dolce Vita,1961
|
|
556
|
+
La Vie en rose,2007
|
|
557
|
+
Lady Be Good,1941
|
|
558
|
+
The Last Command,1928
|
|
559
|
+
The Last Days,1998
|
|
560
|
+
The Last Emperor,1987
|
|
561
|
+
The Last King of Scotland,2006
|
|
562
|
+
The Last of the Mohicans,1992
|
|
563
|
+
The Last Picture Show,1971
|
|
564
|
+
Laura,1944
|
|
565
|
+
Lawrence of Arabia,1962
|
|
566
|
+
Le Mozart des Pickpockets ,2007
|
|
567
|
+
Leave Her to Heaven,1945
|
|
568
|
+
Leaving Las Vegas,1995
|
|
569
|
+
Legends of the Fall,1994
|
|
570
|
+
Leisure,1976
|
|
571
|
+
Lemony Snicket's A Series of Unfortunate Events,2004
|
|
572
|
+
Lend a Paw,1941
|
|
573
|
+
Les Girls,1957
|
|
574
|
+
Les Misérables,2012
|
|
575
|
+
Let It Be,1970
|
|
576
|
+
A Letter to Three Wives,1949
|
|
577
|
+
Letters from Iwo Jima,2006
|
|
578
|
+
Lieberman in Love,1995
|
|
579
|
+
Life Is Beautiful ,1998
|
|
580
|
+
The Life of Emile Zola,1937
|
|
581
|
+
Life of Pi,2012
|
|
582
|
+
Light in the Window,1952
|
|
583
|
+
Lili,1953
|
|
584
|
+
Lilies of the Field,1963
|
|
585
|
+
Lincoln,2012
|
|
586
|
+
The Lion in Winter,1968
|
|
587
|
+
The Lion King,1994
|
|
588
|
+
The Little Mermaid,1989
|
|
589
|
+
Little Miss Sunshine,2006
|
|
590
|
+
A Little Night Music,1977
|
|
591
|
+
The Little Orphan,1948
|
|
592
|
+
A Little Romance,1979
|
|
593
|
+
Little Women,1933
|
|
594
|
+
Little Women,1949
|
|
595
|
+
The Lives of a Bengal Lancer,1935
|
|
596
|
+
The Lives of Others ,2006
|
|
597
|
+
The Living Desert,1953
|
|
598
|
+
Logan's Run,1976
|
|
599
|
+
Logorama,2009
|
|
600
|
+
The Long Way Home,1997
|
|
601
|
+
The Longest Day,1962
|
|
602
|
+
The Lord of the Rings: The Fellowship of the Ring,2001
|
|
603
|
+
The Lord of the Rings: The Return of the King,2003
|
|
604
|
+
The Lord of the Rings: The Two Towers,2002
|
|
605
|
+
Lost Horizon,1937
|
|
606
|
+
Lost in Translation,2003
|
|
607
|
+
The Lost Thing,2010
|
|
608
|
+
The Lost Weekend,1945
|
|
609
|
+
Love Is a Many-Splendored Thing,1955
|
|
610
|
+
Love Me or Leave Me,1955
|
|
611
|
+
Love Story,1970
|
|
612
|
+
Lovers and Other Strangers,1970
|
|
613
|
+
Lust for Life,1956
|
|
614
|
+
Madame Rosa ,1977
|
|
615
|
+
The Madness of King George,1994
|
|
616
|
+
The Magic Machines,1969
|
|
617
|
+
Magoo's Puddle Jumper,1956
|
|
618
|
+
Main Street on the March!,1941
|
|
619
|
+
A Man and a Woman,1966
|
|
620
|
+
A Man for All Seasons,1966
|
|
621
|
+
Man on Wire,2008
|
|
622
|
+
The Man Who Knew Too Much,1956
|
|
623
|
+
The Man Who Planted Trees ,1987
|
|
624
|
+
The Man Who Skied Down Everest,1975
|
|
625
|
+
Manhattan Melodrama,1934
|
|
626
|
+
Manipulation,1991
|
|
627
|
+
March of the Penguins ,2005
|
|
628
|
+
Marie Antoinette,2006
|
|
629
|
+
Marjoe,1972
|
|
630
|
+
Marooned,1969
|
|
631
|
+
Marty,1955
|
|
632
|
+
Mary Poppins,1964
|
|
633
|
+
Mask,1985
|
|
634
|
+
Master and Commander: The Far Side of the World,2003
|
|
635
|
+
The Matrix,1999
|
|
636
|
+
Maya Lin: A Strong Clear Vision,1994
|
|
637
|
+
Mediterraneo,1991
|
|
638
|
+
Melvin and Howard,1980
|
|
639
|
+
Memoirs of a Geisha,2005
|
|
640
|
+
Men Against the Arctic,1955
|
|
641
|
+
Men in Black,1997
|
|
642
|
+
Mephisto,1981
|
|
643
|
+
The Merry Widow,1934
|
|
644
|
+
Michael Clayton,2007
|
|
645
|
+
Midnight Cowboy,1969
|
|
646
|
+
Midnight Express,1978
|
|
647
|
+
Midnight in Paris,2011
|
|
648
|
+
A Midsummer Night's Dream,1935
|
|
649
|
+
Mighty Aphrodite,1995
|
|
650
|
+
Mighty Joe Young,1949
|
|
651
|
+
Mighty Times: The Children's March,2004
|
|
652
|
+
The Milagro Beanfield War,1988
|
|
653
|
+
Mildred Pierce,1945
|
|
654
|
+
Milk,2008
|
|
655
|
+
The Milky Way,1940
|
|
656
|
+
Million Dollar Baby,2004
|
|
657
|
+
Min and Bill,1930
|
|
658
|
+
Miracle on 34th Street,1947
|
|
659
|
+
The Miracle Worker,1962
|
|
660
|
+
Misery,1990
|
|
661
|
+
Missing,1982
|
|
662
|
+
The Mission,1986
|
|
663
|
+
Mississippi Burning,1988
|
|
664
|
+
Mister Roberts,1955
|
|
665
|
+
Molly's Pilgrim,1985
|
|
666
|
+
Mona Lisa Descending a Staircase,1992
|
|
667
|
+
Monster,2003
|
|
668
|
+
Monster's Ball,2001
|
|
669
|
+
"Monsters, Inc.",2001
|
|
670
|
+
The Moon and the Son: An Imagined Conversation,2005
|
|
671
|
+
Moonbird,1959
|
|
672
|
+
Moonstruck,1987
|
|
673
|
+
The More the Merrier,1943
|
|
674
|
+
Morning Glory,1933
|
|
675
|
+
Moscow Strikes Back,1942
|
|
676
|
+
Mother Wore Tights,1947
|
|
677
|
+
The Motorcycle Diaries,2004
|
|
678
|
+
Moulin Rouge,1952
|
|
679
|
+
Moulin Rouge!,2001
|
|
680
|
+
Mouse Trouble,1944
|
|
681
|
+
Mr. Deeds Goes to Town,1936
|
|
682
|
+
Mr Hublot,2013
|
|
683
|
+
Mr. Smith Goes to Washington,1939
|
|
684
|
+
Mrs. Doubtfire,1993
|
|
685
|
+
Mrs. Miniver,1942
|
|
686
|
+
The Muppets,2011
|
|
687
|
+
Murder on a Sunday Morning ,2001
|
|
688
|
+
Murder on the Orient Express,1974
|
|
689
|
+
The Music Box,1932
|
|
690
|
+
The Music Man,1962
|
|
691
|
+
Mutiny on the Bounty,1935
|
|
692
|
+
My Cousin Vinny,1992
|
|
693
|
+
My Fair Lady,1964
|
|
694
|
+
My Gal Sal,1942
|
|
695
|
+
My Left Foot,1989
|
|
696
|
+
My Uncle ,1958
|
|
697
|
+
Mystic River,2003
|
|
698
|
+
The Naked City,1948
|
|
699
|
+
Nashville,1975
|
|
700
|
+
Nature's Half Acre,1951
|
|
701
|
+
Naughty Marietta,1935
|
|
702
|
+
Neighbours,1952
|
|
703
|
+
Neptune's Daughter,1949
|
|
704
|
+
Network,1976
|
|
705
|
+
Never on Sunday ,1960
|
|
706
|
+
The New Tenants,2009
|
|
707
|
+
Nicholas and Alexandra,1971
|
|
708
|
+
The Night of the Iguana,1964
|
|
709
|
+
Nights of Cabiria ,1957
|
|
710
|
+
Nine from Little Rock,1964
|
|
711
|
+
No Country for Old Men,2007
|
|
712
|
+
No Man's Land,2001
|
|
713
|
+
None But the Lonely Heart,1944
|
|
714
|
+
Norma Rae,1979
|
|
715
|
+
Norman Rockwell's World... An American Dream,1972
|
|
716
|
+
North West Mounted Police,1940
|
|
717
|
+
A Note of Triumph: The Golden Age of Norman Corwin,2005
|
|
718
|
+
"Now, Voyager",1942
|
|
719
|
+
Nowhere in Africa ,2002
|
|
720
|
+
Number Our Days,1976
|
|
721
|
+
The Nutty Professor,1996
|
|
722
|
+
Of Pups and Puzzles,1941
|
|
723
|
+
An Officer and a Gentleman,1982
|
|
724
|
+
The Official Story ,1985
|
|
725
|
+
Oklahoma!,1955
|
|
726
|
+
The Old Man and the Sea,1958
|
|
727
|
+
The Old Man and the Sea,1999
|
|
728
|
+
The Old Mill,1937
|
|
729
|
+
Oliver!,1968
|
|
730
|
+
The Omen,1976
|
|
731
|
+
Omnibus,1992
|
|
732
|
+
On Golden Pond,1981
|
|
733
|
+
On the Town,1949
|
|
734
|
+
On the Waterfront,1954
|
|
735
|
+
Once,2007
|
|
736
|
+
One Day in September,1999
|
|
737
|
+
One Flew over the Cuckoo's Nest,1975
|
|
738
|
+
One Hundred Men and a Girl,1937
|
|
739
|
+
One Night of Love,1934
|
|
740
|
+
One Way Passage,1932
|
|
741
|
+
One-Eyed Men Are Kings ,1974
|
|
742
|
+
Ordinary People,1980
|
|
743
|
+
Out of Africa,1985
|
|
744
|
+
Overture to The Merry Wives of Windsor,1953
|
|
745
|
+
The Paleface,1948
|
|
746
|
+
The Panama Deception,1992
|
|
747
|
+
Panic in the Streets,1950
|
|
748
|
+
Pan's Labyrinth ,2006
|
|
749
|
+
Papa's Delicate Condition,1963
|
|
750
|
+
The Paper Chase,1973
|
|
751
|
+
Paperman,2012
|
|
752
|
+
Paper Moon,1973
|
|
753
|
+
A Passage to India,1984
|
|
754
|
+
A Patch of Blue,1965
|
|
755
|
+
The Patriot,1928
|
|
756
|
+
Patton,1970
|
|
757
|
+
Paul Robeson: Tribute to an Artist,1979
|
|
758
|
+
Pearl Harbor,2001
|
|
759
|
+
Pelle the Conqueror ,1988
|
|
760
|
+
Penny Wisdom,1937
|
|
761
|
+
The Personals,1998
|
|
762
|
+
Phantom of the Opera,1943
|
|
763
|
+
Philadelphia,1993
|
|
764
|
+
The Philadelphia Story,1940
|
|
765
|
+
The Pianist,2002
|
|
766
|
+
The Piano,1993
|
|
767
|
+
Picnic,1955
|
|
768
|
+
The Picture of Dorian Gray,1945
|
|
769
|
+
Pillow Talk,1959
|
|
770
|
+
The Pink Phink,1964
|
|
771
|
+
Pinocchio,1940
|
|
772
|
+
Pirates of the Caribbean: Dead Man's Chest,2006
|
|
773
|
+
A Place in the Sun,1951
|
|
774
|
+
Places in the Heart,1984
|
|
775
|
+
Planet of the Apes,1968
|
|
776
|
+
Platoon,1986
|
|
777
|
+
Plymouth Adventure,1952
|
|
778
|
+
Pocahontas,1995
|
|
779
|
+
Pollock,2000
|
|
780
|
+
Porgy and Bess,1959
|
|
781
|
+
Pollyanna,1960
|
|
782
|
+
Portrait of Jennie,1948
|
|
783
|
+
The Poseidon Adventure,1972
|
|
784
|
+
Prelude To War,1942
|
|
785
|
+
Precious,2009
|
|
786
|
+
Precious Images,1986
|
|
787
|
+
Pride and Prejudice,1940
|
|
788
|
+
The Pride of the Yankees,1942
|
|
789
|
+
The Prime of Miss Jean Brodie,1969
|
|
790
|
+
The Prince of Egypt,1998
|
|
791
|
+
Princess O'Rourke,1943
|
|
792
|
+
The Private Life of Henry VIII,1933
|
|
793
|
+
Prizzi's Honor,1985
|
|
794
|
+
Project Hope,1961
|
|
795
|
+
The Public Pays,1936
|
|
796
|
+
Pulp Fiction,1994
|
|
797
|
+
Purple Rain,1984
|
|
798
|
+
Pygmalion,1938
|
|
799
|
+
The Queen,2006
|
|
800
|
+
Quest,1996
|
|
801
|
+
Quest for Fire,1982
|
|
802
|
+
Quicker'n a Wink,1940
|
|
803
|
+
Quiero ser ,2000
|
|
804
|
+
The Quiet Man,1952
|
|
805
|
+
Quiet Please!,1945
|
|
806
|
+
Raging Bull,1980
|
|
807
|
+
Raiders of the Lost Ark,1981
|
|
808
|
+
Rain Man,1988
|
|
809
|
+
The Rains Came,1939
|
|
810
|
+
Ran,1985
|
|
811
|
+
Rango,2011
|
|
812
|
+
Ratatouille,2007
|
|
813
|
+
Ray,2004
|
|
814
|
+
Ray's Male Heterosexual Dance Hall,1987
|
|
815
|
+
The Razor's Edge,1946
|
|
816
|
+
The Reader,2008
|
|
817
|
+
Reap the Wild Wind,1942
|
|
818
|
+
Rebecca,1940
|
|
819
|
+
The Red Balloon ,1956
|
|
820
|
+
The Red Shoes,1948
|
|
821
|
+
The Red Violin ,1999
|
|
822
|
+
Reds,1981
|
|
823
|
+
The Redwoods,1967
|
|
824
|
+
Restoration,1995
|
|
825
|
+
The Resurrection of Broncho Billy,1970
|
|
826
|
+
Return of the Jedi,1983
|
|
827
|
+
Reversal of Fortune,1990
|
|
828
|
+
The Right Stuff,1983
|
|
829
|
+
The River,1984
|
|
830
|
+
A River Runs Through It,1992
|
|
831
|
+
Road to Perdition,2002
|
|
832
|
+
The Robe,1953
|
|
833
|
+
Robert Frost: A Lover's Quarrel with the World,1963
|
|
834
|
+
Robert Kennedy Remembered,1968
|
|
835
|
+
RoboCop,1987
|
|
836
|
+
Rocky,1976
|
|
837
|
+
Roman Holiday,1953
|
|
838
|
+
Romeo and Juliet,1968
|
|
839
|
+
Room at the Top,1959
|
|
840
|
+
A Room with a View,1986
|
|
841
|
+
The Rose Tattoo,1955
|
|
842
|
+
Rosemary's Baby,1968
|
|
843
|
+
Round Midnight,1986
|
|
844
|
+
Ryan,2004
|
|
845
|
+
Ryan's Daughter,1970
|
|
846
|
+
Sabrina,1954
|
|
847
|
+
San Francisco,1936
|
|
848
|
+
The Sand Castle ,1977
|
|
849
|
+
The Sandpiper,1965
|
|
850
|
+
Save the Tiger,1973
|
|
851
|
+
Saving Face,2011
|
|
852
|
+
Saving Private Ryan,1998
|
|
853
|
+
Sayonara,1957
|
|
854
|
+
Scared Straight!,1978
|
|
855
|
+
Scent of a Woman,1992
|
|
856
|
+
Schindler's List,1993
|
|
857
|
+
Schwarzfahrer ,1993
|
|
858
|
+
The Scoundrel,1935
|
|
859
|
+
The Sea Inside,2004
|
|
860
|
+
Seal Island,1948
|
|
861
|
+
The Search,1948
|
|
862
|
+
Searching for Sugar Man,2012
|
|
863
|
+
Seawards the Great Ships,1961
|
|
864
|
+
The Secret in Their Eyes,2009
|
|
865
|
+
The Secret Land,1948
|
|
866
|
+
Seeds of Destiny,1946
|
|
867
|
+
Sense and Sensibility,1995
|
|
868
|
+
Sentinels of Silence,1971
|
|
869
|
+
Separate Tables,1958
|
|
870
|
+
A Separation,2011
|
|
871
|
+
Serengeti Shall Not Die ,1959
|
|
872
|
+
Sergeant York,1941
|
|
873
|
+
Session Man,1991
|
|
874
|
+
Seven Brides for Seven Brothers,1954
|
|
875
|
+
Shaft,1971
|
|
876
|
+
Shakespeare in Love,1998
|
|
877
|
+
Shampoo,1975
|
|
878
|
+
Shane,1953
|
|
879
|
+
Shanghai Express,1932
|
|
880
|
+
She Wore a Yellow Ribbon,1949
|
|
881
|
+
Shine,1996
|
|
882
|
+
Ship of Fools,1965
|
|
883
|
+
A Shocking Accident,1982
|
|
884
|
+
The Shop on Main Street ,1965
|
|
885
|
+
The Shore,2011
|
|
886
|
+
Shrek,2001
|
|
887
|
+
Sideways,2004
|
|
888
|
+
The Silence of the Lambs,1991
|
|
889
|
+
The Silent World ,1956
|
|
890
|
+
Silver Linings Playbook,2012
|
|
891
|
+
The Sin of Madelon Claudet,1931
|
|
892
|
+
Since You Went Away,1944
|
|
893
|
+
Skippy,1931
|
|
894
|
+
Sky Above and Mud Beneath ,1961
|
|
895
|
+
Skyfall,2012
|
|
896
|
+
Sleepy Hollow,1999
|
|
897
|
+
Sling Blade,1996
|
|
898
|
+
Slumdog Millionaire,2008
|
|
899
|
+
Smile Pinki,2008
|
|
900
|
+
The Snake Pit,1948
|
|
901
|
+
Snow White and the Seven Dwarfs,1937
|
|
902
|
+
So Much for So Little,1949
|
|
903
|
+
So This Is Harris!,1933
|
|
904
|
+
The Social Network,2010
|
|
905
|
+
The Solid Gold Cadillac,1956
|
|
906
|
+
Some Like It Hot,1959
|
|
907
|
+
Somebody Up There Likes Me,1956
|
|
908
|
+
The Song of Bernadette,1943
|
|
909
|
+
Song Without End,1960
|
|
910
|
+
Sons and Lovers,1960
|
|
911
|
+
Sons of Liberty,1939
|
|
912
|
+
Sophie's Choice,1982
|
|
913
|
+
South Pacific,1958
|
|
914
|
+
Spartacus,1960
|
|
915
|
+
Spawn of the North,1938
|
|
916
|
+
Speaking of Animals and Their Families,1942
|
|
917
|
+
Special Delivery,1978
|
|
918
|
+
Speed,1994
|
|
919
|
+
Speedy Gonzales,1955
|
|
920
|
+
Spider-Man 2,2004
|
|
921
|
+
Spellbound,1945
|
|
922
|
+
Splendor in the Grass,1961
|
|
923
|
+
Stagecoach,1939
|
|
924
|
+
Stairway to Light,1945
|
|
925
|
+
Stalag 17,1953
|
|
926
|
+
Star in the Night,1945
|
|
927
|
+
A Star Is Born,1937
|
|
928
|
+
A Star Is Born,1976
|
|
929
|
+
Star Trek,2009
|
|
930
|
+
Star Wars,1977
|
|
931
|
+
State Fair,1945
|
|
932
|
+
The Sting,1973
|
|
933
|
+
The Stone Carvers,1984
|
|
934
|
+
A Story of Healing,1997
|
|
935
|
+
Strangers No More,2010
|
|
936
|
+
The Stratton Story,1949
|
|
937
|
+
Street Angel,1928
|
|
938
|
+
A Streetcar Named Desire,1951
|
|
939
|
+
Strike Up the Band,1940
|
|
940
|
+
The Subject Was Roses,1968
|
|
941
|
+
Summer of '42,1971
|
|
942
|
+
Sundae in New York,1983
|
|
943
|
+
Sundays and Cybele ,1962
|
|
944
|
+
Sunrise,
|
|
945
|
+
The Sunshine Boys,1975
|
|
946
|
+
Superman,1978
|
|
947
|
+
Survival City,1955
|
|
948
|
+
Suspicion,1941
|
|
949
|
+
Sweeney Todd: The Demon Barber of Fleet Street,2007
|
|
950
|
+
Sweet Bird of Youth,1962
|
|
951
|
+
Sweethearts,1938
|
|
952
|
+
Swing Time,1936
|
|
953
|
+
Syriana,2005
|
|
954
|
+
Tabu,1931
|
|
955
|
+
Talk to Her ,2002
|
|
956
|
+
Tango,1982
|
|
957
|
+
Target For Tonight,1941
|
|
958
|
+
Tarzan,1999
|
|
959
|
+
Taxi to the Dark Side,2007
|
|
960
|
+
Teenage Father,1978
|
|
961
|
+
The Ten Commandments,1956
|
|
962
|
+
The Ten-Year Lunch: The Wit and Legend of the Algonquin Round Table,1987
|
|
963
|
+
Tender Mercies,1983
|
|
964
|
+
Terminator 2: Judgment Day,1991
|
|
965
|
+
Terms of Endearment,1983
|
|
966
|
+
Thank God It's Friday,1978
|
|
967
|
+
That Hamilton Woman,1941
|
|
968
|
+
That Mothers Might Live,1938
|
|
969
|
+
Thelma & Louise,1991
|
|
970
|
+
There Will Be Blood,2007
|
|
971
|
+
"They Shoot Horses, Don't They?",1969
|
|
972
|
+
The Thief of Bagdad,1940
|
|
973
|
+
Thirty Seconds Over Tokyo,1944
|
|
974
|
+
This Above All,1942
|
|
975
|
+
This Charming Man ,2002
|
|
976
|
+
This Is the Army,1943
|
|
977
|
+
This Land Is Mine,1943
|
|
978
|
+
This Mechanical Age,1954
|
|
979
|
+
This Tiny World,1972
|
|
980
|
+
The Thomas Crown Affair,1968
|
|
981
|
+
Thoroughly Modern Millie,1967
|
|
982
|
+
A Thousand Clowns,1965
|
|
983
|
+
Three Coins in the Fountain,1954
|
|
984
|
+
The Three Faces of Eve,1957
|
|
985
|
+
Three Little Pigs,1933
|
|
986
|
+
Three Orphan Kittens,1935
|
|
987
|
+
Through a Glass Darkly ,1961
|
|
988
|
+
Thunderball,1965
|
|
989
|
+
Thursday's Children,1954
|
|
990
|
+
A Time for Justice,1994
|
|
991
|
+
The Time Machine,1960
|
|
992
|
+
A Time Out of War,1954
|
|
993
|
+
The Times of Harvey Milk,1984
|
|
994
|
+
The Tin Drum ,1979
|
|
995
|
+
Tin Pan Alley,1940
|
|
996
|
+
Tin Toy,1988
|
|
997
|
+
The Titan: Story of Michelangelo,1950
|
|
998
|
+
Titanic,1953
|
|
999
|
+
Titanic,1997
|
|
1000
|
+
To Begin Again ,1982
|
|
1001
|
+
To Catch a Thief,1955
|
|
1002
|
+
To Each His Own,1946
|
|
1003
|
+
To Kill a Mockingbird,1962
|
|
1004
|
+
Tom Jones,1963
|
|
1005
|
+
tom thumb,1958
|
|
1006
|
+
Tootsie,1982
|
|
1007
|
+
Top Gun,1986
|
|
1008
|
+
Topkapi,1964
|
|
1009
|
+
Topsy-Turvy,1999
|
|
1010
|
+
Tora! Tora! Tora!,1970
|
|
1011
|
+
Torture Money,1937
|
|
1012
|
+
Total Recall,1990
|
|
1013
|
+
A Touch of Class,1973
|
|
1014
|
+
Toward Independence,1948
|
|
1015
|
+
The Towering Inferno,1974
|
|
1016
|
+
Toy Story,1995
|
|
1017
|
+
Toy Story 3,2010
|
|
1018
|
+
Traffic,2000
|
|
1019
|
+
Training Day,2001
|
|
1020
|
+
Transatlantic,1931
|
|
1021
|
+
Travels with My Aunt,1972
|
|
1022
|
+
The Treasure of the Sierra Madre,1948
|
|
1023
|
+
A Tree Grows in Brooklyn,1945
|
|
1024
|
+
Trevor,1994
|
|
1025
|
+
The Trip to Bountiful,1985
|
|
1026
|
+
The True Glory,1945
|
|
1027
|
+
True Grit,1969
|
|
1028
|
+
Tsotsi,2005
|
|
1029
|
+
Tweetie Pie,1947
|
|
1030
|
+
Twelve O'Clock High,1949
|
|
1031
|
+
Twin Towers,2002
|
|
1032
|
+
Two Arabian Knights,1927
|
|
1033
|
+
The Two Mouseketeers,1951
|
|
1034
|
+
Two Soldiers,2003
|
|
1035
|
+
Two Women ,1961
|
|
1036
|
+
U-571,2000
|
|
1037
|
+
Undefeated,2011
|
|
1038
|
+
Underworld,1928
|
|
1039
|
+
Unforgiven,1992
|
|
1040
|
+
The Untouchables,1987
|
|
1041
|
+
Up,1984
|
|
1042
|
+
Up,2009
|
|
1043
|
+
The Usual Suspects,1995
|
|
1044
|
+
The V.I.P.s,1963
|
|
1045
|
+
Vacation from Marriage ,1946
|
|
1046
|
+
The Vanishing Prairie,1954
|
|
1047
|
+
Vicky Cristina Barcelona,2008
|
|
1048
|
+
Victor Victoria,1982
|
|
1049
|
+
Violet,1981
|
|
1050
|
+
The Virgin Spring ,1960
|
|
1051
|
+
Visas and Virtue,1997
|
|
1052
|
+
Viva Villa!,1934
|
|
1053
|
+
Viva Zapata!,1952
|
|
1054
|
+
Waikiki Wedding,1937
|
|
1055
|
+
Walk the Line,2005
|
|
1056
|
+
WALL-E,2008
|
|
1057
|
+
Wall Street,1987
|
|
1058
|
+
The Wrong Trousers,1993
|
|
1059
|
+
Wallace & Gromit: The Curse of the Were-Rabbit,2005
|
|
1060
|
+
War and Peace ,1968
|
|
1061
|
+
Wasp,2004
|
|
1062
|
+
Watch on the Rhine,1943
|
|
1063
|
+
Water Birds,1952
|
|
1064
|
+
The Way of All Flesh,1927
|
|
1065
|
+
The Way We Were,1973
|
|
1066
|
+
West Side Story,1961
|
|
1067
|
+
The Westerner,1940
|
|
1068
|
+
The Wetback Hound,1957
|
|
1069
|
+
What Dreams May Come,1998
|
|
1070
|
+
What Ever Happened to Baby Jane?,1962
|
|
1071
|
+
When Tomorrow Comes,1939
|
|
1072
|
+
When Magoo Flew,1954
|
|
1073
|
+
When We Were Kings,1996
|
|
1074
|
+
When Worlds Collide,1951
|
|
1075
|
+
White Nights,1985
|
|
1076
|
+
White Shadows in the South Seas,1928
|
|
1077
|
+
White Wilderness,1958
|
|
1078
|
+
Who Framed Roger Rabbit,1988
|
|
1079
|
+
Who's Afraid of Virginia Woolf?,1966
|
|
1080
|
+
Who's Who in Animal Land,1944
|
|
1081
|
+
Why Man Creates,1968
|
|
1082
|
+
Wilson,1944
|
|
1083
|
+
Wings,
|
|
1084
|
+
Winnie the Pooh and the Blustery Day,1968
|
|
1085
|
+
With a Song in My Heart,1952
|
|
1086
|
+
With Byrd at the South Pole,1930
|
|
1087
|
+
With the Marines at Tarawa,1944
|
|
1088
|
+
Witness,1985
|
|
1089
|
+
Witness to War: Dr. Charlie Clements,1985
|
|
1090
|
+
The Wizard of Oz,1939
|
|
1091
|
+
The Wolfman,2010
|
|
1092
|
+
The Woman in Red,1984
|
|
1093
|
+
Woman of the Year,1942
|
|
1094
|
+
Wonder Boys,2000
|
|
1095
|
+
Wonder Man,1945
|
|
1096
|
+
The Wonderful World of the Brothers Grimm,1962
|
|
1097
|
+
Woodstock,1970
|
|
1098
|
+
Work Experience,1989
|
|
1099
|
+
Working Girl,1988
|
|
1100
|
+
World of Kids,1951
|
|
1101
|
+
Wrestling Swordfish,1931
|
|
1102
|
+
Written on the Wind,1956
|
|
1103
|
+
Wuthering Heights,1939
|
|
1104
|
+
Yankee Doodle Dandy,1942
|
|
1105
|
+
The Yankee Doodle Mouse,1943
|
|
1106
|
+
A Year Toward Tomorrow,1966
|
|
1107
|
+
The Yearling,1946
|
|
1108
|
+
Yentl,1983
|
|
1109
|
+
"Yesterday, Today and Tomorrow ",1964
|
|
1110
|
+
You Can't Take It with You,1938
|
|
1111
|
+
You Don't Have to Die,1988
|
|
1112
|
+
You Light Up My Life,1977
|
|
1113
|
+
Young at Heart,1987
|
|
1114
|
+
The Young Victoria,2009
|
|
1115
|
+
Zero Dark Thirty,2012
|
|
1116
|
+
Zorba the Greek ,1964
|