-
Notifications
You must be signed in to change notification settings - Fork 0
/
PlaygroundResult_Projeto.txt
1449 lines (1449 loc) · 42.5 KB
/
PlaygroundResult_Projeto.txt
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
[
{
"_id": {
"$oid": "573a1390f29313caabcd50e5"
},
"plot": "The cartoonist, Winsor McCay, brings the Dinosaurus back to life in the figure of his latest creation, Gertie the Dinosaur.",
"genres": [
"Animation",
"Short",
"Comedy"
],
"runtime": 12,
"cast": [
"Winsor McCay",
"George McManus",
"Roy L. McCardell"
],
"num_mflix_comments": 0,
"poster": "https://m.media-amazon.com/images/M/MV5BMTQxNzI4ODQ3NF5BMl5BanBnXkFtZTgwNzY5NzMwMjE@._V1_SY1000_SX677_AL_.jpg",
"title": "Gertie the Dinosaur",
"fullplot": "Winsor Z. McCay bets another cartoonist that he can animate a dinosaur. So he draws a big friendly herbivore called Gertie. Then he get into his own picture. Gertie walks through the picture, eats a tree, meets her creator, and takes him carefully on her back for a ride.",
"languages": [
"English"
],
"released": {
"$date": {
"$numberLong": "-1745020800000"
}
},
"directors": [
"Winsor McCay"
],
"writers": [
"Winsor McCay"
],
"awards": {
"wins": 1,
"nominations": 0,
"text": "1 win."
},
"lastupdated": "2015-08-18 01:03:15.313000000",
"year": 1914,
"imdb": {
"rating": 7.3,
"votes": 1837,
"id": 4008
},
"countries": [
"USA"
],
"type": "movie",
"tomatoes": {
"viewer": {
"rating": 3.7,
"numReviews": 29
},
"lastUpdated": {
"$date": "2015-08-10T19:20:03Z"
}
},
"dados": []
},
{
"_id": {
"$oid": "573a1390f29313caabcd42e8"
},
"plot": "A group of bandits stage a brazen train hold-up, only to find a determined posse hot on their heels.",
"genres": [
"Short",
"Western"
],
"runtime": 11,
"cast": [
"A.C. Abadie",
"Gilbert M. 'Broncho Billy' Anderson",
"George Barnes",
"Justus D. Barnes"
],
"poster": "https://m.media-amazon.com/images/M/MV5BMTU3NjE5NzYtYTYyNS00MDVmLWIwYjgtMmYwYWIxZDYyNzU2XkEyXkFqcGdeQXVyNzQzNzQxNzI@._V1_SY1000_SX677_AL_.jpg",
"title": "The Great Train Robbery",
"fullplot": "Among the earliest existing films in American cinema - notable as the first film that presented a narrative story to tell - it depicts a group of cowboy outlaws who hold up a train and rob the passengers. They are then pursued by a Sheriff's posse. Several scenes have color included - all hand tinted.",
"languages": [
"English"
],
"released": {
"$date": {
"$numberLong": "-2085523200000"
}
},
"directors": [
"Edwin S. Porter"
],
"rated": "TV-G",
"awards": {
"wins": 1,
"nominations": 0,
"text": "1 win."
},
"lastupdated": "2015-08-13 00:27:59.177000000",
"year": 1903,
"imdb": {
"rating": 7.4,
"votes": 9847,
"id": 439
},
"countries": [
"USA"
],
"type": "movie",
"tomatoes": {
"viewer": {
"rating": 3.7,
"numReviews": 2559,
"meter": 75
},
"fresh": 6,
"critic": {
"rating": 7.6,
"numReviews": 6,
"meter": 100
},
"rotten": 0,
"lastUpdated": {
"$date": "2015-08-08T19:16:10Z"
}
},
"num_mflix_comments": 0,
"dados": []
},
{
"_id": {
"$oid": "573a1390f29313caabcd56df"
},
"plot": "An immigrant leaves his sweetheart in Italy to find a better life across the sea in the grimy slums of New York. They are eventually reunited and marry. But life in New York is hard and ...",
"genres": [
"Drama"
],
"runtime": 78,
"rated": "PASSED",
"cast": [
"George Beban",
"Clara Williams",
"J. Frank Burke",
"Leo Willis"
],
"title": "The Italian",
"fullplot": "An immigrant leaves his sweetheart in Italy to find a better life across the sea in the grimy slums of New York. They are eventually reunited and marry. But life in New York is hard and tragedy tarnishes their dream of a better life in the new world.",
"languages": [
"English"
],
"released": {
"$date": {
"$numberLong": "-1735689600000"
}
},
"directors": [
"Reginald Barker"
],
"writers": [
"Thomas H. Ince (story)",
"C. Gardner Sullivan (story)"
],
"awards": {
"wins": 1,
"nominations": 0,
"text": "1 win."
},
"lastupdated": "2015-07-27 00:07:43.230000000",
"year": 1915,
"imdb": {
"rating": 6.4,
"votes": 175,
"id": 5557
},
"countries": [
"USA"
],
"type": "movie",
"tomatoes": {
"viewer": {
"rating": 4,
"numReviews": 204,
"meter": 60
},
"dvd": {
"$date": "2008-08-26T00:00:00Z"
},
"lastUpdated": {
"$date": "2015-07-24T19:30:02Z"
}
},
"num_mflix_comments": 0,
"dados": []
},
{
"_id": {
"$oid": "573a1390f29313caabcd5a93"
},
"plot": "Christ takes on the form of a pacifist count to end a senseless war.",
"genres": [
"Drama"
],
"runtime": 78,
"cast": [
"Howard C. Hickman",
"Enid Markey",
"Lola May",
"Kate Bruce"
],
"num_mflix_comments": 0,
"poster": "https://m.media-amazon.com/images/M/MV5BMjAwNTIxMjE5N15BMl5BanBnXkFtZTgwODc1Mjg1MzE@._V1_SY1000_SX677_AL_.jpg",
"title": "Civilization",
"fullplot": "Allegorical film about peace. A king starts a war, many of the women are against it, people are pressed into service. A count has constructed a submarine and gets the order to sink an ocean liner, that is also carrying - supposedly - ammunition for the enemy. The count refuses to fire the torpedos, and sinks the submarine. He survives, but in a limbo between death and life where he meets Jesus, who takes him over to preach peace. Naturally the king arrests him and sentences him to death for treason, but then Jesus shows him the real face of war.",
"countries": [
"USA"
],
"released": {
"$date": {
"$numberLong": "-1690934400000"
}
},
"directors": [
"Reginald Barker",
"Thomas H. Ince",
"Raymond B. West",
"Walter Edwards",
"David Hartford",
"Jay Hunt",
"J. Parker Read Jr."
],
"writers": [
"C. Gardner Sullivan"
],
"awards": {
"wins": 1,
"nominations": 0,
"text": "1 win."
},
"lastupdated": "2015-04-30 02:13:27.863000000",
"year": 1916,
"imdb": {
"rating": 6.3,
"votes": 162,
"id": 6517
},
"type": "movie",
"tomatoes": {
"viewer": {
"rating": 0,
"numReviews": 7
},
"lastUpdated": {
"$date": "2015-08-07T18:42:35Z"
}
},
"dados": []
},
{
"_id": {
"$oid": "573a1390f29313caabcd6377"
},
"plot": "A rich young Easterner who has always wanted to live in \"the Wild West\" plans to move to a Western town. Unknown to him, the town's \"wild\" days are long gone, and it is an orderly, ...",
"genres": [
"Comedy",
"Western",
"Romance"
],
"runtime": 72,
"cast": [
"Douglas Fairbanks",
"Eileen Percy",
"Calvert Carter",
"Charles Stevens"
],
"title": "Wild and Woolly",
"fullplot": "A rich young Easterner who has always wanted to live in \"the Wild West\" plans to move to a Western town. Unknown to him, the town's \"wild\" days are long gone, and it is an orderly, civilized place now. The townsmen, not wanting to lose a rich potential resident, contrive to make over the town to suit the young man's fantasy.",
"languages": [
"English"
],
"released": {
"$date": {
"$numberLong": "-1657497600000"
}
},
"directors": [
"John Emerson"
],
"writers": [
"Horace B. Carpenter (story)",
"John Emerson",
"Anita Loos"
],
"awards": {
"wins": 1,
"nominations": 0,
"text": "1 win."
},
"lastupdated": "2015-06-05 00:40:35.137000000",
"year": 1917,
"imdb": {
"rating": 6.9,
"votes": 388,
"id": 8775
},
"countries": [
"USA"
],
"type": "movie",
"num_mflix_comments": 0,
"dados": []
},
{
"_id": {
"$oid": "573a1391f29313caabcd6d40"
},
"plot": "A tipsy doctor encounters his patient sleepwalking on a building ledge, high above the street.",
"genres": [
"Comedy",
"Short"
],
"runtime": 26,
"rated": "PASSED",
"cast": [
"Harold Lloyd",
"Roy Brooks",
"Mildred Davis",
"Wallace Howe"
],
"num_mflix_comments": 1,
"poster": "https://m.media-amazon.com/images/M/MV5BODliMjc3ODctYjhlOC00MDM5LTgzNmUtMjQ1MmViNDQ0NzlhXkEyXkFqcGdeQXVyNTM3MDMyMDQ@._V1_SY1000_SX677_AL_.jpg",
"title": "High and Dizzy",
"fullplot": "After a long wait, a young doctor finally has a patient come to his office. She is a young woman whose father has brought her to be treated for sleep-walking, but the father becomes annoyed with the doctor, and takes his daughter away. Soon afterward, the young doctor shares in a drinking binge with another doctor who has built a still in his office. After a series of misadventures, the two of them wind up in the same hotel where the daughter and her father are staying, leading to some hazardous predicaments.",
"languages": [
"English"
],
"released": {
"$date": {
"$numberLong": "-1561334400000"
}
},
"directors": [
"Hal Roach"
],
"writers": [
"Frank Terry (story)",
"H.M. Walker (titles)"
],
"awards": {
"wins": 0,
"nominations": 1,
"text": "1 nomination."
},
"lastupdated": "2015-08-11 00:35:33.717000000",
"year": 1920,
"imdb": {
"rating": 7,
"votes": 646,
"id": 11293
},
"countries": [
"USA"
],
"type": "movie",
"tomatoes": {
"viewer": {
"rating": 3.4,
"numReviews": 30,
"meter": 70
},
"lastUpdated": {
"$date": "2015-06-27T19:17:10Z"
}
},
"dados": [
{
"_id": {
"$oid": "5a9427648b0beebeb6957aa3"
},
"name": "Yolanda Owen",
"email": "[email protected]",
"movie_id": {
"$oid": "573a1391f29313caabcd6d40"
},
"text": "Occaecati commodi quidem aliquid delectus dolores. Facilis fugiat soluta maxime ipsum. Facere quibusdam vitae eius in fugit voluptatum beatae.",
"date": {
"$date": "1980-07-13T06:41:13Z"
}
}
]
},
{
"_id": {
"$oid": "573a1391f29313caabcd6e2a"
},
"plot": "A newly wedded couple attempt to build a house with a prefabricated kit, unaware that a rival sabotaged the kit's component numbering.",
"genres": [
"Short",
"Comedy"
],
"runtime": 25,
"cast": [
"Buster Keaton",
"Sybil Seely"
],
"num_mflix_comments": 0,
"title": "One Week",
"fullplot": "Buster and Sybil exit a chapel as newlyweds. Among the gifts is a portable house you easily put together in one week. It doesn't help that Buster's rival for Sybil switches the numbers on the crates containing the house parts.",
"languages": [
"English"
],
"released": {
"$date": {
"$numberLong": "-1556841600000"
}
},
"directors": [
"Edward F. Cline",
"Buster Keaton"
],
"rated": "TV-G",
"awards": {
"wins": 1,
"nominations": 0,
"text": "1 win."
},
"lastupdated": "2015-05-07 01:07:01.633000000",
"year": 1920,
"imdb": {
"rating": 8.3,
"votes": 3942,
"id": 11541
},
"countries": [
"USA"
],
"type": "movie",
"tomatoes": {
"viewer": {
"rating": 4.3,
"numReviews": 752,
"meter": 91
},
"lastUpdated": {
"$date": "2015-09-13T18:22:19Z"
}
},
"dados": []
},
{
"_id": {
"$oid": "573a1391f29313caabcd6ea2"
},
"plot": "The simple-minded son of a rich financier must find his own way in the world.",
"genres": [
"Comedy"
],
"runtime": 77,
"cast": [
"Edward Jobson",
"Beulah Booker",
"Edward Connelly",
"Edward Alexander"
],
"num_mflix_comments": 0,
"poster": "https://m.media-amazon.com/images/M/MV5BZDNiODA3NzQtNTBmZS00NTM3LWJlOGMtMDg2NzFiNDU2M2M3XkEyXkFqcGdeQXVyMjUxODE0MDY@._V1_SY1000_SX677_AL_.jpg",
"title": "The Saphead",
"fullplot": "Nick Van Alstyne owns the Henrietta silver mine and is very rich. His son Bertie is naive and spoiled. His daughter Rose is married to shady investor Mark. Mark wrecks Bertie's wedding plans by making him take the blame for Mark's illegitimate daughter. Mark also nearly ruins the family business by selling off Henrietta stock at too low a price. Bertie, of all people, must come to the rescue on the trading floor.",
"countries": [
"USA"
],
"released": {
"$date": {
"$numberLong": "-1556841600000"
}
},
"directors": [
"Herbert Blachè",
"Winchell Smith"
],
"writers": [
"Bronson Howard (original play \"The Henrietta\")",
"Victor Mapes (play)",
"June Mathis (scenario)",
"Winchell Smith (play)"
],
"awards": {
"wins": 0,
"nominations": 1,
"text": "1 nomination."
},
"lastupdated": "2015-06-20 00:38:08.303000000",
"year": 1920,
"imdb": {
"rating": 6.2,
"votes": 1020,
"id": 11652
},
"type": "movie",
"tomatoes": {
"viewer": {
"rating": 3.3,
"numReviews": 435,
"meter": 49
},
"dvd": {
"$date": "2000-01-11T00:00:00Z"
},
"lastUpdated": {
"$date": "2015-06-23T19:23:34Z"
}
},
"dados": []
},
{
"_id": {
"$oid": "573a1391f29313caabcd6f98"
},
"plot": "A romantic rivalry among members of a secret society becomes even tenser when one of the men is assigned to carry out an assassination.",
"genres": [
"Crime",
"Drama",
"Mystery"
],
"runtime": 75,
"rated": "PASSED",
"cast": [
"Lon Chaney",
"Leatrice Joy",
"John Bowers",
"Hardee Kirkland"
],
"num_mflix_comments": 1,
"poster": "https://m.media-amazon.com/images/M/MV5BMTkwOTUyNDk1N15BMl5BanBnXkFtZTYwODI3MzI3._V1_SY1000_SX677_AL_.jpg",
"title": "The Ace of Hearts",
"fullplot": "A secret society holds a meeting to determine what to do about a powerful and dangerous man whom they have been studying closely for the past three months. They all agree that he deserves to die. Two of the members, Farallone and Forrest, are both in love with Lilith, the group's only female member. But Lilith accepts neither of them, preferring to devote herself to the group's cause. When the group meets again and deals cards to all the members, Forrest draws the ace of hearts, meaning that he will be the one to carry out the assassination. Lilith then suddenly agrees to marry him, in order to give him courage. But after their first night together, both of them begin to feel differently about what they have planned.",
"countries": [
"USA"
],
"released": {
"$date": {
"$numberLong": "-1443571200000"
}
},
"directors": [
"Wallace Worsley"
],
"writers": [
"Gouverneur Morris (by)",
"Ruth Wightman (scenario)"
],
"awards": {
"wins": 0,
"nominations": 2,
"text": "2 nominations."
},
"lastupdated": "2015-07-20 00:01:29.560000000",
"year": 1921,
"imdb": {
"rating": 7,
"votes": 798,
"id": 11904
},
"type": "movie",
"tomatoes": {
"viewer": {
"rating": 3.5,
"numReviews": 377,
"meter": 68
},
"lastUpdated": {
"$date": "2015-04-28T19:29:23Z"
}
},
"dados": [
{
"_id": {
"$oid": "5a9427648b0beebeb6957abd"
},
"name": "John Bishop",
"email": "[email protected]",
"movie_id": {
"$oid": "573a1391f29313caabcd6f98"
},
"text": "Accusamus qui distinctio ut ab saepe tenetur. Quae optio aut eius deleniti veritatis error. Eligendi ducimus rerum recusandae doloribus. Natus quisquam expedita voluptatum voluptatibus natus quidem.",
"date": {
"$date": "1972-04-16T14:52:53Z"
}
}
]
},
{
"_id": {
"$oid": "573a1391f29313caabcd715c"
},
"plot": "The Tramp cares for an abandoned child, but events put that relationship in jeopardy.",
"genres": [
"Comedy",
"Drama",
"Family"
],
"runtime": 68,
"rated": "NOT RATED",
"cast": [
"Carl Miller",
"Edna Purviance",
"Jackie Coogan",
"Charles Chaplin"
],
"poster": "https://m.media-amazon.com/images/M/MV5BZjhhMThhNDItNTY2MC00MmU1LTliNDEtNDdhZjdlNTY5ZDQ1XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_SY1000_SX677_AL_.jpg",
"title": "The Kid",
"fullplot": "The opening title reads: \"A comedy with a smile--and perhaps a tear\". As she leaves the charity hospital and passes a church wedding, Edna deposits her new baby with a pleading note in a limousine and goes off to commit suicide. The limo is stolen by thieves who dump the baby by a garbage can. Charlie the Tramp finds the baby and makes a home for him. Five years later Edna has become an opera star but does charity work for slum youngsters in hope of finding her boy. A doctor called by Edna discovers the note with the truth about the Kid and reports it to the authorities who come to take him away from Charlie. Before he arrives at the Orphan Asylum Charlie steals him back and takes him to a flophouse. The proprietor reads of a reward for the Kid and takes him to Edna. Charlie is later awakened by a kind policeman who reunites him with the Kid at Edna's mansion.",
"languages": [
"English"
],
"released": {
"$date": {
"$numberLong": "-1543190400000"
}
},
"directors": [
"Charles Chaplin"
],
"writers": [
"Charles Chaplin"
],
"awards": {
"wins": 1,
"nominations": 0,
"text": "1 win."
},
"lastupdated": "2015-09-05 00:24:11.143000000",
"year": 1921,
"imdb": {
"rating": 8.4,
"votes": 56858,
"id": 12349
},
"countries": [
"USA"
],
"type": "movie",
"tomatoes": {
"viewer": {
"rating": 4.2,
"numReviews": 14860,
"meter": 96
},
"dvd": {
"$date": "2004-03-02T00:00:00Z"
},
"critic": {
"rating": 8.7,
"numReviews": 22,
"meter": 100
},
"lastUpdated": {
"$date": "2015-09-14T17:49:56Z"
},
"rotten": 0,
"production": "First National Pictures Inc.",
"fresh": 22
},
"num_mflix_comments": 0,
"dados": []
},
{
"_id": {
"$oid": "573a1391f29313caabcd71f5"
},
"plot": "A young man, unaccustomed to children, must accompany a young girl on a train trip.",
"genres": [
"Comedy",
"Short"
],
"runtime": 35,
"rated": "PASSED",
"cast": [
"Harold Lloyd",
"Mildred Davis",
"Anna Mae Bilson"
],
"poster": "https://m.media-amazon.com/images/M/MV5BYjgzYzY1NjEtYWQxZS00ZjA4LWJlYmQtYzRjNTg3NjUwNDRlXkEyXkFqcGdeQXVyMjUxODE0MDY@._V1_SY1000_SX677_AL_.jpg",
"title": "Now or Never",
"fullplot": "Mary is looking after a young child whose parents have little time for her. So, when Mary travels home to meet her childhood sweetheart, she takes the child with her. Meanwhile, her boyfriend has a mishap on the road, and is tricked out of his money by a tramp. When the tramp then hitches a ride on a train, the boyfriend does so as well. At the station, he meets Mary and the child, and they plan to re-board the train together. But difficulties arise when Mary sees her boss boarding the same train - and there is also the problem that her boyfriend doesn't have a ticket.",
"languages": [
"English"
],
"released": {
"$date": {
"$numberLong": "-1538956800000"
}
},
"directors": [
"Fred C. Newmeyer",
"Hal Roach"
],
"writers": [
"H.M. Walker (titles)",
"Sam Taylor (scenario)"
],
"awards": {
"wins": 0,
"nominations": 1,
"text": "1 nomination."
},
"lastupdated": "2015-06-25 00:02:16.613000000",
"year": 1921,
"imdb": {
"rating": 6.8,
"votes": 489,
"id": 12512
},
"countries": [
"USA"
],
"type": "movie",
"tomatoes": {
"viewer": {
"rating": 3.8,
"numReviews": 3
},
"lastUpdated": {
"$date": "2015-07-16T17:59:55Z"
}
},
"num_mflix_comments": 0,
"dados": []
},
{
"_id": {
"$oid": "573a1391f29313caabcd73f4"
},
"plot": "A series of mishaps manages to make a young man get chased by a big city's entire police force.",
"genres": [
"Short",
"Comedy",
"Family"
],
"runtime": 22,
"rated": "UNRATED",
"cast": [
"Buster Keaton"
],
"num_mflix_comments": 0,
"title": "Cops",
"fullplot": "Through a series of mistaken identities Buster winds up with a load of furniture in the middle of parade of policemen. An anarchist's bomb lands in his carriage. After lighting his cigarette with it, he tosses it into the ranks of police. When it explodes the police chase him all over town.",
"languages": [
"English"
],
"released": {
"$date": {
"$numberLong": "-1509667200000"
}
},
"directors": [
"Edward F. Cline",
"Buster Keaton"
],
"writers": [
"Buster Keaton",
"Edward F. Cline"
],
"awards": {
"wins": 1,
"nominations": 0,
"text": "1 win."
},
"lastupdated": "2015-09-16 06:21:19.243000000",
"year": 1922,
"imdb": {
"rating": 7.8,
"votes": 3738,
"id": 13025
},
"countries": [
"USA"
],
"type": "movie",
"tomatoes": {
"viewer": {
"rating": 4,
"numReviews": 498,
"meter": 88
},
"production": "Joseph M. Schenck Productions",
"lastUpdated": {
"$date": "2015-09-15T18:06:57Z"
}
},
"dados": []
},
{
"_id": {
"$oid": "573a1391f29313caabcd7850"
},
"plot": "In fifteenth century Paris, the brother of the archdeacon plots with the gypsy king to foment a peasant revolt. Meanwhile, a freakish hunchback falls in love with the gypsy queen.",
"genres": [
"Drama",
"Romance"
],
"runtime": 133,
"rated": "UNRATED",
"cast": [
"Lon Chaney",
"Patsy Ruth Miller",
"Norman Kerry",
"Kate Lester"
],
"num_mflix_comments": 1,
"poster": "https://m.media-amazon.com/images/M/MV5BMjMyODkyNjc5MF5BMl5BanBnXkFtZTgwODY1NDM4MTE@._V1_SY1000_SX677_AL_.jpg",
"title": "The Hunchback of Notre Dame",
"fullplot": "Clopin bought Esmeralda from the gypsies when she was young. Dancing in the square at the festival, Esmeralda is spotted by Jehan, the evil brother of the good archdeacon Claude Frollo. When he sets Quasimodo out to kidnap Esmeralda, Phoebus, Captain of the Guards, rescues her and captures Quasimodo. The courts sentence Quasimodo to be flogged, and the only one who will give him water while he is tied in the square is Esmeralda. After Clopin forces Esmeralda to leave Phoebus at the ball, she sends a note to Phoebus to meet her at Notre-Dame. In the garden, Phoebus is stabbed in the back by Jehan. Esmeralda is accused of stabbing Phoebus, convicted by the courts and sentenced to hang. When Esmeralda again rejects Jehan, he tells her that Phoebus is dead, even though it is not true. Clopin, Phoebus and Quasimodo all try different ways to save Esmeralda.",
"countries": [
"USA"
],
"released": {
"$date": {
"$numberLong": "-1461801600000"
}
},
"directors": [
"Wallace Worsley"
],
"writers": [
"Victor Hugo",
"Perley Poore Sheehan (adaptation)",
"Edward T. Lowe Jr. (scenario)"
],
"awards": {
"wins": 1,
"nominations": 0,
"text": "1 win."
},
"lastupdated": "2015-09-03 00:43:12.727000000",
"year": 1923,
"imdb": {
"rating": 7.4,
"votes": 3289,
"id": 14142
},
"type": "movie",
"tomatoes": {
"website": "http://www.flickeralley.com/catalog/item/the-hunchback-of-notre-dame-1923",
"viewer": {
"rating": 3.6,
"numReviews": 2902,
"meter": 74
},
"dvd": {
"$date": "2002-02-19T00:00:00Z"
},
"critic": {
"rating": 8.1,
"numReviews": 15,
"meter": 100
},
"lastUpdated": {
"$date": "2015-09-17T18:03:58Z"
},
"rotten": 0,
"production": "Gravitas",
"fresh": 15
},
"dados": [
{
"_id": {
"$oid": "5a9427648b0beebeb6957b1a"
},
"name": "Doreah",
"email": "[email protected]",
"movie_id": {
"$oid": "573a1391f29313caabcd7850"
},
"text": "Nulla assumenda corporis a impedit. Ratione voluptates veritatis dolorem quod officiis minima. Labore dolor repudiandae voluptatum nam. Dignissimos quo sit sint sint labore similique.",
"date": {
"$date": "2001-02-09T20:18:49Z"
}
}
]
},
{
"_id": {
"$oid": "573a1391f29313caabcd7bc3"
},
"plot": "Springfield, Illinois. Brandon, a surveyor, dreams of building a railway to the west, but Marsh, a contractor, is sceptical. Abraham Lincoln looks on as their children, Davy Brandon and ...",
"genres": [
"Western"
],
"runtime": 150,
"rated": "PASSED",
"title": "The Iron Horse",
"num_mflix_comments": 0,
"poster": "https://m.media-amazon.com/images/M/MV5BMGYwNjkxMmQtYzI1My00YzA4LTg2MGMtMjlmZjIzMWMwZDE1XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_SY1000_SX677_AL_.jpg",
"countries": [
"USA"
],
"fullplot": "Springfield, Illinois. Brandon, a surveyor, dreams of building a railway to the west, but Marsh, a contractor, is sceptical. Abraham Lincoln looks on as their children, Davy Brandon and Miriam Marsh, play together. Brandon sets off with Davy to survey a route. They discover a new pass which will shave 200 miles off the expected distance, but they are set upon by a party of Cheyenne. One of them, a white renegade with only two fingers on his right hand, kills Brandon and scalps him. Davy buries his father... Years pass. It is 1862 and Lincoln signs the bill authorizing construction of the Union Pacific and Central Pacific railways. Marsh is principal contractor and Miriam is engaged to Jesson, the chief engineer... Crews of Chinese, Italians, and Irish work to build the railway while resisting Indian attack. When the pay train is delayed by Indian ambush, the Italians go on strike. Miriam persuades them to return to work... Marsh needs to find a shortcut through the Black Hills. To finish on time, he needs to shorten the route by 200 miles. Bauman, the biggest land owner, wants the route to stay the same - through his land. Marsh has entrusted Jesson with finding the new route. Bauman has Ruby, a saloon girl, persuade Jesson to do otherwise... Davy, now a pony express rider, recalls his father's discovery. He sets off to find the pass. He goes alone, except for Jesson...",
"languages": [
"English"
],
"cast": [
"George O'Brien",
"Madge Bellamy",
"Charles Edward Bull",
"Cyril Chadwick"
],
"directors": [
"John Ford"
],
"writers": [
"Charles Kenyon (story)",
"John Russell (story)",
"Charles Kenyon (scenario)",
"Charles Darnton (titles)"
],
"awards": {
"wins": 1,
"nominations": 0,
"text": "1 win."
},
"lastupdated": "2015-09-02 00:21:48.663000000",
"year": 1924,
"imdb": {
"rating": 7.3,
"votes": 1276,
"id": 15016
},
"type": "movie",
"tomatoes": {
"viewer": {
"rating": 3.7,
"numReviews": 521,
"meter": 83
},
"dvd": {
"$date": "2006-02-14T00:00:00Z"
},
"critic": {
"rating": 7.2,
"numReviews": 8,
"meter": 75
},
"lastUpdated": {
"$date": "2015-07-23T18:58:55Z"
},
"rotten": 2,
"fresh": 6
},
"dados": []
},
{
"_id": {
"$oid": "573a1391f29313caabcd7c9e"
},
"plot": "Peter Pan enters the nursery of the Darling children and, with the help of fairy dust, leads them off to Never Never Land, where they meet the nefarious Captain Hook.",
"genres": [
"Adventure",
"Fantasy",
"Family"
],
"runtime": 105,
"cast": [
"George Ali",
"Esther Ralston",
"Cyril Chadwick",
"Mary Brian"
],
"num_mflix_comments": 1,
"poster": "https://m.media-amazon.com/images/M/MV5BODkwOTUxMDkyMV5BMl5BanBnXkFtZTgwOTA1MDQ0MjE@._V1_SY1000_SX677_AL_.jpg",
"title": "Peter Pan",
"fullplot": "Peter Pan, the kid who doesn't want to grow up, arrives at the Darling home searching for his shadow. He meets the Darling children and takes them to Never-Never Land, where they will fight against Capt. Hook and his pirate ship and crew. At the end the children will be back in their warm beds.",
"countries": [
"USA"
],
"released": {
"$date": {
"$numberLong": "-1420329600000"
}
},
"directors": [
"Herbert Brenon"
],
"writers": [
"J.M. Barrie (play)",
"Willis Goldbeck (screenplay)"
],
"awards": {
"wins": 1,
"nominations": 0,
"text": "1 win."
},
"lastupdated": "2015-08-09 01:05:18.003000000",
"year": 1924,
"imdb": {
"rating": 7.4,
"votes": 589,
"id": 15224
},
"type": "movie",
"tomatoes": {