-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdatabase.py
More file actions
852 lines (852 loc) · 25.2 KB
/
database.py
File metadata and controls
852 lines (852 loc) · 25.2 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
{
'Percy Jackson and the Lightening Thief': {
'ISBN' : '0-1781-0776-X',
'Title': 'Percy Jackson and the Lightening Thief',
'Author': 'Rick Riordan',
'Genre': 'Fantasy',
'Language': 'English',
'Status': 'Available'
},
'Percy Jackson and the Sea of Monsters': {
"ISBN" : '0-8251-8267-0',
'Title': 'Percy Jackson and the Sea of Monsters',
'Author': 'Rick Riordan',
'Genre': 'Fantasy',
'Language': 'English',
'Status': 'Available'
},
'Percy Jackson and the Titans Curse': {
"ISBN" : '0-8086-5007-6',
'Title': 'Percy Jackson and the Titans Curse',
'Author': 'Rick Riordan',
'Genre': 'Fantasy',
'Language': 'English',
'Status': 'Available'
},
'Percy Jackson and the Battle of Labyrinth': {
'ISBN':'0-4362-4883-2',
'Title': 'Percy Jackson and the Battle of Labyrinth',
'Author': 'Rick Riordan',
'Genre': 'Fantasy',
'Language': 'English',
'Status': 'Available'
},
'Percy Jackson and the Last Olympian': {
'ISBN':'0-4972-5506-5',
'Title': 'Percy Jackson and the Last Olympian',
'Author': 'Rick Riordan',
'Genre': 'Fantasy',
'Language': 'English',
'Status': 'Available'
},
"Harry Potter and the Sorcerer's Stone":{
'ISBN':'0-2878-1755-5',
'Title': "Harry Potter and the Sorcerer's Stone",
'Author': 'J.K.Rowling',
'Genre': 'Fantasy',
'Language': 'English',
'Status': 'Available'
},
'Harry Potter and the Chamber of Secrets': {
'ISBN' : '0-5555-6471-1',
'Title': 'Harry Potter and the Chamber of Secrets',
'Author': 'J.K.Rowling',
'Genre': 'Fantasy',
'Language': 'English',
'Status': 'Available'
},
'Harry Potter and the Prisoner of Azkaban': {
'ISBN' : '0-1008-8983-2',
'Title': 'Harry Potter and the Prisoner of Azkaban',
'Author': 'J.K.Rowling',
'Genre': 'Fantasy',
'Language': 'English',
'Status': 'Available'
},
'Harry Potter and the Goblet of Fire': {
'ISBN' : '0-8849-3881-6',
'Title': 'Harry Potter and the Goblet of Fire',
'Author': 'J.K.Rowling',
'Genre': 'Fantasy',
'Language': 'English',
'Status': 'Available'
},
'Harry Potter and the Goblet of Phoenix': {
'ISBN' : '0-5701-7662-X',
'Title': 'Harry Potter and the Goblet of Phoenix',
'Author': 'J.K.Rowling',
'Genre': 'Fantasy',
'Language': 'English',
'Status': 'Available'
},
'Harry Potter and the Half-Blood Prince': {
'ISBN' : '0-9734-1463-4',
'Title': 'Harry Potter and the Half-Blood Prince',
'Author': 'J.K.Rowling',
'Genre': 'Fantasy',
'Language': 'English',
'Status': 'Available'
},
'Harry Potter and the Deathly Hallow': {
'ISBN' : '0-4419-2550-2',
'Title': 'Harry Potter and the Deathly Hallow',
'Author': 'J.K.Rowling',
'Genre': 'Fantasy',
'Language': 'English',
'Status': 'Available'
},
'Harry Potter and the Cursed Child': {
'ISBN' : '0-9347-7389-0',
'Title': 'Harry Potter and the Cursed Child',
'Author': 'J.K.Rowling',
'Genre': 'Fantasy',
'Language': 'English',
'Status': 'Available'
},
'To Kill A Mockingbird' : {
'ISBN' : '0-5168-1982-8',
'Title' : 'To Kill a Mockingbird',
'Author' : 'Harper Lee',
'Genre' : 'Southern Gothic',
'Language' : 'English',
'Status' : 'Available'
},
'The Diary of a Young Girl' : {
'ISBN' : '0-7086-8829-2',
'Title' : 'The Diary of a Young Girl',
'Author' : 'Anne Frank',
'Genre' : 'Autobiography',
'Language' : 'English',
'Status' : 'Available'
},
'Verity' : {
'ISBN' : '0-3829-2058-9',
'Title' : 'Verity',
'Author' : 'Colleen Hoover',
'Genre' : 'Thriller',
'Language' : 'English',
'Status' : "Available"
},
'1984' : {
'ISBN' : '0-3242-9694-0',
'Title' : '1984',
'Author' : 'George Orwell',
'Genre' : 'Fiction',
'Language' : 'English',
'Status' : 'Available'
},
'The Lord of Rings' : {
'ISBN' : '0-6459-7246-0',
'Title' : 'The Lord of Rings',
'Author' : 'J.R.R. Tolkein',
'Genre' : 'Fantasy',
'Language' : 'English',
'Status' : 'Available'
},
'The Book Thief' : {
'ISBN' : '0-4785-2218-5',
'Title' : 'The Book Thief',
'Author' : 'Markus Zusak',
'Genre' : 'Fiction',
'Language' : 'English',
'Status' : 'Available'
},
'Romeo and Juliet' : {
'ISBN' : '0-3872-0286-2',
'Title' : 'Romeo and Juliet',
'Author' : 'William Shakespeare',
'Genre' : 'Trgedy',
'Language' : 'English',
'Status' : 'Unavailable'
},
'Hamlet' : {
'ISBN' : '0-3995-9732-8',
'Title' : 'Hamlet',
'Author' : 'William Shakespeare',
'Genre' : 'Tragedy',
'Language' : 'English',
'Status' : 'Unavailable'
},
'The Kite Runner' : {
'ISBN' : '0-6248-8208-X',
'Title' : 'The Kite Runner',
'Author' : 'Khaled Hosseini',
'Genre' : 'Fiction',
'Language' : 'English',
'Status' : 'Available'
},
'A Thousand Splendid Suns' : {
'ISBN' : '0-1349-6949-9',
'Title' : 'A Thousand Splendid Suns',
'Author' : 'Khaled Hosseini',
'Genre' : 'Ficiton',
'Language' : 'English',
'Status' : 'Available'
},
'And the Mountains Echoed' : {
'ISBN' : '0-1027-8027-7',
'Title' : 'And the Mountains Echoed',
'Author' : 'Khaled Hosseini',
'Genre' : 'Ficiton',
'Language' : ' English',
'Status' : 'Unavailable'
},
'The Hunger Games' : {
'ISBN' : '0-9244-8543-4',
'Title' : 'The Hunger Games',
'Author' : 'Suzanne Collins',
'Genre' : 'Fiction',
'Language' : 'English',
'Status' : 'Available'
},
'The Alchemist' : {
'ISBN' : '0-3185-7904-9',
'Title' : 'The Alchemist',
'Author' : 'Paulo Coelho',
'Genre' : 'Classics',
'Language' : 'English',
'Status' : 'Available'
},
'The Odyssey' : {
'ISBN' : '0-4829-1214-6',
'Title' : 'The Odyssey',
'Author' : 'Homer',
'Genre' : 'Poetry',
'Language' : 'English',
'Status' : 'Unavailable'
},
'Adventures of Tom Sawyer' : {
'ISBN' : '0-7065-1251-0',
'Title' : 'Adventures of Tom Sawyer',
'Author' : 'Mark Twain',
'Genre' : 'Fantasy',
'Language' : 'English',
'Status' : 'Available'
},
'The Tale of Two Cities' : {
'ISBN' : '0-7374-2013-8',
'Title' : 'The Tale of Two Cities',
'Author' : 'Charles Dickens',
'Genre' : 'Historical Novel',
'Language' : 'English',
'Status' : 'Available'
},
'Life of Pi' : {
'ISBN' : '0-5144-2272-6',
'Title' : 'Life of Pi',
'Author' : 'Yann Martel',
'Genre' : 'Fiction',
'Language' : 'English',
'Status' : 'Available'
},
'The Da Vinci Code' : {
'ISBN' : '0-3939-6778-6',
'Title' : 'The Da Vinci Code',
'Author' : 'Dan Brown',
'Genre' : 'Thriller',
'Language' : 'English',
'Status' : 'Available'
},
"Alice's Adventures in Wonderland" : {
'ISBN' : '0-8676-7658-2',
'Title' : "Alice's Adventures in Wonderland",
'Author' : 'Lewis Carroll',
'Genre' : 'Fantasy',
'Language' : 'English',
'Status' : 'Available'
},
'The Lion, the Witch and the Wardrobe' : {
'ISBN' : '0-6397-5281-0',
'Title' : 'The Lion, the Witch and the Wardrobe',
'Author' : 'CS Lewis',
'Genre' : 'Fantasy',
'Language' : 'English',
'Status' : 'Available'
},
'The Northern Lights' : {
'ISBN' : '0-5067-4655-0',
'Title' : 'The Northern Lights',
'Author' : 'Philip Pullman',
'Genre' : 'Fantasy',
'Language' : 'English',
'Status' : 'Available'
},
'Matilda' : {
'ISBN' : '0-8359-4549-9',
'Title' : 'Matilda',
'Author' : 'Roald Dahl and Quentin Blake',
'Genre' : 'Fantasy',
'Language' : 'English',
'Status' : 'Available'
},
'Little Women' : {
'ISBN' : '0-3226-3006-1',
'Title' : 'Little Women',
'Author' : 'Louisa May Alcott',
'Genre' : 'Fiction',
'Language' : 'English',
'Status' : 'Available'
},
'Charlie and the Chocolate Factory' : {
'ISBN': '0-7604-4527-3',
'Title' : 'Charlie and the Chocolate Factory',
'Author' : 'Roald Dahl',
'Genre' : 'Fantasy',
'Language' : 'English',
'Status' : 'Unavailable'
},
'I Want My Hat Back': {
'ISBN' : '0-3948-2983-2',
'Title' : 'I Want My Hat Back',
'Author' : 'Jon Klassen',
'Genre' : 'Fantasy',
'Language' : 'English',
'Status' : 'Unavailable'
},
'The Three Robbers' : {
'ISBN' : '0-1824-9425-X',
'Title' : 'The Three Robbers',
'Author' : 'Tom Ungerer',
'Genre': 'Fantasy',
'Language' : 'English',
'Status' : 'Unavailable'
},
'The Snowy Day' : {
'ISBN' : '0-3323-6560-3',
'Title' : 'The Snowy Day',
'Author' : 'Ezra Jack Keats',
'Genre': 'Fantasy',
'Language' : 'English',
'Status' : 'Unavailable'
},
'Momo' : {
'ISBN' : '0-1158-1872-3',
'Title' : 'Momo' ,
'Author' : 'Michael Ende',
'Genre': 'Fantasy',
'Language' : 'English',
'Status' : 'Unavailable'
},
'The Tale of Peter Rabbit' : {
'ISBN' : '0-4066-0025-2',
'Title' : 'The Tale of Peter Rabbit',
'Author' : 'Beatrix Potter',
'Genre': 'Fantasy',
'Language' : 'English',
'Status' : 'Available'
},
'The Jungle Book' : {
'ISBN' : '0-7125-1500-3',
'Title' : 'The Jungle Book',
'Author' : 'Rudyard Kipling',
'Genre': 'Fantasy',
'Language' : 'English',
'Status' : 'Available'
},
'The Cat in the Hat' : {
'ISBN' : '0-7125-1500-3',
'Title' : 'The Cat in teh Hat',
'Author' : 'Dr Seuss',
'Genre': 'Fantasy',
'Language' : 'English',
'Status' : 'Available'
},
'The Immortals of Meluha' : {
'ISBN' : '0-8016-6201-X',
'Title' : 'The Immortals of Meluha',
'Author' : 'Amish Tripathi',
'Genre': 'Fantasy',
'Language' : 'English',
'Status' : 'Available'
},
'The Secret of Nagas' : {
'ISBN' : '0-2086-2879-7',
'Title' : 'The Secret of Nagas',
'Author' : 'Amish Tripathi',
'Genre': 'Fantasy',
'Language' : 'English',
'Status' : 'Available'
},
'The Oath of Vayuputras' : {
'ISBN' : '0-4493-9461-1',
'Title' : 'The Oath of Vayuputras',
'Author' : 'Amish Tripathi',
'Genre': 'Fantasy',
'Language' : 'English',
'Status' : 'Available'
},
'Ram:Scion of Ikshvaku' : {
'ISBN' : '0-9214-8749-5',
'Title' : 'Ram:Scion of Ikshvaku',
'Author' : 'Amish Tripathi',
'Genre': 'Fantasy',
'Language' : 'English',
'Status' : 'Available'
},
'Sita: Warrior of Mithila' : {
'ISBN' : '0-3835-9320-4',
'Title' : 'Sita: Warrior of Mithila',
'Author' : 'Amish Tripathi',
'Genre': 'Fantasy',
'Language' : 'English',
'Status' : 'Available'
},
'Raavan : Enemy of Aryavarta' : {
'ISBN' : '0-6008-4326-2',
'Title' : 'Raavan : Enemy of Aryavarta',
'Author' : 'Amish Tripathi',
'Genre': 'Fantasy',
'Language' : 'English',
'Status' : 'Available'
},
'War of Lanka' : {
'ISBN' : '0-1127-6854-7',
'Title' : 'War of Lanka',
'Author' : 'Amish Tripathi',
'Genre': 'Fantasy',
'Language' : 'English',
'Status' : 'Available'
},
'Legend of Suheldev : The King Who Saved India' : {
'ISBN' : '0-3733-7460-7',
'Title' : 'Legend of Suheldev : The King Who Saved India',
'Author' : 'Amish Tripathi',
'Genre': 'Fantasy',
'Language' : 'English',
'Status' : 'Available'
},
'Malgudi Days' : {
'ISBN' : '0-5338-4200-X',
'Title' : 'Malgudi Days',
'Author' : 'R.K. Narayan',
'Genre': 'Fiction',
'Language' : 'English',
'Status' : 'Available'
},
'The Room on the Roof' : {
'ISBN' : '0-7959-2917-X',
'Title' : 'The Room on the Roof',
'Author' : 'Ruskin Bond',
'Genre' : 'Fiction',
'Language' :'English',
'Status' : 'Available'
},
'The God of Small Things' : {
'ISBN' : '0-5714-6376-2',
'Title' : 'The God of Small Things',
'Author' : 'Arundathi Roy',
'Genre' : 'Drama',
'Language' : 'English',
'Status' : 'Unavailable'
},
'The 3 Mistakes of My Life' : {
'ISBN' : '0-8404-0073-X',
'Title' : 'The 3 Mistakes of My Life',
'Author' : 'Chetan Bhagat',
'Genre' : 'Fiction',
'Language' : 'English',
'Status' : 'Unavailable'
},
'One Night @ the Call Centre' : {
'ISBN' : '0-1189-6303-1',
'Title' : 'One Night @ the Call Centre',
'Author' : 'Chetan Bhagat',
'Genre' : 'Fiction',
'Language' : 'English',
'Status' : 'Unavailable'
},
'The Girl in Room 105' : {
'ISBN' : '0-7097-6787-0',
'Title' : 'The Girl in Room 105',
'Author' : 'Chetan Bhagat',
'Genre' : 'Thriller',
'Language' : 'English',
'Status' : 'Available'
},
'One Arranged Murder' : {
'ISBN' : '0-9235-3038-X',
'Title' : 'One Arranged Murder',
'Author' : 'Chetan Bhagat',
'Genre' : 'Thriller',
'Language' : 'English',
'Status' : 'Available'
},
'400 Days' : {
'ISBN' : '0-5466-1351-9',
'Title' : '400 Days',
'Author' : 'Chetan Bhagat',
'Genre' : 'Thriller',
'Language' : 'English',
'Status' : 'Available'
},
'I Too Had A Love Story' : {
'ISBN' : '0-8132-8409-0',
'Title' : 'I Too Had A Love Story',
'Author' : 'Ravinder Singh',
'Genre' : 'Romance',
'Language' : 'English',
'Status' : 'Available'
},
'Like It Happened Yesterday' : {
'ISBN' : '0-5520-2359-0',
'Title' : 'Like It Happened Yesterday',
'Author' : 'Ravinder Singh',
'Genre' : 'Romance' ,
'Language' : 'English',
'Status' : 'Available'
},
'Your Dreams Are Mine Now' : {
'ISBN' : '0-7353-7106-7',
'Title' : 'Your Dreams Are Mine Now',
'Author' : 'Ravinder Singh',
'Genre' : 'Romance' ,
'Language' : 'English',
'Status' : 'Available'
},
'Tell Me A Story' : {
'ISBN' : '0-2080-0055-0',
'Title' : 'Tell Me A Story',
'Author' : 'Ravinder Singh',
'Genre' : 'Romance' ,
'Language' : 'English',
'Status' : 'Available'
},
'Will You Still Love Me ?' : {
'ISBN' : '0-1123-3373-7',
'Title' : 'Will You Still Love Me?',
'Author' : 'Ravinder Singh',
'Genre' : 'Romance' ,
'Language' : 'English',
'Status' : 'Available'
},
'Wake Up , Life is Calling' : {
'ISBN' : '0-1726-3573-0',
'Title' : 'Wake Up , Life is Calling',
'Author' : 'Preethi Shenoy',
'Genre' : 'Fiction' ,
'Language' : 'English',
'Status' : 'Available'
},
'Wings of Fire' : {
'ISBN' : '0-4001-8693-4',
'Title' : 'Wings of Fire',
'Author' : 'A.P.J. Abdul Kalam',
'Genre' : 'Autobiography' ,
'Language' : 'English',
'Status' : 'Available'
},
'A Study in Scarlet' : {
'ISBN' : '0-1581-8577-3',
'Title' : 'A Study in Scarlet',
'Author' : 'Sir Arthur Conan Doyle',
'Genre' : 'Thriller',
'Language' : 'English',
'Status' : 'Available'
},
'The Hound of Baskervilles' : {
'ISBN' : '0-4722-3104-9',
'Title' : 'The Hound of Baskervilles',
'Author' : 'Sir Arthur Conan Doyle',
'Genre' : 'Thriller',
'Language' : 'English',
'Status' : 'Available'
},
'War and Peace' : {
'ISBN' : '0-4722-3104-9',
'Title' : 'War and Peace',
'Author' : 'Leo Tolstoy',
'Genre' : 'Fiction',
'Language' : 'English',
'Status' : 'Available'
},
'Gaban' : {
'ISBN' : '0-5823-5880-9' ,
'Title' : 'Gaban' ,
'Author' : 'Munshi Premchand',
'Genre' : 'Fiction',
'Language' : 'Hindi',
'Status' : 'Available'
},
'Chandrakanta' : {
'ISBN' : '0-4655-1545-2',
'Title' : 'Chandrakanta',
'Author' : 'Devaki Nadan Khatri',
'Genre' : 'Historical Novel' ,
'Language' : 'Hindi',
'Status' : 'Available'
},
'Godan' : {
'ISBN' : '0-6121-0344-7',
'Title' : 'Godan',
'Author' : 'Munshi Premchand',
'Genre' : 'Fiction',
'Language' : 'Hindi',
'Status' : 'Available'
},
'Raag Darbari' : {
'ISBN' : '0-7428-3184-1',
'Title' : 'Raag Darbari',
'Author' : 'Shreelaal Shukla',
'Genre' : 'Satirical Novel',
'Language' : 'Hindi',
'Status' : 'Available'
},
'Karmabhoomi' : {
'ISBN' : '0-3131-9972-8',
'Title' : 'Karmabhoomi',
'Author' : 'Munshi Premchand',
'Genre' : 'Classics',
'Language' : 'Hindi',
'Status' : 'Available'
},
'Gora' : {
'ISBN' : '0-2594-3474-4',
'Title' : 'Gora',
'Author' : 'Ravindranath Tagore',
'Genre' : 'Fiction',
'Language' : 'Hindi',
'Status' : 'Available'
},
'Joothan' : {
'ISBN' : '0-2265-1246-0',
'Title' : 'Joothan',
'Author' : 'Om Prakash Valmiki',
'Genre' : 'Autobiography',
'Language' : 'Hindi',
'Status' : 'Available'
},
'Madhushala' : {
'ISBN' : '0-6363-8786-0',
'Title' : 'Madhushala',
'Author' : 'Harivansh Rai Bachchan',
'Genre' : 'Poetry',
'Language' : 'Hindi',
'Status' : 'Available'
},
'Tamas' : {
'ISBN' : '0-3119-8859-8',
'Title' : 'Tamas',
'Author' : 'Bhisham Sahni',
'Genre' : 'Fiction',
'Language' : 'Hindi',
'Status' : 'Available'
},
'Randamoozham' : {
'ISBN' : '0-2492-9072-3',
'Title' : 'Randamoozham',
'Author' : 'M.T Vasudevan Nair',
'Genre' : 'Mythology',
'Language' : 'Malayalam',
'Status' : 'Unavailable'
},
'Pathummayude Aadu' : {
'ISBN' : '0-3363-9327-X',
'Title' : 'Pathummayude Aadu',
'Author' : 'Vaikom Muhhammad Basheer',
'Genre' : 'Fiction',
'Language' : 'Fiction',
'Status' : 'Available'
},
'Aadujeevitham' : {
'ISBN' : '0-7273-0884-X',
'Title' : 'Aadujeevitham',
'Author' : 'Benyamin',
'Genre' : 'Ficiton',
'Language' : 'Malayalam' ,
'Status' : 'Available'
},
'Ente Katha' : {
'ISBN' : '0-2442-0191-9',
'Title' : 'Ente Katha',
'Author' : 'Kamala Suraiyya Das',
'Genre' : 'AutoBiography',
'Language' : 'Malayalam' ,
'Status' : 'Available'
},
'Oru Desathinde Katha' : {
'ISBN' : '0-3654-1258-9',
'Title' : 'Oru Desathinde Katha',
'Author' : 'S.K. Pottekkat' ,
'Genre' : 'Fiction',
'Language' : 'Malayalam' ,
'Status' : 'Available'
},
'Nashtapetta Neelambari' : {
'ISBN' : '0-4052-9964-8',
'Title' : 'Nashtapetta Neelambari',
'Author' : 'Kamala Suraiyya Das' ,
'Genre' : 'Short Story',
'Language' : 'Malayalam' ,
'Status' : 'Available'
},
'Ini Njan Urangatte' : {
'ISBN' : '0-9967-0667-4',
'Title' : 'Ini Njan Urangatte' ,
'Author' : 'P.K Balakrishnan',
'Genre' : 'Mythology' ,
'Language' : 'Malayalam',
'Status' : 'Available'
},
'Indulekha' : {
'ISBN' : '0-7679-4893-9',
'Title' : 'Indulekha' ,
'Author' : 'O. Chandu Menon',
'Genre' : 'Classics' ,
'Language' : 'Malayalam',
'Status' : 'Available'
},
"Ponniyin Selvan": {
"ISBN": "0-8043-0976-0",
"Author": "Kalki",
"Genre": "Drama",
"Language": "Tamil",
"Status": "Available"
},
"Oru Puliyamarathin Kathai": {
"ISBN": "0-9119-8268-X",
"Author": "Sundara Ramaswamy",
"Genre": "Novel",
"Language": "Tamil",
"Status": "Unavailable"
},
"Sila Nerangalil Sila Manithargal": {
"ISBN": "0-8737-0120-8",
"Author": "Jayakanthan",
"Genre": "Fiction",
"Language": "Tamil",
"Status": "Available"
},
"Kallikaattu Ithigaasam": {
"ISBN": "0-6856-4710-2",
"Author": "Vairamuthu",
"Genre": "Fiction",
"Language": "Tamil",
"Status": "Available"
},
"Oswal Question Bank Hindi Class 10": {
"ISBN": "0-3847-4992-5",
"Author": "Oswal Publishers",
"Genre": "Study Material",
"Language": "Hindi",
"Status": "Available"
},
"R.D. Sharma Mathematics Class 10": {
"ISBN": "0-1563-3909-9",
"Author": "R.D. Sharma",
"Genre": "Study Material",
"Language": "English",
"Status": "Available"
},
"Xam Idea Science Class 10": {
"ISBN": "0-2268-7239-4",
"Author": "Xam Idea",
"Genre": "Study Material",
"Language": "English",
"Status": "Available"
},
"Togetherwith Social Science Class 10": {
"ISBN": "0-7207-1416-8",
"Author": "Togetherwith",
"Genre": "Study Material",
"Language": "English",
"Status": "Available"
},
"Golden English Class 10": {
"ISBN": "0-5675-5864-9",
"Author": "Golden",
"Genre": "Study Material",
"Language": "English",
"Status": "Available"
},
"NCERT Biology Class 12": {
"ISBN": "0-6135-4977-5",
"Author": "NCERT",
"Genre": "Study Material",
"Language": "English",
"Status": "Available"
},
"All in One Physics Class 12": {
"ISBN": "0-3892-3059-6",
"Author": "All in One",
"Genre": "Study Material",
"Language": "English",
"Status": "Available"
},
"Oswal Question Bank Mathematics Class 12": {
"ISBN": "0-7367-1616-5",
"Author": "Oswal Publishers",
"Genre": "Study Material",
"Language": "English",
"Status": "Available"
},
"All in One Chemistry Class 12": {
"ISBN": "0-1564-2938-1",
"Author": "All in One",
"Genre": "Study Material",
"Language": "English",
"Status": "Available"
},
"NCERT Macro-Economics Class 12": {
"ISBN": "0-9359-1433-1",
"Author": "NCERT",
"Genre": "Study Material",
"Language": "English",
"Status": "Available"
},
"Advanced Engineering Mathematics Edition 2012": {
"ISBN": "0-1163-4321-4",
"Author": "Peter V. O'Neil",
"Genre": "Study Material",
"Language": "English",
"Status": "Unavailable"
},
"Concepts of Modern Physics, 6th Edition": {
"ISBN": "0-9568-2040-9",
"Author": "Aurthur Beiser",
"Genre": "Study Material",
"Language": "English",
"Status": "Available"
},
"Programming With C": {
"ISBN": "0-3428-7836-0",
"Author": "Bryon Gottfried",
"Genre": "Study Material",
"Language": "English",
"Status": "Available"
},
"Environmental Engineering and Management": {
"ISBN": "0-1016-2180-9",
"Author": "Suresh K. Dhameja",
"Genre": "Study Material",
"Language": "English",
"Status": "Available"
},
"Engineering Chemistry, Second Edition": {
"ISBN": "0-7778-6644-7",
"Author": "Roy Varghese",
"Genre": "Study Material",
"Language": "English",
"Status": "Available"
},
"Digital Logic and Computer Design": {
"ISBN": "0-1512-0972-3",
"Author": "M. Morris Mano",
"Genre": "Study Material",
"Language": "English",
"Status": "Available"
},
"Professional Communication": {
"ISBN": "0-1052-6293-5",
"Author": "Meenakshi Raman and Sangeetha Sharma",
"Genre": "Study Material",
"Language": "English",
"Status": "Available"
},
"Manufacturing Technology - I": {
"ISBN": "0-6122-6171-9",
"Author": "Gowri P. Hariharan",
"Genre": "Study Material",
"Language": "English",
"Status": "Available"
}
}