-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdata.json
116 lines (116 loc) · 2.43 KB
/
data.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
{
"books" : [
{
"title" : "Ulysses",
"author" : "James Joyce",
"uniquename" : "ulysses"
},
{
"title" : "Portrait of the Artist as a Young Man",
"author" : "James Joyce",
"uniquename" : "portrait"
},
{
"title" : "Dubliners",
"author" : "James Joyce",
"uniquename" : "dubliners"
},
{
"title" : "War and Peace",
"author" : "Leo Tolstoy",
"uniquename" : "war_and_peace"
},
{
"title" : "Pride and Prejudice",
"author" : "Jane Austen",
"uniquename" : "pride_and_prejudice"
},
{
"title" : "Great Expectations",
"author" : "Charles Dickens",
"uniquename" : "great_expectations"
},
{
"title" : "A Tale of Two Cities",
"author" : "Charles Dickens",
"uniquename" : "tale_of_two_cities"
},
{
"title" : "The King James Bible",
"author" : "",
"uniquename" : "bible"
},
{
"title" : "Alice's Adventures in Wonderland",
"author" : "Lewis Carroll",
"uniquename" : "alice"
},
{
"title" : "The Adventures of Sherlock Holmes",
"author" : "Arthur Conan Doyle",
"uniquename" : "sherlock_holmes"
},
{
"title" : "The Yellow Wallpaper",
"author" : "Charlotte Perkins Gilman",
"uniquename" : "yellow_wallpaper"
},
{
"title" : "The Adventures of Huckleberry Finn",
"author" : "Mark Twain",
"uniquename" : "huck_finn"
},
{
"title" : "Frankenstein",
"author" : "Mary Shelly",
"uniquename" : "frankenstein"
},
{
"title" : "Narrative of the Life of Frederick Douglass, an American Slave",
"author" : "Frederick Douglass",
"uniquename" : "frederick_douglass"
},
{
"title" : "Metamorphosis",
"author" : "Franz Kafka",
"uniquename" : "metamorphosis"
},
{
"title" : "The Importance of Being Earnest",
"author" : "Oscar Wilde",
"uniquename" : "being_earnest"
},
{
"title" : "The Adventures of Tom Sawyer",
"author" : "Mark Twain",
"uniquename" : "tom_sawyer"
},
{
"title" : "Moby-Dick; or, The Whale",
"author" : "Herman Melville",
"uniquename" : "moby_dick"
},
{
"title" : "1984",
"author" : "George Orwell",
"uniquename" : "1984"
},
{
"title" : "Animal Farm",
"author" : "George Orwell",
"uniquename" : "animal_farm"
},
{
"title" : "The Great Gatsby",
"author" : "F. Scott Fitzgerald",
"uniquename" : "great_gatsby"
}
],
"movies" : [
{
"title" : "The Revenant",
"director" : "Alejandro G. Inarritu",
"uniquename" : "revenant"
}
]
}