-
Notifications
You must be signed in to change notification settings - Fork 120
/
books.json
1053 lines (1038 loc) · 23.9 KB
/
books.json
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
{
"book": [
{
"id": "1",
"book-name": "The Defining Decade: Why Your Twenties Matter and How to Make the Most of Them Now",
"Author": "Meg Jay"
},
{
"id": "2",
"book-name": "The Algorithm Design Manual",
"Author": "Book by Steven Skiena"
},
{
"id": "3",
"book-name": "Data Structures and Algorithms Made Easy In Java",
"Author": "Narasimha Karumanchi",
"language": "English"
},
{
"id": "4",
"book-name": "Chanakya Neeti- Strategies for Success",
"Author": "Radhakrishnan Pillai",
"language": "English"
},
{
"id": "5",
"book-name": "Paper Towns",
"Author": "John Green",
"language": "English"
},
{
"id": "6",
"book-name": "Looking For Alaska",
"Author": "John Green",
"language": "English"
},
{
"id": "7",
"book-name": "The Alchemist",
"Author": "Paulo Coleho",
"language": "English"
},
{
"id": "8",
"book-name": "The Kite Runner",
"Author": "khalid Hussain",
"language": "English"
},
{
"id": "23010",
"book-name": "The $100 Startup",
"Author": "Chris Guillebeau",
"language": "English"
},
{
"id": "1053",
"book-name": "Deep Work",
"Author": "Cal Newport",
"language": "English"
},
{
"id": "18",
"book-name": "A Suitable Boy",
"Author": "Vikram Seth",
"language": "English"
},
{
"id": "10414",
"book-name": "Atomic Habits",
"Author": "James Clear",
"language": "English"
},
{
"id": "23011",
"book-name": "The Lean Startup",
"Author": "Eric Ries",
"language": "English"
},
{
"id": "19",
"book-name": "The Thousand Splendid Suns",
"Author": "khalid Hussain",
"language": "English"
},
{
"id": "23012",
"book-name": "Zero to One",
"Author": "Peter Thiel",
"language": "English"
},
{
"id": "19",
"book-name": "Around the World in Eighty Days",
"Author": "Jules Verne",
"language": "English"
},
{
"id": "18",
"book-name": "A Suitable Boy",
"Author": "Vikram Seth",
"language": "English"
},
{
"id": "00",
"book-name": "Percy Jackon The Lightning Thief",
"Author": "Rick Riordan",
"language": "English"
},
{
"id": "01",
"book-name": "Tom jones",
"Author": "Hendry fielding",
"language": "English"
},
{
"id": "0234",
"book-name": "All the Light We Cannot See",
"Author": "Anthony Doerr",
"language": "English"
},
{
"id": "100",
"book-name": "Padsat",
"Author": "Sadhana",
"language": "Marathi"
},
{
"id": "00",
"book-name": "Percy Jackon The Lightning Thief",
"Author": "Rick Riordan",
"language": "English"
},
{
"id": "100",
"book-name": "Padsat",
"Author": "Sadhana",
"language": "Marathi"
},
{
"id": "022",
"book-name": "The Intelligent Investor",
"Author": "Benjamin Graham",
"language": "English"
},
{
"id": "1090",
"book-name": "Two States",
"Author": "Chetan Bhagat",
"language": "English"
},
{
"id": "02",
"book-name": "Germinal",
"Author": "Emile Zola ",
"language": "English"
},
{
"book-name": "Yes We Can ",
"Author": "Garen Thomas",
"language": "English"
},
{
"id": "25",
"book-name": "Wings Of Fire ",
"Author": "Dr.A.P.J.Abdul Kalam",
"language": "English"
},
{
"id": "03",
"book-name": "pariksha guru",
"Author": "Srinivas das",
"language": "Hindi"
},
{
"id": "04",
"book-name": "the secret ",
"Author": "rhonda byrene",
"language": "English"
},
{
"id": "16",
"book-name": "SUBTLE ART OF NOT GIVING A FUCK",
"Author": "MARK MANSON",
"language": "English"
},
{
"id": "04",
"book-name": "She Stood By Me",
"Author": "Tarun Vikash",
"language": "English"
},
{
"id": "05",
"book-name": "Wings Of Fire",
"Author": "A.P.J. Abdul Kalam",
"language": "English"
},
{
"id": "03",
"book-name": "my life",
"Author": "owner",
"language": "English"
},
{
"id": "04",
"book-name": "Ikigai",
"Author": "Hector Garcia",
"language": "Japanese"
},
{
"id": "19",
"book-name": "The belated bachrlor party",
"Author": "Ravindrer Singh",
"language": "English"
},
{
"id": "04",
"book-name": "Shubham Musk ",
"Author": "Ashlee Vance",
"language": "Hindi"
},
{
"book-name": " sily novels",
"Author": "George Elliot",
"language": "English"
},
{
"id": "04",
"book-name": "Shubham Musk ",
"Author": "Ashlee Vance",
"language": "Hindi"
},
{
"book-name": " sily novels",
"Author": "George Elliot",
"language": "English"
},
{
"id": "05",
"book-name": "Elon Musk ",
"Author": "Ashlee yanfe",
"language": "English"
},
{
"id": "06",
"book-name": "Agnipankha ",
"Author": "A.P.J,Abdul Kalam",
"language": "Marathi"
},
{
"id": "022",
"book-name": "The Intelligent creator",
"Author": "Benjamin Graham"
},
{
"id": "12",
"book-name": "rich dad poor dad ",
"Author": "Robert Kiyosaki ",
"language": "English"
},
{
"id": "13",
"book-name": "Wings of fire ",
"Author": "APJ Abdul Kalam ",
"language": "English"
},
{
"id": "13",
"book-name": "The wings of fire",
"Author": "A.P.J Abdul kalam",
"language": "English"
},
{
"id": "02",
"book-name": "The Black tiger ",
"Author": "ravindra Adiga",
"language": "English"
},
{
"id": "15",
"book-name": "A little book of india ",
"Author": "Ruskin Bond"
},
{
"id": "27",
"book-name": "You Can Win",
"Author": "Shiv Khera",
"language": "English"
},
{
"id": "056",
"book-name": "Man mai hai vishvas",
"Author": "Vishvas nangare patil",
"language": "Marathi"
},
{
"id": "26",
"book-name": "The Power of your subconscious mind",
"Author": "Joseph Murphy",
"language": "English"
},
{
"id": "14",
"book-name": "",
"Author": "Ruskin Bond"
},
{
"id": "16",
"book-name": "The Monk who sold his Ferrari",
"Author": "Robin Sharma",
"language": "English"
},
{
"id": "09",
"book-name": "Wings of Fire",
"Author": "Dr A.P.J Abdul Kalam",
"language": "English"
},
{
"id": "16",
"book-name": "The Christmas Pig",
"Author": "JK Rowling"
},
{
"id": "21",
"book-name": "Data Structures & Algorithms in Java ",
"Author": "Robert Lafore",
"Language": "English"
},
{
"id": "04",
"book-name": "Harry Potter",
"Author": "J.K.Rowling",
"language": "English"
},
{
"book-name": "The secret",
"Author": "rhonda burnye",
"language": "English"
},
{
"book-name": "400 Days",
"Author": "Chetan Bhagat",
"language": "English"
},
{
"id": "02",
"book-name": "one indian girl",
"Author": "chetan bhagat",
"language": "English"
},
{
"id": "40",
"book-name": "Nava Vijaypath",
"Author": "Avinash Dhramadhikari",
"language": "Marathi"
},
{
"book-name": "The Power Of Positive Thinking",
"Author": "Norman Vincent Peale",
"language": "English"
},
{
"id": "02",
"book-name": "Wings of fire ",
"Author": "A.P.J. Abdul kalam",
"language": "English"
},
{
"id": "41",
"book-name": "Harry Potter and the Philosopher's Stone ",
"Author": "J. K. Rowling",
"language": "English"
},
{
"id": "88",
"book-name": "Like a flowing river ",
"Author": "Paulo Coleho",
"language": "English"
},
{
"id": "16",
"book-name": "believe in yourself",
"author": "dr joseph murphy"
},
{
"id": "21",
"book-name": "Zero to one",
"author": "Peter Thiel"
},
{
"id": "22",
"book-name": "A Passage to India",
"Author": "E.M. Foster",
"language": "English"
},
{
"id": "55",
"book-name": "It Ends With Us ",
"Author": "Collen Hoover",
"language": "English"
},
{
"id": "101",
"book-name": "Dharmayoddha Kalki: Avatar of Vishnu",
"Author": "Kevin Missal",
"language": "English"
},
{
"id": "101",
"book-name": "The Braille edition of the book Exam Warriors",
"Author": "PM Narendra Modi",
"language": "English"
},
{
"id": "101",
"book-name": "Time Machine ",
"Author": "H.G. Wells",
"language": "English"
},
{
"id": "121",
"book-name": "Shyam chi aai ",
"Author": "Sane Guruji",
"language": "Marathi"
},
{
"id": "124",
"book-name": "Rudest book Ever",
"Author": "Shwetabh Gangwar ",
"language": "English"
},
{
"id": "020",
"book-name": "what can i give?",
"Author": "Srijan Pal Singh",
"language": "English"
},
{
"id": "2703",
"book-name": "THINK LIKE A MONK",
"Author": "JAY SHETTY",
"language": "English"
},
{
"id": "756",
"book-name": "Parallel",
"Author": "J.S",
"language": "English"
},
{
"id": "786",
"book-name": "Quetions are the answers",
"Author": "Allan Pease",
"language": "English"
},
{
"id": "9999",
"book-name": "The Theory of Everything",
"Author": "Stephen Hawking",
"language": "English"
},
{
"id": "901",
"book-name": "The Commonwealth of Cricket",
"Author": "Ramachandra Guha",
"language": "English"
},
{
"id": "787",
"book-name": "All About Love",
"Author": "Bell Hooks",
"language": "English"
},
{
"id": "788",
"book-name": "DARKNESS AT NOON",
"Author": "Arthur Koestler",
"language": "English"
},
{
"id": "789",
"book-name": "Reminders of him",
"Author": "Colleen Hoover",
"language": "English"
},
{
"id": "999",
"book-name": "The Ickabog",
"Author": "J.K Rowling",
"language": "English"
},
{
"id": "756",
"book-name": "All About hate",
"Author": "crool Hooks",
"language": "English"
},
{
"id": "4172",
"book-name": "wings of fire",
"Author": "A.P.J Abdul Kalam",
"language": "English"
},
{
"id": "1003",
"book-name": "The 7 Habits of highly effective people ",
"Author": "Stephen Covey",
"language": "English"
},
{
"id": "1004",
"book-name": "The Old Man and the Sea",
"Author": "Ernest Hemingway",
"language": "English"
},
{
"id": "2303",
"book-name": "The Almanack of Naval Ravikant",
"Author": "Eric Jorgenson",
"language": "English"
},
{
"id": "2303",
"book-name": "Never Split the Difference",
"Author": "Chris Voss",
"language": "English"
},
{
"id": "548",
"book-name": "Marmut Merah Jambu",
"Author": "Raditya Dika",
"language": "Indonesian"
},
{
"id": "2305",
"book-name": "The Almanack of Naval Ravikant",
"Author": "Eric Jorgenson",
"language": "English"
},
{
"id": "3003",
"book-name": "All Quiet on the Western Front",
"Author": "Erich Maria Remarque",
"language": "English"
},
{
"id": "2303",
"book-name": "Never Split the Difference",
"Author": "Chris Voss",
"language": "English"
},
{
"id": "2305",
"book-name": "The Almanack of Naval Ravikant",
"Author": "Eric Jorgenson",
"language": "English"
},
{
"id": "3003",
"book-name": "All Quiet on the Western Front",
"Author": "Erich Maria Remarque",
"language": "English"
},
{
"id": "2303",
"book-name": "Never Split the Difference",
"Author": "Chris Voss",
"language": "English"
},
{
"id": "2304",
"book-name": " Steve Jobs ",
"Author": "Walter Isaacson ",
"language": "English"
},
{
"id": "2305",
"book-name": " IT ",
"Author": "Stephen King ",
"language": "English"
},
{
"id": "000007",
"book-name": "hello world ",
"Author": "Aman Singh",
"language": "Tamil"
},
{
"id": "23675",
"book-name": " Laws of power ",
"Author": "Robert Greene ",
"language": "English"
},
{
"id": "2305",
"book-name": "The Almanack of Naval Ravikant",
"Author": "Eric Jorgenson",
"language": "English"
},
{
"id": "3003",
"book-name": "All Quiet on the Western Front",
"Author": "Erich Maria Remarque",
"language": "English"
},
{
"id": "2303",
"book-name": "Never Split the Difference",
"Author": "Chris Voss",
"language": "English"
},
{
"id": "2304",
"book-name": " Steve Jobs ",
"Author": "Walter Isaacson ",
"language": "English"
},
{
"id": "2305",
"book-name": " IT ",
"Author": "Stephen King ",
"language": "English"
},
{
"id": "26",
"book-name": " wings of Fire ",
"Author": "Abdul Kalam ",
"language": "English"
},
{
"id": "75",
"book-name": "David Copperfield",
"Author": "Charles Dickens ",
"language": "English"
},
{
"id": "000007",
"book-name": "hello world ",
"Author": "Aman Singh",
"language": "Tamil"
},
{
"id": "2306",
"book-name": "The Origin of Species",
"Author": "Charles Darwin",
"language": "English"
},
{
"id": "2306",
"book-name": "Eat That FROG",
"Author": "Brian Tracy",
"language": "English"
},
{
"id": "2307",
"book-name": "The 100: A Ranking of the Most Influential Persons in History",
"Author": "Michael H. Hart",
"language": "English"
},
{
"id": "2308",
"book-name": "Jika Kita Tak Pernah Jadi Apa-Apa",
"Author": "Alvi Syahrin",
"language": "Indonesia"
},
{
"id": "2307",
"book-name": "The Canterville Ghost",
"Author": "Oscar Wilde",
"language": "English"
},
{
"id": "23675",
"book-name": " Laws of power ",
"Author": "Robert Greene ",
"language": "English"
},
{
"id": "2304",
"book-name": " Steve Jobs ",
"Author": "Walter Isaacson ",
"language": "English"
},
{
"id": "2305",
"book-name": " IT ",
"Author": "Stephen King ",
"language": "English"
},
{
"id": "2306",
"book-name": "The Origin of Species",
"Author": "Charles Darwin",
"language": "English"
},
{
"id": "2307",
"book-name": "The Whole-Brain Child",
"Author": "Daniel J Siegel MD"
},
{
"id": "00",
"book-name": "Do Epic Shit",
"Author": "Ankur Warikoo"
},
{
"id": "93",
"book-name": "The Secret",
"Author": "Rhonda Byrne",
"language": "English"
},
{
"id": "1196",
"book-name": "Algorithms Unlocked",
"Author": "Thomas H. Cormen",
"language": "English"
},
{
"id": "10555",
"book-name": "Who Will cry When You Die",
"Author": "Robin sharma",
"language": "English"
},
{
"id": "1205",
"book-name": "Queen of Fire",
"Author": "Devika Rangachari",
"language": "English"
},
{
"id": "1200",
"book-name": "Do Epic Shit",
"Author": "Ankur Warikoo",
"language": "English"
},
{
"id": "1786",
"book-name": "How To Win Friends & Influence People",
"Author": "Dale Carnegie",
"language": "English"
},
{
"id": "786",
"book-name": "Introduction to Algorithms",
"Author": " Thomas H. Cormen, Charles E. Leiserson, Ronald Rivest, Clifford Stein",
"language": "English"
},
{
"id": "3226",
"book-name": "A Better india: A Better World",
"Author": " Narayana Murthy",
"language": "English"
},
{
"id": "787",
"book-name": "Rudest book ever",
"Author": " Swetabh Gangwar",
"language": "English"
},
{
"id": "790",
"book-name": "write my name across the sky",
"Author": " Barbara O'neal ",
"language": "English"
},
{
"id": "064",
"book-name": "The Alchemist",
"Author": " Paulo Coelho",
"language": "English"
},
{
"id": "6969",
"book-name": "To the Lighthouse",
"Author": "Virginia Woolf",
"language": "English"
},
{
"id": "28",
"book-name": "Data Analytics: The Complete Beginner's Guide: the Black Book",
"Author": "Byron Francis",
"language": "English"
},
{
"id": "0126",
"book-name": "The Midnight Library",
"Author": "Matt Haig",
"language": "English"
},
{
"id": "0125",
"book-name": "Anxious People",
"Author": "Fredrik Backman",
"language": "English"
},
{
"id": "065",
"book-name": "A Prisoner of Birth",
"Author": " Jeffrey Archer",
"language": "English"
},
{
"id": "68",
"book-name": "War and Peace",
"Author": " Leo Tolstoy",
"language": "English"
},
{
"id": "788",
"book-name": "Two States",
"Author": " Chetan Bhagat",
"language": "English"
},
{
"id": "788",
"book-name": "Two States",
"Author": " Chetan Bhagat",
"language": "English"
},
{
"id": "789",
"book-name": "A Midsummer Night's Dream",
"Author": " William Shakespeare",
"language": "English"
},
{
"id": "790",
"book-name": "A Time To Kill",
"Author": "John Grisham",
"language": "English"
},
{
"id": "791",
"book-name": "Ignited Minds:Unleashing the Power within India",
"Author": " A.P.J.Abdul Kalam",
"language": "English"
},
{
"id": "792",
"book-name": "Padsat",
"Author": "Mukesh",
"language": "Marathi"
},
{
"id": "794",
"book-name": "She Stood By Me",
"Author": "Tarun Vikash",
"language": "English"
},
{
"id" : "795",
"book-name" : "Do Epic Shit",
"Author" : " Ankur Warikoo",
"language" : "English"
},
{
"id": "796",
"book-name": "Harry Potter and the deathly hallows part 1",
"Author": "JK Rowling",
"language" : "English"
},
{
"id": "797",
"book-name": "Shoe Dog: A Memoir by the Creator of Nike",
"Author": "Phil Knight",
"language": "English"
},
{
"id":"798",
"book-name": "The Midnight Library",
"Author":"Matt Haig",
"language": "English"
},
{
"id": "799",
"book-name": "Harry Potter and the philosphers stone",
"Author": "J.K Rowling",
"language": "English"
},{
"id" : "800",
"book-name" : "Alchemist",
"Author" : " Coelho",
"language" : "English"
},
{
"id": "798",
"book-name": "Revolution 20202",
"Author": "Chetan Bhagat",
"language": "English"
},
{
"id": "793",
"book-name": "The Alchemist",
"Author": " Paulo Coelho",
"language": "English"
},
{
"id": "794",
"book-name": "She Stood By Me",
"Author": "Tarun Vikash",
"language": "English"
},
{
"id": "795",
"book-name": "Do Epic Shit",
"Author": " Ankur Warikoo",
"language": "English"
},
{
"id": "796",
"book-name": "Harry Potter and the deathly hallows part 1",
"Author": "JK Rowling",
"language": "English"
},
{
"id": "797",
"book-name": "Shoe Dog: A Memoir by the Creator of Nike",
"Author": "Phil Knight",
"language": "English"
},
{
"id": "798",
"book-name": "The Midnight Library",
"Author": "Matt Haig",
"language": "English"
},
{
"id": "799",
"book-name": "Harry Potter and the philosphers stone",
"Author": "J.K Rowling",
"language": "English"
},
{
"id": "800",
"book-name": "Donde los árboles cantan",
"Author": "Laura Gallego García",
"language": "Spanish"
},
{
"id": "801",
"book-name": "Girl on the cliff",
"Author": "Lucinda Riley",
"language": "English"
},
{
"id": "802",
"book-name": "Pilgrim's Progress",
"Author": "John Bunyan",
"language": "English"
},
{
"id": "803",
"book-name": "Fifty Shades of Grey",
"Author": "E. L. James",
"language": "English"
},
{
"id": "804",
"book-name": "Fifty Shades Darker",
"Author": "E. L. James",
"language": "English"
},
{
"id": "805",
"book-name": "Fifty Shades Freed",
"Author": "E. L. James",
},
{
"id": "806",
"book-name": "How Successful People Think: Change Your Thinking, Change Your Life ",
"Author": "John C.maxwell",
"language": "English"
},
{
"id": "807",
"book-name": "Wise and Otherwise",
"Author": "Sudha Murthy",
"language": "English"
},
{
"id": "808",
"book-name": "Revolution 20202",
"Author": "Chetan Bhagat",
"language": "English"
}
{
"id": "809",
"book-name": "The Little Book of Encouragement",
"Author": "Dalai Lama",
"language": "English"
},
{
"id": "810",
"book-name": "A Better India: A Better World",
"Author": "Narayana Murthy",
"language": "English"
}
{