-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbooks.json
More file actions
7702 lines (7702 loc) · 201 KB
/
Copy pathbooks.json
File metadata and controls
7702 lines (7702 loc) · 201 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
[
{
"id": "1",
"name": "Harry Potter and the Prisoner of Azkaban",
"author": "J. K. Rowling",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/10580435-L.jpg"
},
{
"id": "2",
"name": "Harry Potter and the Philosopher's Stone",
"author": "J. K. Rowling",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/15155833-L.jpg"
},
{
"id": "3",
"name": "Harry Potter and the Order of the Phoenix",
"author": "J. K. Rowling",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/15158666-L.jpg"
},
{
"id": "4",
"name": "Harry Potter and the Chamber of Secrets",
"author": "J. K. Rowling",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/15158664-L.jpg"
},
{
"id": "5",
"name": "Harry Potter and the Deathly Hallows",
"author": "J. K. Rowling",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/15158660-L.jpg"
},
{
"id": "6",
"name": "Harry Potter and the Goblet of Fire",
"author": "J. K. Rowling",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/12059372-L.jpg"
},
{
"id": "7",
"name": "Harry Potter and the Half-Blood Prince",
"author": "J. K. Rowling",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/10716273-L.jpg"
},
{
"id": "8",
"name": "Бѣсы",
"author": "Фёдор Михайлович Достоевский",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/9258937-L.jpg"
},
{
"id": "9",
"name": "Записки изъ подполья",
"author": "Фёдор Михайлович Достоевский",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/9415092-L.jpg"
},
{
"id": "10",
"name": "Записки изъ подполья",
"author": "Фёдор Михайлович Достоевский",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/12644033-L.jpg"
},
{
"id": "11",
"name": "Преступление и наказание",
"author": "Фёдор Михайлович Достоевский",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/9411873-L.jpg"
},
{
"id": "12",
"name": "Белые ночи",
"author": "Фёдор Михайлович Достоевский",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/3293338-L.jpg"
},
{
"id": "13",
"name": "Игрокъ",
"author": "Фёдор Михайлович Достоевский",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/3293339-L.jpg"
},
{
"id": "14",
"name": "The Hobbit",
"author": "J.R.R. Tolkien",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/14627509-L.jpg"
},
{
"id": "15",
"name": "The Lord of the Rings",
"author": "J.R.R. Tolkien",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/14625765-L.jpg"
},
{
"id": "16",
"name": "The House of the Dead",
"author": "Фёдор Михайлович Достоевский",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/9415186-L.jpg"
},
{
"id": "17",
"name": "Идіотъ",
"author": "Фёдор Михайлович Достоевский",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/9412225-L.jpg"
},
{
"id": "18",
"name": "Бедные люди",
"author": "Фёдор Михайлович Достоевский",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/9454253-L.jpg"
},
{
"id": "19",
"name": "Братья Карамазовы",
"author": "Фёдор Михайлович Достоевский",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/8272336-L.jpg"
},
{
"id": "20",
"name": "The Fellowship of the Ring",
"author": "J.R.R. Tolkien",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/14627060-L.jpg"
},
{
"id": "21",
"name": "The Children of Húrin",
"author": "J.R.R. Tolkien",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/8220298-L.jpg"
},
{
"id": "22",
"name": "The Silmarillion",
"author": "J.R.R. Tolkien",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/14627042-L.jpg"
},
{
"id": "23",
"name": "Unfinished Tales of Númenor and Middle-earth",
"author": "J.R.R. Tolkien",
"genre": "Fantasy",
"image": "https://covers.openlibrary.org/b/id/9293458-L.jpg"
},
{
"id": "24",
"name": "The Two Towers",
"author": "J.R.R. Tolkien",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/14627564-L.jpg"
},
{
"id": "25",
"name": "The Return of the King",
"author": "J.R.R. Tolkien",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/14627062-L.jpg"
},
{
"id": "26",
"name": "Amerika",
"author": "Franz Kafka, Ritchie Robertson",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/3080557-L.jpg"
},
{
"id": "27",
"name": "Boy",
"author": "Roald Dahl",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/8232489-L.jpg"
},
{
"id": "28",
"name": "Romeo and Juliet",
"author": "William Shakespeare",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/8257991-L.jpg"
},
{
"id": "29",
"name": "The House of the Seven Gables",
"author": "Nathaniel Hawthorne",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/8241487-L.jpg"
},
{
"id": "30",
"name": "Song of Susannah",
"author": "Stephen King",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/8393691-L.jpg"
},
{
"id": "31",
"name": "La casa de los espíritus",
"author": "Isabel Allende",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/3205226-L.jpg"
},
{
"id": "32",
"name": "Memórias póstumas de Brás Cubas",
"author": "Machado de Assis",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/123152-L.jpg"
},
{
"id": "33",
"name": "Le Deuxième Sexe",
"author": "Simone de Beauvoir",
"genre": "Science",
"image": "https://covers.openlibrary.org/b/id/78169-L.jpg"
},
{
"id": "34",
"name": "The spy",
"author": "James Fenimore Cooper",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/8245225-L.jpg"
},
{
"id": "35",
"name": "Brisingr",
"author": "Christopher Paolini",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/2411585-L.jpg"
},
{
"id": "36",
"name": "Motivation Noteook",
"author": "Raymond Gething",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/14842205-L.jpg"
},
{
"id": "37",
"name": "Babbitt",
"author": "Sinclair Lewis",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/6376827-L.jpg"
},
{
"id": "38",
"name": "To Kill a Mockingbird",
"author": "Harper Lee",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/14351077-L.jpg"
},
{
"id": "39",
"name": "The Case-Book of Sherlock Holmes",
"author": "Arthur Conan Doyle",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/8350410-L.jpg"
},
{
"id": "40",
"name": "La Petite Sirene (French Well Loved Tales)",
"author": "Hans Christian Andersen, Yayoi Kusama, Bernadette Watts",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/10563313-L.jpg"
},
{
"id": "41",
"name": "The Devil's Dictionary",
"author": "Ambrose Bierce",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/12671319-L.jpg"
},
{
"id": "42",
"name": "On the Banks of Plum Creek",
"author": "Laura Ingalls Wilder",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/30787-L.jpg"
},
{
"id": "43",
"name": "The Giraffe and the Pelly and Me",
"author": "Roald Dahl",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/10611416-L.jpg"
},
{
"id": "44",
"name": "Digital Fortress",
"author": "Dan Brown",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/8396115-L.jpg"
},
{
"id": "45",
"name": "Il pendolo di Foucault",
"author": "Umberto Eco",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/1002977-L.jpg"
},
{
"id": "46",
"name": "A Game of Thrones",
"author": "George R. R. Martin",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/9269962-L.jpg"
},
{
"id": "47",
"name": "Смерть Ивана Ильича",
"author": "Лев Толстой, Anthony Briggs, Anthony Horvath, Constance Black Garnett, Zinc Read",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/419697-L.jpg"
},
{
"id": "48",
"name": "James and the Giant Peach",
"author": "Roald Dahl",
"genre": "Children",
"image": "https://covers.openlibrary.org/b/id/8252454-L.jpg"
},
{
"id": "49",
"name": "Poems",
"author": "William Butler Yeats",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/6968826-L.jpg"
},
{
"id": "50",
"name": "Evgeniĭ Onegin",
"author": "Александр Сергеевич Пушкин",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/8231991-L.jpg"
},
{
"id": "51",
"name": "The Scarecrow of Oz",
"author": "L. Frank Baum",
"genre": "Children",
"image": "https://covers.openlibrary.org/b/id/431586-L.jpg"
},
{
"id": "52",
"name": "The Name of the Wind",
"author": "Patrick Rothfuss, Marc Simonetti",
"genre": "Children",
"image": "https://covers.openlibrary.org/b/id/11480483-L.jpg"
},
{
"id": "53",
"name": "Modern Özbek Türkçesi",
"author": "Emek Üşenmez",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/12690335-L.jpg"
},
{
"id": "54",
"name": "The Scarlet Letter",
"author": "Nathaniel Hawthorne, Austin Warren",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/12155935-L.jpg"
},
{
"id": "55",
"name": "Insomnia",
"author": "Stephen King",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/7886954-L.jpg"
},
{
"id": "56",
"name": "Sons and Lovers",
"author": "D. H. Lawrence",
"genre": "Art",
"image": "https://covers.openlibrary.org/b/id/8246175-L.jpg"
},
{
"id": "57",
"name": "Le avventure di Pinocchio",
"author": "Carlo Collodi",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/8597022-L.jpg"
},
{
"id": "58",
"name": "Bridget Jones's Diary",
"author": "Helen Fielding, Helen Fielding",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/8578467-L.jpg"
},
{
"id": "59",
"name": "Women in Love",
"author": "D. H. Lawrence",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/13140934-L.jpg"
},
{
"id": "60",
"name": "Death in the Clouds",
"author": "Agatha Christie",
"genre": "Mystery",
"image": "https://covers.openlibrary.org/b/id/11433305-L.jpg"
},
{
"id": "61",
"name": "Forever Amber",
"author": "Kathleen Winsor",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/12958803-L.jpg"
},
{
"id": "62",
"name": "The golden bough",
"author": "James George Frazer, Theodor Herzl Gaster, George W. Stocking",
"genre": "Fantasy",
"image": "https://covers.openlibrary.org/b/id/8876695-L.jpg"
},
{
"id": "63",
"name": "Nova Atlantis",
"author": "Francis Bacon",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/313890-L.jpg"
},
{
"id": "64",
"name": "Schweizerische Robinson",
"author": "Johann David Wyss",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/8240402-L.jpg"
},
{
"id": "65",
"name": "Cat & Mouse",
"author": "James Patterson",
"genre": "Thriller",
"image": "https://covers.openlibrary.org/b/id/189675-L.jpg"
},
{
"id": "66",
"name": "The Incredible Journey",
"author": "Sheila Burnford",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/14539398-L.jpg"
},
{
"id": "67",
"name": "The Magician",
"author": "William Somerset Maugham",
"genre": "Biography",
"image": "https://covers.openlibrary.org/b/id/2789948-L.jpg"
},
{
"id": "68",
"name": "Down and Out in Paris and London",
"author": "George Orwell",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/5539329-L.jpg"
},
{
"id": "69",
"name": "The Hunt for Red October",
"author": "Tom Clancy",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/683604-L.jpg"
},
{
"id": "70",
"name": "Death on the Nile",
"author": "Agatha Christie",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/14066646-L.jpg"
},
{
"id": "71",
"name": "Five Go Adventuring Again",
"author": "Enid Blyton",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/14601324-L.jpg"
},
{
"id": "72",
"name": "The Last of the Mohicans",
"author": "James Fenimore Cooper",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/8236937-L.jpg"
},
{
"id": "73",
"name": "The Illustrated Man",
"author": "Ray Bradbury",
"genre": "Fantasy",
"image": "https://covers.openlibrary.org/b/id/9345484-L.jpg"
},
{
"id": "74",
"name": "Collected papers",
"author": "Sigmund Freud",
"genre": "Non fiction",
"image": "https://covers.openlibrary.org/b/id/8242841-L.jpg"
},
{
"id": "75",
"name": "Wizard and Glass",
"author": "Stephen King",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/14657088-L.jpg"
},
{
"id": "76",
"name": "Tabib",
"author": "Nuriddin Ismoilov",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/15122953-L.jpg"
},
{
"id": "77",
"name": "Embajada a Tamorlán",
"author": "Ruy González de Clavijo",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/985919-L.jpg"
},
{
"id": "78",
"name": "The Scarlet Letter",
"author": "Nathaniel Hawthorne",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/5654516-L.jpg"
},
{
"id": "79",
"name": "Villette, a novel",
"author": "Charlotte Brontë",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/5737854-L.jpg"
},
{
"id": "80",
"name": "Das Glasperlenspiel. Sonderausgabe",
"author": "Hermann Hesse",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/1017235-L.jpg"
},
{
"id": "81",
"name": "Henry Huggins",
"author": "Beverly Cleary",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/15087634-L.jpg"
},
{
"id": "82",
"name": "The Talented Mr. Ripley",
"author": "Patricia Highsmith",
"genre": "Mystery",
"image": "https://covers.openlibrary.org/b/id/2198258-L.jpg"
},
{
"id": "83",
"name": "The Wealth of Nations",
"author": "Adam Smith",
"genre": "Business",
"image": "https://covers.openlibrary.org/b/id/12816911-L.jpg"
},
{
"id": "84",
"name": "Eldest",
"author": "Christopher Paolini",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/12848701-L.jpg"
},
{
"id": "85",
"name": "The Complete Sherlock Holmes [4 novels, 56 stories]",
"author": "Arthur Conan Doyle",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/12501284-L.jpg"
},
{
"id": "86",
"name": "The Waves",
"author": "Virginia Woolf",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/119517-L.jpg"
},
{
"id": "87",
"name": "Bridge to Terabithia",
"author": "Katherine Paterson",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/12627341-L.jpg"
},
{
"id": "88",
"name": "A Portrait of the Artist as a Young Man",
"author": "James Joyce, James Joyce, james joyce, J Joyce",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/9328410-L.jpg"
},
{
"id": "89",
"name": "Island of the Blue Dolphins",
"author": "Scott O’Dell",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/5021868-L.jpg"
},
{
"id": "90",
"name": "Tropic of Capricorn",
"author": "Henry Miller",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/13119364-L.jpg"
},
{
"id": "91",
"name": "Five Little Peppers and How They Grew",
"author": "Margaret Sidney",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/8245146-L.jpg"
},
{
"id": "92",
"name": "De amor y de sombra",
"author": "Isabel Allende",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/4176665-L.jpg"
},
{
"id": "93",
"name": "The Picture of Dorian Gray",
"author": "Oscar Wilde",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/14314858-L.jpg"
},
{
"id": "94",
"name": "A Feast for Crows",
"author": "George R. R. Martin",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/6501256-L.jpg"
},
{
"id": "95",
"name": "Phantoms",
"author": "Dean Koontz",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/8274300-L.jpg"
},
{
"id": "96",
"name": "Picasso",
"author": "Pablo Picasso, Jean-Louis Andral, Pierre Daix",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/2238306-L.jpg"
},
{
"id": "97",
"name": "Le Tour du Monde en Quatre-Vingts Jours",
"author": "Jules Verne",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/6976035-L.jpg"
},
{
"id": "98",
"name": "Works (Awakening / Beyond the Bayou / Desiree's Baby / Kiss / Locket / Ma'ame Pelagie / Pair of Silk Stockings / Reflection / Respectable Woman)",
"author": "Kate Chopin",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/11513625-L.jpg"
},
{
"id": "99",
"name": "War Horse",
"author": "Michael Morpurgo, Mercè Santaularia Campillo",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/6714571-L.jpg"
},
{
"id": "100",
"name": "Charlotte's Web",
"author": "E. B. White",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/8461797-L.jpg"
},
{
"id": "101",
"name": "Stardust",
"author": "Neil Gaiman",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/8216379-L.jpg"
},
{
"id": "102",
"name": "The Lightning Thief",
"author": "Rick Riordan",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/7239831-L.jpg"
},
{
"id": "103",
"name": "The Island of Dr. Moreau",
"author": "H. G. Wells",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/968312-L.jpg"
},
{
"id": "104",
"name": "King Henry V",
"author": "William Shakespeare",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/7420215-L.jpg"
},
{
"id": "105",
"name": "The lovely bones",
"author": "Alice Sebold, Dunow and Carlson Lit. Agency, Maria Roura Mir",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/6413803-L.jpg"
},
{
"id": "106",
"name": "Mémoires d'une jeune fille rangée",
"author": "Simone de Beauvoir",
"genre": "Biography",
"image": "https://covers.openlibrary.org/b/id/37132-L.jpg"
},
{
"id": "107",
"name": "Eat That Frog! 21 Great Ways to Stop Procrastinating and Get More Done in Less Time",
"author": "Brian Tracy",
"genre": "Psychology",
"image": "https://covers.openlibrary.org/b/id/847534-L.jpg"
},
{
"id": "108",
"name": "On the origin of species by means of natural selection",
"author": "Charles Darwin",
"genre": "Philosophy",
"image": "https://covers.openlibrary.org/b/id/7153600-L.jpg"
},
{
"id": "109",
"name": "Richard III",
"author": "William Shakespeare",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/9020720-L.jpg"
},
{
"id": "110",
"name": "Meditations",
"author": "Marcus Aurelius, Gregory Hays, Ryan Holiday",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/13202688-L.jpg"
},
{
"id": "111",
"name": "A Caribbean Mystery",
"author": "Agatha Christie",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/14578132-L.jpg"
},
{
"id": "112",
"name": "Into Thin Air",
"author": "Jon Krakauer",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/241603-L.jpg"
},
{
"id": "113",
"name": "A Wizard of Earthsea",
"author": "Ursula K. Le Guin",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/13617691-L.jpg"
},
{
"id": "114",
"name": "Firestarter",
"author": "Stephen King",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/12015446-L.jpg"
},
{
"id": "115",
"name": "The Mouse and the Motorcycle",
"author": "Beverly Cleary",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/12996603-L.jpg"
},
{
"id": "116",
"name": "The Princess and Curdie",
"author": "George MacDonald",
"genre": "Children",
"image": "https://covers.openlibrary.org/b/id/14357835-L.jpg"
},
{
"id": "117",
"name": "The Magic Finger",
"author": "Roald Dahl",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/9158800-L.jpg"
},
{
"id": "118",
"name": "Northanger Abbey",
"author": "Jane Austen",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/12567961-L.jpg"
},
{
"id": "119",
"name": "History",
"author": "Herodotus",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/9829028-L.jpg"
},
{
"id": "120",
"name": "Metamorphoses",
"author": "Lucius Apuleius, William Adlington, Lucio Apuleyo",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/6596872-L.jpg"
},
{
"id": "121",
"name": "Dragonflight",
"author": "Anne McCaffrey",
"genre": "Science",
"image": "https://covers.openlibrary.org/b/id/10306696-L.jpg"
},
{
"id": "122",
"name": "Night Shift",
"author": "Stephen King",
"genre": "Thriller",
"image": "https://covers.openlibrary.org/b/id/14651337-L.jpg"
},
{
"id": "123",
"name": "The Iron Heel",
"author": "Jack London",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/8243314-L.jpg"
},
{
"id": "124",
"name": "Witch Wood",
"author": "John Buchan",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/4781924-L.jpg"
},
{
"id": "125",
"name": "Winnie-the-Pooh",
"author": "A. A. Milne",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/8610816-L.jpg"
},
{
"id": "126",
"name": "Our Man in Havana",
"author": "Graham Greene",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/15130107-L.jpg"
},
{
"id": "127",
"name": "Rebecca",
"author": "Daphne du Maurier",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/8238729-L.jpg"
},
{
"id": "128",
"name": "A Clockwork Orange",
"author": "Anthony Burgess",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/13151224-L.jpg"
},
{
"id": "129",
"name": "Flat Stanley",
"author": "Jeff Brown, Jon Mitchell, Tomi Ungerer, Tony Ross",
"genre": "Art",
"image": "https://covers.openlibrary.org/b/id/5140225-L.jpg"
},
{
"id": "130",
"name": "Mort",
"author": "Terry Pratchett",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/14648805-L.jpg"
},
{
"id": "131",
"name": "La conquête du pain",
"author": "Peter Kropotkin",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/7296134-L.jpg"
},
{
"id": "132",
"name": "The Old Curiosity Shop",
"author": "Charles Dickens",
"genre": "Technology",
"image": "https://covers.openlibrary.org/b/id/13119794-L.jpg"
},
{
"id": "133",
"name": "Midnight's Children",
"author": "Salman Rushdie",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/8346713-L.jpg"
},
{
"id": "134",
"name": "The Pathfinder",
"author": "James Fenimore Cooper",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/8980913-L.jpg"
},
{
"id": "135",
"name": "Night Over Water",
"author": "Ken Follett, K. Follett",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/8231779-L.jpg"
},
{
"id": "136",
"name": "Один день Ивана Денисовича",
"author": "Александр Исаевич Солженицын",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/12725572-L.jpg"
},
{
"id": "137",
"name": "Full Dark, No Stars",
"author": "Stephen King",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/12018685-L.jpg"
},
{
"id": "138",
"name": "Rose Madder",
"author": "Stephen King",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/8578049-L.jpg"
},
{
"id": "139",
"name": "The New York Trilogy",
"author": "Paul Auster",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/1013756-L.jpg"
},
{
"id": "140",
"name": "As You Like It",
"author": "William Shakespeare",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/7338874-L.jpg"
},
{
"id": "141",
"name": "Nostromo",
"author": "Joseph Conrad",
"genre": "Fiction",
"image": "https://covers.openlibrary.org/b/id/6545112-L.jpg"
},
{
"id": "142",
"name": "A Room with a View",
"author": "E. M. Forster",
"genre": "General",
"image": "https://covers.openlibrary.org/b/id/1748132-L.jpg"
},
{
"id": "143",
"name": "When the Sleeper Awakes",
"author": "H. G. Wells",
"genre": "Fiction",