-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactor_errors.txt
More file actions
2640 lines (2640 loc) · 240 KB
/
actor_errors.txt
File metadata and controls
2640 lines (2640 loc) · 240 KB
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
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0002485/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0119416/>'^b', # Johnny Skidmarks\n <https://www.'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0002741/actor.html: at line 24 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' \n schema:performerIn <https://www.imdb.com/title/tt00990'^b'77/>, # Awakenings\n <https://www.im'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0006998/actor.html: at line 16 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt1027862/>'^b', # Swing Vote\n <https://www.imdb.c'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0009240/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0106308/>'^b', # Army of Darkness\n <https://www.'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0009481/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0146442/>'^b', # Apostasy\n <https://www.imdb.com'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0019142/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt6285184/'^b'>, # Romanzo famigliare\n <https://w'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0021875/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt3499048/>'^b', # G\xc3\xbceros\n <https://www.imdb.com/'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0024634/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt7527412/'^b'>, # Love for 5 years\n <https://www'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0025503/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt8791724/>'^b', # Brothers of Italy\n <https://www'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0025908/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0206113/>'^b', # Madison\n <https://www.imdb.com/'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0026122/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0114069/>'^b', # Outbreak\n <https://www.imdb.com'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0026718/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0081398/>'^b' . # Raging Bull\n\n\n# ===================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0027437/actor.html: at line 16 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0116282/>'^b', # Fargo\n <https://www.imdb.com/ti'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0028963/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0429137/>'^b', # Summer Samba\n <https://www.imdb'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0029568/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0119008/>'^b' . # Donnie Brasco\n\n\n# =================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0029893/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt1263696/>'^b', # Old Days\n <https://www.imdb.com'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0035382/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' \n schema:performerIn <https://www.imdb.com/title/tt95'^b'38040/>, # Morning-after Pill\n <htt'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0037871/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt3135452/>'^b', # Tom-tom et Nana\n <https://www.i'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0038310/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b'\n schema:performerIn <https://www.imdb.com/title/tt116687'^b'1/>, # Golgo 13\n <https://www.imdb.'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0040551/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0080455/>'^b' . # The Blues Brothers\n\n\n# ============================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0040717/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0328899/>'^b', # The Creature of the Sunny Side Up Trailer Park\n '..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0041767/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0098844/>'^b', # Law & Order\n <https://www.imdb.'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0042740/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0092608/>'^b', # Back to the Beach\n <https://www'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0044339/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt9248940/>'^b', # Dream Girl\n <https://www.imdb.c'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0045983/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0094226/>'^b', # The Untouchables\n <https://www.'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0055032/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0118749/>'^b', # Boogie Nights\n <https://www.imd'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0056391/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0953111/>'^b', # Pepe Carvalho\n <https://www.imd'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0059240/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0485301/>'^b', # Torchwood\n <https://www.imdb.co'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0065489/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0167606/>'^b", # L'heure Simenon\n <https://www.i"..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0067013/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0086465/>'^b' . # Trading Places\n\n\n# ================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0068756/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0091042/>'^b" . # Ferris Bueller's Day Off\n\n\n# ======================="..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0069945/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0113247/>'^b', # La haine\n <https://www.imdb.com'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0070548/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt3449200/>'^b', # Shooting Clerks\n <https://www.i'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0071160/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0088513/>'^b', # The Equalizer\n <https://www.imd'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0073551/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0243133/>'^b", # The Man Who Wasn't There\n <http"..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0074512/actor.html: at line 12 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0327321/>'^b', # Kr\xc3\xb8niken\n <https://www.imdb.co'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0075500/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0083866/>'^b' . # E.T. the Extra-Terrestrial\n\n\n# ====================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0077669/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0087884/>'^b' . # Paris, Texas\n\n\n# ==================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0080641/actor.html: at line 25 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' \n schema:performerIn <https://www.imdb.com/title/tt515'^b'9794/>, # Lastanzaoscura\n <https://'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0083585/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt7697132/>'^b', # Beautiful in the Morning\n <http'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0085499/actor.html: at line 25 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' \n schema:performerIn <https://www.imdb.com/title/tt14373'^b'30/>, # Tracy\n <https://www.imdb.co'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0086169/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0111161/>'^b' . # The Shawshank Redemption\n\n\n# ======================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0088122/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0119822/>'^b' . # As Good as It Gets\n\n\n# ============================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0092104/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b'\n schema:performerIn <https://www.imdb.com/title/tt011879'^b'9/> . # Life Is Beautiful\n\n\n# ==========================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0094770/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b'\n schema:performerIn <https://www.imdb.com/title/tt011026'^b'5/>, # Killing Zoe\n <https://www.im'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0096828/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0243133/>'^b", # The Man Who Wasn't There\n <http"..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0098087/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0117666/>'^b', # Sling Blade\n <https://www.imdb.'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0099375/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0113247/>'^b' . # La haine\n\n\n# ======================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0101113/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0106808/>'^b', # Empty Cradle\n <https://www.imdb'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0101321/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0093409/>'^b', # Lethal Weapon\n <https://www.imd'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0103759/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0132920/>'^b', # Dish Dogs\n <https://www.imdb.co'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0103782/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0058796/>'^b', # Days of Our Lives\n <https://www'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0105166/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0117478/>'^b', # The Right to Remain Silent\n <ht'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0108683/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0119217/>'^b' . # Good Will Hunting\n\n\n# =============================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0113976/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0117666/>'^b' . # Sling Blade\n\n\n# ===================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0114139/actor.html: at line 18 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0085794/>'^b', # The King of Comedy\n <https://ww'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0115690/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0175767'^b'/>, # In Schwimmen-zwei-V\xc3\xb6gel\n <ht'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0116125/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0114798/>'^b', # Unstrung Heroes\n <https://www.i'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0118473/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0451195/>'^b', # Self Help\n <https://www.imdb.co'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0120968/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0157245/>'^b', # Trinity\n <https://www.imdb.com/'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0121355/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0087363/>'^b' . # Gremlins\n\n\n# ======================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0123500/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt1438176/>'^b', # Fright Night\n <https://www.imdb'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0123738/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0115675/>'^b', # The Big Brass Ring\n <https://ww'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0126124/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0107207/>'^b' . # In the Name of the Father\n\n\n# ======================'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0126312/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0106017/>'^b', # Grace Under Fire\n <https://www.'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0130944/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt3006802/>'^b', # Outlander\n <https://www.imdb.co'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0132480/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0245712/>'^b', # Amores perros\n <https://www.imd'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0132693/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0097631/>'^b', # Judgement\n <https://www.imdb.co'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0134774/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0208092/>'^b' . # Snatch\n\n\n# ========================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0135626/actor.html: at line 24 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' \n schema:performerIn <https://www.imdb.com/title/tt02249'^b"83/>, # ...Where's Rodney?\n <https:"..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0136128/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0118694/>'^b', # In the Mood for Love\n <https://'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0137315/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt3980310/>'^b', # Occupants\n <https://www.imdb.co'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0137630/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt4404654/>'^b', # The 19th Hole\n <https://www.imd'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0138210/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0097493/>'^b', # Heathers\n <https://www.imdb.com'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0144087/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt3107030/>'^b', # Brujo\n <https://www.imdb.com/ti'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0144635/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt2776900/>'^b', # CopStories\n <https://www.imdb.c'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0147168/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0086879/>'^b' . # Amadeus\n\n\n# ========================================'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0147465/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0120190/>'^b', # Sprung\n <https://www.imdb.com/t'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0147544/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt9151310/>'^b', # Vingt-cinq\n <https://www.imdb.c'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0148738/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt5311790/>'^b', # The A Word\n <https://www.imdb.c'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0152880/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0099348/>'^b' . # Dances with Wolves\n\n\n# ============================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0156263/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0117666/>'^b' . # Sling Blade\n\n\n# ===================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0160696/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0090481/>'^b', # Matlock\n <https://www.imdb.com/'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0160913/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0105603/>'^b', # To Be the Best\n <https://www.im'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0164159/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0109445/>'^b' . # Clerks\n\n\n# ========================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0165374/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0350411/>'^b', # Fat Cow Motel\n <https://www.imd'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0169479/actor.html: at line 18 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0305900/>'^b', # No Vladimir\n <https://www.imdb.'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0170924/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt11860462/>'^b', # A Horse Called Wish\n <https://w'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0172172/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0396534/>'^b', # The Clock Is Ticking\n <https://'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0178594/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0132477/>'^b', # October Sky\n <https://www.imdb.'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0179967/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0101507/>'^b', # Boyz n the Hood\n <https://www.i'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0181922/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0105236/>'^b' . # Reservoir Dogs\n\n\n# ================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0183837/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0118694/>'^b', # In the Mood for Love\n <https://'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0188622/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0093922/>'^b', # Scenes from the Goldmine\n <http'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0188728/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0309530/>'^b', # Down with Love\n <https://www.im'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0188949/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0107207/>'^b' . # In the Name of the Father\n\n\n# ======================'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0190712/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0109445/>'^b' . # Clerks\n\n\n# ========================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0192075/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0332280/>'^b', # The Notebook\n <https://www.imdb'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0192368/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0108724/>'^b', # Chicago Hope\n <https://www.imdb'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0195234/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0106489/>'^b' . # A Bronx Tale\n\n\n# ==================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0195286/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0106489/>'^b' . # A Bronx Tale\n\n\n# ==================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0196839/actor.html: at line 18 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt6190050'^b'/>, # Art of Crime\n <https://www.im'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0198022/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt1979320/>'^b', # Rush\n <https://www.imdb.com/tit'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0198470/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt5722214/>'^b', # Stan Against Evil\n <https://www'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0201616/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0093253/>'^b', # In the Mood\n <https://www.imdb.'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0202384/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt5772198/'^b">, # Tournage d'un Film\n <https://w"..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0203525/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0114369/>'^b' . # Seven\n\n\n# =========================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0203586/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0082010/>'^b', # An American Werewolf in London\n '..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0204983/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0094737/>'^b', # Big\n <https://www.imdb.com/titl'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0214210/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0208092/>'^b' . # Snatch\n\n\n# ========================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0214743/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0089853/>'^b', # The Purple Rose of Cairo\n <http'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0218540/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0111945/>'^b', # The Drew Carey Show\n <https://w'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0218562/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0086879/>'^b' . # Amadeus\n\n\n# ========================================'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0221103/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt7222942'^b'/>, # Vis-\xc3\xa0-vis\n <https://www.imdb'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0226495/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0086879/>'^b' . # Amadeus\n\n\n# ========================================'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0227600/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0168629/>'^b' . # Dancer in the Dark\n\n\n# ============================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0228261/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0086465/>'^b' . # Trading Places\n\n\n# ================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0231551/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0088258/>'^b' . # This Is Spinal Tap\n\n\n# ============================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0231605/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt2254796/>'^b', # Not for Human Consumption\n <htt'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0234816/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0095953/>'^b' . # Rain Man\n\n\n# ======================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0234836/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0095953/>'^b' . # Rain Man\n\n\n# ======================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0234857/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0095953/>'^b' . # Rain Man\n\n\n# ======================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0234871/actor.html: at line 18 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' \n schema:performerIn <https://www.imdb.com/title/tt20690'^b'82/>, # The 90 Minute Lunch\n <https'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0234874/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0095953/>'^b' . # Rain Man\n\n\n# ======================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0235704/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0094737/>'^b' . # Big\n\n\n# ============================================'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0235914/actor.html: at line 16 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0082614/>'^b', # The Killing of Angel Street\n <h'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0236148/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0137523/>'^b' . # Fight Club\n\n\n# ====================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0238568/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0092322/>'^b', # Biography\n <https://www.imdb.co'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0239008/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0190332/>'^b', # Crouching Tiger, Hidden Dragon\n '..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0240290/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt6189268/>'^b", # Pau, la for\xc3\xa7a d'un silenci\n <h"..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0242988/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0066808/>'^b', # Bananas\n <https://www.imdb.com/'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0243804/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt2277860/>'^b', # Finding Dory\n <https://www.imdb'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0243980/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0101507/>'^b' . # Boyz n the Hood\n\n\n# ================================'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0248417/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b'\n schema:performerIn <https://www.imdb.com/title/tt762343'^b'0/>, # Autobiograf\xc3\xada para corregir hubieras\n '..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0249009/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0116282/>'^b' . # Fargo\n\n\n# =========================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0251038/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0129167/>'^b', # The Iron Giant\n <https://www.im'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0251059/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0119217/>'^b' . # Good Will Hunting\n\n\n# =============================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0255455/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt3281822/>'^b', # 21st Century Romance\n <https://'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0255895/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0095159/>'^b', # A Fish Called Wanda\n <https://w'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0258931/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0080455/>'^b', # The Blues Brothers\n <https://ww'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0265969/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0101507/>'^b', # Boyz n the Hood\n <https://www.i'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0266637/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0093389/>'^b' . # The Last Emperor\n\n\n# ==============================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0266711/actor.html: at line 16 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt1578869/>'^b', # Young Hearts Run Free\n <https:/'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0267713/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt4706558/>'^b', # Public Enemy\n <https://www.imdb'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0269431/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt1838603/>'^b", # Mr. Morgan's Last Love\n <https:"..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0271263/actor.html: at line 18 of <>:
Bad syntax (objectList expected) at ^ in:
"...b'\n schema:performerIn <https://www.imdb.com/title/tt123751'^b'96/>, # Rep\xc3\xbablica do Peru\n <https:'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0271801/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0190332/>'^b' . # Crouching Tiger, Hidden Dragon\n\n\n# ================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0272412/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0249462/>'^b', # Billy Elliot\n <https://www.imdb'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0272817/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0082010/>'^b' . # An American Werewolf in London\n\n\n# ================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0276074/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt6090860/>'^b', # Dirty Work\n <https://www.imdb.c'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0276288/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0087538/>'^b' . # The Karate Kid\n\n\n# ================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0279351/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0086465/>'^b' . # Trading Places\n\n\n# ================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0279601/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0106977/>'^b' . # The Fugitive\n\n\n# ==================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0279879/actor.html: at line 12 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0089304/>'^b', # Hot Moves\n <https://www.imdb.co'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0281044/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt5943468/>'^b', # One Track Mind\n <https://www.im'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0281073/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0240291/>'^b', # Pobol y Cwm\n <https://www.imdb.'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0281917/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0907683/>'^b', # Beck\n <https://www.imdb.com/tit'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0285047/actor.html: at line 18 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' \n schema:performerIn <https://www.imdb.com/title/tt71318'^b'70/>, # Wolf Warrior 2\n <https://ww'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0285305/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0472596/>'^b', # Lift\n <https://www.imdb.com/tit'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0285492/actor.html: at line 23 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' \n schema:performerIn <https://www.imdb.com/title/tt53117'^b'90/>, # The A Word\n <https://www.im'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0287175/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt2802160/>'^b', # Razor\n <https://www.imdb.com/ti'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0287452/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt1570512/>'^b', # La Riera\n <https://www.imdb.com'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0287536/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0106977/>'^b' . # The Fugitive\n\n\n# ==================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0291068/actor.html: at line 18 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0086879/>'^b', # Amadeus\n <https://www.imdb.com/'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0296045/actor.html: at line 18 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0088247'^b'/>, # The Terminator\n <https://www.'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0299275/actor.html: at line 18 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0163988/>'^b', # Bringing Out the Dead\n <https:/'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0302403/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0086465/>'^b' . # Trading Places\n\n\n# ================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0309832/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0084805/>'^b', # Tootsie\n <https://www.imdb.com/'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0315513/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt4581576/>'^b', # Aftermath\n <https://www.imdb.co'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0316862/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0081505/>'^b' . # The Shining\n\n\n# ===================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0319541/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0118715/>'^b', # The Big Lebowski\n <https://www.'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0319994/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0086979/>'^b' . # Blood Simple\n\n\n# ==================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0320566/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0095647/>'^b' . # Mississippi Burning\n\n\n# ============================'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0321291/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt8030888/>'^b', # Sono un supereroe\n <https://www'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0321798/actor.html: at line 24 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' \n schema:performerIn <https://www.imdb.com/title/tt03073'^b'28/>, # The Pirates of Central Park\n '..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0323533/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0093389/>'^b', # The Last Emperor\n <https://www.'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0327046/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0109830/>'^b' . # Forrest Gump\n\n\n# ==================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0327570/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0175880/>'^b' . # Magnolia\n\n\n# ======================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0327595/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0085794/>'^b' . # The King of Comedy\n\n\n# ============================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0328640/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0491712/>'^b', # True Crime Scene\n <https://www.'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0330139/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0163924/>'^b', # All Saints\n <https://www.imdb.c'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0332216/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0439879/>'^b', # Wildfire\n <https://www.imdb.com'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0333971/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0247087/>'^b', # The District\n <https://www.imdb'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0337333/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0120595/>'^b', # Babe: Pig in the City\n <https:/'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0337792/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0090756/>'^b' . # Blue Velvet\n\n\n# ===================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0338375/actor.html: at line 24 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' \n schema:performerIn <https://www.imdb.com/title/tt01085'^b"50/>, # What's Eating Gilbert Grape\n "..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0339443/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0095647/>'^b' . # Mississippi Burning\n\n\n# ============================'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0341279/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0446065/>'^b', # Vegas Whales Tales\n <https://ww'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0341536/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0092991/>'^b' . # Evil Dead II\n\n\n# ==================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0346378/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0107079/>'^b', # Sugar Hill\n <https://www.imdb.c'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0350147/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt10291544/>'^b", # Cetto c'\xc3\xa8 senzadubbiamente\n <h"..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0353228/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt1587000/>'^b', # Rake\n <https://www.imdb.com/tit'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0353304/actor.html: at line 12 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0117500/>'^b', # The Rock\n <https://www.imdb.com'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0354902/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt1993396/>'^b', # The Enforcer\n <https://www.imdb'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0356098/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0088258/>'^b' . # This Is Spinal Tap\n\n\n# ============================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0358953/actor.html: at line 13 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0117666/>'^b', # Sling Blade\n <https://www.imdb.'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0360545/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0081398/>'^b', # Raging Bull\n <https://www.imdb.'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0361656/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt1386685/>'^b', # Yakuza 3\n <https://www.imdb.com'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0366413/actor.html: at line 25 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' \n schema:performerIn <https://www.imdb.com/title/tt01106'^b'22/>, # Naked Gun 33 1/3: The Final Insult\n '..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0367211/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt1567254/>'^b', # The Good Guys\n <https://www.imd'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0367558/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0090481/>'^b', # Matlock\n <https://www.imdb.com/'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0373285/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0108550/>'^b" . # What's Eating Gilbert Grape\n\n\n# ===================="..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0376046/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0081834/>'^b', # Das Boot\n <https://www.imdb.com'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0379033/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt2748966/>'^b', # Blood Brothers\n <https://www.im'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0380248/actor.html: at line 12 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0359161/>'^b', # Dirt\n <https://www.imdb.com/tit'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0382087/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0091064/>'^b' . # The Fly\n\n\n# ========================================'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0382256/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0118311/>'^b', # Fallen Angels\n <https://www.imd'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0385701/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0086879/>'^b', # Amadeus\n <https://www.imdb.com/'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0387533/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0115151/>'^b', # Dark Skies\n <https://www.imdb.c'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0389713/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0087884/>'^b' . # Paris, Texas\n\n\n# ==================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0390523/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0111285/>'^b', # The Steal\n <https://www.imdb.co'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0391278/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0096438/>'^b', # Who Framed Roger Rabbit\n <https'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0391955/actor.html: at line 12 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0097262/>'^b', # Eddie and the Cruisers II: Eddie Lives!\n '..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0394308/actor.html: at line 24 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' \n schema:performerIn <https://www.imdb.com/title/tt15824'^b"58/>, # Jerry Bruckheimer's Chase\n "..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0399644/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0118749/>'^b' . # Boogie Nights\n\n\n# =================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0400059/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0112471/>'^b' . # Before Sunrise\n\n\n# ================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0400635/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt8521462/>'^b', # Savage\n <https://www.imdb.com/t'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0401771/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0116230/>'^b', # Eskimo Day\n <https://www.imdb.c'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0402512/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt1697716/>'^b', # Room Serviced\n <https://www.imd'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0402875/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0085334/>'^b', # A Christmas Story\n <https://www'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0402974/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0213802/>'^b', # Legion of the Dead\n <https://ww'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0407419/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0093389/'^b'>, # The Last Emperor\n <https://www'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0411763/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt4498614/>'^b', # Taxi Driver no Suiri Nisshi 18\n '..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0413009/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt1988573/>'^b', # Trap.com\n <https://www.imdb.com'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0419773/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0365748/>'^b' . # Shaun of the Dead\n\n\n# =============================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0419930/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt3449200/>'^b', # Shooting Clerks\n <https://www.i'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0420188/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0313792/>'^b', # Anything Else\n <https://www.imd'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0422115/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0112471/>'^b' . # Before Sunrise\n\n\n# ================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0427143/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0095953/>'^b' . # Rain Man\n\n\n# ======================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0429514/actor.html: at line 16 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0310455/>'^b", # Foyle's War\n <https://www.imdb."..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0430091/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0108550/>'^b", # What's Eating Gilbert Grape\n <h"..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0431760/actor.html: at line 12 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt7221388/>'^b', # Cobra Kai\n <https://www.imdb.co'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0432517/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt1828327/>'^b', # Last Man Standing\n <https://www'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0434640/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt2558194/>'^b", # Shoten'in Michiru no mi no ue banashi\n "..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0434650/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt8803912/>'^b', # Dixie Kings\n <https://www.imdb.'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0435669/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0085794/>'^b' . # The King of Comedy\n\n\n# ============================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0436608/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt4877728/>'^b', # Kingdom Hearts HD 1.5 Remix\n <h'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0436635/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b'\n schema:performerIn <https://www.imdb.com/title/tt655957'^b'8/>, # Matasaburo the Wind Boy\n <ht'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0436788/actor.html: at line 12 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt1249457'^b'4/>, # M.U.G.E.N\n <https://www.imdb'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0441763/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0416779/>'^b', # God of War\n <https://www.imdb.c'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0441971/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b'\n schema:performerIn <https://www.imdb.com/title/tt114752'^b'3/>, # Doraemon: Nobita and the Kingdom of Clouds\n '..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0443813/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0097351/>'^b' . # Field of Dreams\n\n\n# ================================'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0445479/actor.html: at line 24 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' \n schema:performerIn <https://www.imdb.com/title/tt01724'^b'95/> . # Gladiator\n\n\n# =================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0447166/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0101114/>'^b', # Heartbeat\n <https://www.imdb.co'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0448824/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0093629/>'^b', # A Nightmare on Elm Street 3: Dream Warriors\n '..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0449048/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt6910006/>'^b', # End of Sentence\n <https://www.i'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0449534/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0088247/>'^b', # The Terminator\n <https://www.im'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0451898/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt8267604/>'^b' . # Capernaum\n\n\n# ======================================'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0452274/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0092991/>'^b' . # Evil Dead II\n\n\n# ==================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0453903/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt3280574/>'^b', # Hollow\n <https://www.imdb.com/t'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0459188/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0092312/>'^b', # 21 Jump Street\n <https://www.im'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0462332/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0114084/>'^b', # Panther\n <https://www.imdb.com/'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0465420/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0285742/>'^b", # Monster's Ball\n <https://www.im"..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0465499/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt1110239/>'^b', # Chut yuet ho fung\n <https://www'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0467449/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0168629/'^b'> . # Dancer in the Dark\n\n\n# ============================'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0468967/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0977214/>'^b', # Hero Wanted\n <https://www.imdb.'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0474696/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0112471/>'^b' . # Before Sunrise\n\n\n# ================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0475991/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0112471/>'^b' . # Before Sunrise\n\n\n# ================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0476095/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0964499/>'^b', # Bawa Duka\n <https://www.imdb.co'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0477082/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0116001/>'^b', # Tri-Star\n <https://www.imdb.com'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0477348/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0098954/>'^b', # Yellowthread Street\n <https://w'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0477765/actor.html: at line 24 of <>:
Bad syntax (objectList expected) at ^ in:
"...b'.\n \n schema:performerIn <https://www.imdb.com/title/tt'^b'10380814/>, # Dino Girl Gauko\n <htt'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0481115/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b'\n schema:performerIn <https://www.imdb.com/title/tt092048'^b'9/>, # Inspector Montalbano\n <https'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0482839/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0104764/>'^b', # Love Can Be Murder\n <https://ww'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0483932/actor.html: at line 18 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' \n schema:performerIn <https://www.imdb.com/title/tt00838'^b'66/> . # E.T. the Extra-Terrestrial\n\n\n# ================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0484099/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0165581/>'^b', # The King of Queens\n <https://ww'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0492504/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0085794/>'^b' . # The King of Comedy\n\n\n# ============================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0493706/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0094794/>'^b', # The Brain\n <https://www.imdb.co'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0494922/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt13318492/>'^b', # The Lion King DVD Read-Along\n <'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0495476/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt7736478/>'^b', # The Traitor\n <https://www.imdb.'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0503266/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0102138/>'^b', # JFK\n <https://www.imdb.com/titl'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0505835/actor.html: at line 16 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0111477/>'^b', # Trapped in Paradise\n <https://w'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0505979/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0118747/>'^b', # Blues Brothers 2000\n <https://w'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0508441/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0173909/>'^b', # Honolulu CRU\n <https://www.imdb'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0508705/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt2411288/>'^b', # Diary of a Champion\n <https://w'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0509408/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0313043/>'^b', # CSI: Miami\n <https://www.imdb.c'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0512761/actor.html: at line 12 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0249462/>'^b', # Billy Elliot\n <https://www.imdb'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0513869/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0106067/>'^b', # Missing Persons\n <https://www.i'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0515057/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt6449886/>'^b', # Nankou in 1937\n <https://www.im'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0517011/actor.html: at line 18 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0103639/>'^b', # Aladdin\n <https://www.imdb.com/'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0518819/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0105585/>'^b', # Thunderheart\n <https://www.imdb'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0519378/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0112818/>'^b', # Dead Man Walking\n <https://www.'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0521788/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0110978/>'^b', # The Return of the Texas Chainsaw Massacre\n '..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0522027/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0103064/>'^b' . # Terminator 2: Judgment Day\n\n\n# ====================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0528546/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0119217/>'^b' . # Good Will Hunting\n\n\n# =============================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0528951/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt6489202/>'^b', # Clash of Futures\n <https://www.'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0529147/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt2455692/>'^b', # The Dickie Dick Show\n <https://'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0532489/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt3011894/'^b'>, # Wild Tales\n <https://www.imdb.'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0532943/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0112097/>'^b', # Night Stand\n <https://www.imdb.'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0533668/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt3850064/>'^b', # An Innocent Man? Sgeulachd Oscar Slater\n '..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0534249/actor.html: at line 18 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' \n schema:performerIn <https://www.imdb.com/title/tt00988'^b'44/>, # Law & Order\n <https://www.i'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0535916/actor.html: at line 12 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0093818/>'^b', # Radio Days\n <https://www.imdb.c'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0536872/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0088258/>'^b' . # This Is Spinal Tap\n\n\n# ============================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0537447/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0113071/'^b'>, # First Knight\n <https://www.imd'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0540612/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt8553072/>'^b', # Only Dance Can Save Us\n <https:'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0542647/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0085959/>'^b' . # The Meaning of Life\n\n\n# ============================'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0542721/actor.html: at line 24 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' \n schema:performerIn <https://www.imdb.com/title/tt44291'^b'46/>, # Die letzten Millionen\n <htt'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0542957/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0111161/>'^b' . # The Shawshank Redemption\n\n\n# ======================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0543963/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0113247/>'^b' . # La haine\n\n\n# ======================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0546017/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0120735/>'^b' . # Lock, Stock and Two Smoking Barrels\n\n\n# ============'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0548373/actor.html: at line 18 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0094574/>'^b', # Unsolved Mysteries with Dennis Farina\n '..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0551665/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt10645308/>'^b', # Jeritan Malam\n <https://www.imd'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0555017/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b'\n schema:performerIn <https://www.imdb.com/title/tt941563'^b'2/>, # Merl\xc3\xad. Sapere Aude\n <https:'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0555483/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt1403804'^b'2/>, # 100% Pascal-sensei\n <https:/'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0556977/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0279111/>'^b', # Gods and Generals\n <https://www'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0557779/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0180093/>'^b', # Requiem for a Dream\n <https://w'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0559604/actor.html: at line 24 of <>:
Bad syntax (objectList expected) at ^ in:
"...b'\n \n schema:performerIn <https://www.imdb.com/title/tt0'^b'388629/>, # One Piece\n <https://www'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0560006/actor.html: at line 18 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' \n schema:performerIn <https://www.imdb.com/title/tt03696'^b'10/>, # Jurassic World\n <https://ww'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0560593/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0098844/>'^b', # Law & Order\n <https://www.imdb.'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0560667/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0126894/>'^b', # Ermak\n <https://www.imdb.com/ti'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0563850/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0086979/>'^b' . # Blood Simple\n\n\n# ==================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0564349/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0111995/>'^b', # The Hanging Gale\n <https://www.'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0568522/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt31323159/>'^b', # Bernice Summerfield\n <https://w'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0568958/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt1587000/>'^b', # Rake\n <https://www.imdb.com/tit'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0570096/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt2088783/>'^b", # Hegel's Bagels\n <https://www.im"..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0571743/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0251539/>'^b', # South of the Border\n <https://w'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0574014/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0382668/>'^b', # England Expects\n <https://www.i'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0579964/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0096089/>'^b', # Sharing Richard\n <https://www.i'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0581333/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0977214/>'^b', # Hero Wanted\n <https://www.imdb.'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0585514/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt2768758/>'^b', # Dig: The Incident at Sumter Plantation\n '..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0588279/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0100053/>'^b', # Loose Cannons\n <https://www.imd'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0590342/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt1074638/>'^b', # Skyfall\n <https://www.imdb.com/'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0591941/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt9569482/>'^b', # Amor de cans\n <https://www.imdb'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0595025/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0087884/>'^b' . # Paris, Texas\n\n\n# ==================================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0598963/actor.html: at line 25 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' \n schema:performerIn <https://www.imdb.com/title/tt0106'^b'489/> . # A Bronx Tale\n\n\n# =============================='..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0600914/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0112339/>'^b', # Amanda and the Alien\n <https://'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0601284/actor.html: at line 24 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt9778190'^b'/>, # The Journalist\n <https://www.'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0601328/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt1987680/>'^b', # The Upside\n <https://www.imdb.c'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0601664/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0120382/>'^b', # The Truman Show\n <https://www.i'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0602968/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt5482930/'^b'>, # Storyland\n <https://www.imdb.c'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0605281/actor.html: at line 17 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt2474390/>'^b', # Nene: Onna taik\xc3\xb4ki\n <https://w'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0605992/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt6826534/>'^b', # Sauver les apparences\n <https:/'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0606505/actor.html: at line 11 of <>:
Bad syntax (objectList expected) at ^ in:
"...b' schema:performerIn <https://www.imdb.com/title/tt0115837/>'^b', # Acts of Love\n <https://www.imdb'..."
/home/ioannis/PycharmProjects/imdb4m/scraper/movies/actors/nm0609825/actor.html: at line 11 of <>: