-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb_filmes.py
367 lines (367 loc) · 15.4 KB
/
db_filmes.py
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
lista_filmes = [{ "title": "The Shawshank Redemption", "id": 1 },
{ "title": "Reservoir Dogs", "id": 2 },
{ "title": "Fight Club", "id": 3 },
{ "title": "Get Out", "id": 4 },
{ "title": "Platoon", "id": 5 },
{ "title": "A Tale of Two Sisters", "id": 6 },
{ "title": "A Clockwork Orange", "id": 7 },
{ "title": "The Silence Of The Lambs", "id": 8 },
{ "title": "Captain America: The Winter Soldier", "id": 9 },
{ "title": "Silent Hill", "id": 10 },
{ "title": "Halloween", "id": 11 },
{ "title": "Night of the Living Dead", "id": 12 },
{ "title": "The Prestige", "id": 13 },
{ "title": "Shaun Of The Dead", "id": 14 },
{ "title": "Being John Malkovich", "id": 15 },
{ "title": "Call Me By Your Name", "id": 16 },
{ "title": "Ford V Ferrari", "id": 17 },
{ "title": "Goodfellas", "id": 18 },
{ "title": "Hot Fuzz", "id": 19 },
{ "title": "Spirited Away", "id": 20 },
{ "title": "Eternal Sunshine of The Spotless Mind", "id": 21 },
{ "title": "Boogie Nights", "id": 22 },
{ "title": "Life of Pi", "id": 23 },
{ "title": "The Witch", "id": 24 },
{ "title": "O Brother, Where Art Thou?", "id": 25 },
{ "title": "Shutter Island", "id": 26 },
{ "title": "Dawn of the Dead", "id": 27 },
{ "title": "Groundhog Day", "id": 28 },
{ "title": "Black Panther", "id": 29 },
{ "title": "Back to the Future II", "id": 30 },
{ "title": "Blade Runner 2049", "id": 31 },
{ "title": "The Exorcist", "id": 32 },
{ "title": "Scott Pilgrim Vs The World", "id": 33 },
{ "title": "Schindler's List", "id": 34 },
{ "title": "One Hour Photo", "id": 35 },
{ "title": "A Fistful Of Dollars", "id": 36 },
{ "title": "Pan's Labyrinth", "id": 37 },
{ "title": "Hereditary", "id": 38 },
{ "title": "Rocketman", "id": 39 },
{ "title": "Pineapple Express", "id": 130 },
{ "title": "Jackie Brown", "id": 40 },
{ "title": "BlacKkKlansman", "id": 41 },
{ "title": "Gone Girl", "id": 42 },
{ "title": "Wall-E", "id": 43 },
{ "title": "Birdman", "id": 44 },
{ "title": "A Quiet Place", "id": 45 },
{ "title": "District 9", "id": 46 },
{ "title": "Alien: Resurrection", "id": 47 },
{ "title": "300", "id": 48 },
{ "title": "Inception", "id": 49 },
{ "title": "Dawn of the Planet of the Apes", "id": 50 },
{ "title": "The Truman Show", "id": 51 },
{ "title": "Brokeback Mountain", "id": 52 },
{ "title": "127 Hours", "id": 53 },
{ "title": "The Godfather Part II", "id": 54 },
{ "title": "Godzilla: King of the Monsters", "id": 55 },
{ "title": "The Imitation Game", "id": 56 },
{ "title": "1917", "id": 57 },
{ "title": "No Country For Old Men", "id": 58 },
{ "title": "Les Misérables", "id": 59 },
{ "title": "Requiem For A Dream", "id": 60 },
{ "title": "Guardians of the Galaxy", "id": 61 },
{ "title": "Moonlight", "id": 62 },
{ "title": "Indiana Jones and the Last Crusade", "id": 63 },
{ "title": "10 Cloverfield Lane", "id": 64 },
{ "title": "Good Will Hunting", "id": 65 },
{ "title": "Midsommar", "id": 66 },
{ "title": "Isle of Dogs", "id": 67 },
{ "title": "Bird Box", "id": 68 },
{ "title": "Eyes Wide Shut", "id": 69 },
{ "title": "Joker", "id": 70 },
{ "title": "Kong: Skull Island", "id": 71 },
{ "title": "The Lighthouse", "id": 72 },
{ "title": "Birds of Prey", "id": 73 },
{ "title": "About Time", "id": 131 },
{ "title": "28 Days Later", "id": 74 },
{ "title": "Jaws", "id": 75 },
{ "title": "Soul", "id": 132 },
{ "title": "Crazy Rich Asians", "id": 133 },
{ "title": "Parasite", "id": 136 },
{ "title": "The Proposal", "id": 134 },
{ "title": "Big Hero 6", "id": 135 },
{ "title": "Children Of Men", "id": 78 },
{ "title": "Apocalypse Now", "id": 79 },
{ "title": "The Godfather", "id": 80 },
{ "title": "Inglourious Basterds", "id": 81 },
{ "title": "Howl's Moving Castle", "id": 82 },
{ "title": "Bad Education", "id": 83 },
{ "title": "American Psycho", "id": 84 },
{ "title": "Up", "id": 85 },
{ "title": "Interstellar", "id": 86 },
{ "title": "Bad Boys II", "id": 87 },
{ "title": "Uncut Gems", "id": 88 },
{ "title": "Minari", "id": 89 },
{ "title": "Back to the Future", "id": 91 },
{ "title": "Zodiac", "id": 92 },
{ "title": "Saving Private Ryan", "id": 94 },
{ "title": "The Grand Budapest Hotel", "id": 95 },
{ "title": "Colour Out of Space", "id": 96 },
{ "title": "The Cabin In The Woods", "id": 97 },
{ "title": "Mad Max: Fury Road", "id": 98 },
{ "title": "Into The Wild", "id": 99 },
{ "title": "Baby Driver", "id": 100 },
{ "title": "Se7en", "id": 101 },
{ "title": "Whiplash", "id": 102 },
{ "title": "The Dark Knight", "id": 103 },
{ "title": "Monty Python and the Holy Grail", "id": 104 },
{ "title": "Fruitvale Station", "id": 105 },
{ "title": "Blade Runner", "id": 106 },
{ "title": "One Flew Over The Cuckoo\u2019s Nest", "id": 107 },
{ "title": "12 Years A Slave", "id": 108 },
{ "title": "Modern Times", "id": 109 },
{ "title": "Avengers: Endgame", "id": 110 },
{ "title": "The Hitchhiker's Guide To The Galaxy", "id": 111 },
{ "title": "The Shining", "id": 112 },
{ "title": "Catch Me If You Can", "id": 113 },
{ "title": "Oldboy", "id": 114 },
{ "title": "Ant-Man", "id": 115 },
{ "title": "Bad Boys", "id": 116 },
{ "title": "Avatar", "id": 118 },
{ "title": "Alien: Covenant", "id": 119 },
{ "title": "The Usual Suspects", "id": 120 },
{ "title": "The Big Lebowski", "id": 121 },
{ "title": "It", "id": 122 },
{ "title": "The Big Sick", "id": 139 },
{ "title": "Gran Torino", "id": 123 },
{ "title": "Pretty Woman", "id": 137 },
{ "title": "Full Metal Jacket", "id": 124 },
{ "title": "Dirty Dancing", "id": 138 },
{ "title": "Jurassic Park", "id": 125 },
{ "title": "Logan", "id": 126 },
{ "title": "Django Unchained", "id": 127 },
{ "title": "Knives Out", "id": 128 },
{ "title": "Rango", "id": 129 },
{ "title": "We're the Millers", "id": 140 },
{ "title": "Notting Hill", "id": 141 },
{ "title": "Sunset Boulevard", "id": 142 },
{ "title": "The Breakfast Club", "id": 143 },
{ "title": "The Big Short", "id": 144 },
{ "title": "Her", "id": 145 },
{ "title": "Jojo Rabbit", "id": 146 },
{ "title": "Arrival", "id": 147 },
{ "title": "Thor: Ragnarok", "id": 148 },
{ "title": "Sleepless in Seattle", "id": 149 },
{ "title": "Talladega Nights: The Ballad of Ricky Bobby", "id": 150 },
{ "title": "The Social Network", "id": 151 },
{ "title": "Black Swan", "id": 152 },
{ "title": "The Goonies", "id": 153 },
{ "title": "Free Solo", "id": 154 },
{ "title": "Amadeus", "id": 155 },
{ "title": "Galaxy Quest", "id": 156 },
{ "title": "The Hurt Locker", "id": 157 },
{ "title": "Moulin Rouge!", "id": 158 },
{ "title": "Mrs. Doubtfire", "id": 159 },
{ "title": "The King's Speech", "id": 160 },
{ "title": "Gremlins", "id": 161 },
{ "title": "The Lego Movie", "id": 162 },
{ "title": "Mud", "id": 163 },
{ "title": "Crouching Tiger, Hidden Dragon", "id": 164 },
{ "title": "Slumdog Millionaire", "id": 165 },
{ "title": "Who Framed Roger Rabbit", "id": 166 },
{ "title": "The Revenant", "id": 167 },
{ "title": "Braveheart", "id": 168 },
{ "title": "La La Land", "id": 169 },
{ "title": "The Secret Life of Walter Mitty", "id": 170 },
{ "title": "Hero", "id": 171 },
{ "title": "The Martian", "id": 172 },
{ "title": "The Mummy", "id": 173 },
{ "title": "When Harry Met Sally...", "id": 174 },
{ "title": "Aladdin", "id": 175 },
{ "title": "Captain Phillips", "id": 176 },
{ "title": "Dead Poets Society", "id": 177 },
{ "title": "The Notebook", "id": 178 },
{ "title": "Now You See Me", "id": 179 },
{ "title": "The Gentlemen", "id": 180 },
{ "title": "The Theory of Everything", "id": 181 },
{ "title": "Rocky", "id": 182 },
{ "title": "King Kong", "id": 183 },
{ "title": "Air Force One", "id": 184 },
{ "title": "Beverly Hills Cop", "id": 185 },
{ "title": "Titanic", "id": 186 },
{ "title": "A Beautiful Mind", "id": 187 },
{ "title": "Us", "id": 188 },
{ "title": "The Suicide Squad", "id": 189 },
{ "title": "Life of Brian", "id": 190 },
{ "title": "2001: A Space Odyssey", "id": 191 },
{ "title": "Cool Runnings", "id": 192 },
{ "title": "Deadpool", "id": 193 },
{ "title": "I Am Legend", "id": 194 },
{ "title": "RoboCop", "id": 195 },
{ "title": "Sicario", "id": 196 },
{ "title": "Fantasia", "id": 197 },
{ "title": "Dredd", "id": 198 },
{ "title": "Caddyshack", "id": 199 },
{ "title": "Casino Royale", "id": 200 },
{ "title": "Tropic Thunder", "id": 201 },
{ "title": "American Hustle", "id": 202 },
{ "title": "Ad Astra", "id": 203 },
{ "title": "Fantastic Mr. Fox", "id": 204 },
{ "title": "School Of Rock", "id": 205 },
{ "title": "The Matrix", "id": 206 },
{ "title": "Dunkirk", "id": 207 },
{ "title": "Eternals", "id": 208 },
{ "title": "The Lord of the Rings: The Fellowship of the Ring", "id": 209 },
{ "title": "Harry Potter and the Chamber of Secrets", "id": 210 },
{ "title": "Juno", "id": 211 },
{ "title": "Chitty Chitty Bang Bang", "id": 212 },
{ "title": "The Tree Of Life", "id": 213 },
{ "title": "Prisoners", "id": 214 },
{ "title": "Zoolander", "id": 215 },
{ "title": "Pierrot le Fou", "id": 216 },
{ "title": "A Few Good Men", "id": 217 },
{ "title": "Chariots Of Fire", "id": 218 },
{ "title": "The World's End", "id": 219 },
{ "title": "Austin Powers: International Man of Mystery", "id": 220 },
{ "title": "Fast Times at Ridgemont High", "id": 221 },
{ "title": "The Incredibles", "id": 222 },
{ "title": "Anaconda", "id": 223 },
{ "title": "Memento", "id": 224 },
{ "title": "Armageddon", "id": 225 },
{ "title": "Saw", "id": 226 },
{ "title": "Amistad", "id": 227 },
{ "title": "Frozen", "id": 228 },
{ "title": "Grease", "id": 229 },
{ "title": "The Thing", "id": 230 },
{ "title": "Marriage Story", "id": 231 },
{ "title": "A Nightmare On Elm Street", "id": 232 },
{ "title": "The Amazing Spider-Man", "id": 233 },
{ "title": "Bronson", "id": 234 },
{ "title": "Annie", "id": 235 },
{ "title": "The Muppets", "id": 236 },
{ "title": "The Hangover", "id": 237 },
{ "title": "Frankenstein", "id": 238 },
{ "title": "Halloween 2", "id": 239 },
{ "title": "Ghostbusters", "id": 240 },
{ "title": "Hugo", "id": 241 },
{ "title": "Gladiator", "id": 242 },
{ "title": "Escape from Alcatraz", "id": 243 },
{ "title": "The Mask", "id": 244 },
{ "title": "Gravity", "id": 245 },
{ "title": "Men in Black", "id": 246 },
{ "title": "Iron Man", "id": 247 },
{ "title": "Ferris Bueller's Day Off", "id": 248 },
{ "title": "Rogue One: A Star Wars Story", "id": 249 },
{ "title": "The Hunger Games", "id": 250 },
{ "title": "Moneyball", "id": 251 },
{ "title": "The Sound of Music", "id": 252 },
{ "title": "21 Jump Street", "id": 253 },
{ "title": "Ted", "id": 254 },
{ "title": "Cool Hand Luke", "id": 255 },
{ "title": "The Hunchback of Notre Dame", "id": 256 },
{ "title": "The Princess Bride", "id": 257 },
{ "title": "Quantum of Solace", "id": 258 },
{ "title": "The Shape of Water", "id": 259 },
{ "title": "Willy Wonka and the Chocolate Factory", "id": 260 },
{ "title": "Wayne's World", "id": 261 },
{ "title": "Paul", "id": 262 },
{ "title": "The Hateful Eight", "id": 263 },
{ "title": "Mamma Mia!", "id": 264 },
{ "title": "Koyaanisqatsi", "id": 265 },
{ "title": "Pain and Gain", "id": 266 },
{ "title": "Hocus Pocus", "id": 267 },
{ "title": "Warcraft", "id": 268 },
{ "title": "Drive", "id": 269 },
{ "title": "The Da Vinci Code", "id": 270 },
{ "title": "Cars", "id": 271 },
{ "title": "There Will Be Blood", "id": 272 },
{ "title": "About a Boy", "id": 273 },
{ "title": "Chef", "id": 274 },
{ "title": "Australia", "id": 275 },
{ "title": "Bend It Like Beckham", "id": 276 },
{ "title": "The Great Gatsby", "id": 277 },
{ "title": "Manhattan", "id": 278 },
{ "title": "Black Widow", "id": 279 },
{ "title": "House of Flying Daggers", "id": 280 },
{ "title": "The Nightmare Before Christmas", "id": 281 },
{ "title": "Any Given Sunday", "id": 282 },
{ "title": "Dumb and Dumber To", "id": 283 },
{ "title": "Chicago", "id": 284 },
{ "title": "Side Effects", "id": 285 },
{ "title": "Batman Returns", "id": 286 },
{ "title": "Mean Girls", "id": 287 },
{ "title": "Argo", "id": 288 },
{ "title": "The Purge", "id": 289 },
{ "title": "In Bruges", "id": 290 },
{ "title": "Inside Out", "id": 291 },
{ "title": "It's a Wonderful Life", "id": 292 },
{ "title": "Die Hard", "id": 293 },
{ "title": "Elf", "id": 294 },
{ "title": "The Polar Express", "id": 295 },
{ "title": "Babe", "id": 296 },
{ "title": "Shazam!", "id": 297 },
{ "title": "Home Alone", "id": 298 },
{ "title": "Harry Potter and the Goblet of Fire", "id": 299 },
{ "title": "300: Rise of an Empire", "id": 300 },
{ "title": "Top Gun", "id": 301 },
{ "title": "Manchester by the Sea", "id": 302 },
{ "title": "Lady Bird", "id": 303 },
{ "title": "Vertigo", "id": 304 },
{ "title": "Billy Elliot", "id": 305 },
{ "title": "Nightcrawler", "id": 306 },
{ "title": "Due Date", "id": 307 },
{ "title": "My Neighbor Totoro", "id": 308 },
{ "title": "The Royal Tenenbaums", "id": 309 },
{ "title": "Alien", "id": 310 },
{ "title": "Cake", "id": 311 },
{ "title": "Face/Off", "id": 312 },
{ "title": "In Time", "id": 313 },
{ "title": "Batman v Superman: Dawn of Justice", "id": 314 },
{ "title": "Flash Gordon", "id": 315 },
{ "title": "The Aviator", "id": 316 },
{ "title": "The Iron Giant", "id": 317 },
{ "title": "Indiana Jones and the Temple of Doom", "id": 318 },
{ "title": "Ex Machina", "id": 319 },
{ "title": "Forrest Gump", "id": 320 },
{ "title": "The American", "id": 321 },
{ "title": "Heat", "id": 322 },
{ "title": "Marathon Man", "id": 323 },
{ "title": "The English Patient", "id": 324 },
{ "title": "Finding Nemo", "id": 325 },
{ "title": "I, Robot", "id": 326 },
{ "title": "Coraline", "id": 327 },
{ "title": "Lost in Translation", "id": 328 },
{ "title": "Fast & Furious 6", "id": 329 },
{ "title": "Jarhead", "id": 330 },
{ "title": "Sin City", "id": 331 },
{ "title": "Little Miss Sunshine", "id": 332 },
{ "title": "Step Brothers", "id": 333 },
{ "title": "Basic Instinct", "id": 334 },
{ "title": "GoldenEye", "id": 335 },
{ "title": "Fantastic Beasts and Where to Find Them", "id": 336 },
{ "title": "Amelie", "id": 337 },
{ "title": "You've Got Mail", "id": 338 },
{ "title": "Akira", "id": 339 },
{ "title": "8 Mile", "id": 340 },
{ "title": "Man of Steel", "id": 341 },
{ "title": "Under the Skin", "id": 342 },
{ "title": "Edward Scissorhands", "id": 343 },
{ "title": "The King of Comedy", "id": 344 },
{ "title": "Do the Right Thing", "id": 345 },
{ "title": "Napoleon Dynamite", "id": 346 },
{ "title": "Ali", "id": 347 },
{ "title": "Prometheus", "id": 348 },
{ "title": "A Fish Called Wanda", "id": 349 },
{ "title": "The Founder", "id": 350 },
{ "title": "Glory", "id": 351 },
{ "title": "Zero Dark Thirty", "id": 352 },
{ "title": "The Darjeeling Limited", "id": 353 },
{ "title": "Spider-Man: Into the Spider-Verse", "id": 354 },
{ "title": "Drumline", "id": 355 },
{ "title": "Erin Brockovich", "id": 356 },
{ "title": "DodgeBall: A True Underdog Story", "id": 357 },
{ "title": "Apollo 13", "id": 358 },
{ "title": "Lawrence of Arabia", "id": 359 },
{ "title": "The Wiz", "id": 360 },
{ "title": "Pirates of the Caribbean: Dead Man's Chest", "id": 361 },
{ "title": "The Color Purple", "id": 362 },
{ "title": "The Hunt for Red October", "id": 363 },
{ "title": "I, Tonya", "id": 364 },
{ "title": "The Graduate", "id": 365 },
{ "title": "Kiss Kiss Bang Bang", "id": 366 },
{ "title": "World War Z", "id": 367 },
{ "title": "Mars Attacks!", "id": 368 },
{ "title": "Milk", "id": 369 },
{ "title": "Team America: World Police", "id": 370 },
{ "title": "Riddick", "id": 372 },
{ "title": "Everything Everywhere All at Once", "id": 371 }]