-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsyntax_error_file.txt
More file actions
1751 lines (1400 loc) · 58.4 KB
/
syntax_error_file.txt
File metadata and controls
1751 lines (1400 loc) · 58.4 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
syntax error in file: books1997.csv.txt
====================
Error: too many fields
Record: "Western Movies - A TV and Video Guide to 4,200 Genre Films",Michael R. Pitts,39.95,9780786404216,MTV,1997,
syntax error in file: books1998.csv.txt
====================
Error: missing author
Record: Back In The Saddle - Essays On Western Film And Television Actors,,35.95,9780786405664,MTV,1998
syntax error in file: books2000.csv.txt
====================
Error: missing author
Record: African American Jazz And Rap - Social And Philosophical Examinations of Black Expressive Behavior,,39.95,9780786408283,MRB,2000
syntax error in file: books2000.csv.txt
====================
Error: too many fields
Record: Golden Images - 41 Essays On Silent Film Stars,Eve Golden,35.95,9780786408344,MTV,2000,
syntax error in file: books2000.csv.txt
====================
Error: missing genre
Record: Zombie Movie Encyclopedia,Peter Dendle,30.95,9780786408597,,2000
syntax error in file: books2000.csv.txt
====================
Error: missing author
Record: Baseball - Day-By-Day In Baseball History,,35.95,9780786408863,SSM,2000
syntax error in file: books2001.csv.txt
====================
Error: invalid genre
Record: "Great Radio Heroes, Revised Edition",Jim Harmon,35.95,9780786408504,MBR,2001
syntax error in file: books2002.csv.txt
====================
Error: invalid genre
Record: "Gravesites of Southern Musicians - A Guide To Over 300 Jazz, Blues, Country And Rock Performers' Burial Places",Edward Amos,35.95,9780786412709,MBR,2002
syntax error in file: books2002.csv.txt
====================
Error: missing author
Record: Brooklyn Film - Essays In The History of Filmmaking,,35.95,9780786414055,MTV,2002
syntax error in file: books2002.csv.txt
====================
Error: missing author
Record: "Cinema Arthuriana - Twenty Essays, Revised Edition",,49.5,9780786413447,MTV,2002
syntax error in file: books2002.csv.txt
====================
Error: missing author
Record: Film And Knowledge - Essays On The Integration of Images And Ideas,,35.95,9780786413201,MTV,2002
syntax error in file: books2002.csv.txt
====================
Error: missing author
Record: "Robards, Jason Remembered - Essays And Recollections",,35.95,9780786413560,MTV,2002
syntax error in file: books2002.csv.txt
====================
Error: missing author
Record: Baseball - Baseball In The Carolinas: 25 Essays on the States' Hardball Heritage,,30.95,9780786413188,SSM,2002
syntax error in file: books2003.csv.txt
====================
Error: invalid genre
Record: Wagner and Suicide,John Louis DiGaetani,39.95,9780786414772,BRM,2003
syntax error in file: books2003.csv.txt
====================
Error: missing author
Record: Survivor Lessons - Essays On Communication And Reality Television,,35.95,9780786416684,MTV,2003
syntax error in file: books2003.csv.txt
====================
Error: missing author
Record: War And Film In America - Historical And Critical Essays,,30.95,9780786416738,MTV,2003
syntax error in file: books2004.csv.txt
====================
Error: invalid genre
Record: Up From The Vault - Rare Thrillers of The 1920S And 1930S,John T. Soister,49.5,9780786417452,CTV,2004
syntax error in file: books2004.csv.txt
====================
Error: invalid genre
Record: Radio's Captain Midnight - The Wartime Biography,Stephen A. Kallis Jr.,26.96,9780786421763,BRM,2004
syntax error in file: books2004.csv.txt
====================
Error: missing author
Record: Almost Shakespeare - Reinventing His Works For Cinema And Television,,30.95,9780786419098,MTV,2004
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: "Crumb, R. - The Life And Times of R. Crumb",,5.95,0312195710,CCB,2005
syntax error in file: books2005.csv.txt
====================
Error: invalid genre
Record: Hanna-Barbera Cartoons,Michael Mallory,18.95,0883631083,CBB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: Superhero Book,,24.95,1578591546,CCB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: Antique Trader - Antiques & Collectibles 2006 Price Guide,Kyle Husfloen,16.95,,HCB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: Antiques 101,Frank Farmer Loomis IV,17.95,,HCB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: O'Brien's Collecting Toy Cars & Trucks,,21.95,0873498364,HCB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: Warman's Toys Field Guide,,-9.95,0873498178,HCB,2005
syntax error in file: books2005.csv.txt
====================
Error: invalid genre
Record: "Wonder of American Toys, 1920-1950",Charles Dee Sharp,14.95,1888054700,HBC,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: Abba - The Complete Guide To Their Music,Carl Magnus Palm,4.95,,MRB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: "Baker, Josephine Story",Ean Wood,7.95,,MRB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: Beatles - True Beginnings,Roag Best & Pete Best & Rory Best,12.95,,MRB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: Beatles - Walrus Was Ringo: 101 Beatles Myths Debunked,Alan Clayson & Spencer Leigh,14.95,,MRB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: Big Star,Rob Jovanovic,12.95,,MRB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: Billboard Book of Number One Adult Contemporary Hits,Wesley Hyatt,5.95,,BBM,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: Billboard Hot 100 Charts - The Sixties,Joel Whitburn,56.95,,MRB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: Blue Note - Album Cover Art: The Ultimate Collection,,14.95,0811836886,MRB,2005
syntax error in file: books2005.csv.txt
====================
Error: invalid genre
Record: "Bonham, John - A Thunder of Drums",Chris Welch & Geoff Nicholls,12.95,0879306580,MMR,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: Bristol Sessions - Writings About The Big Bang of Country Music,,30.95,9780786419456,MRB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: "Dylan, Bob Anthology, Volume 2 - 20 Years of ISIS",,16.95,1842403095,MRB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: From the Velvets to the Voidoids,Clinton Heylin,12.95,,MRB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: "Gaye, Marvin, My Brother",Frankie Gaye & Fred E. Basten,14.95,,MRB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: Guitar - Guitar Chord & Scale Decks,,14.95,0825629721,MRB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: Hot Wacks Supplement 5,,12.95,0969808089,MRB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: Hot Wacks Supplement 7,,12.95,,MRB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: Iggy & The Stooges - Raw Power,Mick Rock,19.95,,MRB,2005
syntax error in file: books2005.csv.txt
====================
Error: invalid genre
Record: It's Only Rock And Roll: Rock And Roll Currents In Contemporary Art,David S. Rubin,3.95,3791316273,RBM,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: Kiss - Warman's Kiss Collectibles Field Guide,Tom Shannon,9.95,,MRB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: Led Zeppelin - Press Reports...,,19.95,1894959175,MRB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: "Lennon, John - New York Years",Bob Gruen,19.95,,MRB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: "Monkees - Hey, Hey, We're The Monkees",,5.95,1575440121,MRB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: "Presley, Elvis - Elvis + Marilyn: 2X Immortal",,3.95,0847818829,MRB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: Radiohead - CD-Sized Book,Mick St Michael,1,,MRB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: Rock Photography - Showtime,Steve Gullick,3.95,,MRB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: Rock Posters - Swag 2: Rock Posters of the '90s,Spencer Drate & Judith Salavetz,19.95,,MRB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: Rockabilly - A Forty-Year Journey,Billy Poore,13.95,,MRB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: Rolling Stones - A Life On The Road,Jools Holland & Dora Loewenstein,14.95,,MRB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: Swinging Big Bands...Into The Millennium,Al Raymond,12.95,,MRB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: VH1 - 100 Greatest Albums,,3.95,0743448766,MRB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: Yardbirds,Alan Clayson,16.95,,MRB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: Attack of The B Queens,,19.95,1887664084,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: "Carson, Johnny - Here's Johnny!",Ed McMahon,4.95,,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: "Chaney, Jr., Lon - Midnight Marquee Actors Series: Lon Chaney, Jr.",,19.95,1887664157,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: "Disney, Walt - Walt In Wonderland: Silent Films of Walt Disney",,4.95,0801864291,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: Fantastic Journeys: Sci-Fi Memories,,19.95,1887664408,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: too many fields
Record: "First Hollywood Sound Shorts 1926-1931, The",,,44.95,9780786443192,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: First World War and Popular Cinema,,5.95,,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: Forgotten Horrors 2: Beyond The Horror Ban,Michael H. Price & George E. Turner,19.95,,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: Frankenstein - We Belong Dead: Frankenstein On Film,,19.95,1887664092,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: "Hollywood's Maddest Doctors: A Biography of Lionel Atwill, Colin Clive And George Zucco",Gregory William Mank,19.95,,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: It's Christmas Time At The Movies: An A-Z Guide To Our Favorite Holiday Films,,19.95,188766419X,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: Japanese Movie Posters,,4.95,0972312455,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: King Kong - History of a Movie Icon: From Fay Wray to Peter Jackson,Ray Morton,16.95,,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: "Latin American Cinema - Essays On Modernity, Gender And National Identity",,35.95,9780786420049,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: "Lorre, Peter - Midnight Marquee Actors Series: Peter Lorre",,19.95,1887664300,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: Mad About Movies (#3),,7.95,,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: Mad About Movies (#4),,7.95,,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: Memories of Hammer,,24.95,1884664181,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: Midnight Marquee (Issue #71 / 72),,7.95,,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: Midnight Marquee (Issue #73 / 74),,7.95,,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: Movie Mystique (#1),,4.95,,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: Movie Mystique (#2),,4.95,,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: "Naschy, Paul - Memoirs of A Wolfman",,19.95,1887664386,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: "Performers' Television Credits, 1948-2000, Volume 2: G-M",David M. Inman,109.95,,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: "Performers' Television Credits, 1948-2000, Volumes 1-3",David M. Inman,264.95,,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: "Price, Vincent - Midnight Marquee Actors Series: Vincent Price",,19.95,1887664211,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: "Salmi, Albert - Spotlights & Shadows: The Albert Salmi Story",Sandra Grabman,14.95,,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: Sleazoid Express,,4.95,0743215834,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: "Sorkin, Aaron - Essays On The Politics, Poetics And Sleight of Hand In The Films And Television Series",,30.95,9780786421206,MTV,1005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: Trash - The Graphic Genius of Xploitation Movie Posters,Jacques Boyreau,14.95,,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: TV A-Go-Go - Rock on TV from American Bandstand to American Idol,,14.95,0811834174,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: "Williams, Guy - The Man Behind the Mask",Antoinette Girgenti Lane,19.95,,MTV,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: "Warhol, Andy - Greetings from Andy (Warhol): Christmas at Tiffany's",John Loring,7.95,,NEB,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: Baseball - 1964 Phillies: The Story of Baseball's Most Memorable Collapse,,26.96,9780786421176,SSM,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: "Baseball - Baseball / Literature / Culture: Essays, 1995-2001",,39.95,0786416432,SSM,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: "Baseball - Baseball / Literature / Culture: Essays, 2002-2003",,39.95,0786418516,SSM,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: Baseball - Baseball Anthology,,9.95,0810991799,SSM,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: Baseball - Baseball as America: Seeing Ourselves Through Our National Game,,11.95,0792238982,SSM,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: "Baseball - Cooperstown Symposium On Baseball And American Culture, 1997 (Jackie Robinson)",,29.95,0786408316,SSM,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: "Baseball - Cooperstown Symposium On Baseball And American Culture, 1998",,29.95,0786409541,SSM,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: "Baseball - Cooperstown Symposium On Baseball And American Culture, 1999",,29.95,0786408324,SSM,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: "Baseball - Cooperstown Symposium On Baseball And American Culture, 2000",,29.95,0786411201,SSM,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: "Baseball - Cooperstown Symposium On Baseball And American Culture, 2001",,29.95,0786413573,SSM,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: "Baseball - Cooperstown Symposium On Baseball And American Culture, 2002",,29.95,0786415703,SSM,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: "Baseball - Cooperstown Symposium On Baseball And American Culture, 2003-2004",,29.95,0786421967,SSM,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: Golf - Classic Golf: Photographs of Walter Iooss Jr.,,5.95,0810949830,SSM,2005
syntax error in file: books2005.csv.txt
====================
Error: missing author
Record: Golf - Golf's Greatest Moments: Illustrated History by the Game's Finest Writers,,19.95,0810946319,SSM,2005
syntax error in file: books2005.csv.txt
====================
Error: invalid genre
Record: "Baseball - All Bat, No Glove: A History of the Designated Hitter",G. Richard McKelvey,24.95,078641944X,SSN,2005
syntax error in file: books2005.csv.txt
====================
Error: invalid genre
Record: Baseball - Baseball Players' Best Seasons: Team by Team Rankings,Michael S. Jones,39.95,0786410868,SSN,2005
syntax error in file: books2005.csv.txt
====================
Error: invalid genre
Record: Baseball - Battle of Base-Ball,C.H. Claudy,30.95,9780786420209,SSN,2005
syntax error in file: books2005.csv.txt
====================
Error: invalid genre
Record: "Baseball - Big And Little Poison: Paul and Lloyd Waner, Baseball Brothers",Clifton Blue Parker,24.95,0786414006,SSN,2005
syntax error in file: books2005.csv.txt
====================
Error: missing ISBN
Record: "Corvette Field Guide, 1953-Present",Jerry Heasley,9.95,,TPA,2005
syntax error in file: books2006.csv.txt
====================
Error: missing author
Record: Billboard - Billboard Illustrated Encyclopedia of Music,,19.95,0823078698,MRB,2006
syntax error in file: books2006.csv.txt
====================
Error: missing author
Record: Hot Wacks Supplement 6,,12.95,0968858708,MRB,2006
syntax error in file: books2006.csv.txt
====================
Error: missing author
Record: KISS - Convention Guide & Ticket: 18th Annual New York KISS Expo (2004),,3.95,,MRB,2006
syntax error in file: books2006.csv.txt
====================
Error: missing author
Record: KISS - Convention Guide & Ticket: 19th Annual New York KISS Expo (2005),,3.95,,MRB,2006
syntax error in file: books2006.csv.txt
====================
Error: invalid genre
Record: "Presley, Elvis - Rebel Years",Lester Bangs,4.95,0393316254,RBM,2006
syntax error in file: books2006.csv.txt
====================
Error: missing author
Record: Radio - It's That Time Again: More New Stories of Old-Time Radio,,11.95,1591930062,MRB,2106
syntax error in file: books2006.csv.txt
====================
Error: missing author
Record: Radio - It's That Time Again: The New Stories of Old-Time Radio,,11.95,0971457026,MRB,2006
syntax error in file: books2006.csv.txt
====================
Error: missing author
Record: "Cushing, Peter",,19.95,188766453X,MTV,2006
syntax error in file: books2006.csv.txt
====================
Error: missing author
Record: Mad About Movies (#5),,7.95,,MTV,2006
syntax error in file: books2006.csv.txt
====================
Error: missing author
Record: Science Fiction America - Essays On SF Cinema,,39.95,0786421495,MTV,2006
syntax error in file: books2006.csv.txt
====================
Error: missing author
Record: Son of Guilty Pleasures of the Horror Film,,19.95,1887664041,MTV,2006
syntax error in file: books2006.csv.txt
====================
Error: missing author
Record: Baseball - What Baseball Means to Me,,5.95,0446527491,SSM,2006
syntax error in file: books2007.csv.txt
====================
Error: invalid genre
Record: Mad Magazine - Spy Vs. Spy: The Complete Casebook,Antonio Prohias,15.95,0823050211,BCC,2007
syntax error in file: books2007.csv.txt
====================
Error: missing author
Record: Romance Pulp - 30 Postcards,,3.95,0811847225,CCB,2007
syntax error in file: books2007.csv.txt
====================
Error: missing author
Record: Celtic Music - Third Ear: The Essential Listening Companion,,5.95,9780879306236,MRB,2007
syntax error in file: books2007.csv.txt
====================
Error: too many fields
Record: Classic Guitars Identification And Price Guide,Nick Freeth,16.99,0896895297,MRB,2007,
syntax error in file: books2007.csv.txt
====================
Error: missing author
Record: "Davis, Miles - The Miles Davis Reader: Interviews And Features From DownBeat Magazine",,19.95,142343076X,MRB,2007
syntax error in file: books2007.csv.txt
====================
Error: invalid genre
Record: "Goodman, Steve - Facing The Music",Clay Eals,23.95,1550227327,ABC,2007
syntax error in file: books2007.csv.txt
====================
Error: missing author
Record: "Harrison, George - Harrison",,9.95,0743235819,MRB,2007
syntax error in file: books2007.csv.txt
====================
Error: missing author
Record: "Morrison, Jim - Angels Dance And Angels Die",,14.95,0825673410,MRB,2007
syntax error in file: books2007.csv.txt
====================
Error: too many fields
Record: "Morrison, Jim - Jim Morrison: Life, Death, Legend",Stephen Davis,4.95,159240099X,MRB,2007,
syntax error in file: books2007.csv.txt
====================
Error: invalid genre
Record: "Thorgeson, Storm - Taken By Storm: The Album Art of Storm Thorgeson",Storm Thorgeson & Peter Curzon,19.95,1846096677,DEF,2007
syntax error in file: books2007.csv.txt
====================
Error: missing ISBN
Record: "Wilson, Brian - Smile",Domenic Priore,11.95,,MRB,2007
syntax error in file: books2007.csv.txt
====================
Error: too many fields
Record: Escape! - How Animation Broke Into The Mainstream In The 1990s,G. Michael Dobbs,16.95,1593931107,MTV,2007,
syntax error in file: books2007.csv.txt
====================
Error: missing author
Record: Gangster Film: The Overlook Film Encyclopedia,,14.95,0879518812,MTV,2007
syntax error in file: books2007.csv.txt
====================
Error: missing author
Record: "Influence of Star Trek On Television, Film And Culture, The",,31.95,9780786430345,MTV,2007
syntax error in file: books2007.csv.txt
====================
Error: missing author
Record: It Came From The Drive-In,,3.95,0743493168,MTV,2007
syntax error in file: books2007.csv.txt
====================
Error: missing ISBN
Record: "Lugosi, Bela: Dreams and Nightmares",Gary D. Rhodes & Richard Sheffield,24.95,,MTV,2007
syntax error in file: books2007.csv.txt
====================
Error: missing author
Record: Midnight Marquee (Issue #75),,7.95,,MTV,2007
syntax error in file: books2007.csv.txt
====================
Error: missing ISBN
Record: Rock & Roll Film Encyclopedia,John Kenneth Muir,16.95,,MTV,2007
syntax error in file: books2007.csv.txt
====================
Error: missing author
Record: "Sopranos, The - A Sitdown With The Sopranos",,3.95,0312295286,MTV,2007
syntax error in file: books2007.csv.txt
====================
Error: missing author
Record: "Cocktail Shakers, Lava Lamps, And Tupperware - Celebration of Lifestyle Design From The Last Half of The 20th Century",,6.95,1592530451,NEB,2007
syntax error in file: books2007.csv.txt
====================
Error: missing ISBN
Record: Rapp Joke File,Philip Rapp,12.95,,NEB,2007
syntax error in file: books2007.csv.txt
====================
Error: missing author
Record: Spy File - International Spy Museum,,4.95,1579123627,NEB,2007
syntax error in file: books2008.csv.txt
====================
Error: invalid genre
Record: Billboard - Hot Dance/Disco 1974-2003,Joel Whitburn,37.95,089820156X,RFG,2008
syntax error in file: books2008.csv.txt
====================
Error: missing author
Record: Cartoon Music Book,,16.95,1556524730,MRB,2008
syntax error in file: books2008.csv.txt
====================
Error: missing author
Record: "Lydon, John - Stories of Johnny",,17.95,1842403605,MRB,2008
syntax error in file: books2008.csv.txt
====================
Error: invalid genre
Record: "Pop Surf Culture - Music, Design, Film And Fashion From The Bohemian Surf Boom",Brian Chidester & Dominic Priore,29.95,1595800352,QAS,2008
syntax error in file: books2008.csv.txt
====================
Error: missing author
Record: "Horror 101: The A-List of Horror Films and Monster Movies, Volume 1",,19.95,1887664793,MTV,2008
syntax error in file: books2008.csv.txt
====================
Error: missing author
Record: King Kong Is Back!,,14.95,1932100644,MTV,2008
syntax error in file: books2008.csv.txt
====================
Error: missing author
Record: Monster Bash Magazine (Issue #6),,7,,MTV,2008
syntax error in file: books2008.csv.txt
====================
Error: missing author
Record: Monster Bash Magazine (Issue #7),,7,,MTV,2008
syntax error in file: books2008.csv.txt
====================
Error: missing author
Record: Monster Bash Magazine (Issue #8),,7,,MTV,2008
syntax error in file: books2009.csv.txt
====================
Error: invalid genre
Record: Manga Martial Arts,David Okum,16.95,1600610293,CBC,2009
syntax error in file: books2009.csv.txt
====================
Error: invalid genre
Record: Standard Catalog Of American Flyer Trains,David Doyle,27.95,0896895157,BHC,2009
syntax error in file: books2009.csv.txt
====================
Error: invalid genre
Record: Billboard - Hot Country Songs 1944-2008,Joel Whitburn,49.95,0898201772,WWF,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: Billboard Hot Country Albums 1964-2007,Joel Whitburn,39.95,,MRB,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: "Blue Suede News, Issue #83 (Summer 2008)",Marc Bristol & Gaby Maag-Bristol,4.5,,MRB,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: "Blue Suede News, Issue #84 (Fall 2008)",Marc Bristol & Gaby Maag-Bristol,4.5,,MRB,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: "Blue Suede News, Issue #85 (Winter 2008/9)",Marc Bristol & Gaby Maag-Bristol,4.5,,MRB,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: "Blue Suede News, Issue #86 (Spring 2009)",Marc Bristol & Gaby Maag-Bristol,4.5,,MRB,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: "Blue Suede News, Issue #87 (Summer 2009)",Marc Bristol & Gaby Maag-Bristol,4.5,,MRB,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: "Blue Suede News, Issue #88 (Fall 2009)",Marc Bristol & Gaby Maag-Bristol,4.5,,MRB,2009
syntax error in file: books2009.csv.txt
====================
Error: missing author
Record: "Dorsey, Tommy - Livin' In A Great Big Way",,4.95,0306815028,MRB,2009
syntax error in file: books2009.csv.txt
====================
Error: invalid genre
Record: Goldmine Record Album Price Guide (6th Edition) [DVD-ROM Version],Tim Neely,16.99,1440203776,XYZ,2009
syntax error in file: books2009.csv.txt
====================
Error: missing author
Record: "Hendrix, Jimi - The Jimi Hendrix Experience (Rex Collections)",,16.95,1905287070,MRB,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: Keep Rockin' - The 50s & 60s Nostalgia Magazine #1 (February 2009),Liz Harris & Lou Holly,4.95,,MRB,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: Keep Rockin' - The 50s & 60s Nostalgia Magazine #2 (April 2009),Liz Harris & Lou Holly,4.95,,MRB,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: Keep Rockin' - The 50s & 60s Nostalgia Magazine #3 (June 2009),Liz Harris & Lou Holly,4.95,,MRB,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: Keep Rockin' - The 50s & 60s Nostalgia Magazine #4 (August 2009),Liz Harris & Lou Holly,4.95,,MRB,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: Keep Rockin' - The 50s & 60s Nostalgia Magazine #5 (October 2009),Liz Harris & Lou Holly,4.95,,MRB,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: "Morrow, Cousin Brucie - Doo Wop: The Music, The Times, The Era [Author-Signed Edition + Bonus CD] / Rock & Roll ...And The Beat Goes On [Includes Autographed Photo + Bonus CD]",Bruce Morrow & Rich Maloof,39.95,,MRB,2009
syntax error in file: books2009.csv.txt
====================
Error: missing author
Record: Pink Floyd - Pink Floyd (Rex Collections),,22.95,9781905287826,MRB,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: Rockabilly #45 [Spring 2009],Orlando Rios,3.99,,MRB,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: Rockabilly #46 [Summer 2009],Orlando Rios,3.69,,MRB,2009
syntax error in file: books2009.csv.txt
====================
Error: missing author
Record: "Rolling Stones, The - Stones: A History In Cartoons",,6.95,0750942487,MRB,2009
syntax error in file: books2009.csv.txt
====================
Error: missing author
Record: "Summers, Andy - One Train Later",,5.95,0312359144,MRB,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: Cinema Retro Movie Classics Special Edition Where Eagles Dare Issue,Cinema Retro,9.95,,MTV,2009
syntax error in file: books2009.csv.txt
====================
Error: missing author
Record: "Cinema Retro Volume 5, #13 [UK Limited Edition]",,9.95,,MTV,2009
syntax error in file: books2009.csv.txt
====================
Error: missing author
Record: "Cinema Retro Volume 5, #14 [UK Limited Edition]",,9.95,,MTV,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: "Cinema Retro Volume 5, #15 [UK Limited Edition]",Cinema Retro,9.95,,MTV,2009
syntax error in file: books2009.csv.txt
====================
Error: missing author
Record: Gangster Film Reader,,16.95,0879103329,MTV,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: HorrorHound #19 [Sept/Oct 2009],Nathan Hanneman,5.99,,MTV,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: HorrorHound #20 [Nov/Dec 2009],Nathan Hanneman,5.99,,MTV,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: "Little Shoppe of Horrors, Issue #20",Richard Klemensen,7.95,,MTV,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: "Little Shoppe of Horrors, Issue #21",Richard Klemensen,7.95,,MTV,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: "Little Shoppe of Horrors, Issue #22",Richard Klemensen,7.95,,MTV,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: "Little Shoppe of Horrors, Issue #23",Richard Klemensen,7.95,,MTV,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: Midnight Marquee (Issue #76),Gary Svehla & Susan Svehla,7.95,,MTV,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: Monster Bash Magazine (Issue #9),Ron Adams,7,,MTV,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: Monster Memories #10 (2002 Scary Monsters Magazine Yearbook),Dennis Druktenis,6.95,,MTV,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: Monster Memories #11 (2003 Scary Monsters Magazine Yearbook),Dennis Druktenis,6.95,,MTV,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: Monster Memories #12 (2004 Scary Monsters Magazine Yearbook),Dennis Druktenis,6.95,,MTV,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: Monster Memories #13 (2005 Scary Monsters Magazine Yearbook),Dennis Druktenis,6.95,,MTV,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: Monster Memories #14 (2006 Scary Monsters Magazine Yearbook),Dennis Druktenis,6.95,,MTV,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: Monster Memories #15 (2007 Scary Monsters Magazine Yearbook),Dennis Druktenis,7.95,,MTV,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: Monster Memories #16 (2008 Scary Monsters Magazine Yearbook),Denis Druktenis,7.95,,MTV,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: Monster Memories #17 (2009 Scary Monsters Magazine Yearbook),Denis Druktenis,7.95,,MTV,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: Monster Memories #2 (1994 Scary Monsters Magazine Yearbook),Dennis Druktenis,5.95,,MTV,2009
syntax error in file: books2009.csv.txt
====================
Error: missing ISBN
Record: Monster Memories #3 (1995 Scary Monsters Magazine Yearbook),Dennis Druktenis,6.95,,MTV,2009