From d8ad92c16cdbaeb1cbf3901f9a29f918e41ee599 Mon Sep 17 00:00:00 2001 From: Rahul Dave Date: Wed, 2 Sep 2015 15:36:38 -0400 Subject: [PATCH] initial copy --- .gitignore | 32 + Lab1-babypython.ipynb | 1555 +++++++++ Lab1-git.ipynb | 2012 +++++++++++ Lab1-pythonpandas.ipynb | 2946 +++++++++++++++++ all.csv | 6000 +++++++++++++++++++++++++++++++++ branches.png | Bin 0 -> 55589 bytes cs109gitflow1.png | Bin 0 -> 73140 bytes cs109gitflow2.png | Bin 0 -> 84922 bytes cs109gitflow3.png | Bin 0 -> 71480 bytes git-prompt.sh | 533 +++ git_add.png | Bin 0 -> 12961 bytes git_branch.png | Bin 0 -> 12704 bytes git_checkout.png | Bin 0 -> 13049 bytes git_clone.png | Bin 0 -> 13279 bytes git_commit.png | Bin 0 -> 13288 bytes git_fetch.png | Bin 0 -> 13162 bytes git_layout.png | Bin 0 -> 10958 bytes git_merge.png | Bin 0 -> 13354 bytes git_push.png | Bin 0 -> 13044 bytes git_status.png | Bin 0 -> 12795 bytes github-forking.png | Bin 0 -> 79361 bytes github-forking2.png | Bin 0 -> 99148 bytes github-forking3.png | Bin 0 -> 158552 bytes github_branch.png | Bin 0 -> 77220 bytes github_collaborators.png | Bin 0 -> 56307 bytes github_new.png | Bin 0 -> 149113 bytes github_ssh.png | Bin 0 -> 45267 bytes hamlet.txt | 6770 ++++++++++++++++++++++++++++++++++++++ pandastruct.png | Bin 0 -> 36569 bytes 29 files changed, 19848 insertions(+) create mode 100644 Lab1-babypython.ipynb create mode 100644 Lab1-git.ipynb create mode 100644 Lab1-pythonpandas.ipynb create mode 100644 all.csv create mode 100644 branches.png create mode 100644 cs109gitflow1.png create mode 100644 cs109gitflow2.png create mode 100644 cs109gitflow3.png create mode 100644 git-prompt.sh create mode 100644 git_add.png create mode 100644 git_branch.png create mode 100644 git_checkout.png create mode 100644 git_clone.png create mode 100644 git_commit.png create mode 100644 git_fetch.png create mode 100644 git_layout.png create mode 100644 git_merge.png create mode 100644 git_push.png create mode 100644 git_status.png create mode 100644 github-forking.png create mode 100644 github-forking2.png create mode 100644 github-forking3.png create mode 100644 github_branch.png create mode 100644 github_collaborators.png create mode 100644 github_new.png create mode 100644 github_ssh.png create mode 100644 hamlet.txt create mode 100644 pandastruct.png diff --git a/.gitignore b/.gitignore index ba74660..17eccf2 100644 --- a/.gitignore +++ b/.gitignore @@ -55,3 +55,35 @@ docs/_build/ # PyBuilder target/ + +#Ipython +.ipynb_checkpoints/ +# Created by .ignore support plugin (hsz.mobi) +### OSX template +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +#Temporary data +tempdata/ diff --git a/Lab1-babypython.ipynb b/Lab1-babypython.ipynb new file mode 100644 index 0000000..bb4814d --- /dev/null +++ b/Lab1-babypython.ipynb @@ -0,0 +1,1555 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Python and Friends\n", + "\n", + "This is a very quick run-through of some python syntax" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# The %... is an iPython thing, and is not part of the Python language.\n", + "# In this case we're just telling the plotting library to draw things on\n", + "# the notebook, instead of on a separate window.\n", + "%matplotlib inline \n", + "#this line above prepares IPython notebook for working with matplotlib\n", + "\n", + "# See all the \"as ...\" contructs? They're just aliasing the package names.\n", + "# That way we can call methods like plt.plot() instead of matplotlib.pyplot.plot().\n", + "\n", + "import numpy as np # imports a fast numerical programming library\n", + "import scipy as sp #imports stats functions, amongst other things\n", + "import matplotlib as mpl # this actually imports matplotlib\n", + "import matplotlib.cm as cm #allows us easy access to colormaps\n", + "import matplotlib.pyplot as plt #sets up plotting under plt\n", + "import pandas as pd #lets us handle data as dataframes\n", + "#sets up pandas table display\n", + "pd.set_option('display.width', 500)\n", + "pd.set_option('display.max_columns', 100)\n", + "pd.set_option('display.notebook_repr_html', True)\n", + "import seaborn as sns #sets up styles and gives us more plotting options" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "##The Python Language\n", + "\n", + "Lets talk about using Python as a calculator..." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "3" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "1+2" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Notice integer division and floating-point error below!" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(0, 0.5, 9.600000000000001)" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "1/2,1.0/2.0,3*3.2" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Here is how we can print things. Something on the last line by itself is returned as the output value." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4.0 \n", + "1.66666666667\n" + ] + }, + { + "data": { + "text/plain": [ + "1" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "print 1+3.0,\"\\n\",5/3.0\n", + "5/3" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We can obtain the type of a variable, and use boolean comparisons tontest these types." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.833333333333\n", + "\n" + ] + } + ], + "source": [ + "a=5.0/6.0\n", + "print(a)\n", + "print type(a)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import types\n", + "type(a)==types.FloatType" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "type(a)==types.IntType" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Python and Iteration (and files)\n", + "\n", + "In working with python I always remember: a python is a duck.\n", + "\n", + "What I mean is, python has a certain way of doing things. For example lets call one of these ways listiness. Listiness works on lists, dictionaries, files, and a general notion of something called an iterator.\n", + "\n", + "But first, lets introduce the notion of a comprehension. Its a way of constructing a list" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[1, 4, 9, 16, 25]" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "alist=[1,2,3,4,5]\n", + "asquaredlist=[i*i for i in alist]\n", + "asquaredlist" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Python has some nifty functions like `enumerate` and `zip`. The former gives a list of tuples with each tuple of the form `(index, value)`, while the latter takes elements from each list and outs them together into a tuple, thus creating a list of tuples. The first is a duck, but the second isnt." + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(, [(1, 1), (2, 4), (3, 9), (4, 16), (5, 25)])" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "enumerate(asquaredlist),zip(alist, asquaredlist)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Someone realized that design flaw and created izip." + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from itertools import izip\n", + "izip(alist, asquaredlist)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + } + ], + "source": [ + "print enumerate(asquaredlist)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[(0, 1), (1, 4), (2, 9), (3, 16), (4, 25)]" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "[k for k in enumerate(asquaredlist)]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Open files behave like lists too! Here we get each line in the file and find its length, using the comprehension syntax to put these lengths into a big list." + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[9, 27, 2, 24, 2, 2, 2, 2, 22, 2, 28, 60, 29, 28, 27, 22, 22, 24, 25, 18, 24, 11, 21, 20, 22, 32, 10, 28, 31, 12, 22, 27, 2, 51, 32, 2, 67, 13, 2, 18, 2, 2, 2, 8, 2, 50, 2, 49, 2, 6, 14, 2, 7, 45, 2, 6, 21, 2, 7, 11, 2, 6, 5, 2, 7, 41, 2, 6, 53, 2, 7, 48, 25, 2, 6, 27, 2, 7, 23, 2, 6, 19, 39, 46, 2, 7, 48, 2, 32, 2, 6, 25, 2, 6, 27, 2, 7, 22, 2, 6, 30, 24, 2, 7, 24, 22, 2, 9, 2, 6, 18, 2, 6, 6, 25, 2, 6, 17, 2, 6, 45, 2, 6, 47, 2, 6, 22, 2, 6, 36, 42, 48, 38, 45, 37, 42, 2, 6, 32, 2, 6, 18, 41, 42, 31, 2, 6, 20, 41, 2, 6, 20, 51, 51, 43, 30, 2, 6, 51, 2, 23, 2, 6, 48, 2, 6, 43, 2, 6, 47, 2, 6, 49, 2, 6, 23, 2, 6, 23, 2, 6, 50, 42, 40, 54, 2, 6, 17, 2, 6, 22, 2, 6, 42, 2, 15, 2, 6, 33, 2, 6, 46, 42, 22, 2, 6, 41, 38, 19, 2, 6, 26, 2, 6, 25, 36, 40, 45, 42, 15, 2, 6, 48, 47, 2, 6, 48, 44, 48, 2, 6, 49, 47, 43, 43, 41, 50, 43, 46, 50, 30, 2, 6, 13, 47, 42, 44, 45, 53, 53, 53, 36, 50, 45, 39, 43, 35, 50, 39, 49, 36, 47, 41, 39, 48, 42, 39, 46, 45, 41, 50, 44, 2, 6, 37, 47, 49, 45, 2, 6, 41, 43, 41, 51, 45, 50, 43, 47, 43, 48, 42, 39, 45, 38, 46, 2, 19, 2, 53, 42, 14, 40, 44, 14, 42, 40, 11, 39, 41, 53, 19, 53, 2, 6, 40, 2, 6, 27, 2, 6, 12, 2, 6, 12, 2, 6, 12, 2, 15, 2, 38, 35, 38, 39, 2, 6, 44, 2, 6, 42, 38, 44, 48, 43, 42, 40, 41, 37, 2, 6, 38, 46, 44, 45, 49, 51, 48, 42, 2, 6, 45, 45, 47, 42, 42, 39, 45, 47, 44, 2, 6, 45, 44, 2, 11, 2, 2, 2, 52, 2, 63, 35, 2, 7, 47, 46, 52, 38, 47, 42, 41, 47, 47, 43, 42, 52, 45, 42, 45, 46, 47, 39, 46, 44, 46, 47, 40, 44, 49, 47, 47, 41, 43, 44, 46, 46, 43, 42, 45, 41, 48, 34, 49, 2, 16, 47, 2, 7, 41, 2, 35, 2, 45, 47, 41, 54, 45, 43, 42, 46, 34, 2, 7, 16, 44, 49, 37, 42, 50, 49, 2, 7, 51, 2, 6, 47, 37, 41, 41, 2, 7, 45, 45, 41, 2, 6, 54, 2, 7, 46, 2, 6, 44, 2, 8, 43, 50, 38, 40, 53, 37, 2, 6, 26, 2, 8, 11, 39, 2, 6, 45, 44, 38, 41, 40, 41, 49, 48, 45, 44, 47, 2, 7, 52, 47, 48, 53, 37, 43, 38, 46, 43, 40, 41, 44, 40, 43, 48, 46, 43, 48, 48, 48, 40, 45, 43, 35, 46, 41, 40, 38, 39, 43, 45, 2, 8, 46, 49, 2, 6, 41, 2, 7, 38, 41, 43, 45, 45, 48, 52, 41, 2, 26, 2, 6, 45, 38, 39, 49, 42, 40, 43, 53, 49, 50, 41, 46, 46, 47, 45, 38, 47, 55, 45, 47, 46, 48, 54, 49, 37, 44, 43, 46, 43, 40, 49, 2, 43, 2, 6, 24, 2, 6, 28, 34, 2, 6, 48, 2, 6, 54, 47, 12, 2, 6, 17, 2, 6, 47, 47, 2, 6, 37, 2, 6, 37, 40, 39, 45, 38, 47, 2, 6, 47, 2, 6, 43, 44, 2, 6, 41, 2, 6, 50, 47, 42, 41, 39, 2, 6, 17, 2, 6, 28, 2, 6, 39, 2, 6, 40, 39, 2, 6, 41, 2, 6, 10, 2, 6, 32, 2, 6, 21, 2, 6, 35, 41, 38, 21, 2, 6, 29, 2, 6, 42, 40, 43, 51, 35, 43, 49, 45, 55, 39, 46, 38, 49, 45, 50, 43, 32, 2, 6, 21, 2, 6, 46, 2, 6, 26, 2, 6, 17, 45, 39, 43, 43, 43, 30, 2, 6, 20, 2, 6, 44, 43, 24, 2, 6, 45, 30, 2, 15, 17, 2, 6, 17, 2, 7, 17, 2, 6, 18, 2, 7, 29, 2, 6, 28, 2, 6, 41, 2, 6, 29, 2, 6, 45, 2, 6, 14, 2, 6, 17, 2, 6, 30, 2, 6, 18, 2, 6, 27, 2, 6, 32, 2, 6, 39, 2, 6, 53, 2, 15, 17, 2, 6, 19, 2, 6, 30, 2, 6, 40, 19, 2, 6, 24, 30, 2, 6, 20, 2, 6, 40, 50, 43, 44, 42, 41, 42, 46, 46, 17, 2, 6, 26, 2, 6, 39, 2, 44, 2, 46, 52, 53, 53, 2, 9, 2, 2, 2, 40, 2, 30, 2, 7, 40, 40, 40, 27, 2, 6, 20, 2, 7, 45, 40, 40, 45, 41, 10, 2, 6, 17, 2, 7, 19, 43, 46, 41, 46, 42, 44, 49, 41, 37, 46, 44, 48, 42, 55, 42, 39, 47, 45, 46, 45, 50, 32, 44, 45, 39, 38, 39, 46, 44, 44, 41, 42, 41, 48, 2, 6, 45, 48, 40, 45, 47, 47, 29, 2, 7, 17, 45, 2, 19, 2, 38, 38, 2, 6, 47, 45, 56, 2, 38, 2, 38, 51, 41, 43, 52, 49, 45, 48, 42, 45, 46, 52, 40, 46, 40, 49, 45, 37, 44, 44, 45, 43, 42, 44, 2, 7, 42, 2, 6, 47, 2, 7, 38, 26, 2, 6, 27, 44, 2, 7, 11, 2, 9, 2, 6, 42, 2, 6, 52, 2, 6, 24, 39, 45, 53, 37, 46, 43, 45, 44, 2, 6, 45, 25, 2, 6, 47, 41, 47, 2, 6, 46, 2, 6, 47, 49, 54, 48, 45, 2, 6, 42, 24, 2, 6, 44, 2, 6, 52, 42, 2, 6, 45, 45, 48, 48, 45, 44, 47, 40, 44, 43, 38, 41, 50, 47, 39, 44, 43, 51, 40, 48, 42, 2, 6, 24, 2, 11, 2, 2, 2, 25, 2, 41, 2, 6, 42, 2, 6, 35, 2, 6, 16, 2, 6, 29, 2, 6, 19, 2, 6, 52, 43, 2, 57, 2, 31, 2, 6, 50, 52, 49, 43, 28, 2, 6, 17, 2, 6, 18, 43, 41, 50, 39, 47, 50, 42, 52, 39, 37, 48, 50, 42, 39, 50, 46, 50, 43, 45, 48, 35, 46, 46, 42, 21, 2, 6, 26, 2, 16, 2, 6, 44, 46, 55, 38, 42, 51, 41, 41, 44, 48, 39, 41, 44, 49, 43, 46, 38, 48, 49, 2, 25, 2, 6, 36, 37, 15, 2, 6, 33, 40, 24, 2, 6, 18, 2, 6, 43, 2, 6, 18, 2, 6, 31, 38, 42, 35, 43, 2, 6, 49, 40, 42, 43, 49, 41, 42, 39, 38, 28, 2, 6, 22, 26, 2, 6, 28, 2, 6, 22, 2, 6, 29, 2, 6, 20, 42, 40, 2, 18, 2, 45, 2, 28, 2, 53, 40, 2, 28, 2, 6, 38, 2, 6, 46, 2, 6, 44, 2, 6, 46, 2, 6, 24, 2, 6, 24, 2, 11, 2, 2, 2, 44, 2, 27, 2, 6, 55, 2, 8, 10, 2, 6, 9, 2, 8, 25, 44, 24, 2, 6, 19, 2, 8, 43, 25, 2, 6, 28, 2, 8, 47, 2, 6, 7, 2, 8, 27, 46, 44, 48, 49, 41, 43, 51, 58, 41, 42, 41, 37, 53, 43, 2, 6, 8, 2, 8, 45, 2, 6, 9, 2, 8, 41, 45, 2, 6, 49, 40, 26, 2, 8, 18, 47, 42, 51, 46, 49, 36, 44, 46, 22, 2, 6, 22, 13, 2, 8, 45, 54, 45, 41, 45, 41, 41, 45, 43, 45, 19, 40, 48, 44, 37, 22, 45, 47, 36, 38, 41, 40, 39, 40, 48, 43, 41, 43, 47, 41, 48, 21, 44, 50, 41, 37, 43, 39, 42, 43, 37, 39, 40, 47, 48, 46, 49, 42, 41, 36, 2, 9, 2, 6, 47, 51, 43, 41, 48, 42, 34, 42, 51, 42, 42, 41, 46, 26, 46, 39, 50, 47, 2, 12, 2, 43, 36, 17, 2, 6, 31, 2, 6, 26, 2, 6, 30, 2, 6, 11, 2, 6, 34, 2, 6, 39, 2, 32, 2, 6, 26, 2, 6, 21, 2, 6, 15, 2, 6, 24, 2, 6, 23, 2, 6, 28, 2, 6, 17, 2, 6, 55, 23, 2, 15, 25, 2, 6, 49, 27, 2, 6, 52, 18, 2, 6, 35, 43, 45, 54, 41, 43, 25, 2, 6, 49, 2, 6, 38, 23, 2, 6, 30, 2, 6, 47, 52, 46, 45, 49, 45, 27, 2, 6, 30, 2, 6, 47, 2, 15, 23, 2, 6, 19, 2, 6, 11, 17, 2, 6, 27, 2, 6, 16, 2, 6, 34, 2, 6, 32, 2, 8, 19, 2, 6, 58, 52, 19, 2, 6, 28, 2, 6, 44, 20, 2, 8, 19, 2, 6, 47, 25, 41, 45, 20, 2, 8, 19, 2, 6, 55, 51, 2, 6, 48, 2, 6, 46, 53, 40, 13, 44, 44, 45, 35, 49, 48, 44, 60, 62, 39, 48, 48, 8, 2, 8, 19, 2, 6, 47, 42, 37, 51, 53, 46, 44, 41, 31, 2, 11, 2, 2, 2, 9, 2, 38, 2, 32, 2, 6, 48, 2, 6, 18, 2, 6, 48, 39, 19, 2, 6, 27, 2, 6, 50, 46, 52, 45, 46, 48, 45, 53, 46, 47, 2, 6, 25, 2, 6, 50, 40, 43, 48, 42, 46, 40, 23, 2, 6, 21, 2, 6, 50, 31, 2, 6, 36, 2, 6, 48, 42, 34, 59, 43, 41, 36, 21, 2, 6, 22, 2, 6, 31, 2, 6, 14, 20, 2, 6, 30, 41, 43, 51, 11, 46, 44, 45, 41, 50, 41, 21, 2, 6, 21, 2, 6, 67, 64, 2, 6, 56, 13, 2, 6, 44, 50, 38, 56, 49, 45, 43, 39, 14, 50, 40, 42, 38, 38, 46, 2, 6, 18, 2, 6, 32, 2, 6, 15, 2, 6, 38, 2, 6, 19, 2, 6, 28, 2, 6, 16, 2, 6, 11, 2, 18, 2, 18, 2, 38, 2, 6, 43, 2, 6, 32, 2, 6, 41, 46, 45, 42, 51, 39, 38, 43, 2, 6, 19, 2, 6, 25, 25, 2, 6, 15, 2, 6, 44, 44, 45, 37, 41, 41, 48, 42, 40, 46, 45, 45, 46, 43, 2, 6, 44, 35, 40, 47, 36, 46, 50, 2, 6, 44, 36, 19, 2, 6, 25, 47, 51, 51, 34, 42, 38, 46, 57, 45, 2, 11, 2, 2, 2, 33, 2, 58, 2, 7, 45, 44, 41, 45, 43, 43, 43, 54, 44, 39, 51, 51, 48, 40, 45, 41, 50, 39, 2, 8, 45, 44, 48, 41, 40, 40, 43, 31, 2, 6, 21, 47, 44, 19, 2, 7, 15, 47, 41, 18, 2, 7, 46, 2, 8, 46, 38, 44, 44, 2, 7, 45, 30, 2, 8, 11, 2, 58, 2, 19, 2, 6, 44, 24, 2, 7, 47, 2, 6, 45, 36, 41, 45, 39, 43, 36, 2, 7, 43, 2, 6, 43, 49, 2, 7, 46, 2, 18, 2, 44, 50, 2, 8, 40, 48, 2, 7, 26, 2, 49, 2, 27, 47, 2, 7, 44, 41, 44, 41, 41, 50, 42, 47, 43, 44, 39, 49, 40, 48, 46, 42, 41, 18, 45, 45, 41, 26, 2, 7, 19, 45, 39, 50, 49, 20, 2, 35, 2, 6, 32, 38, 39, 51, 49, 46, 51, 42, 44, 43, 18, 2, 8, 29, 2, 6, 37, 49, 44, 41, 44, 44, 42, 43, 42, 10, 48, 39, 46, 10, 60, 13, 61, 35, 10, 44, 2, 8, 31, 2, 6, 46, 10, 35, 36, 30, 30, 63, 67, 12, 67, 15, 49, 39, 48, 24, 2, 7, 18, 20, 2, 6, 26, 2, 7, 38, 2, 6, 50, 46, 42, 47, 44, 41, 45, 45, 49, 43, 46, 50, 47, 41, 47, 44, 40, 44, 49, 40, 22, 2, 7, 25, 2, 8, 25, 2, 6, 52, 40, 27, 2, 7, 18, 2, 6, 44, 36, 39, 47, 20, 2, 7, 28, 2, 6, 48, 20, 2, 8, 20, 2, 6, 47, 36, 41, 43, 37, 30, 2, 7, 17, 2, 8, 53, 2, 6, 35, 46, 2, 39, 2, 26, 2, 31, 2, 6, 20, 2, 6, 26, 2, 6, 38, 2, 6, 17, 2, 6, 40, 2, 6, 18, 2, 6, 61, 29, 2, 6, 28, 2, 6, 65, 32, 2, 6, 18, 2, 6, 64, 52, 2, 6, 67, 64, 65, 65, 16, 2, 6, 22, 2, 6, 30, 2, 6, 14, 2, 6, 44, 2, 6, 63, 61, 61, 65, 67, 62, 64, 2, 6, 64, 40, 2, 6, 16, 2, 6, 65, 64, 64, 67, 67, 18, 2, 6, 57, 67, 7, 2, 6, 25, 2, 6, 26, 2, 39, 2, 6, 46, 2, 6, 35, 2, 18, 2, 7, 19, 2, 6, 20, 2, 6, 61, 41, 2, 6, 43, 2, 7, 38, 46, 2, 6, 28, 2, 6, 19, 2, 6, 56, 10, 2, 7, 25, 2, 6, 56, 28, 2, 6, 51, 2, 6, 58, 62, 64, 9, 2, 7, 18, 2, 6, 21, 2, 6, 24, 2, 6, 60, 43, 2, 6, 27, 2, 6, 62, 56, 2, 6, 65, 7, 2, 6, 61, 61, 2, 7, 63, 48, 2, 6, 33, 2, 6, 64, 30, 2, 6, 64, 64, 23, 2, 17, 22, 2, 6, 57, 62, 65, 23, 2, 6, 43, 2, 6, 62, 66, 58, 64, 2, 7, 30, 2, 6, 59, 67, 65, 20, 2, 6, 23, 2, 6, 63, 59, 64, 66, 38, 2, 6, 34, 2, 6, 65, 10, 2, 7, 28, 2, 6, 60, 60, 66, 64, 64, 67, 66, 64, 65, 60, 62, 64, 67, 66, 53, 2, 6, 50, 2, 6, 60, 2, 6, 59, 65, 62, 2, 6, 61, 67, 65, 63, 63, 63, 7, 2, 6, 56, 25, 2, 6, 54, 46, 2, 6, 57, 13, 2, 6, 61, 29, 2, 6, 27, 2, 6, 35, 2, 6, 62, 66, 65, 67, 65, 27, 2, 6, 58, 63, 57, 67, 66, 31, 2, 6, 64, 62, 66, 32, 2, 6, 16, 2, 7, 50, 2, 6, 28, 2, 6, 55, 2, 6, 62, 65, 67, 67, 31, 2, 32, 2, 7, 24, 2, 6, 63, 64, 63, 60, 64, 31, 2, 7, 24, 2, 6, 61, 29, 2, 19, 2, 6, 30, 2, 6, 67, 66, 2, 6, 64, 23, 2, 6, 67, 53, 2, 6, 35, 2, 6, 64, 9, 2, 6, 38, 2, 6, 13, 2, 6, 19, 2, 6, 36, 2, 6, 59, 59, 66, 64, 67, 15, 2, 6, 58, 2, 6, 32, 2, 6, 7, 37, 38, 2, 2, 6, 32, 2, 6, 38, 2, 6, 60, 20, 2, 6, 24, 2, 6, 30, 2, 6, 7, 26, 21, 45, 65, 28, 2, 31, 2, 64, 62, 60, 61, 63, 62, 67, 60, 64, 51, 2, 9, 23, 2, 6, 63, 65, 66, 67, 67, 64, 64, 61, 62, 67, 67, 64, 61, 2, 49, 2, 43, 2, 46, 49, 48, 53, 44, 44, 53, 50, 45, 54, 44, 51, 32, 2, 18, 2, 6, 60, 13, 2, 9, 23, 53, 48, 43, 51, 50, 53, 48, 49, 52, 42, 51, 44, 48, 17, 45, 52, 49, 48, 52, 44, 44, 47, 51, 26, 52, 43, 53, 53, 29, 2, 6, 19, 2, 6, 64, 65, 12, 2, 9, 49, 2, 6, 21, 2, 6, 38, 2, 9, 53, 46, 49, 45, 49, 53, 59, 49, 46, 51, 50, 49, 54, 29, 2, 6, 64, 27, 2, 6, 62, 62, 67, 65, 51, 2, 6, 53, 2, 6, 53, 64, 65, 28, 2, 6, 13, 2, 6, 51, 2, 55, 2, 60, 11, 2, 9, 14, 2, 6, 60, 66, 29, 2, 9, 14, 2, 6, 58, 2, 22, 2, 61, 37, 2, 6, 15, 2, 40, 2, 6, 24, 17, 41, 44, 42, 44, 45, 45, 48, 49, 13, 40, 48, 43, 50, 48, 42, 43, 38, 8, 40, 45, 41, 40, 42, 46, 46, 55, 48, 46, 40, 40, 43, 49, 56, 15, 44, 44, 44, 48, 38, 13, 49, 43, 39, 43, 42, 50, 53, 45, 44, 47, 47, 44, 46, 41, 43, 41, 48, 48, 2, 9, 2, 2, 2, 2, 10, 2, 32, 2, 57, 16, 2, 7, 43, 45, 42, 38, 2, 6, 46, 48, 2, 7, 43, 41, 47, 20, 2, 8, 26, 2, 6, 24, 2, 7, 43, 2, 6, 43, 25, 2, 8, 19, 17, 2, 6, 44, 50, 41, 42, 42, 32, 2, 6, 17, 47, 29, 2, 7, 48, 28, 42, 45, 2, 6, 20, 2, 40, 2, 7, 31, 45, 42, 18, 43, 48, 42, 38, 42, 27, 2, 8, 21, 39, 44, 52, 41, 23, 2, 6, 23, 2, 15, 2, 6, 51, 61, 42, 50, 52, 35, 20, 2, 7, 28, 55, 51, 45, 42, 17, 2, 6, 45, 2, 29, 2, 17, 2, 6, 47, 43, 45, 44, 49, 39, 48, 45, 45, 53, 50, 45, 41, 38, 50, 51, 46, 41, 43, 40, 51, 40, 48, 44, 42, 45, 41, 46, 39, 49, 43, 45, 45, 42, 28, 2, 6, 15, 43, 2, 6, 39, 2, 6, 39, 40, 31, 2, 6, 12, 25, 2, 6, 48, 49, 51, 41, 47, 17, 2, 6, 25, 2, 6, 10, 2, 6, 15, 2, 6, 27, 2, 6, 62, 27, 2, 6, 64, 2, 6, 58, 65, 66, 55, 2, 6, 42, 2, 6, 55, 64, 6, 2, 6, 26, 2, 6, 57, 65, 67, 66, 63, 67, 66, 60, 9, 2, 6, 19, 2, 6, 59, 39, 2, 6, 33, 2, 6, 65, 66, 64, 63, 63, 11, 2, 6, 33, 2, 6, 59, 67, 66, 67, 63, 66, 29, 2, 9, 2, 6, 42, 59, 44, 45, 52, 43, 42, 47, 50, 48, 37, 48, 2, 31, 2, 7, 44, 52, 53, 42, 43, 44, 31, 51, 42, 42, 36, 45, 48, 47, 2, 6, 40, 42, 48, 45, 46, 41, 44, 47, 47, 47, 43, 31, 2, 7, 17, 46, 2, 11, 2, 2, 2, 33, 2, 37, 2, 6, 58, 64, 65, 60, 62, 52, 65, 67, 67, 65, 67, 52, 2, 11, 24, 2, 6, 62, 66, 63, 66, 63, 64, 64, 66, 60, 62, 65, 65, 59, 64, 60, 64, 25, 2, 11, 58, 2, 6, 62, 63, 63, 64, 65, 64, 17, 2, 19, 2, 50, 2, 58, 2, 6, 40, 2, 6, 29, 2, 18, 2, 35, 2, 16, 19, 2, 25, 2, 6, 20, 2, 18, 2, 6, 36, 2, 6, 38, 39, 2, 6, 20, 2, 6, 30, 44, 45, 60, 46, 43, 50, 48, 44, 50, 49, 42, 52, 49, 47, 49, 50, 47, 46, 43, 46, 47, 47, 40, 43, 39, 41, 33, 44, 41, 45, 28, 2, 6, 16, 52, 44, 2, 6, 46, 18, 2, 66, 41, 2, 7, 30, 2, 6, 62, 45, 2, 7, 62, 7, 2, 6, 67, 21, 2, 6, 54, 2, 6, 21, 2, 6, 64, 12, 2, 6, 65, 20, 2, 6, 44, 2, 8, 41, 2, 6, 48, 2, 6, 41, 2, 6, 32, 33, 2, 6, 14, 2, 6, 32, 2, 6, 14, 2, 6, 39, 2, 6, 27, 2, 6, 51, 2, 6, 19, 2, 6, 10, 2, 6, 25, 2, 6, 9, 2, 6, 14, 2, 6, 60, 65, 22, 2, 6, 38, 2, 6, 62, 66, 66, 67, 62, 57, 2, 41, 2, 62, 60, 59, 57, 63, 66, 66, 61, 64, 67, 43, 2, 11, 2, 6, 27, 2, 6, 53, 2, 6, 52, 2, 19, 2, 6, 64, 19, 2, 6, 39, 2, 6, 61, 50, 2, 6, 53, 2, 6, 33, 36, 35, 2, 6, 44, 2, 6, 22, 2, 6, 18, 2, 29, 2, 10, 49, 47, 44, 50, 49, 39, 2, 11, 39, 44, 42, 47, 46, 43, 43, 36, 49, 41, 52, 56, 2, 10, 50, 48, 48, 42, 27, 2, 11, 23, 47, 38, 47, 2, 6, 30, 2, 11, 41, 48, 38, 39, 2, 10, 44, 40, 37, 38, 51, 40, 36, 45, 42, 44, 37, 46, 48, 47, 49, 54, 43, 50, 51, 45, 41, 46, 43, 33, 38, 40, 40, 52, 43, 51, 2, 11, 46, 46, 40, 42, 43, 46, 47, 35, 2, 6, 43, 2, 10, 49, 48, 29, 11, 2, 11, 23, 44, 2, 9, 2, 6, 32, 2, 8, 39, 2, 6, 30, 2, 7, 56, 2, 6, 61, 8, 2, 7, 28, 2, 6, 58, 63, 65, 61, 66, 14, 2, 19, 2, 43, 2, 6, 33, 2, 6, 61, 23, 2, 6, 38, 2, 6, 51, 2, 6, 26, 2, 6, 62, 64, 22, 2, 6, 58, 46, 49, 52, 37, 38, 2, 45, 2, 6, 64, 62, 66, 2, 6, 17, 2, 6, 33, 2, 8, 20, 2, 6, 21, 2, 7, 28, 2, 6, 25, 2, 38, 2, 6, 40, 30, 48, 32, 66, 62, 60, 2, 6, 15, 2, 6, 22, 38, 32, 41, 28, 2, 6, 24, 2, 6, 59, 24, 2, 6, 21, 2, 6, 35, 2, 6, 27, 2, 6, 51, 41, 45, 19, 2, 39, 2, 7, 45, 2, 6, 23, 2, 7, 17, 2, 6, 23, 2, 7, 48, 2, 6, 18, 2, 7, 34, 2, 6, 63, 62, 34, 2, 7, 61, 31, 2, 6, 29, 2, 7, 61, 22, 2, 6, 18, 2, 7, 61, 65, 62, 34, 2, 6, 16, 2, 7, 16, 2, 6, 64, 65, 65, 8, 2, 6, 57, 27, 2, 6, 65, 50, 2, 6, 64, 2, 6, 60, 24, 2, 6, 32, 2, 6, 51, 2, 6, 64, 63, 14, 2, 6, 26, 2, 6, 62, 33, 2, 6, 64, 8, 2, 41, 2, 67, 66, 14, 2, 7, 63, 2, 6, 62, 2, 7, 20, 2, 6, 13, 2, 7, 23, 2, 6, 19, 2, 7, 34, 2, 6, 56, 63, 63, 2, 7, 59, 21, 2, 6, 61, 64, 63, 64, 63, 65, 65, 26, 2, 19, 2, 21, 2, 6, 57, 2, 6, 60, 2, 6, 44, 2, 6, 31, 2, 6, 29, 2, 6, 18, 2, 6, 20, 2, 6, 63, 41, 2, 6, 16, 2, 9, 2, 6, 27, 2, 18, 2, 22, 2, 41, 2, 43, 53, 55, 40, 51, 44, 41, 33, 44, 45, 39, 45, 2, 9, 2, 2, 2, 34, 2, 46, 2, 7, 44, 50, 44, 41, 40, 39, 22, 2, 7, 28, 36, 37, 39, 2, 6, 40, 47, 45, 45, 41, 43, 46, 43, 49, 50, 42, 42, 46, 2, 7, 45, 41, 33, 2, 15, 19, 2, 25, 2, 19, 2, 6, 45, 37, 56, 43, 50, 50, 50, 39, 27, 2, 7, 23, 2, 18, 2, 45, 43, 38, 41, 45, 43, 45, 44, 50, 47, 48, 40, 48, 40, 44, 47, 49, 44, 48, 44, 45, 41, 45, 43, 42, 47, 49, 47, 45, 43, 41, 43, 44, 45, 57, 41, 18, 2, 23, 2, 17, 2, 6, 43, 47, 47, 42, 44, 12, 42, 43, 51, 50, 48, 48, 41, 46, 5, 46, 42, 43, 40, 41, 51, 46, 44, 43, 2, 9, 2, 32, 2, 7, 44, 44, 2, 9, 2, 2, 2, 39, 2, 29, 2, 6, 50, 55, 53, 47, 30, 2, 6, 35, 2, 8, 19, 44, 2, 35, 2, 17, 2, 6, 33, 2, 8, 45, 2, 6, 43, 2, 8, 45, 2, 6, 44, 2, 8, 23, 2, 6, 24, 2, 8, 21, 2, 6, 26, 51, 49, 2, 8, 50, 2, 6, 52, 38, 43, 2, 8, 47, 17, 2, 6, 39, 2, 6, 26, 25, 2, 35, 2, 6, 26, 2, 19, 2, 8, 28, 2, 6, 34, 2, 25, 2, 8, 41, 2, 6, 45, 44, 2, 8, 17, 2, 6, 28, 48, 16, 47, 47, 52, 46, 36, 40, 45, 2, 8, 51, 30, 2, 6, 13, 44, 44, 45, 47, 43, 40, 41, 47, 39, 44, 29, 2, 8, 18, 48, 2, 6, 45, 46, 43, 46, 44, 35, 39, 35, 43, 39, 52, 44, 48, 48, 45, 42, 48, 48, 54, 53, 42, 44, 41, 49, 46, 46, 48, 40, 20, 47, 43, 40, 45, 46, 43, 26, 2, 8, 26, 43, 46, 32, 2, 6, 18, 39, 48, 23, 2, 8, 25, 46, 24, 2, 6, 27, 46, 42, 40, 45, 27, 2, 8, 10, 2, 6, 33, 2, 16, 2, 44, 56, 2, 8, 17, 2, 6, 42, 46, 45, 9, 2, 8, 32, 44, 42, 46, 46, 23, 2, 6, 27, 2, 8, 26, 39, 48, 46, 45, 45, 42, 42, 46, 2, 6, 46, 52, 48, 43, 42, 51, 2, 8, 28, 2, 6, 27, 2, 8, 40, 2, 6, 27, 2, 8, 28, 2, 6, 47, 38, 50, 2, 15, 2, 8, 41, 32, 21, 2, 6, 10, 49, 49, 44, 46, 47, 46, 48, 47, 44, 45, 44, 45, 49, 41, 40, 45, 2, 8, 46, 2, 6, 38, 41, 45, 38, 46, 41, 42, 37, 41, 40, 45, 48, 45, 47, 41, 47, 25, 45, 43, 44, 41, 47, 35, 46, 27, 2, 8, 18, 2, 6, 43, 44, 49, 43, 51, 40, 39, 49, 48, 42, 46, 38, 38, 46, 41, 31, 2, 8, 46, 47, 28, 2, 6, 35, 2, 8, 8, 37, 2, 6, 53, 46, 47, 41, 40, 49, 45, 48, 46, 32, 46, 46, 49, 42, 46, 21, 2, 52, 2, 2, 2, 9, 2, 32, 2, 52, 2, 7, 54, 50, 20, 2, 8, 41, 2, 48, 2, 46, 2, 7, 34, 2, 8, 44, 43, 42, 45, 42, 26, 2, 7, 15, 44, 40, 39, 47, 41, 54, 46, 44, 40, 40, 45, 2, 8, 40, 43, 33, 47, 2, 7, 24, 45, 48, 40, 49, 2, 42, 2, 50, 40, 51, 49, 45, 2, 40, 2, 51, 43, 47, 42, 38, 51, 43, 40, 2, 11, 2, 39, 2, 17, 2, 6, 16, 2, 16, 32, 2, 6, 53, 2, 39, 2, 6, 50, 2, 6, 44, 2, 6, 49, 28, 2, 6, 20, 2, 6, 15, 2, 6, 64, 67, 12, 2, 6, 36, 2, 6, 61, 64, 64, 66, 65, 8, 2, 6, 32, 2, 6, 60, 2, 6, 63, 11, 2, 6, 63, 24, 2, 7, 19, 2, 6, 55, 2, 11, 2, 2, 2, 40, 2, 24, 2, 7, 47, 47, 44, 41, 49, 55, 53, 40, 44, 38, 16, 2, 22, 2, 30, 2, 6, 43, 25, 2, 7, 18, 2, 6, 51, 2, 7, 22, 2, 6, 37, 2, 34, 2, 7, 32, 2, 6, 12, 2, 7, 19, 2, 6, 53, 65, 65, 66, 64, 10, 2, 7, 13, 2, 6, 63, 41, 2, 7, 30, 2, 6, 62, 23, 2, 7, 20, 2, 6, 64, 66, 65, 28, 2, 7, 42, 2, 6, 29, 2, 22, 2, 7, 49, 41, 54, 50, 42, 45, 14, 2, 6, 14, 2, 7, 13, 2, 6, 7, 2, 7, 41, 2, 6, 59, 24, 2, 7, 28, 2, 6, 63, 51, 2, 9, 2, 7, 50, 45, 41, 54, 2, 40, 2, 51, 48, 43, 42, 47, 47, 38, 46, 43, 47, 44, 2, 9, 2, 2, 2, 31, 2, 42, 2, 6, 45, 43, 43, 44, 42, 39, 22, 2, 7, 23, 2, 6, 15, 2, 31, 2, 48, 2, 6, 35, 2, 7, 26, 2, 6, 32, 2, 7, 30, 2, 6, 25, 2, 7, 39, 2, 6, 42, 23, 2, 7, 39, 40, 41, 48, 41, 42, 2, 6, 44, 2, 7, 32, 2, 6, 47, 45, 50, 48, 45, 2, 7, 22, 2, 9, 2, 6, 32, 2, 6, 48, 2, 26, 2, 40, 42, 42, 45, 49, 39, 36, 42, 42, 43, 54, 45, 45, 54, 47, 45, 38, 44, 38, 36, 46, 44, 40, 40, 48, 46, 40, 46, 43, 40, 48, 43, 40, 46, 45, 2, 9, 2, 2, 2, 42, 2, 28, 2, 8, 28, 2, 7, 38, 32, 2, 8, 22, 2, 7, 47, 61, 53, 51, 38, 44, 51, 57, 53, 42, 53, 46, 2, 8, 18, 2, 17, 2, 43, 46, 39, 42, 2, 34, 2, 6, 44, 2, 8, 19, 2, 15, 37, 24, 33, 28, 2, 8, 43, 2, 6, 31, 10, 31, 27, 36, 28, 2, 8, 20, 2, 6, 17, 10, 43, 2, 15, 2, 8, 27, 2, 6, 10, 37, 37, 30, 2, 7, 26, 2, 6, 62, 67, 13, 2, 7, 26, 2, 6, 67, 25, 10, 39, 34, 33, 28, 2, 44, 35, 37, 27, 2, 7, 17, 2, 6, 53, 10, 33, 32, 43, 34, 2, 38, 30, 40, 40, 2, 7, 30, 2, 6, 59, 66, 63, 66, 33, 2, 9, 2, 7, 52, 2, 17, 2, 49, 52, 48, 45, 49, 45, 58, 56, 45, 45, 51, 44, 44, 47, 41, 48, 40, 42, 43, 43, 29, 2, 19, 2, 8, 28, 2, 7, 49, 2, 22, 2, 21, 2, 7, 25, 37, 46, 40, 51, 42, 37, 40, 46, 52, 40, 2, 8, 45, 44, 2, 19, 2, 7, 22, 2, 42, 2, 7, 51, 2, 8, 20, 2, 7, 28, 2, 8, 19, 2, 33, 2, 7, 49, 20, 2, 8, 23, 2, 7, 54, 47, 47, 20, 2, 7, 29, 43, 47, 42, 45, 45, 54, 13, 2, 7, 21, 2, 7, 7, 2, 8, 17, 2, 7, 26, 2, 7, 45, 51, 47, 45, 45, 44, 31, 2, 7, 21, 2, 7, 29, 46, 32, 2, 7, 15, 37, 56, 54, 19, 2, 7, 23, 2, 7, 26, 2, 7, 49, 44, 28, 2, 7, 20, 41, 45, 39, 43, 26, 2, 8, 27, 2, 7, 30, 2, 58, 11, 2, 51, 46, 49, 46, 42, 46, 43, 46, 43, 27, 2, 6, 10, 40, 35, 43, 2, 25, 2, 7, 50, 25, 2, 6, 59, 67, 20, 2, 7, 34, 2, 6, 55, 54, 2, 7, 58, 2, 6, 63, 58, 67, 67, 49, 10, 43, 2, 7, 47, 40, 2, 6, 10, 32, 32, 26, 27, 30, 2, 36, 29, 30, 29, 31, 2, 57, 2, 9, 2, 7, 25, 2, 7, 42, 37, 51, 50, 36, 49, 49, 37, 45, 44, 25, 2, 7, 17, 43, 49, 41, 50, 33, 2, 7, 15, 50, 24, 2, 11, 2, 2, 2, 39, 2, 32, 2, 6, 41, 2, 10, 51, 2, 6, 19, 2, 17, 2, 43, 47, 2, 18, 2, 11, 21, 2, 6, 25, 2, 9, 59, 67, 50, 2, 6, 52, 60, 63, 63, 66, 63, 67, 67, 66, 66, 66, 65, 65, 58, 44, 2, 51, 47, 36, 2, 11, 2, 2, 2, 40, 2, 27, 2, 7, 47, 47, 46, 44, 18, 2, 7, 31, 44, 39, 45, 29, 2, 7, 29, 49, 53, 46, 47, 43, 48, 43, 39, 48, 49, 52, 49, 43, 38, 33, 2, 7, 36, 41, 44, 42, 49, 2, 7, 53, 44, 49, 52, 43, 48, 2, 22, 2, 21, 2, 7, 32, 42, 2, 7, 32, 2, 7, 45, 50, 27, 2, 7, 31, 11, 2, 19, 2, 65, 63, 63, 64, 2, 52, 41, 2, 7, 20, 2, 7, 38, 44, 20, 2, 7, 45, 40, 46, 21, 2, 7, 25, 42, 26, 2, 7, 14, 41, 2, 7, 45, 46, 43, 36, 47, 42, 49, 23, 2, 7, 27, 38, 28, 2, 7, 17, 49, 45, 47, 43, 42, 27, 2, 7, 29, 2, 7, 36, 44, 45, 44, 52, 37, 51, 50, 45, 47, 43, 51, 42, 28, 2, 7, 17, 2, 7, 11, 2, 7, 23, 2, 7, 16, 2, 7, 42, 28, 2, 7, 28, 37, 39, 38, 46, 54, 47, 46, 37, 43, 44, 21, 2, 7, 28, 2, 7, 39, 43, 25, 2, 7, 19, 2, 7, 48, 40, 39, 42, 43, 45, 42, 37, 45, 55, 40, 49, 52, 56, 45, 44, 21, 2, 7, 34, 2, 7, 46, 51, 51, 47, 49, 38, 52, 44, 46, 47, 44, 46, 30, 2, 7, 14, 44, 38, 40, 44, 45, 47, 51, 52, 18, 2, 7, 30, 47, 47, 54, 51, 47, 49, 47, 9, 44, 48, 53, 47, 44, 29, 2, 16, 2, 23, 2, 8, 41, 55, 2, 7, 20, 2, 8, 41, 50, 44, 53, 45, 53, 48, 46, 42, 53, 45, 48, 39, 38, 45, 49, 47, 17, 2, 7, 28, 2, 8, 19, 2, 7, 44, 42, 43, 50, 41, 49, 31, 2, 9, 2, 7, 25, 40, 43, 25, 2, 11, 2, 2, 2, 8, 2, 24, 2, 38, 2, 10, 59, 26, 2, 10, 64, 57, 2, 10, 65, 2, 10, 21, 2, 10, 60, 66, 63, 39, 2, 10, 38, 2, 10, 59, 66, 66, 64, 56, 2, 10, 18, 2, 10, 39, 2, 10, 53, 67, 2, 10, 59, 67, 62, 67, 28, 2, 10, 21, 2, 10, 39, 2, 10, 19, 2, 10, 62, 65, 63, 29, 2, 10, 8, 2, 10, 60, 31, 2, 10, 64, 2, 10, 60, 63, 61, 67, 2, 10, 65, 2, 10, 31, 2, 10, 24, 2, 10, 7, 2, 10, 22, 2, 44, 2, 10, 60, 61, 62, 61, 9, 2, 22, 2, 19, 2, 40, 35, 49, 43, 2, 6, 62, 15, 2, 6, 52, 2, 6, 63, 8, 2, 10, 10, 38, 36, 39, 35, 2, 22, 2, 6, 61, 64, 63, 64, 15, 2, 6, 20, 2, 6, 61, 67, 57, 20, 2, 6, 14, 2, 6, 61, 65, 64, 62, 7, 2, 10, 10, 36, 33, 36, 32, 2, 28, 2, 6, 61, 66, 65, 65, 65, 64, 65, 65, 64, 65, 65, 66, 11, 2, 6, 26, 2, 6, 39, 2, 6, 37, 2, 6, 63, 54, 2, 10, 12, 10, 36, 32, 2, 6, 50, 2, 10, 67, 36, 2, 6, 62, 52, 2, 10, 59, 2, 6, 32, 2, 10, 18, 2, 6, 18, 2, 10, 19, 2, 6, 27, 2, 10, 60, 2, 6, 58, 62, 64, 66, 57, 2, 10, 60, 39, 2, 6, 25, 2, 10, 60, 64, 15, 2, 6, 42, 2, 10, 59, 47, 2, 6, 6, 2, 10, 66, 2, 6, 18, 2, 10, 27, 2, 6, 16, 2, 10, 35, 2, 6, 19, 2, 10, 61, 15, 2, 6, 50, 2, 10, 60, 66, 64, 16, 2, 6, 27, 2, 10, 61, 67, 67, 38, 2, 6, 15, 2, 10, 61, 2, 6, 18, 2, 10, 60, 61, 27, 2, 6, 7, 2, 10, 12, 2, 6, 64, 65, 67, 64, 65, 64, 65, 60, 61, 67, 20, 2, 6, 23, 2, 6, 64, 2, 6, 10, 2, 6, 20, 2, 26, 2, 6, 19, 2, 6, 55, 63, 23, 2, 6, 50, 2, 6, 62, 61, 66, 63, 50, 47, 45, 51, 52, 50, 2, 59, 66, 2, 52, 47, 47, 42, 27, 2, 26, 2, 7, 21, 2, 6, 18, 27, 2, 7, 21, 2, 11, 41, 48, 50, 47, 48, 54, 43, 46, 21, 2, 7, 29, 2, 11, 18, 43, 40, 27, 2, 7, 25, 40, 52, 40, 26, 2, 6, 25, 2, 8, 32, 23, 51, 53, 33, 2, 7, 15, 43, 44, 47, 48, 25, 45, 45, 42, 18, 2, 6, 14, 24, 48, 52, 41, 18, 25, 2, 7, 26, 23, 2, 6, 24, 46, 43, 39, 45, 2, 7, 21, 2, 8, 17, 2, 6, 14, 2, 6, 25, 2, 61, 2, 6, 44, 38, 2, 8, 23, 2, 6, 42, 45, 45, 2, 7, 24, 2, 8, 31, 2, 6, 36, 62, 41, 43, 42, 42, 49, 43, 45, 47, 28, 2, 8, 23, 44, 38, 46, 32, 2, 6, 16, 42, 40, 38, 46, 2, 9, 2, 7, 45, 2, 17, 14, 54, 45, 48, 42, 40, 42, 2, 11, 2, 2, 2, 33, 2, 29, 2, 6, 50, 39, 2, 6, 23, 2, 6, 47, 46, 49, 47, 43, 55, 42, 29, 2, 6, 23, 2, 6, 19, 43, 43, 47, 41, 40, 49, 38, 44, 48, 47, 43, 42, 31, 2, 6, 16, 2, 6, 49, 42, 2, 6, 16, 2, 6, 45, 42, 42, 42, 41, 45, 44, 44, 29, 2, 6, 19, 2, 6, 41, 40, 52, 48, 41, 44, 47, 43, 44, 28, 2, 6, 22, 2, 6, 40, 39, 42, 46, 57, 47, 49, 23, 2, 6, 42, 2, 6, 50, 47, 37, 44, 43, 22, 2, 6, 27, 2, 6, 50, 52, 46, 42, 53, 54, 39, 18, 2, 6, 46, 42, 2, 6, 40, 46, 36, 34, 36, 49, 48, 26, 2, 6, 24, 2, 16, 2, 6, 49, 2, 6, 52, 2, 6, 19, 2, 6, 65, 65, 67, 42, 2, 6, 56, 41, 2, 6, 58, 45, 2, 6, 39, 2, 6, 56, 2, 6, 42, 2, 6, 55, 2, 6, 63, 65, 58, 11, 2, 6, 28, 39, 2, 6, 61, 57, 61, 66, 66, 47, 2, 6, 61, 65, 64, 67, 67, 64, 45, 2, 6, 46, 2, 6, 64, 15, 2, 6, 6, 2, 6, 67, 14, 2, 6, 48, 2, 6, 13, 2, 6, 59, 2, 6, 14, 2, 6, 33, 2, 6, 63, 30, 2, 6, 55, 2, 6, 60, 58, 2, 6, 60, 43, 2, 6, 20, 2, 6, 20, 2, 6, 39, 2, 6, 58, 60, 67, 63, 63, 23, 2, 6, 30, 2, 6, 61, 2, 6, 38, 2, 6, 59, 67, 62, 67, 66, 2, 6, 58, 59, 63, 46, 2, 6, 21, 2, 6, 58, 2, 6, 62, 59, 64, 65, 25, 2, 6, 33, 2, 6, 60, 2, 6, 37, 2, 6, 15, 2, 15, 2, 63, 13, 2, 6, 52, 2, 6, 67, 67, 63, 60, 64, 43, 2, 17, 2, 7, 59, 66, 65, 24, 2, 6, 64, 67, 22, 2, 7, 45, 2, 6, 16, 2, 7, 59, 34, 2, 6, 24, 2, 14, 2, 6, 36, 2, 6, 61, 67, 63, 2, 6, 22, 2, 6, 60, 32, 2, 6, 64, 41, 2, 6, 61, 65, 66, 65, 29, 2, 64, 12, 2, 7, 49, 2, 46, 2, 6, 50, 39, 53, 42, 18, 47, 45, 45, 39, 47, 44, 45, 43, 37, 24, 41, 47, 42, 22, 2, 7, 27, 49, 42, 42, 44, 39, 45, 43, 24, 2, 6, 22, 47, 29, 2, 7, 19, 2, 6, 47, 53, 25, 2, 7, 19, 2, 6, 19, 2, 7, 50, 21, 2, 6, 21, 50, 2, 7, 41, 50, 2, 7, 40, 2, 6, 52, 2, 25, 2, 6, 19, 2, 7, 46, 41, 42, 46, 49, 41, 46, 49, 42, 39, 51, 50, 39, 2, 6, 15, 2, 7, 16, 2, 14, 2, 6, 6, 2, 7, 5, 2, 6, 11, 2, 6, 29, 2, 7, 15, 2, 7, 52, 25, 2, 47, 2, 19, 2, 6, 48, 35, 2, 14, 2, 7, 33, 2, 7, 20, 2, 8, 34, 46, 44, 2, 6, 13, 2, 7, 25, 2, 8, 40, 2, 7, 50, 2, 6, 41, 2, 8, 29, 2, 7, 28, 2, 7, 19, 2, 7, 53, 2, 6, 46, 42, 38, 2, 7, 22, 2, 14, 2, 6, 23, 2, 7, 18, 2, 50, 45, 2, 7, 31, 2, 6, 18, 2, 20, 2, 6, 30, 2, 6, 48, 2, 6, 20, 2, 7, 46, 45, 2, 6, 21, 2, 7, 31, 2, 8, 52, 39, 2, 9, 2, 6, 41, 25, 2, 18, 2, 7, 45, 44, 44, 44, 42, 43, 45, 48, 2, 6, 28, 27, 2, 19, 2, 18, 19, 2, 7, 43, 2, 6, 48, 44, 19, 2, 14, 2, 7, 22, 39, 45, 48, 18, 2, 9, 2, 6, 47, 47, 48, 45, 48, 50, 37, 44, 21, 2, 6, 19, 43, 30, 2, 6, 19, 52, 38, 53, 42, 35, 50, 21, 2, 36, 2, 29, 2, 6, 51, 37, 22, 2, 6, 20, 47, 46, 39, 39, 50, 45, 2, 9, 2, 6, 54, 46, 32, 2, 17, 2, 58, 2, 7, 22, 2, 6, 26, 47, 2, 7, 45, 45, 37, 26, 2, 15, 22, 45, 53, 42, 45, 34, 2, 6, 21, 42, 44, 47, 49, 48, 40, 45, 48, 39, 45, 47, 39, 48, 16, 2, 7, 26, 39, 43, 47, 48, 2, 6, 43, 51, 43, 54, 29, 2, 7, 19, 42, 40, 52, 42, 25, 43, 47, 29, 2, 17, 2, 65, 24]\n" + ] + } + ], + "source": [ + "linelengths=[len(line) for line in open(\"hamlet.txt\")]#poor code as we dont close the file\n", + "print linelengths" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(180718, 26.69394387001477, 26.0, 21.029872021427462)" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sum(linelengths), np.mean(linelengths), np.median(linelengths), np.std(linelengths)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "But perhaps we want to access Hamlet word by word and not line by line" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "31659" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "hamletfile=open(\"hamlet.txt\")\n", + "hamlettext=hamletfile.read()\n", + "hamletfile.close()\n", + "hamlettokens=hamlettext.split()#split with no arguments splits on whitespace\n", + "len(hamlettokens)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "One can use the `with` syntax which cretaes a context. The file closing is then done automatically for us." + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "31659\n" + ] + } + ], + "source": [ + "with open(\"hamlet.txt\") as hamletfile:\n", + " hamlettext=hamletfile.read()\n", + " hamlettokens=hamlettext.split()\n", + " print len(hamlettokens)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "There are roughly 32,000 words in Hamlet." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "###The indexing of lists" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "XXXX\r\n", + "HAMLET, PRINCE OF DENMARK\r\n", + "\r\n", + "by William Shakespeare\r\n", + "\r\n", + "\r\n", + "\r\n", + "\r\n", + "PERSONS REPRESENTED.\r\n", + "\r\n", + "Claudius, King of Denmark.\r\n", + "Hamlet, Son to the former, and Nephew to the present King.\r\n", + "Polonius, Lord Chamberlain.\r\n", + "Horatio, Friend to Hamlet.\r\n", + "Laertes, Son to Polonius.\r\n", + "Voltimand, Courtier.\r\n", + "Cornelius, Courtier.\r\n", + "Rosencrantz, Courtier.\r\n", + "Guildenstern, Courtier.\r\n", + "Osric, Courtier.\r\n", + "A Gentleman, Courtier.\r\n", + "A Priest.\r\n", + "Marcellus, Officer.\r\n", + "Bernardo, Officer.\r\n", + "Francisco, a Soldier\r\n", + "Reynaldo, Servant to Polonius.\r\n", + "Players.\r\n", + "Two Clowns, Grave-diggers.\r\n", + "Fortinbras, Prince of Norway.\r\n", + "A Captain.\r\n", + "English Ambassadors.\r\n", + "Ghost of Hamlet's Father.\r\n", + "\r\n", + "Gertrude, Queen of Denmark, and Mother of Hamlet.\r\n", + "Ophelia, Daughter to Polonius.\r\n", + "\r\n", + "Lords, Ladies, Officers, Soldiers, Sailors, Messengers, and other\r\n", + "Attendants.\r\n", + "\r\n", + "SCENE. Elsinore.\r\n", + "\r\n", + "\r\n", + "\r\n", + "ACT I.\r\n", + "\r\n", + "Scene I. Elsinore. A platform before the Castle.\r\n", + "\r\n", + "[Francisco at his post. Enter to him Bernardo.]\r\n", + "\r\n", + "Ber.\r\n", + "Who's there?\r\n", + "\r\n", + "Fran.\r\n", + "Nay, answer me: stand, and u\n" + ] + } + ], + "source": [ + "print hamlettext[:1000]#first 1000 characters from Hamlet." + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "nd, in this upshot, purposes mistook\r\n", + "Fall'n on the inventors' heads: all this can I\r\n", + "Truly deliver.\r\n", + "\r\n", + "Fort.\r\n", + "Let us haste to hear it,\r\n", + "And call the noblest to the audience.\r\n", + "For me, with sorrow I embrace my fortune:\r\n", + "I have some rights of memory in this kingdom,\r\n", + "Which now, to claim my vantage doth invite me.\r\n", + "\r\n", + "Hor.\r\n", + "Of that I shall have also cause to speak,\r\n", + "And from his mouth whose voice will draw on more:\r\n", + "But let this same be presently perform'd,\r\n", + "Even while men's minds are wild: lest more mischance\r\n", + "On plots and errors happen.\r\n", + "\r\n", + "Fort.\r\n", + "Let four captains\r\n", + "Bear Hamlet like a soldier to the stage;\r\n", + "For he was likely, had he been put on,\r\n", + "To have prov'd most royally: and, for his passage,\r\n", + "The soldiers' music and the rites of war\r\n", + "Speak loudly for him.--\r\n", + "Take up the bodies.--Such a sight as this\r\n", + "Becomes the field, but here shows much amiss.\r\n", + "Go, bid the soldiers shoot.\r\n", + "\r\n", + "[A dead march.]\r\n", + "\r\n", + "[Exeunt, bearing off the dead bodies; after the which a peal of\r\n", + "ordnance is shot off.]\r\n", + "\n" + ] + } + ], + "source": [ + "print hamlettext[-1000:]#and last 1000 characters from Hamlet." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Lets split the word tokens. The first one below reads, give me the second, third, and fourth words (remember that python is 0 indexed). Try and figure what the others mean." + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['HAMLET,', 'PRINCE', 'OF'] ['\\xef\\xbb\\xbfXXXX', 'HAMLET,', 'PRINCE', 'OF'] XXXX off.]\n" + ] + } + ], + "source": [ + "print hamlettokens[1:4], hamlettokens[:4], hamlettokens[0], hamlettokens[-1]" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "['HAMLET,', 'OF', 'by', 'Shakespeare']" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "hamlettokens[1:8:2]#get every 2nd world between the 2nd and the 9th: ie 2nd, 4th, 6th, and 8th" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "range and xrange get the list of integers upto N. But xrange behaves like an iterator. The reason for this is that there is no point generaing all os a million integers. We can just add 1 to the previous one and save memory. So we trade off storage for computation." + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "mylist=[]\n", + "for i in xrange(10):\n", + " mylist.append(i)\n", + "mylist" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Dictionaries\n", + "\n", + "These are the bread and butter. You will use them a lot. They even duck like lists. But be careful how." + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['three', 'two', 'one'] [('three', 3), ('two', 2), ('one', 1)] [3, 2, 1]\n" + ] + } + ], + "source": [ + "adict={'one':1, 'two': 2, 'three': 3}\n", + "print [i for i in adict], [(k,v) for k,v in adict.items()], adict.values()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The keys do not have to be strings. From python 2.7 you can use dictionary comprehensions as well" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "{1: 1, 2: 4, 3: 9, 4: 16, 5: 25}" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "mydict ={k:v for (k,v) in zip(alist, asquaredlist)}\n", + "mydict" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "You can construct then nicely using the function `dict`." + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "{'a': 1, 'b': 2}" + ] + }, + "execution_count": 46, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "dict(a=1, b=2)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "###and conversion to json" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "import json" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{\"1\": 1, \"2\": 4, \"3\": 9, \"4\": 16, \"5\": 25}\n" + ] + } + ], + "source": [ + "s=json.dumps(mydict)\n", + "print s" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "{u'1': 1, u'2': 4, u'3': 9, u'4': 16, u'5': 25}" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "json.loads(s)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Strings\n", + "\n", + "Basically they behave like immutable lists" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "off.]\n" + ] + } + ], + "source": [ + "lastword=hamlettokens[-1]\n", + "print(lastword)" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "ename": "TypeError", + "evalue": "'str' object does not support item assignment", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mlastword\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m-\u001b[0m\u001b[0;36m2\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;34m\"k\"\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;31mTypeError\u001b[0m: 'str' object does not support item assignment" + ] + } + ], + "source": [ + "lastword[-2]=\"k\"#cant change a part of a string" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "'.'" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lastword[-2]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "You can join a list with a separator to make a string." + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "\"\\xef\\xbb\\xbfXXXX,HAMLET,,PRINCE,OF,DENMARK,by,William,Shakespeare,PERSONS,REPRESENTED.,Claudius,,King,of,Denmark.,Hamlet,,Son,to,the,former,,and,Nephew,to,the,present,King.,Polonius,,Lord,Chamberlain.,Horatio,,Friend,to,Hamlet.,Laertes,,Son,to,Polonius.,Voltimand,,Courtier.,Cornelius,,Courtier.,Rosencrantz,,Courtier.,Guildenstern,,Courtier.,Osric,,Courtier.,A,Gentleman,,Courtier.,A,Priest.,Marcellus,,Officer.,Bernardo,,Officer.,Francisco,,a,Soldier,Reynaldo,,Servant,to,Polonius.,Players.,Two,Clowns,,Grave-diggers.,Fortinbras,,Prince,of,Norway.,A,Captain.,English,Ambassadors.,Ghost,of,Hamlet's,Father.,Gertrude,,Queen,of,Denmark,,and,Mother,of,Hamlet.,Ophelia,,Daughter,to,Polonius.,Lords,,Ladies,,Officers,,Soldiers,,Sailors,,Messengers,,and,other,Attendants.,SCENE.,Elsinore.,ACT,I.,Scene,I.,Elsinore.,A,platform,before,the,Castle.,[Francisco,at,his,post.,Enter,to,him,Bernardo.],Ber.,Who's,there?,Fran.,Nay,,answer,me:,stand,,and,unfold,yourself.,Ber.,Long,live,the,king!,Fran.,Bernardo?,Ber.,He.,Fra\"" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "wierdstring=\",\".join(hamlettokens)\n", + "wierdstring[:1000]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Functions\n", + "\n", + "Functions are even more the bread and butter. You'll see them as methods on objects, or standing alone by themselves." + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(25, 125)" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "def square(x):\n", + " return(x*x)\n", + "def cube(x):\n", + " return x*x*x\n", + "square(5),cube(5)" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " \n" + ] + } + ], + "source": [ + "print square, type(cube)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In Python, functions are \"first-class\". This is just a fancy way of saying, you can pass functions to other functions" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3 4 \n" + ] + }, + { + "data": { + "text/plain": [ + "25" + ] + }, + "execution_count": 47, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "def sum_of_anything(x,y,f):\n", + " print x,y,f\n", + " return(f(x) + f(y))\n", + "sum_of_anything(3,4,square)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Python functions can have positional arguments and keyword arguments. Positional arguments are stored in a tuple, and keyword arguments in a dictionary. Note the \"starred\" syntax" + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "got 1 3 () {}\n", + "1\n", + "got 1 3 (4,) {'c': 2, 'd': 1}\n", + "1\n" + ] + } + ], + "source": [ + "def f(a,b,*posargs,**dictargs):\n", + " print \"got\",a,b,posargs, dictargs\n", + " return a\n", + "print f(1,3)\n", + "print f(1,3,4,d=1,c=2)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + ">**YOUR TURN** create a dictionary with keys the integers upto and including 10, and values the cubes of these dictionaries" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "#your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "##Booleans and Control-flow\n", + "\n", + "Lets test for belonging..." + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "a=[1,2,3,4,5]\n", + "1 in a" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "6 in a" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Python supports if/elif/else clauses for multi-way conditionals" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "One\n" + ] + } + ], + "source": [ + "def do_it(x):\n", + " if x==1:\n", + " print \"One\"\n", + " elif x==2:\n", + " print \"Two\"\n", + " else:\n", + " print x\n", + "do_it(1)" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Two\n", + "3\n" + ] + }, + { + "data": { + "text/plain": [ + "(None, None)" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "do_it(2), do_it(3)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "You can `break` out of a loop based on a condition. The loop below is a for loop." + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0\n", + "1\n", + "2\n", + "3\n", + "4\n", + "5\n", + "6\n" + ] + } + ], + "source": [ + "for i in range(10):\n", + " print i\n", + " if (i > 5):\n", + " break" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "While loops are also supported. `continue` continues to the next iteration of the loop skipping all the code below, while `break` breaks out of it." + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0\n", + "1\n", + "2\n", + "3\n", + "4\n" + ] + } + ], + "source": [ + "i=0\n", + "while i < 10:\n", + " print i\n", + " i=i+1\n", + " if i < 5:\n", + " continue\n", + " else:\n", + " break\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Exceptions\n", + "\n", + "This is the way to catch errors." + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(, TypeError('f() takes at least 2 arguments (1 given)',), )\n" + ] + } + ], + "source": [ + "try:\n", + " f(1)#takes atleast 2 arguments\n", + "except:\n", + " import sys\n", + " print sys.exc_info()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## All together now\n", + "\n", + "Lets see what hamlet gives us. We convert all words to lower-case" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "95" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "hamletlctokens=[word.lower() for word in hamlettokens]\n", + "hamletlctokens.count(\"thou\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We then find a unique set of words using python's `set` data structure. We count how often those words occured usinf the `count` method on lists." + ] + }, + { + "cell_type": "code", + "execution_count": 52, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "uniquelctokens=set(hamletlctokens)" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "tokendict={}\n", + "for ut in uniquelctokens:\n", + " tokendict[ut]=hamletlctokens.count(ut)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We find the 100 most used words..." + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[('the', 1136),\n", + " ('and', 943),\n", + " ('to', 720),\n", + " ('of', 667),\n", + " ('a', 527),\n", + " ('my', 512),\n", + " ('i', 510),\n", + " ('in', 420),\n", + " ('you', 412),\n", + " ('ham.', 358),\n", + " ('that', 337),\n", + " ('it', 324),\n", + " ('is', 320),\n", + " ('his', 295),\n", + " ('not', 270),\n", + " ('with', 264),\n", + " ('this', 250),\n", + " ('your', 241),\n", + " ('for', 231),\n", + " ('but', 228),\n", + " ('as', 216),\n", + " ('he', 202),\n", + " ('be', 201),\n", + " ('what', 183),\n", + " ('have', 174),\n", + " ('will', 149),\n", + " ('so', 143),\n", + " ('me', 142),\n", + " ('we', 132),\n", + " ('do', 128),\n", + " ('are', 126),\n", + " ('him', 122),\n", + " ('our', 119),\n", + " ('king.', 113),\n", + " ('by', 111),\n", + " ('hor.', 110),\n", + " ('or', 109),\n", + " ('if', 109),\n", + " ('on', 109),\n", + " ('no', 107),\n", + " ('shall', 106),\n", + " ('thou', 95),\n", + " ('all', 95),\n", + " ('from', 95),\n", + " ('they', 93),\n", + " ('let', 92),\n", + " ('good', 88),\n", + " ('at', 86),\n", + " ('thy', 86),\n", + " ('pol.', 86),\n", + " ('how', 84),\n", + " ('most', 82),\n", + " ('lord,', 81),\n", + " ('her', 76),\n", + " ('more', 76),\n", + " ('queen.', 76),\n", + " ('like', 75),\n", + " ('would', 74),\n", + " ('was', 73),\n", + " (\"'tis\", 70),\n", + " ('you,', 66),\n", + " ('may', 65),\n", + " ('very', 64),\n", + " ('laer.', 62),\n", + " ('hath', 62),\n", + " ('[enter', 61),\n", + " ('lord.', 60),\n", + " ('did', 59),\n", + " ('give', 58),\n", + " ('must', 58),\n", + " ('oph.', 58),\n", + " ('their', 57),\n", + " ('o,', 57),\n", + " ('know', 57),\n", + " (\"i'll\", 56),\n", + " ('an', 55),\n", + " ('should', 55),\n", + " ('which', 55),\n", + " ('some', 54),\n", + " ('when', 54),\n", + " ('come', 54),\n", + " ('upon', 53),\n", + " ('make', 53),\n", + " ('am', 52),\n", + " ('such', 51),\n", + " ('ros.', 51),\n", + " ('than', 51),\n", + " ('there', 50),\n", + " ('where', 49),\n", + " ('now', 48),\n", + " ('go', 48),\n", + " ('o', 46),\n", + " ('us', 46),\n", + " ('clown.', 45),\n", + " ('much', 44),\n", + " ('had', 44),\n", + " ('these', 44),\n", + " ('them', 44),\n", + " ('she', 43),\n", + " ('out', 43)]" + ] + }, + "execution_count": 42, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "L=sorted(tokendict.iteritems(), key= lambda (k,v):v, reverse=True)[:100]\n", + "L" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Lets get the top 20 of this and plot a bar chart!" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[('the', 1136), ('and', 943), ('to', 720), ('of', 667), ('a', 527), ('my', 512), ('i', 510), ('in', 420), ('you', 412), ('ham.', 358), ('that', 337), ('it', 324), ('is', 320), ('his', 295), ('not', 270), ('with', 264), ('this', 250), ('your', 241), ('for', 231), ('but', 228)]\n" + ] + }, + { + "data": { + "image/png": "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\nfPCBxo0bp9raWuXk5CghIUF/+ctf1NDQIJvNpgULFuizzz7TE088oZiYGH3//fe67rrr9M477+jT\nTz9Vfn5+oz/Ppva7Z599Vv/617+0Z88ede7cWQsWLAg81//0pz/plltuCXqeH3roIdXV1amgoEAL\nFiwI6v6N5X7xxRf6/PPP5Xa7tWfPHt12221BHTUe6MB5v+6667R48WK99tprWr16tZYsWaKoqCh1\n7dpVxcXFzf7lXVpaqrfeekv19fXatm2bbrrpJvXt21dFRUWKjIxUTEyMioqKtHbtWu3YsaPJ+Rkz\nZoyWLFmi+Ph4nX/++Vq+fLn69eunAQMGqGfPnioqKtKaNWv0ySef6LTTTpPH49HUqVP13Xff6cQT\nT9Sjjz6qqKgj10FTz4sLL7xQ69at0/Lly/XCCy8oIiJCZ599tqZPn37U8bZk37jyyis1YcIEnXji\niRo2bJhuvPHGo26nsLBQlZWVuvfee1VTUyOXy3XQ7+LLLrtMvXv3VnR0tB555JFm/ewkae3atXrr\nrbdUV1enSZMmadasWXrttdcUExOjhx9+WKmpqaqurtbu3bt133336d5772129oGMLOiJEydq69at\nGjJkiKqrqzV79mxt3LhRS5YsUWZmphYsWKDS0lJ16NBBd9xxh9avX69BgwY1mrlt2zZdeuml+sUv\nfqGamhpdf/316tatmzIyMnT33XeruLhY//jHP3ThhRdqw4YNKi0tVX19vS677LKQx+9yuTR48GDl\n5eWpurpaubm5KisrC3VatGrVKp100kl6+OGH5Xa7NWbMGI0YMUKnn356i8tZOniOqqurm/yF3pi6\nujotXbpUr7zyipYtW6aSkhJt2LBBy5YtU2VlpX788UdVV1crMTGxReUshf/o0mazyWaz6auvvtLT\nTz+tjh076uKLL9bOnTvVpUuXZudcc801WrFihYYNG6bnnntOGRkZcjqdmjt3buDnN3DgwGY9Fr/f\nr+joaC1dulTffPONxo8fr8svv1xPPPGEOnbsqHvvvVdr165Vt27dVF1drRdeeEEff/yxpkyZojfe\neEPff/+9Jk2a1OjPs7H9bvjw4dq9e7eWLVsmm82mcePGadOmTYH7BFvO+x9rdna2Xn755aB+OTYn\nt6qqSj/88IOefPJJ1dbW6ssvvwwp69B5v+mmmwI/o5dfflk33nijRo4cqb///e9yuVxBHaW5XC4t\nXbpUlZWVuvnmmxUXF6f7779fZ5xxhsrKyjRnzhw9+uijevzxx5ucn5///Odas2aNunXrpl69emnd\nunWKiYnR4MGD9e233+qss87S0KFDdemll6p79+6qq6vT1KlT1aNHD+Xl5Wnz5s1KT08/YnZjz4sR\nI0YE5uP555/XzJkzdfbZZ2vFihXat2+fIiMjj5jZ0n1jx44dev7554/6R8V+M2fOVEFBgeLi4nTh\nhRce9ru4rq5Ov/3tb3XGGWc0mnMgv9+vxMREPfzww9q5c6eys7MPG6fNZtOECRP07LPPhlzOkqEF\nfeBnp5x55pmSpC5dumjPnj2qrKxUbW1t4K8mt9utqqqqJjO7dOmiZ555Rq+//rrsdnvgmk6/fv0k\nSd27d9eOHTv05Zdf6qyzzpIkdejQQeecc46C/SyX/et/8cUXGj16tCSpW7dustvtqq2tVWJiYlB5\n+33xxReBP0Ti4uLUp08fbdu2TWlpaSHlHerQOQr1OpvNZgvMq91uV2pqqiQpISFBXq9Xo0eP1ksv\nvaSvv/76sCe3SU499VTFxsZKkpKSklRfXx/U/QcMGKCioiLV1tZq/fr1Ou+88w76+aWmph723D3a\nqUybzRbYF0466aTAUeydd96p2NhYffnll/rZz34mSUpLS1NkZKTsdrt69eqlqKgoJSQkNDn+xvY7\nm82m6OhoFRQUKDY2VtXV1dq3b1/Q+8axcsopp2jEiBGaOnWqGhoalJeXF1LOofO+d+/eQFHcdddd\nWrx4sRwOh/r06RPUH8kH7iMnn3yyPB6P6urqAkXRv3//oF5zMHLkSD3++OPq0aOHbrvtNjkcDvl8\nPp111llHfA1Np06d1KNHD0k/Pbf37t171OzGnhcHmjNnjp566il9/fXXOvfccxt9brR030hOTm6y\nnA8c+5F+F+/cuVOSgv50S5vNpqysLEk/zYPdbj9orOHcJ4y8Br3/W6+kw48okpOT1b17dy1btkwO\nh0O5ubk699xzm8x8+umnde6552ru3Lm65JJLjrreaaedpo8++kg+n08ej0ebN28O+ght//j79Omj\n9957T9JP10J+/PFHnXjiiUFlHSg1NTWQ53K5tHXrViUnJ4ecd6jmzlFzNDZnV155pV577TX95z//\n0bBhw1q0HZPZbDaNHj1aRUVFGjx48GE/v88++0zJycnq0KFD4Nrg5s2bG83bz+l06rHHHtMf//hH\nFRUVqUOHDoFfDKGeUWhsv9uyZYvKyspUXFys6dOny+fzye/3KyIiosXXj8ORcSC/36/Kykq53W4t\nXrxYc+Yvn0PFAAADG0lEQVTM0ezZs0POO9p8rlq1SpMnT5bD4ZDf79cbb7zRotyuXbsGXsT17rvv\nBoqjOfOTlpamqqoqbdq0ScOGDZPb7da///3vg/Yvm82mffv2NfqYjqSx58WBSkpKNGvWLDkcDm3e\nvFkffPDBUddt6b5xtG9EPJoD86urq+V0OgO/i4PdX/x+f+CxVVdXq76+XieffLJqamrk9/v1ySef\nHLRuSxh5BN2lSxd5vV7V19cfNHk2m02JiYm64YYbNHbsWPl8PiUnJzfrNPSIESNUVFSkN954Q6ed\ndppiY2Pl9XoP++GcccYZuuiii3T11VerS5cu6ty5c8jjd7vdeuedd/TPf/5Te/fu1ezZs4N+Yh3o\nmmuu0YwZM5Sbm6u9e/dq0qRJ+vrrr8N2ivfQOYqLi5PX6w3pBTH7x3To2Gw2W+Av2MzMzBbNx5G2\nF07hyBwzZoyGDRuml156ScnJyYf9/BITE5WXl6dZs2ape/fu6tatW7PGEx8fr4yMDF177bVKTExU\n7969tX37diUnJx+2zxz672XLlumUU07RRRdddFB+Y/tdSkqKTjjhBI0dO1adO3fWmWeeqZqaGp17\n7rnyer2aN29eyK8B6N+/v2666SY5HI6Q7n+o/ePdsGGDXn31Vfl8Pk2ZMqVFeUeSnp4eODUdFxen\nESNGhJxrs9lUVFSk2bNny+/3KyoqSvfff7+kn+Zn/Pjx+vOf/9xo3vnnn69vvvlGNptNAwYMUEVF\nhU444YTAdjIyMvTII48c8Y/6xp7rjT0vDnT66acrNzdXcXFxOvnkk496yny/luwbweybNptNN998\ns+6+++7A7+L77rtPkZGRIe3jNptNu3fv1q9//Wvt2bNHRUVF2rZtm8aPH6+ePXsedBCWmpqqO+64\nQw899FDQ25H4LG4cJxMnTtTdd9+tXr16He+hWKqmpkZ33nmnnn766eM9FMAo7BtNM/IUN9quvXv3\nasyYMerTp0+bL+fXX39d48aN0+9+97vjPRTAKOwbzcMRNAAABuIIGgAAA1HQAAAYiIIGAMBAFDQA\nAAaioAEAMND/A8NudfT377dBAAAAAElFTkSuQmCC\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "topfreq=L[:20]\n", + "print topfreq\n", + "pos = np.arange(len(topfreq))\n", + "plt.bar(pos, [e[1] for e in topfreq]);\n", + "plt.xticks(pos+0.4, [e[0] for e in topfreq]);" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.10" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/Lab1-git.ipynb b/Lab1-git.ipynb new file mode 100644 index 0000000..383225d --- /dev/null +++ b/Lab1-git.ipynb @@ -0,0 +1,2012 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Lab 1: Version Control with Git" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**This tutorial is largely based on the repository**:\n", + "\n", + "git@github.com:rdadolf/git-and-github.git\n", + "\n", + "**which was created for IACS's ac297r course, By Robert Adolf. Most of the credit goes to him**.\n", + "\n", + "Version control is a way of tracking the change history of a project. Even if you have never used a version control tool, you've probably already done it manually: copying and renaming project folders (\"paper-1.doc\", \"paper-2.doc\", etc.) is a form of version control.\n", + "\n", + "Git is a tool that automates and enhances a lot of the tasks that arise when dealing with larger, longer-living, and collaborative projects. It's also become the common underpinning to many popular online code repositories, [GitHub](https://github.com/) being the most popular.\n", + "\n", + "We'll go over the basics of git, but we should point out that a *lot* of talented people have given git tutorials, and we won't do any better than they have. In fact, if you're interested in learning git deeply and have some time on your hands, I suggest you stop reading this and instead read [the Git Book](http://git-scm.com/book/en/v2). Scott Chacon and Ben Straub have done a tremendous job, and if you want to understand both the interfaces and the mechanisms behind git, this is the place to start.\n", + "\n", + "In this document, we'll go over the concepts of git that are relevant to this course. You will be using git in a particular fashion, in this course, which is described in Homework 0. Homework 0 also contains details about how to install git; so if you havent done so, please do so and come back here." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#Table of Contents\n", + "* [Lab 1: Version Control with Git](#Lab-1:-Version-Control-with-Git)\n", + "\t* [Why should you use version control?](#Why-should-you-use-version-control?)\n", + "\t* [Git Basics](#Git-Basics)\n", + "\t* [Common Tasks in the version control of files.](#Common-Tasks-in-the-version-control-of-files.)\n", + "\t\t* [Forking a repository](#Forking-a-repository)\n", + "\t\t* [Cloning a repository](#Cloning-a-repository)\n", + "\t\t* [Poking around](#Poking-around)\n", + "\t\t* [Making changes](#Making-changes)\n", + "\t\t* [Remotes and `fetch`ing from them](#Remotes-and-fetching-from-them)\n", + "\t\t* [Branching.](#Branching.)\n", + "\t\t* [Recovering from a mistake](#Recovering-from-a-mistake)\n", + "\t\t* [Changing only one file](#Changing-only-one-file)\n", + "\t* [The Homework git flow](#The-Homework-git-flow)\n", + "\t* [The Lab git flow](#The-Lab-git-flow)\n", + "\t* [Creating a new repository](#Creating-a-new-repository)\n", + "\t* [Github Pages](#Github-Pages)\n", + "\t\t* [Automatically Generated Project Pages](#Automatically-Generated-Project-Pages)\n", + "\t\t* [Static Project Pages](#Static-Project-Pages)\n", + "\t* [Git habits](#Git-habits)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**At this point, we assume you have installed git as described in HW0 and have followed the instructions there to create ssh keys for your machine**. This enables you to use git without a pesky username-password combination." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "----" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Why should you use version control?" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "If you ask 10 people, you'll get 10 different answers, but one of the commonalities is that most people don't realize how integral it is to their development process until they've started using it. Still, for the sake of argument, here are some highlights:\n", + "\n", + "- ** You can undo anything: ** Git provides a *complete history* of every change that has ever been made to your project, timestamped, commented, and attributed. If something breaks, you always have the choice of going back to a previous state.\n", + "- ** You won't *need* to keep undo-ing things: ** One of the advantages of using git properly is that by keeping new changes separate from a stable base, you tend to avoid the massive rollbacks associated with constantly tinkering with a single code.\n", + "- ** You can identify exactly when and where changes were made: ** Git allows you to pinpoint when a particular piece of code was changed, so finding what other pieces of code a bug might affect or figuring out why a certain expression was added is easy.\n", + "- ** Git forces teams to face conflicts directly: ** On a team-based project, many people are often working with the same code. By having a tool which understands when and where files were changed, it's easy to see when changes might conflict with each other. While it might seem troublesome sometimes to have to deal with conflicts, the alternative—*not* knowing there's a conflict—is much more insidious." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "----" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Git Basics" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The first thing to understand about git is that the contents of your project are stored in several different states and forms at any given time. If you think about what version control is, this might not be surprising: in order to remember every change that's ever been made, you need to store a record of those changes *somewhere*, and to be able to handle multiple people changing the same code, you need to have different copies of the project and a way to combine them.\n", + "\n", + "You can think about git operating on four different areas:\n", + "\n", + "![Git Commands](git_layout.png)\n", + "\n", + " - The **working directory** is what you're currently looking at. When you use an editor to modify a file, the changes are made to the working directory.\n", + " - The **staging area** is a place to collect a set of changes made to your project. If you have changed three files to fix a bug, you will add all three to the staging area so that you can remember the changes as one historical entity. It is also called the **index**. You move files from the working directory to the index using the command `git add`.\n", + " - The **local repository** is the place where git stores everything you've ever done to your project. Even when you delete a file, a copy is stored in the repo (this is necessary for always being able to undo any change). It's important to note that a local repository doesn't look much at all like your project files or directories. Git has its own way of storing all the information, and if you're curious what it looks like, look in the `.git` directory in the working directory of your project. Files are moved from the index to the local repository via the command `git commit`.\n", + " - When working in a team, every member will be working on their own local repository. An **upstream repository** allows everyone to agree on a single version of history. If two people have made changes on their local repositories, they will combine those changes in the upstream repository. In our case this upstream repository is hosted by github. This need not be the case; SEAS provides git hosting, as do companies like Atlassian (bitbucket). This upstream repository is also called a **remote** in git parlance. The standard github remote is called the **origin**: it is the repository which is given a web page on github. One usually moves code from local to remote repositories using `git push`, and in the other direction using `git fetch`.\n", + "\n", + "You can think of most git operations as moving code or metadata from one of these areas to another." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "----" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Common Tasks in the version control of files." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Forking a repository" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Forking a repository done on github. On github, go to the url https://github.com/cs109/Testing. Click the \"Fork button on the upper right side. A screenshot is below. \n", + "\n", + "![forking](github-forking.png)\n", + "\n", + "Forking brings a repository into your own namespace. Its really a *cloning* process (see below), but its done between two \"remotes\" on the server. In other words it creates a second upstream repository on the server, called the **origin**.\n", + "\n", + "The forking process on github will ask you *where* you want to fork the repository. Choose your own github id.\n", + "\n", + "![forking](github-forking2.png)\n", + "\n", + "In my case I will choose `@rahuldave`, as in the screenshot above. In this tutorial, wherever you see `rahuldave`, substitute your own github id.\n", + "\n", + "This leaves me with my own repository, `rahuldave/Testing`, as seen in this image\n", + "\n", + "![forking](github-forking3.png)\n", + "\n", + "You will get a similar page." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Cloning a repository" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now that we have a **fork** of the `cs109/Testing` repository, lets **clone** it down to our local machines." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "----\n", + "`clone`\n", + "\n", + "![clone](git_clone.png)\n", + "\n", + "Cloning a repository does two things: it takes a repository from somewhere (usually an **upstream repository**) and makes a local copy (your new **local repository**), and it creates the most recent copy of all of the files in the project (your new **working directory**). This is generally how you will start working on a project for the first time." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Cloning a repository depends a lot on the type of repository you're using. If you're cloning out of a directory on the machine you're currently on, it's just the path to the `.git` file. For github, you can clone over ssh using the SSH clone url in the bottom right corner of the last screenshot. (This assumes you have set up your ssh keys. See HW0 for how to do this if you havent done it as yet)." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Cloning into 'Testing'...\n" + ] + } + ], + "source": [ + "%%bash\n", + "cd /tmp\n", + "rm -rf Testing #remove if it exists\n", + "git clone git@github.com:rahuldave/Testing.git" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "LICENSE\n", + "README.md\n", + "hello.md\n" + ] + } + ], + "source": [ + "%%bash\n", + "ls /tmp/Testing" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "###Poking around" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We have a nice smelling fresh repository. Lets look around it.\n", + "\n", + "`log`\n", + "\n", + "Log tells you all the changes that have occured in this project as of now..." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\u001b[33mcommit 3a2909aa790f041f1426e51565674165e52acdc8\u001b[m\r\n", + "Author: Rahul Dave \r\n", + "Date: Fri Aug 28 02:44:21 2015 -0400\r\n", + "\r\n", + " Added a test file to demonstrate git features\r\n", + "\r\n", + "\u001b[33mcommit 98bd53e8117d85cf0f7978f6aca22ce90ebc9709\u001b[m\r\n", + "Author: Rahul Dave \r\n", + "Date: Fri Aug 28 02:23:32 2015 -0400\r\n", + "\r\n", + " Attributed the test file to A.\r\n", + "\r\n", + "\u001b[33mcommit 5bd2f661fb25953b444bd5e8ba9557456406ece0\u001b[m\r\n", + "Author: Rahul Dave \r\n", + "Date: Fri Aug 28 02:21:57 2015 -0400\r\n", + "\r\n", + " Added a test file to demonstrate git features\r\n", + "\r\n", + "\u001b[33mcommit 45c25a4d944ad583a383fb7b35f185750e9b5b9c\u001b[m\r\n", + "Author: Rahul Dave \r\n", + "Date: Fri Aug 28 02:19:02 2015 -0400\r\n", + "\r\n", + " Added a test file to demonstrate git features\r\n", + "\r\n", + "\u001b[33mcommit 11961a3e0d50ea2ede1265da4bf586c001e63d7b\u001b[m\r\n", + "Author: Rahul Dave \r\n", + "Date: Fri Aug 28 01:55:49 2015 -0400\r\n", + "\r\n", + " Initial commit\r\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; git log" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Each one of these \"commits\" is a SHA hash. It uniquely identifies all actions that have happened to this repository previously. We shall soon see how to add our own actions in. In the meanwhile, lets see the \"status\"of our working directory." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "If you ever need help on a command, you can find the git man pages by hyphenating `git` and the command name:" + ] + }, + { + "cell_type": "raw", + "metadata": {}, + "source": [ + "$man git-status" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "----\n", + "`status`\n", + "\n", + "![status](git_status.png)\n", + "\n", + "Status is your window into the current state of your project. It can tell you which files you have changed and which files you currently have in your staging area." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "On branch master\r\n", + "Your branch is up-to-date with 'origin/master'.\r\n", + "\r\n", + "nothing to commit, working directory clean\r\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; git status" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Pay close attention to the text above. It says we are on the master branch of our **local repository**, and that this branch is up-to-date with the master branch of the **upstream repository** or **remote** named **origin**. We know this as clone brings down a copy of the remote branch: \"`origin/master`\" represents the local copy of the branch that came from the upstream repository (nicknamed \"`origin`\" in this case). **Branches** are different, co-existing versions of your project. Here we have encountered two of them, but remember there is a third one in the repository we forked from, and perhaps many more, depending on who else made these forks (as well as my original clones of cs109/Testing).\n", + "\n", + "This sounds like a recipe for disaster, but in a sense, branches are just like commits. They represent a snapshot of the project, by someone, at some particular point in time. In general you will only care about your own branches, and those of the \"parent\" remotes you forked/cloned from.\n", + "\n", + "Configuration Information is stored in a special file `config`, in a hidden folder called `.git` in your working directory. (The index and the local repository are stored there as well...more on that in a bit)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[core]\r\n", + "\trepositoryformatversion = 0\r\n", + "\tfilemode = true\r\n", + "\tbare = false\r\n", + "\tlogallrefupdates = true\r\n", + "\tignorecase = true\r\n", + "\tprecomposeunicode = true\r\n", + "[remote \"origin\"]\r\n", + "\turl = git@github.com:rahuldave/Testing.git\r\n", + "\tfetch = +refs/heads/*:refs/remotes/origin/*\r\n", + "[branch \"master\"]\r\n", + "\tremote = origin\r\n", + "\tmerge = refs/heads/master\r\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; cat .git/config" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Notice that this file tells us about a remote called \"origin\" which is simply the github repository we cloned from. So the process of cloning left us with a remote. The file also tells us about a branch called \"master\", which \"tracks\" a remote branch valled master at \"origin\". \n", + "\n", + "Finally I set us up with a `.gitignore` file, hidden in the repository folder. It tells us what files to ignore when adding files to the index, and then comitting them to the local repository. We use this file to ignore temporary data files and such when working in our repository. Folders are indicated with a `/` at the end, in which case, all files in that folder are ignored." + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "# Byte-compiled / optimized / DLL files\r\n", + "__pycache__/\r\n", + "*.py[cod]\r\n", + "\r\n", + "# C extensions\r\n", + "*.so\r\n", + "\r\n", + "# Distribution / packaging\r\n", + ".Python\r\n", + "env/\r\n", + "build/\r\n", + "develop-eggs/\r\n", + "dist/\r\n", + "downloads/\r\n", + "eggs/\r\n", + ".eggs/\r\n", + "lib/\r\n", + "lib64/\r\n", + "parts/\r\n", + "sdist/\r\n", + "var/\r\n", + "*.egg-info/\r\n", + ".installed.cfg\r\n", + "*.egg\r\n", + "\r\n", + "# PyInstaller\r\n", + "# Usually these files are written by a python script from a template\r\n", + "# before PyInstaller builds the exe, so as to inject date/other infos into it.\r\n", + "*.manifest\r\n", + "*.spec\r\n", + "\r\n", + "# Installer logs\r\n", + "pip-log.txt\r\n", + "pip-delete-this-directory.txt\r\n", + "\r\n", + "# Unit test / coverage reports\r\n", + "htmlcov/\r\n", + ".tox/\r\n", + ".coverage\r\n", + ".coverage.*\r\n", + ".cache\r\n", + "nosetests.xml\r\n", + "coverage.xml\r\n", + "*,cover\r\n", + "\r\n", + "# Translations\r\n", + "*.mo\r\n", + "*.pot\r\n", + "\r\n", + "# Django stuff:\r\n", + "*.log\r\n", + "\r\n", + "# Sphinx documentation\r\n", + "docs/_build/\r\n", + "\r\n", + "# PyBuilder\r\n", + "target/\r\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; cat .gitignore" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "You are always working on a given branch in a repository. Typically this is `master`. More on this later..You can know which branch you are on by typing `git branch`. The strred one is the one you are on." + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "* \u001b[32mmaster\u001b[m\r\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; git branch" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Making changes" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Ok! Enough poking around. Lets get down to business and add some files into our folder.\n", + "\n", + "Now let's say that we want to add a new file to the project. The canonical sequence is \"edit–add–commit–push\"." + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "On branch master\n", + "Your branch is up-to-date with 'origin/master'.\n", + "\n", + "Changes not staged for commit:\n", + " (use \"git add ...\" to update what will be committed)\n", + " (use \"git checkout -- ...\" to discard changes in working directory)\n", + "\n", + "\tmodified: hello.md\n", + "\n", + "no changes added to commit (use \"git add\" and/or \"git commit -a\")\n" + ] + } + ], + "source": [ + "%%bash\n", + "cd /tmp/Testing\n", + "echo '# Hello world rahuldave' > hello.md\n", + "git status" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We've added a file to the working directory, but it hasn't been staged yet." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "----\n", + "`add`\n", + "\n", + "![add](git_add.png)\n", + "\n", + "When you've made a change to a set of files and are ready to create a commit, the first step is to add all of the changed files to the staging area. Add does that. Remember that what you see in the filesystem is your working directory, so the way to see what's in the staging area is with the `status` command. This also means that **if you add something to the staging area and then edit it again, you'll also need to add the file to the staging area again if you want to remember the new changes**." + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "On branch master\n", + "Your branch is up-to-date with 'origin/master'.\n", + "\n", + "Changes to be committed:\n", + " (use \"git reset HEAD ...\" to unstage)\n", + "\n", + "\tmodified: hello.md\n", + "\n" + ] + } + ], + "source": [ + "%%bash\n", + "cd /tmp/Testing\n", + "git add hello.md\n", + "git status" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now our file is in the staging area (Index), waiting to be committed.\n", + "\n", + "I will sometimes simply use `git add .` in the top level of the repository. This adds all new files and changed files to the index, and is particularly useful if I have created multiple new files." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "----\n", + "`commit`\n", + "\n", + "![commit](git_commit.png)\n", + "\n", + "When you're satisfied with the changes you've added to your staging area, you can commit those changes to your local repository with the `commit` command. Those changes will have a permanent record in the repository from now on." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Every commit has two features you should be aware of. The first is a hash. This is a unique identifier for all of the information about that commit, including the code changes, the timestamp, and the author. The second is a commit message. This is text that you can (and should) add to a commit to describe what the changes were.\n", + "\n", + "**Good commit messages are important.**\n", + "\n", + "Commit messages are a way of quickly telling your future self (and your collaborators) what a commit was about. For even a moderately sized project, digging through tens or hundreds of commits to find the change you're looking for is a nightmare without friendly summaries.\n", + "\n", + "By convention, commit messages start with a single-line summary, then an empty line, then a more comprehensive description of the changes.\n", + "\n", + "[This](https://github.com/rdadolf/clangtool/commit/bdd8f1290146c28a4cb05b62ccb0ffbaaa314ff7) is an okay commit message. The changes are small, and the summary is sufficient to describe what happened.\n", + "\n", + "[This](https://github.com/rdadolf/protos/commit/9fcbe1084b17027e003c62043d764ed5551ddadc) is better. The summary captures the important information (major shift, direct vs. helper), and the full commit message describes what the high-level changes were.\n", + "\n", + "[This](https://github.com/rdadolf/autopaxos/commit/d43dd9b0a699c98bd142ba7cbc1836fbc4eba2ac). Don't do this." + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[master 2e12653] Said hello to myself\n", + " 1 file changed, 1 insertion(+), 1 deletion(-)\n", + "On branch master\n", + "Your branch is ahead of 'origin/master' by 1 commit.\n", + " (use \"git push\" to publish your local commits)\n", + "\n", + "nothing to commit, working directory clean\n" + ] + } + ], + "source": [ + "%%bash\n", + "cd /tmp/Testing\n", + "git commit -m \"Said hello to myself\"\n", + "git status" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The `git commit -m...` version is just a way to specify a commit message without opening a text editor (ipython notebook can't handle it). Otherwise you just say `git commit` or `git commit -a` (if you `add`ed a new file to the current branch on the repository)\n", + "\n", + "Now we see that our branch, \"`master`\", has one more commit than the \"`origin/master`\" branch, the local copy of the branch that came from the upstream repository (nicknamed \"`origin`\" in this case). Let's push the changes." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "`push`\n", + "\n", + "![push](git_push.png)\n", + "\n", + "The `push` command takes the changes you have made to your local repository and attempts to update a remote repository with them. If you're the only person working with both of these (which is how a solo GitHub project would work), then push should always succeed." + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Counting objects: 5, done.\n", + "Delta compression using up to 4 threads.\n", + "Compressing objects: 100% (2/2), done.\n", + "Writing objects: 100% (3/3), 286 bytes | 0 bytes/s, done.\n", + "Total 3 (delta 1), reused 0 (delta 0)\n", + "To git@github.com:rahuldave/Testing.git\n", + " 3a2909a..2e12653 master -> master\n", + "On branch master\n", + "Your branch is up-to-date with 'origin/master'.\n", + "\n", + "nothing to commit, working directory clean\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; git push\n", + "!cd /tmp/Testing; git status" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "###Remotes and `fetch`ing from them" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "If you're working with other people, then it's possible that they have made changes to the remote repository between the time you first cloned it and now. `push` will fail. \n", + "\n", + "In our particular case of the `Testing` repository, this is not going to happen, since you just cloned it and presumably havent invited anyone to collaborate with you on it (you can do this from the settings link on the right side of the repository page). \n", + "\n", + "However you can imagine that the original repository `cs109/testing`, which you are now divorced from, has changed, and that you somehow want to pull those changes in.\n", + "\n", + "That's where the next two commands come in." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "---\n", + "\n", + "`remote`\n", + "\n", + "We have seen so far that our repository has one \"remote\", or upstream repository, which has been identified with the word `origin`, as seen in `.git/config`. We now wish to add another remote, which we shall call `course`, which points to the original repository we forked from. We want to do this to pull in changes, in-case something changed there." + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[core]\r\n", + "\trepositoryformatversion = 0\r\n", + "\tfilemode = true\r\n", + "\tbare = false\r\n", + "\tlogallrefupdates = true\r\n", + "\tignorecase = true\r\n", + "\tprecomposeunicode = true\r\n", + "[remote \"origin\"]\r\n", + "\turl = git@github.com:rahuldave/Testing.git\r\n", + "\tfetch = +refs/heads/*:refs/remotes/origin/*\r\n", + "[branch \"master\"]\r\n", + "\tremote = origin\r\n", + "\tmerge = refs/heads/master\r\n", + "[remote \"course\"]\r\n", + "\turl = git@github.com:cs109/Testing.git\r\n", + "\tfetch = +refs/heads/*:refs/remotes/course/*\r\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; git remote add course git@github.com:cs109/Testing.git\n", + "!cd /tmp/Testing; cat .git/config" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Notice that the `master` branch only tracks the same branch on the `origin` remote. We havent set up any connection with the `course` remote as yet.\n", + "\n", + "Now lets figure out how to get changes from an upstream repository, be it our `origin` upstream that a collaborator has `push`ed too, or another `course` remote to which your memory-added head TF has posted a change!" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "----\n", + "`fetch`\n", + "\n", + "![fetch](git_fetch.png)\n", + "\n", + "Let's say a collaborator has pushed changes to your shared upstream repository while you were editing. Their local repository and the upstream repository now both contain their changes, but your local repository does not. To update your local repository, you run `fetch`.\n", + "\n", + "But what if you've committed changes in the meantime? Does your local repository contain your changes or theirs? The answer is that it contains a *record* of both, but they are kept separate. Remember that git repositories are not copies of your project files. They store all the contents of your files, along with a bunch of metadata, but in its own internal format. This is one of the reasons.\n", + "\n", + "Let's say that you and your collaborator both edited the same line of the same file at the same time in different ways. On your respective machines, you both add and commit your different changes, and your collaborator pushes theirs to the upstream repository. When you run `fetch`, git adds a record of their changes to your local repository *alongside* your own. These are called *branches*, and they represent different, coexisting versions of your project. The `fetch` command adds your collaborator's branch to your local repository, but keeps yours as well." + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "remote: Counting objects: 3, done.\u001b[K\n", + "remote: Compressing objects: 100% (2/2), done.\u001b[K\n", + "remote: Total 3 (delta 1), reused 3 (delta 1), pack-reused 0\u001b[K\n", + "Unpacking objects: 100% (3/3), done.\n", + "From github.com:cs109/Testing\n", + " * [new branch] master -> course/master\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; git fetch course" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "You can see that a copy of a new remote branch has been made below, by providing the `-avv` argument to `git branch`." + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "* \u001b[32mmaster \u001b[m 2e12653 [\u001b[34morigin/master\u001b[m] Said hello to myself\r\n", + " \u001b[31mremotes/course/master\u001b[m 7ba94f7 added a line in readme\r\n", + " \u001b[31mremotes/origin/HEAD \u001b[m -> origin/master\r\n", + " \u001b[31mremotes/origin/master\u001b[m 2e12653 Said hello to myself\r\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; git branch -avv" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Indeed, the way git works is by creating copies of remote branches locally. Then it just compares to these \"copy\" branches to see what changes have been made.\n", + "\n", + "Sometimes we want to merge the changes in...precisely we want to merge the change from `remotes/course/master` in. In HW0 and later here, we'll show you a case where you want to simply create another branch." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "----\n", + "`merge`\n", + "\n", + "![merge](git_merge.png)\n", + "\n", + "Having multiple branches is fine, but at some point, you'll want to combine the changes that you've made with those made by others. This is called merging.\n", + "\n", + "There are two general cases when merging two branches: first, the two branches are different but the changes are in unrelated places; and second, the two branches are different and the changes are in the same locations in the same files.\n", + "\n", + "The first scenario is easy. Git will simply apply both sets of changes to the appropriate places and put the resulting files into the staging area for you. Then you can commit the changes and push them back to the upstream repository. Your collaborator does the same, and everyone sees everything.\n", + "\n", + "The second scenario is more complicated. Let's say the two changes set some variable to different values. Git can't know which is the correct value. One solution would be to simply use the more recent change, but this very easily leads to self-inconsistent programs. A more conservative solution, and the one git uses, is to simply leave the decision to the user. When git detects a conflict that it cannot resolve, `merge` fails, and git places a modified version of the offending file in your project directory. **This is important:** the file that git puts into your directory is not actually *either* of the originals. It is a new file that has special markings around the locations that conflicted. We shall not consider this case in this lab, deferring it to a time just before you work with other collaborators on your projects.\n", + "\n", + "Lets merge in the changes from `course/master`:" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Merge made by the 'recursive' strategy.\n", + " README.md | 2 ++\n", + " 1 file changed, 2 insertions(+)\n", + "On branch master\n", + "Your branch is ahead of 'origin/master' by 2 commits.\n", + " (use \"git push\" to publish your local commits)\n", + "\n", + "nothing to commit, working directory clean\n" + ] + } + ], + "source": [ + "%%bash\n", + "cd /tmp/Testing\n", + "git merge course/master\n", + "git status" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We seem to be ahead of our upstream-tracking repository by 2 commits..why?" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\u001b[33mcommit a59261af6004b6a3d967fba0fb7f799240366c51\u001b[m\r\n", + "Merge: 2e12653 7ba94f7\r\n", + "Author: Rahul Dave \r\n", + "Date: Tue Sep 1 23:37:27 2015 -0400\r\n", + "\r\n", + " Merge remote-tracking branch 'course/master'\r\n", + "\r\n", + "\u001b[33mcommit 7ba94f7e4ed9506b0b3eab02e03d516c2b38977e\u001b[m\r\n", + "Author: Rahul Dave \r\n", + "Date: Tue Sep 1 22:53:03 2015 -0400\r\n", + "\r\n", + " added a line in readme\r\n", + "\r\n", + "\u001b[33mcommit 2e1265352da452320b67c3e5496ee1367f68663d\u001b[m\r\n", + "Author: Rahul Dave \r\n", + "Date: Tue Sep 1 21:19:31 2015 -0400\r\n", + "\r\n", + " Said hello to myself\r\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; git log -3" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Aha: one commit came from the `course` upstream, and one was a merge commit. In the case you had edited the README.md at the same time and comitted locally, you would have been asked to resolve the conflict in the merge (the second case above).\n", + "\n", + "Lets push these changes to the origin now" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "On branch master\n", + "Your branch is up-to-date with 'origin/master'.\n", + "\n", + "nothing to commit, working directory clean\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "To git@github.com:rahuldave/Testing.git\n", + " 2e12653..a59261a master -> master\n" + ] + } + ], + "source": [ + "%%bash\n", + "cd /tmp/Testing\n", + "git push\n", + "git status" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "You can combine a fetch and a merge together by simply doing a git `pull`. This will fail if you and your collaborator have worked on the same file (since you will have to merge by hand), but is a great shortcut when the files worked on are different. I use it all the times on a personal level too, to shift work between two different machines, as long as I am not working on both at the same time. The usual use case is day work on a work computer, and then evening work at home on the laptop. Read the docs if you are interested." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "###Branching." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "As you might have seen by now, everything in git is a branch. We have branches on remote (upstream) repositories, copies of remote branches in our local repository, and branches on local repositories which (so far) track remote branches (or more precisely local copies of remote repositories)" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "* \u001b[32mmaster \u001b[m a59261a [\u001b[34morigin/master\u001b[m] Merge remote-tracking branch 'course/master'\r\n", + " \u001b[31mremotes/course/master\u001b[m 7ba94f7 added a line in readme\r\n", + " \u001b[31mremotes/origin/HEAD \u001b[m -> origin/master\r\n", + " \u001b[31mremotes/origin/master\u001b[m a59261a Merge remote-tracking branch 'course/master'\r\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; git branch -avv" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "And all of these branches are nothing but commit-streams in disguise, as can be seen above. Its a very simple model which leads to a lot of interesting version control patterns.\n", + "\n", + "Since branches are so light-weight, the recommended way of working on software using git is to create a new branch for each new feature you add, test it out, and if good, merge it into master. Then you deploy the software from master. But we have been using branches under the hood. Lets now lift the hood.\n", + "\n", + "----\n", + "`branch`\n", + "\n", + "![branch](git_branch.png)\n", + "\n", + "Branches can also be created manually, and they are a useful way of organizing unfinished changes.\n", + "\n", + "The `branch` command has two forms. The first:\n", + "\n", + "`git branch`" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "simply lists all of the branches in your local repository. If you run it without having created any branches, it will list only one, called `master`. This is the default branch. You have seen the use of `git branch -avv` to show all branches.\n", + "\n", + "The other form creates a branch with a given name:" + ] + }, + { + "cell_type": "raw", + "metadata": {}, + "source": [ + "$ git branch my-new-branch" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "It's important to note that the other branch is not *active*. If you make changes, they will still apply to the `master` branch, not `my-new-branch`. To change this, you need the next command." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "----\n", + "`checkout`\n", + "\n", + "![checkout](git_checkout.png)\n", + "\n", + "Checkout switches the active branch. Since branches can have different changes, `checkout` may make the working directory look very different. For instance, if you have added new files to one branch, and then check another branch out, those files will no longer show up in the directory. They are still stored in the `.git` folder, but since they only exist in the other branch, they cannot be accessed until you check out the original branch." + ] + }, + { + "cell_type": "raw", + "metadata": {}, + "source": [ + "# Example\n", + "$ git checkout my-new-branch" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "You can combine creating a new branch and checking it out with the shortcut:" + ] + }, + { + "cell_type": "raw", + "metadata": {}, + "source": [ + "# Example\n", + "$ git checkout -b my-new-branch" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Ok so lets try this out on our repository...." + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "!cd /tmp/Testing; git branch mybranch1" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "See what branches we have created..." + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "* \u001b[32mmaster\u001b[m\r\n", + " mybranch1\u001b[m\r\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; git branch " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Jump onto the `mybranch1` branch..." + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Switched to branch 'mybranch1'\r\n", + " master\u001b[m\r\n", + "* \u001b[32mmybranch1\u001b[m\r\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; git checkout mybranch1; git branch" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Notice that it is bootstrapped off the `master` branch and has the same files." + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "LICENSE README.md hello.md\r\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; ls" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Jump back to master...." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "You could have created this branch using `git checkout -b mybranch1`. Lets see the status here." + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "On branch mybranch1\r\n", + "nothing to commit, working directory clean\r\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; git status" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Lets add a new file...note that this file gets added on this branch only" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "On branch mybranch1\r\n", + "Untracked files:\r\n", + " (use \"git add ...\" to include in what will be committed)\r\n", + "\r\n", + "\t\u001b[31mworld.md\u001b[m\r\n", + "\r\n", + "nothing added to commit but untracked files present (use \"git add\" to track)\r\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; echo '# Hello world' > world.md\n", + "!cd /tmp/Testing; git status" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We add the file to the index, and then commit the files to the local repository on the `mybranch` branch." + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "On branch mybranch1\r\n", + "Changes to be committed:\r\n", + " (use \"git reset HEAD ...\" to unstage)\r\n", + "\r\n", + "\t\u001b[32mnew file: world.md\u001b[m\r\n", + "\r\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; git add .\n", + "!cd /tmp/Testing; git status\n" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[mybranch1 1ffe3d7] Added another test file to demonstrate git features\n", + " 1 file changed, 1 insertion(+)\n", + " create mode 100644 world.md\n", + "On branch mybranch1\n", + "nothing to commit, working directory clean\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; git commit -m \"Added another test file to demonstrate git features\" -a\n", + "!cd /tmp/Testing;git status" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Ok we have committed. Lets try to push!" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "fatal: The current branch mybranch1 has no upstream branch.\r\n", + "To push the current branch and set the remote as upstream, use\r\n", + "\r\n", + " git push --set-upstream origin mybranch1\r\n", + "\r\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; git push" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Oops that failed. Why? git didnt know what to push to on origin, and didnt want to assume we wanted to call the branch `mybranch1` on the remote. We need to tell that to git explicitly, as it tells us to." + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Counting objects: 4, done.\n", + "Delta compression using up to 4 threads.\n", + "Compressing objects: 100% (2/2), done.\n", + "Writing objects: 100% (3/3), 308 bytes | 0 bytes/s, done.\n", + "Total 3 (delta 1), reused 1 (delta 0)\n", + "To git@github.com:rahuldave/Testing.git\n", + " * [new branch] mybranch1 -> mybranch1\n", + "Branch mybranch1 set up to track remote branch mybranch1 from origin.\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; git push --set-upstream origin mybranch1" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Aha, now we are set my with both a remote and a local for `mybranch1`" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " master \u001b[m a59261a [\u001b[34morigin/master\u001b[m] Merge remote-tracking branch 'course/master'\r\n", + "* \u001b[32mmybranch1 \u001b[m 1ffe3d7 [\u001b[34morigin/mybranch1\u001b[m] Added another test file to demonstrate git features\r\n", + " \u001b[31mremotes/course/master \u001b[m 7ba94f7 added a line in readme\r\n", + " \u001b[31mremotes/origin/HEAD \u001b[m -> origin/master\r\n", + " \u001b[31mremotes/origin/master \u001b[m a59261a Merge remote-tracking branch 'course/master'\r\n", + " \u001b[31mremotes/origin/mybranch1\u001b[m 1ffe3d7 Added another test file to demonstrate git features\r\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; git branch -avv" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Switched to branch 'master'\r\n", + "Your branch is up-to-date with 'origin/master'.\r\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; git checkout master" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "###Recovering from a mistake" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now suppose for a second that this `mybranch1` was created by someone else. We wanted to get it down using `fetch` and play. But we called `pull`, which did an automatic merge for us." + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "From github.com:rahuldave/Testing\n", + " * branch mybranch1 -> FETCH_HEAD\n", + "Updating a59261a..1ffe3d7\n", + "Fast-forward\n", + " world.md | 1 \u001b[32m+\u001b[m\n", + " 1 file changed, 1 insertion(+)\n", + " create mode 100644 world.md\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; git pull origin mybranch1" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "On branch master\r\n", + "Your branch is ahead of 'origin/master' by 1 commit.\r\n", + " (use \"git push\" to publish your local commits)\r\n", + "\r\n", + "nothing to commit, working directory clean\r\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; git status" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "oops, that was not what we wanted. We undo it using `git reset`, to go back to the state at the last commit." + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "HEAD is now at a59261a Merge remote-tracking branch 'course/master'\r\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; git reset --hard origin/master" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "On branch master\r\n", + "Your branch is up-to-date with 'origin/master'.\r\n", + "\r\n", + "nothing to commit, working directory clean\r\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; git status" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "###Changing only one file" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The last git command I want to talk about, since it might come handy in the course, is the situation in which you dont want to merge an entire branch from the upstream, but just one file from it. There is a direct use case for it. Indeed, suppose I've made an error in this lab and want to correct it. So i fix it in the upstream. In the meanwhile you have edited some other files. You dont care to manually ignore my older copies of those files. So you want to fix just one file from this new branch. This is how you do it.\n", + "\n", + "First you fetch from the remote (i ought to be doing this with the course remote but just want to illustrate it here)" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "!cd /tmp/Testing; git fetch origin" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "* \u001b[32mmaster \u001b[m a59261a [\u001b[34morigin/master\u001b[m] Merge remote-tracking branch 'course/master'\r\n", + " mybranch1 \u001b[m 1ffe3d7 [\u001b[34morigin/mybranch1\u001b[m] Added another test file to demonstrate git features\r\n", + " \u001b[31mremotes/course/master \u001b[m 7ba94f7 added a line in readme\r\n", + " \u001b[31mremotes/origin/HEAD \u001b[m -> origin/master\r\n", + " \u001b[31mremotes/origin/master \u001b[m a59261a Merge remote-tracking branch 'course/master'\r\n", + " \u001b[31mremotes/origin/mybranch1\u001b[m 1ffe3d7 Added another test file to demonstrate git features\r\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; git branch -avv" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "!cd /tmp/Testing; git checkout origin/mybranch1 -- world.md" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Why does the syntax have `origin/mybranch1`? Remember that multiple remotes may have the same branch...so you want to be specific. So we check out `origin`'s `mybranch1`, and only want `world.md`." + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "On branch master\r\n", + "Your branch is up-to-date with 'origin/master'.\r\n", + "\r\n", + "Changes to be committed:\r\n", + " (use \"git reset HEAD ...\" to unstage)\r\n", + "\r\n", + "\t\u001b[32mnew file: world.md\u001b[m\r\n", + "\r\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; git status" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Note that the file as automatically added to the index. We'll commit and push." + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[master 79f0dba] want world in master\r\n", + " 1 file changed, 1 insertion(+)\r\n", + " create mode 100644 world.md\r\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; git commit -m \"want world in master\" " + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "On branch master\r\n", + "Your branch is ahead of 'origin/master' by 1 commit.\r\n", + " (use \"git push\" to publish your local commits)\r\n", + "\r\n", + "nothing to commit, working directory clean\r\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; git status" + ] + }, + { + "cell_type": "code", + "execution_count": 51, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Counting objects: 1, done.\n", + "Writing objects: 100% (1/1), 192 bytes | 0 bytes/s, done.\n", + "Total 1 (delta 0), reused 0 (delta 0)\n", + "To git@github.com:rahuldave/Testing.git\n", + " a59261a..79f0dba master -> master\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; git push" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Note that in git versions > 2.0, which you must use, `git push` will pugh the current branch to its appropriate remote, all of which can be seen through `git branch -avv` or by looking at the `config` file." + ] + }, + { + "cell_type": "code", + "execution_count": 52, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[core]\r\n", + "\trepositoryformatversion = 0\r\n", + "\tfilemode = true\r\n", + "\tbare = false\r\n", + "\tlogallrefupdates = true\r\n", + "\tignorecase = true\r\n", + "\tprecomposeunicode = true\r\n", + "[remote \"origin\"]\r\n", + "\turl = git@github.com:rahuldave/Testing.git\r\n", + "\tfetch = +refs/heads/*:refs/remotes/origin/*\r\n", + "[branch \"master\"]\r\n", + "\tremote = origin\r\n", + "\tmerge = refs/heads/master\r\n", + "[remote \"course\"]\r\n", + "\turl = git@github.com:cs109/Testing.git\r\n", + "\tfetch = +refs/heads/*:refs/remotes/course/*\r\n", + "[branch \"mybranch1\"]\r\n", + "\tremote = origin\r\n", + "\tmerge = refs/heads/mybranch1\r\n" + ] + } + ], + "source": [ + "!cd /tmp/Testing; cat .git/config" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "----" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "##The Homework git flow" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![homework](cs109gitflow2.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The homeworks work by us creating repositories for each student of the signature `studentid-2015` on github. You will clone these. Initially you will find `master`, `hw0`, and `hw1` branches. You will checkout a homework branch and work on it, adding, comitting, pushing. Thats it. When its time for your next homework, we'll push, say, a `hw2` branch to your repositories `origin` remote on github. You will fetch this new branch, checkit out, and work on it. And rinse and repeat.\n", + "\n", + "DO NOT work on any files like `hw1_original.ipynb`. If there are any changes you will be able to incorporate them into the `hw1_original.ipynb` file from the `course` remote without clobbering your own work in `hw1.ipynb`.\n", + "\n", + "The `master` branch only contains instructions. You shouldnt be working on it.\n", + "\n", + "The homework repos are private, shared between you and the course staff. DO NOT share them or add any collaborators. That will violate the Honor Policy." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "##The Lab git flow" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Unlike homeworks, Labs are available publicly. \n", + "\n", + "![homework](cs109gitflow3.png)\n", + "\n", + "Here you will fork our repository, clone you fork, and work on your clone. Once again, DO NOT work on any files like `lab1_original.ipynb`. If there are any changes you will be able to incorporate them into the `lab1_original.ipynb` file from the `course` remote (the one you forked) without clobbering your own work in `lab1.ipynb`.\n", + "\n", + "Your fork will also be public." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Creating a new repository" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Creating a repository can be done with git command line tools, or it can be done on github. On your github home, click on the 'Repositories' tab, then click the green 'New' button. You'll be brought to a page that asks for some basic project information.\n", + "\n", + "![new repo](github_new.png)\n", + "\n", + " - The repository name needs to be unique, but only amongst *your* github repositories. Despite what github suggests, try to pick something at least a little representative of your project.\n", + " \n", + " - The description field is just a short text field that will accompany your repository's name on the github website.\n", + "\n", + " - If you're creating a new repository, check the \"Initialize this repository with a README\" box. This is a little bit of a misnomer. If you don't do this, you won't be able to clone your repository at all. Instead, you'll have to manually create a new repository on your computer and upload that to github. Suffice to say, unless you've got an existing git repository that was hosted somewhere besides github, *always check this box*.\n", + "\n", + " - You're free to click the `.gitignore` or `license` buttons, too, but there's no requirement to do so. You can easily create either later. For our class I use a python `.gitignore` from the dropdown menu" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "----" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Github Pages" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In addition to hosting git repositories, github also provides web hosting for each user and project. Github provides [some documentation](https://pages.github.com/), but it's easier to create one than it is to figure out what to do with it next." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Automatically Generated Project Pages" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The easiest (and most limited) mechanism for creating a project page is to use the automatic page generator. Github's documentation does a fantastic job of guiding you through this, so I won't spend time on it. It's a 30-second process.\n", + "\n", + "To edit the page, you can checkout the newly created `gh-pages` branch in your project and edit the index.html file. A much easier way to edit the page is simply to go through the automatic page generator tool again. It might seem counterintuitive, but github saves the content that you added the first time around, so you can make small changes without too much trouble.\n", + "\n", + "In the end, automatically generated pages are a great replacement for a README.md file, but not much beyond that. You are limited to a single `index.html` file, and the templates are fixed. If you want a larger site or more customization options, you're better off doing something else." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Static Project Pages" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The next natural step is to use plain old static HTML. Regardless of how you create your site, github uses the `gh-pages` branch of your project to find your website files. One way to create this branch is to click on the \"branch\" button on your repository page:\n", + "\n", + "\n", + "\n", + "Alternately, if you've already clone your repository somewhere, you can do it on the command line:" + ] + }, + { + "cell_type": "raw", + "metadata": {}, + "source": [ + "$ git branch gh-pages\n", + "$ git checkout gh-pages" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "When you push changes to this branch, they will immediately be reflected on the web at http://your-username.github.io/your-projectname.\n", + "\n", + "You can use any static HTML, handwritten or otherwise." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "----" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Git habits" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "** * Commit early, commit often. * **\n", + "\n", + "Git is more effective when used at a fine granularity. For starters, you can't undo what you haven't committed, so committing lots of small changes makes it easier to find the right rollback point. Also, merging becomes a lot easier when you only have to deal with a handful of conflicts.\n", + "\n", + "** * Commit unrelated changes separately. * **\n", + "\n", + "Identifying the source of a bug or understanding the reason why a particular piece of code exists is much easier when commits focus on related changes. Some of this has to do with simplifying commit messages and making it easier to look through logs, but it has other related benefits: commits are smaller and simpler, and merge conflicts are confined to only the commits which actually have conflicting code.\n", + "\n", + "** * Do not commit binaries and other temporary files. * **\n", + "\n", + "Git is meant for tracking changes. In nearly all cases, the only meaningful difference between the contents of two binaries is that they are different. If you change source files, compile, and commit the resulting binary, git sees an entirely different file. The end result is that the git repository (which contains a complete history, remember) begins to become bloated with the history of many dissimilar binaries. Worse, there's often little advantage to keeping those files in the history. An argument can be made for periodically snapshotting working binaries, but things like object files, compiled python files, and editor auto-saves are basically wasted space.\n", + "\n", + "** * Ignore files which should not be committed * **\n", + "\n", + "Git comes with a built-in mechanism for ignoring certain types of files. Placing filenames or wildcards in a `.gitignore` file placed in the top-level directory (where the `.git` directory is also located) will cause git to ignore those files when checking file status. This is a good way to ensure you don't commit the wrong files accidentally, and it also makes the output of `git status` somewhat cleaner.\n", + "\n", + "** * Always make a branch for new changes * **\n", + "\n", + "While it's tempting to work on new code directly in the `master` branch, it's usually a good idea to create a new one instead, especially for team-based projects. The major advantage to this practice is that it keeps logically disparate change sets separate. This means that if two people are working on improvements in two different branches, when they merge, the actual workflow is reflected in the git history. Plus, explicitly creating branches adds some semantic meaning to your branch structure. Moreover, there is very little difference in how you use git.\n", + "\n", + "** * Write good commit messages * **\n", + "\n", + "I cannot understate the importance of this.\n", + "\n", + "** Seriously. Write good commit messages. **" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.10" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/Lab1-pythonpandas.ipynb b/Lab1-pythonpandas.ipynb new file mode 100644 index 0000000..4d48574 --- /dev/null +++ b/Lab1-pythonpandas.ipynb @@ -0,0 +1,2946 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#Lab 1. An Introduction to Pandas and Python" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# The %... is an iPython thing, and is not part of the Python language.\n", + "# In this case we're just telling the plotting library to draw things on\n", + "# the notebook, instead of on a separate window.\n", + "%matplotlib inline \n", + "#this line above prepares IPython notebook for working with matplotlib\n", + "\n", + "# See all the \"as ...\" contructs? They're just aliasing the package names.\n", + "# That way we can call methods like plt.plot() instead of matplotlib.pyplot.plot().\n", + "\n", + "import numpy as np # imports a fast numerical programming library\n", + "import scipy as sp #imports stats functions, amongst other things\n", + "import matplotlib as mpl # this actually imports matplotlib\n", + "import matplotlib.cm as cm #allows us easy access to colormaps\n", + "import matplotlib.pyplot as plt #sets up plotting under plt\n", + "import pandas as pd #lets us handle data as dataframes\n", + "#sets up pandas table display\n", + "pd.set_option('display.width', 500)\n", + "pd.set_option('display.max_columns', 100)\n", + "pd.set_option('display.notebook_repr_html', True)\n", + "import seaborn as sns #sets up styles and gives us more plotting options" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Python depends on packages for most of its functionality; these can be either built-in (such as sys), or third-party (like all the packages below). Either way you need to import the packages you need before using them." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "##The Notebook\n", + "\n", + "Look up http:/www.google.com Lets eat a burrito. $\\alpha = \\frac{\\beta}{\\gamma}$\n", + "\n", + "Longer:\n", + "\n", + "$$\\alpha = \\frac{\\beta}{\\gamma}$$\n", + "\n", + "1. an item\n", + "2. another item\n", + "3. i like items" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "##Pandas" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Get Cheatsheet:\n", + "\n", + "from https://drive.google.com/folderview?id=0ByIrJAE4KMTtaGhRcXkxNHhmY2M&usp=sharing\n", + "\n", + "\n", + "We read in some data from a CSV file. CSV files can be output by any spreadsheet software, and are plain text, so make a great way to share data. This dataset is from Goodreads: i scraped the highest regarded (according to Goodread's proprietary algorithm) books on that site. Ypu'll see how to do such a scraping in the next lab." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ratingreview_countisbnbooktypeauthor_urlyeargenre_urlsdirrating_countname
04.401364550439023483good_reads:bookhttps://www.goodreads.com/author/show/153394.S...2008/genres/young-adult|/genres/science-fiction|/g...dir01/2767052-the-hunger-games.html2958974The Hunger Games (The Hunger Games, #1)
14.41166480439358078good_reads:bookhttps://www.goodreads.com/author/show/1077326....2003/genres/fantasy|/genres/young-adult|/genres/fi...dir01/2.Harry_Potter_and_the_Order_of_the_Phoe...1284478Harry Potter and the Order of the Phoenix (Har...
23.56857460316015849good_reads:bookhttps://www.goodreads.com/author/show/941441.S...2005/genres/young-adult|/genres/fantasy|/genres/ro...dir01/41865.Twilight.html2579564Twilight (Twilight, #1)
34.23479060061120081good_reads:bookhttps://www.goodreads.com/author/show/1825.Har...1960/genres/classics|/genres/fiction|/genres/histo...dir01/2657.To_Kill_a_Mockingbird.html2078123To Kill a Mockingbird
44.23347720679783261good_reads:bookhttps://www.goodreads.com/author/show/1265.Jan...1813/genres/classics|/genres/fiction|/genres/roman...dir01/1885.Pride_and_Prejudice.html1388992Pride and Prejudice
\n", + "
" + ], + "text/plain": [ + " rating review_count isbn booktype author_url year genre_urls dir rating_count name\n", + "0 4.40 136455 0439023483 good_reads:book https://www.goodreads.com/author/show/153394.S... 2008 /genres/young-adult|/genres/science-fiction|/g... dir01/2767052-the-hunger-games.html 2958974 The Hunger Games (The Hunger Games, #1)\n", + "1 4.41 16648 0439358078 good_reads:book https://www.goodreads.com/author/show/1077326.... 2003 /genres/fantasy|/genres/young-adult|/genres/fi... dir01/2.Harry_Potter_and_the_Order_of_the_Phoe... 1284478 Harry Potter and the Order of the Phoenix (Har...\n", + "2 3.56 85746 0316015849 good_reads:book https://www.goodreads.com/author/show/941441.S... 2005 /genres/young-adult|/genres/fantasy|/genres/ro... dir01/41865.Twilight.html 2579564 Twilight (Twilight, #1)\n", + "3 4.23 47906 0061120081 good_reads:book https://www.goodreads.com/author/show/1825.Har... 1960 /genres/classics|/genres/fiction|/genres/histo... dir01/2657.To_Kill_a_Mockingbird.html 2078123 To Kill a Mockingbird\n", + "4 4.23 34772 0679783261 good_reads:book https://www.goodreads.com/author/show/1265.Jan... 1813 /genres/classics|/genres/fiction|/genres/roman... dir01/1885.Pride_and_Prejudice.html 1388992 Pride and Prejudice" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df=pd.read_csv(\"all.csv\", header=None,\n", + " names=[\"rating\", 'review_count', 'isbn', 'booktype','author_url', 'year', 'genre_urls', 'dir','rating_count', 'name'],\n", + ")\n", + "df.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Notice we have a table! A spreadsheet! And it indexed the rows. Pandas (borrowing from R) calls it a DataFrame. Lets see the types of the columns...\n", + "\n", + "`df`, in python parlance, is an **instance** of the `pd.DataFrame` class, created by calling the `pd.read_csv` function, which cllas the DataFrame constructor inside of it. If you dont understand this sentence, dont worry, it will become clearer later. What you need to take away is that `df` is a dataframe object, and it has **methods**, or functions belonging to it, which allow it to do things. For example `df.head()` is a method that shows the first 5 rows of the dataframe.\n", + "\n", + "![](files/pandastruct.png)\n", + "\n", + "###The basics" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "rating float64\n", + "review_count object\n", + "isbn object\n", + "booktype object\n", + "author_url object\n", + "year float64\n", + "genre_urls object\n", + "dir object\n", + "rating_count object\n", + "name object\n", + "dtype: object" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.dtypes" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The shape of the object is:" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(6000, 10)" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.shape" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "6000 rows times 10 columns. A spredsheet is a table is a matrix. How can we access members of this **tuple** (brackets like so:() )" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(6000, 10)" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.shape[0], df.shape[1]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "These are the column names." + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "Index([u'rating', u'review_count', u'isbn', u'booktype', u'author_url', u'year', u'genre_urls', u'dir', u'rating_count', u'name'], dtype='object')" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.columns" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "As the diagram above shows, pandas considers a table (dataframe) as a pasting of many \"series\" together, horizontally." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(pandas.core.series.Series, pandas.core.frame.DataFrame)" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "type(df.rating), type(df)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "###Querying\n", + "\n", + "A spreadsheet is useless if you cant dice/sort/etc it. Here we look for all books with a rating less than 3. " + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0 False\n", + "1 False\n", + "2 False\n", + "3 False\n", + "4 False\n", + "5 False\n", + "6 False\n", + "7 False\n", + "8 False\n", + "9 False\n", + "10 False\n", + "11 False\n", + "12 False\n", + "13 False\n", + "14 False\n", + "15 False\n", + "16 False\n", + "17 False\n", + "18 False\n", + "19 False\n", + "20 False\n", + "21 False\n", + "22 False\n", + "23 False\n", + "24 False\n", + "25 False\n", + "26 False\n", + "27 False\n", + "28 False\n", + "29 False\n", + " ... \n", + "5970 False\n", + "5971 False\n", + "5972 False\n", + "5973 False\n", + "5974 False\n", + "5975 False\n", + "5976 False\n", + "5977 False\n", + "5978 False\n", + "5979 True\n", + "5980 False\n", + "5981 False\n", + "5982 False\n", + "5983 False\n", + "5984 False\n", + "5985 False\n", + "5986 False\n", + "5987 False\n", + "5988 False\n", + "5989 False\n", + "5990 False\n", + "5991 False\n", + "5992 False\n", + "5993 False\n", + "5994 False\n", + "5995 False\n", + "5996 False\n", + "5997 False\n", + "5998 False\n", + "5999 False\n", + "Name: rating, dtype: bool" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.rating < 3" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "This gives us `True`s and `False`s. Such a series is called a mask. If we count the number of `True`s, and divide by the total, we'll get the fraction of ratings $\\lt$ 3. To do this numerically see this:" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "4" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "np.sum(df.rating < 3)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Why did that work?" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1 0\n" + ] + } + ], + "source": [ + "print 1*True, 1*False" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "So we ought to be able to do this" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "np.sum(df.rating < 3)/df.shape[0]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "But we get a 0? Why? In Python 2.x division is **integer division** by default. So one can fix by converting the `df.shape[0]` to a float" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0.00066666666666666664" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "np.sum(df.rating < 3)/float(df.shape[0])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Notice that you could just find the average since the `True`s map to 1s." + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0.00066666666666666664" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "np.mean(df.rating < 3.0)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Or directly, in Pandas, which works since `df.rating < 3` is a pandas Series." + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0.00066666666666666664" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "(df.rating < 3).mean()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "###Filtering\n", + "\n", + "Here are two ways to get a filtered dataframe" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ratingreview_countisbnbooktypeauthor_urlyeargenre_urlsdirrating_countname
174.5813140345538374good_reads:bookhttps://www.goodreads.com/author/show/656983.J...1973/genres/fantasy|/genres/classics|/genres/scien...dir01/30.J_R_R_Tolkien_4_Book_Boxed_Set.html68495J.R.R. Tolkien 4-Book Boxed Set
1624.5515777075640407Xgood_reads:bookhttps://www.goodreads.com/author/show/108424.P...2007/genres/fantasy|/genres/fictiondir02/186074.The_Name_of_the_Wind.html210018The Name of the Wind (The Kingkiller Chronicle...
2224.5315256055357342Xgood_reads:bookhttps://www.goodreads.com/author/show/346732.G...2000/genres/fantasy|/genres/fiction|/genres/fantas...dir03/62291.A_Storm_of_Swords.html327992A Storm of Swords (A Song of Ice and Fire, #3)
2424.5354040545265355good_reads:bookhttps://www.goodreads.com/author/show/153394.S...2010/genres/young-adult|/genres/fiction|/genres/fa...dir03/7938275-the-hunger-games-trilogy-boxset....102330The Hunger Games Trilogy Boxset (The Hunger Ga...
2494.806440740748475good_reads:bookhttps://www.goodreads.com/author/show/13778.Bi...2005/genres/sequential-art|/genres/comics|/genres/...dir03/24812.The_Complete_Calvin_and_Hobbes.html22674The Complete Calvin and Hobbes
2844.58151951406321346good_reads:bookhttps://www.goodreads.com/author/show/150038.C...2013/genres/fantasy|/genres/young-adult|/genres/fa...dir03/18335634-clockwork-princess.html130161Clockwork Princess (The Infernal Devices, #3)
3044.545720140259449good_reads:bookhttps://www.goodreads.com/author/show/1265.Jan...1933/genres/classics|/genres/fiction|/genres/roman...dir04/14905.The_Complete_Novels.html17539The Complete Novels
3864.5588200756404738good_reads:bookhttps://www.goodreads.com/author/show/108424.P...2011/genres/fantasy|/genres/fantasy|/genres/epic-f...dir04/1215032.The_Wise_Man_s_Fear.html142499The Wise Man's Fear (The Kingkiller Chronicle,...
4004.5392921423140605good_reads:bookhttps://www.goodreads.com/author/show/15872.Ri...2012/genres/fantasy|/genres/young-adult|/genres/fa...dir05/12127750-the-mark-of-athena.html128412The Mark of Athena (The Heroes of Olympus, #3)
4754.578241416997857good_reads:bookhttps://www.goodreads.com/author/show/150038.C...2009/genres/fantasy|/genres/young-adult|/genres/fa...dir05/6485421-the-mortal-instruments-boxed-set...39720The Mortal Instruments Boxed Set (The Mortal I...
4834.5926220312362153good_reads:bookhttps://www.goodreads.com/author/show/4430.She...2008/genres/romance|/genres/paranormal-romance|/ge...dir05/2299110.Acheron.html35028Acheron (Dark-Hunter, #8)
5544.5448090385341679good_reads:bookhttps://www.goodreads.com/author/show/48206.Ka...2011/genres/fantasy|/genres/urban-fantasy|/genres/...dir06/7304203-shadowfever.html52812Shadowfever (Fever, #5)
5774.6057320765326353good_reads:bookhttps://www.goodreads.com/author/show/38550.Br...2010/genres/science-fiction-fantasy|/genres/fantas...dir06/7235533-the-way-of-kings.html76551The Way of Kings (The Stormlight Archive, #1)
6204.5477671423146727good_reads:bookhttps://www.goodreads.com/author/show/15872.Ri...2013/genres/fantasy|/genres/young-adult|/genres/fa...dir07/12127810-the-house-of-hades.html72082The House of Hades (The Heroes of Olympus, #4)
8404.574311423113497good_reads:bookhttps://www.goodreads.com/author/show/15872.Ri...2008/genres/fantasy|/genres/young-adult|/genres/fa...dir09/3165162-percy-jackson-and-the-olympians-...22937Percy Jackson and the Olympians Boxed Set (Per...
8834.585580140286802good_reads:bookhttps://www.goodreads.com/author/show/500.Jorg...1998/genres/short-stories|/genres/literature|/genr...dir09/17961.Collected_Fictions.html12596Collected Fictions
9114.85261491732954good_reads:bookhttps://www.goodreads.com/author/show/8189303....2014/genres/fictiondir10/22242097-honor-and-polygamy.html97Honor and Polygamy
9354.641481595142711good_reads:bookhttps://www.goodreads.com/author/show/137902.R...2009/genres/paranormal|/genres/vampires|/genres/yo...dir10/6339989-vampire-academy-collection.html21743Vampire Academy Collection (Vampire Academy, #...
9384.51110111481426303good_reads:bookhttps://www.goodreads.com/author/show/150038.C...2014/genres/fantasy|/genres/young-adult|/genres/fa...dir10/8755785-city-of-heavenly-fire.html69924City of Heavenly Fire (The Mortal Instruments,...
9534.56271477276068good_reads:bookhttps://www.goodreads.com/author/show/6621980....2012NaNdir10/16243767-crossing-the-seas.html90Crossing the Seas
9584.57381990545010225good_reads:bookhttps://www.goodreads.com/author/show/1077326....2007/genres/fantasy|/genres/young-adult|/genres/fa...dir10/136251.Harry_Potter_and_the_Deathly_Hall...1245866Harry Potter and the Deathly Hallows (Harry Po...
10334.5613040007119550good_reads:bookhttps://www.goodreads.com/author/show/346732.G...2000/genres/fiction|/genres/fantasy|/genres/epic-f...dir11/147915.A_Storm_of_Swords.html41161A Storm of Swords (A Song of Ice and Fire, #3-2)
11094.7023NaNgood_reads:bookhttps://www.goodreads.com/author/show/7488658....2013/genres/romancedir12/19181419-a-bird-without-wings.html56A Bird Without Wings
11274.526440141183047good_reads:bookhttps://www.goodreads.com/author/show/7816.Fer...1982/genres/poetry|/genres/fiction|/genres/philoso...dir12/45974.The_Book_of_Disquiet.html7463The Book of Disquiet
11514.64841491877928good_reads:bookhttps://www.goodreads.com/author/show/7271860....2013/genres/war|/genres/historical-fiction|/genres...dir12/18501652-the-guardian-of-secrets-and-her...167The Guardian of Secrets and Her Deathly Pact
11864.5148531619630621good_reads:bookhttps://www.goodreads.com/author/show/3433047....2013/genres/fantasy|/genres/young-adult|/genres/ro...dir12/17167166-crown-of-midnight.html34142Crown of Midnight (Throne of Glass, #2)
12024.5912600310902711good_reads:bookhttps://www.goodreads.com/author/show/5158478....1972/genres/religion|/genres/christian|/genres/non...dir13/280111.Holy_Bible.html25584Holy Bible
12604.6019430842377506good_reads:bookhttps://www.goodreads.com/author/show/6492.Fra...1993/genres/christian-fiction|/genres/historical-f...dir13/95617.A_Voice_in_the_Wind.html37923A Voice in the Wind (Mark of the Lion, #1)
12684.522151557091528good_reads:bookhttps://www.goodreads.com/author/show/63859.Ja...1787/genres/history|/genres/non-fiction|/genres/po...dir13/89959.The_Constitution_of_the_United_Sta...12894The Constitution of the United States of America
13004.61241499227299good_reads:bookhttps://www.goodreads.com/author/show/7414345....2014/genres/paranormal|/genres/vampires|/genres/pa...dir14/22090082-vampire-princess-rising.html128Vampire Princess Rising (The Winters Family Sa...
.................................
55324.8641477504540good_reads:bookhttps://www.goodreads.com/author/show/5989528....2013NaNdir56/17695243-call-of-the-lost-ages.html7Call Of The Lost Ages
55494.62130882408704good_reads:bookhttps://www.goodreads.com/author/show/947.Will...1899/genres/classics|/genres/fiction|/genres/poetr...dir56/17134346-the-complete-works-of-william-s...217The Complete Works of William Shakespeare
55574.6114NaNgood_reads:bookhttps://www.goodreads.com/author/show/32401.Al...2006/genres/fantasy|/genres/young-adultdir56/13488552-the-books-of-pellinor.html394The Books of Pellinor
55634.7030NaNgood_reads:bookhttps://www.goodreads.com/author/show/7153266....2014/genres/childrensdir56/20445451-children-s-book.html57Children's book
55645.009NaNgood_reads:bookhttps://www.goodreads.com/author/show/7738947....2014/genres/romance|/genres/new-adultdir56/21902777-untainted.html14Untainted (Photographer Trilogy, #3)
55844.7531481959824good_reads:bookhttps://www.goodreads.com/author/show/5100743....2013NaNdir56/17606460-why-not-world.html8Why Not-World
55884.66190NaNgood_reads:bookhttps://www.goodreads.com/author/show/4942228....2011/genres/romance|/genres/m-m-romance|/genres/sc...dir56/11737700-fade.html996Fade (In the company of shadows, #4)
55914.58311500118680good_reads:bookhttps://www.goodreads.com/author/show/7738947....2014/genres/romance|/genres/new-adultdir56/22023804-logan-s-story.html45Logan's Story (Sand & Clay, #0.5)
56014.663120842384898good_reads:bookhttps://www.goodreads.com/author/show/5158478....1902/genres/christian|/genres/religion|/genres/non...dir57/930470.Holy_Bible.html2666Holy Bible
56074.665130007444397good_reads:bookhttps://www.goodreads.com/author/show/4659154....2011/genres/non-fiction|/genres/biographydir57/11792612-dare-to-dream.html5572Dare to Dream (100% Official)
56194.524620991190920good_reads:bookhttps://www.goodreads.com/author/show/7092218....2014/genres/fantasy|/genres/paranormal|/genres/fai...dir57/18188649-escaping-destiny.html3795Escaping Destiny (The Fae Chronicles, #3)
56354.549580778315703good_reads:bookhttps://www.goodreads.com/author/show/4480131....2013/genres/erotica|/genres/bdsm|/genres/adult-fic...dir57/17251444-the-mistress.html4869The Mistress (The Original Sinners, #4)
56424.701581417642165good_reads:bookhttps://www.goodreads.com/author/show/13778.Bi...1992/genres/sequential-art|/genres/comics|/genres/...dir57/70487.Calvin_and_Hobbes.html9224Calvin and Hobbes
56574.8081469908530good_reads:bookhttps://www.goodreads.com/author/show/4695431....2012/genres/fantasydir57/15734769-myrtle-mae-and-the-mirror-in-th...10Myrtle Mae and the Mirror in the Attic (The Ma...
56654.5361NaNgood_reads:bookhttps://www.goodreads.com/author/show/7738947....2014/genres/romance|/genres/new-adult|/genres/myst...dir57/20975446-tainted-pictures.html103Tainted Pictures (Photographer Trilogy, #2)
56834.56204NaNgood_reads:bookhttps://www.goodreads.com/author/show/3097905....NaN/genres/fantasy|/genres/young-adult|/genres/ro...dir57/12474623-tiger-s-dream.html895Tiger's Dream (The Tiger Saga, #5)
56925.000NaNgood_reads:bookhttps://www.goodreads.com/author/show/5989528....2012NaNdir57/14288412-abstraction-in-theory---laws-of...6Abstraction In Theory - Laws Of Physical Trans...
57164.67340810117134good_reads:bookhttps://www.goodreads.com/author/show/205563.M...1970/genres/classics|/genres/fiction|/genres/histo...dir58/1679497.The_Fortress.html1335The Fortress
57174.714NaNgood_reads:bookhttps://www.goodreads.com/author/show/5838022....2012NaNdir58/13741511-american-amaranth.html14American Amaranth
57184.606561613725132good_reads:bookhttps://www.goodreads.com/author/show/1122775....2012/genres/romance|/genres/m-m-romance|/genres/ro...dir58/13246997-armed-dangerous.html5268Armed & Dangerous (Cut & Run, #5)
57264.551061594170347good_reads:bookhttps://www.goodreads.com/author/show/5158478....1952/genres/religion|/genres/reference|/genres/rel...dir58/147635.Holy_Bible.html1750Holy Bible
57294.8316NaNgood_reads:bookhttps://www.goodreads.com/author/show/7058502....2014NaNdir58/22312293-the-keeper.html29The Keeper (The Keeper, #5)
57534.618111937551865good_reads:bookhttps://www.goodreads.com/author/show/1122775....2013/genres/romance|/genres/m-m-romance|/genres/ro...dir58/16159276-touch-geaux.html4212Touch & Geaux (Cut & Run, #7)
57644.54228NaNgood_reads:bookhttps://www.goodreads.com/author/show/2112402....2013/genres/non-fiction|/genres/self-help|/genres/...dir58/18479831-staying-strong.html2343Staying Strong
57784.630NaNgood_reads:bookhttps://www.goodreads.com/author/show/4808225....2010NaNdir58/11187937-un-spoken.html19(Un) Spoken
58064.571210679777458good_reads:bookhttps://www.goodreads.com/author/show/8361.Dor...1966/genres/historical-fiction|/genres/fiction|/ge...dir59/351211.The_Disorderly_Knights.html2177The Disorderly Knights (The Lymond Chronicles,...
58734.55103144247372Xgood_reads:bookhttps://www.goodreads.com/author/show/2876763....2012/genres/fantasy|/genres/paranormal|/genres/ang...dir59/14367071-the-complete-hush-hush-saga.html2869The Complete Hush, Hush Saga
58744.78182851944371good_reads:bookhttps://www.goodreads.com/author/show/318835.O...1972/genres/poetry|/genres/fiction|/genres/nobel-p...dir59/2014000.Le_Monogramme.html565Le Monogramme
58804.61123NaNgood_reads:bookhttps://www.goodreads.com/author/show/4942228....2010/genres/romance|/genres/m-m-romance|/genres/sc...dir59/10506860-the-interludes.html1031The Interludes (In the company of shadows, #3)
59574.72104178048044Xgood_reads:bookhttps://www.goodreads.com/author/show/20248.J_...2010/genres/romance|/genres/paranormal|/genres/vam...dir60/10780042-j-r-ward-collection.html1788J. R. Ward Collection
\n", + "

224 rows × 10 columns

\n", + "
" + ], + "text/plain": [ + " rating review_count isbn booktype author_url year genre_urls dir rating_count name\n", + "17 4.58 1314 0345538374 good_reads:book https://www.goodreads.com/author/show/656983.J... 1973 /genres/fantasy|/genres/classics|/genres/scien... dir01/30.J_R_R_Tolkien_4_Book_Boxed_Set.html 68495 J.R.R. Tolkien 4-Book Boxed Set\n", + "162 4.55 15777 075640407X good_reads:book https://www.goodreads.com/author/show/108424.P... 2007 /genres/fantasy|/genres/fiction dir02/186074.The_Name_of_the_Wind.html 210018 The Name of the Wind (The Kingkiller Chronicle...\n", + "222 4.53 15256 055357342X good_reads:book https://www.goodreads.com/author/show/346732.G... 2000 /genres/fantasy|/genres/fiction|/genres/fantas... dir03/62291.A_Storm_of_Swords.html 327992 A Storm of Swords (A Song of Ice and Fire, #3)\n", + "242 4.53 5404 0545265355 good_reads:book https://www.goodreads.com/author/show/153394.S... 2010 /genres/young-adult|/genres/fiction|/genres/fa... dir03/7938275-the-hunger-games-trilogy-boxset.... 102330 The Hunger Games Trilogy Boxset (The Hunger Ga...\n", + "249 4.80 644 0740748475 good_reads:book https://www.goodreads.com/author/show/13778.Bi... 2005 /genres/sequential-art|/genres/comics|/genres/... dir03/24812.The_Complete_Calvin_and_Hobbes.html 22674 The Complete Calvin and Hobbes\n", + "284 4.58 15195 1406321346 good_reads:book https://www.goodreads.com/author/show/150038.C... 2013 /genres/fantasy|/genres/young-adult|/genres/fa... dir03/18335634-clockwork-princess.html 130161 Clockwork Princess (The Infernal Devices, #3)\n", + "304 4.54 572 0140259449 good_reads:book https://www.goodreads.com/author/show/1265.Jan... 1933 /genres/classics|/genres/fiction|/genres/roman... dir04/14905.The_Complete_Novels.html 17539 The Complete Novels\n", + "386 4.55 8820 0756404738 good_reads:book https://www.goodreads.com/author/show/108424.P... 2011 /genres/fantasy|/genres/fantasy|/genres/epic-f... dir04/1215032.The_Wise_Man_s_Fear.html 142499 The Wise Man's Fear (The Kingkiller Chronicle,...\n", + "400 4.53 9292 1423140605 good_reads:book https://www.goodreads.com/author/show/15872.Ri... 2012 /genres/fantasy|/genres/young-adult|/genres/fa... dir05/12127750-the-mark-of-athena.html 128412 The Mark of Athena (The Heroes of Olympus, #3)\n", + "475 4.57 824 1416997857 good_reads:book https://www.goodreads.com/author/show/150038.C... 2009 /genres/fantasy|/genres/young-adult|/genres/fa... dir05/6485421-the-mortal-instruments-boxed-set... 39720 The Mortal Instruments Boxed Set (The Mortal I...\n", + "483 4.59 2622 0312362153 good_reads:book https://www.goodreads.com/author/show/4430.She... 2008 /genres/romance|/genres/paranormal-romance|/ge... dir05/2299110.Acheron.html 35028 Acheron (Dark-Hunter, #8)\n", + "554 4.54 4809 0385341679 good_reads:book https://www.goodreads.com/author/show/48206.Ka... 2011 /genres/fantasy|/genres/urban-fantasy|/genres/... dir06/7304203-shadowfever.html 52812 Shadowfever (Fever, #5)\n", + "577 4.60 5732 0765326353 good_reads:book https://www.goodreads.com/author/show/38550.Br... 2010 /genres/science-fiction-fantasy|/genres/fantas... dir06/7235533-the-way-of-kings.html 76551 The Way of Kings (The Stormlight Archive, #1)\n", + "620 4.54 7767 1423146727 good_reads:book https://www.goodreads.com/author/show/15872.Ri... 2013 /genres/fantasy|/genres/young-adult|/genres/fa... dir07/12127810-the-house-of-hades.html 72082 The House of Hades (The Heroes of Olympus, #4)\n", + "840 4.57 431 1423113497 good_reads:book https://www.goodreads.com/author/show/15872.Ri... 2008 /genres/fantasy|/genres/young-adult|/genres/fa... dir09/3165162-percy-jackson-and-the-olympians-... 22937 Percy Jackson and the Olympians Boxed Set (Per...\n", + "883 4.58 558 0140286802 good_reads:book https://www.goodreads.com/author/show/500.Jorg... 1998 /genres/short-stories|/genres/literature|/genr... dir09/17961.Collected_Fictions.html 12596 Collected Fictions\n", + "911 4.85 26 1491732954 good_reads:book https://www.goodreads.com/author/show/8189303.... 2014 /genres/fiction dir10/22242097-honor-and-polygamy.html 97 Honor and Polygamy\n", + "935 4.64 148 1595142711 good_reads:book https://www.goodreads.com/author/show/137902.R... 2009 /genres/paranormal|/genres/vampires|/genres/yo... dir10/6339989-vampire-academy-collection.html 21743 Vampire Academy Collection (Vampire Academy, #...\n", + "938 4.51 11011 1481426303 good_reads:book https://www.goodreads.com/author/show/150038.C... 2014 /genres/fantasy|/genres/young-adult|/genres/fa... dir10/8755785-city-of-heavenly-fire.html 69924 City of Heavenly Fire (The Mortal Instruments,...\n", + "953 4.56 27 1477276068 good_reads:book https://www.goodreads.com/author/show/6621980.... 2012 NaN dir10/16243767-crossing-the-seas.html 90 Crossing the Seas\n", + "958 4.57 38199 0545010225 good_reads:book https://www.goodreads.com/author/show/1077326.... 2007 /genres/fantasy|/genres/young-adult|/genres/fa... dir10/136251.Harry_Potter_and_the_Deathly_Hall... 1245866 Harry Potter and the Deathly Hallows (Harry Po...\n", + "1033 4.56 1304 0007119550 good_reads:book https://www.goodreads.com/author/show/346732.G... 2000 /genres/fiction|/genres/fantasy|/genres/epic-f... dir11/147915.A_Storm_of_Swords.html 41161 A Storm of Swords (A Song of Ice and Fire, #3-2)\n", + "1109 4.70 23 NaN good_reads:book https://www.goodreads.com/author/show/7488658.... 2013 /genres/romance dir12/19181419-a-bird-without-wings.html 56 A Bird Without Wings\n", + "1127 4.52 644 0141183047 good_reads:book https://www.goodreads.com/author/show/7816.Fer... 1982 /genres/poetry|/genres/fiction|/genres/philoso... dir12/45974.The_Book_of_Disquiet.html 7463 The Book of Disquiet\n", + "1151 4.64 84 1491877928 good_reads:book https://www.goodreads.com/author/show/7271860.... 2013 /genres/war|/genres/historical-fiction|/genres... dir12/18501652-the-guardian-of-secrets-and-her... 167 The Guardian of Secrets and Her Deathly Pact\n", + "1186 4.51 4853 1619630621 good_reads:book https://www.goodreads.com/author/show/3433047.... 2013 /genres/fantasy|/genres/young-adult|/genres/ro... dir12/17167166-crown-of-midnight.html 34142 Crown of Midnight (Throne of Glass, #2)\n", + "1202 4.59 1260 0310902711 good_reads:book https://www.goodreads.com/author/show/5158478.... 1972 /genres/religion|/genres/christian|/genres/non... dir13/280111.Holy_Bible.html 25584 Holy Bible\n", + "1260 4.60 1943 0842377506 good_reads:book https://www.goodreads.com/author/show/6492.Fra... 1993 /genres/christian-fiction|/genres/historical-f... dir13/95617.A_Voice_in_the_Wind.html 37923 A Voice in the Wind (Mark of the Lion, #1)\n", + "1268 4.52 215 1557091528 good_reads:book https://www.goodreads.com/author/show/63859.Ja... 1787 /genres/history|/genres/non-fiction|/genres/po... dir13/89959.The_Constitution_of_the_United_Sta... 12894 The Constitution of the United States of America\n", + "1300 4.61 24 1499227299 good_reads:book https://www.goodreads.com/author/show/7414345.... 2014 /genres/paranormal|/genres/vampires|/genres/pa... dir14/22090082-vampire-princess-rising.html 128 Vampire Princess Rising (The Winters Family Sa...\n", + "... ... ... ... ... ... ... ... ... ... ...\n", + "5532 4.86 4 1477504540 good_reads:book https://www.goodreads.com/author/show/5989528.... 2013 NaN dir56/17695243-call-of-the-lost-ages.html 7 Call Of The Lost Ages\n", + "5549 4.62 13 0882408704 good_reads:book https://www.goodreads.com/author/show/947.Will... 1899 /genres/classics|/genres/fiction|/genres/poetr... dir56/17134346-the-complete-works-of-william-s... 217 The Complete Works of William Shakespeare\n", + "5557 4.61 14 NaN good_reads:book https://www.goodreads.com/author/show/32401.Al... 2006 /genres/fantasy|/genres/young-adult dir56/13488552-the-books-of-pellinor.html 394 The Books of Pellinor\n", + "5563 4.70 30 NaN good_reads:book https://www.goodreads.com/author/show/7153266.... 2014 /genres/childrens dir56/20445451-children-s-book.html 57 Children's book\n", + "5564 5.00 9 NaN good_reads:book https://www.goodreads.com/author/show/7738947.... 2014 /genres/romance|/genres/new-adult dir56/21902777-untainted.html 14 Untainted (Photographer Trilogy, #3)\n", + "5584 4.75 3 1481959824 good_reads:book https://www.goodreads.com/author/show/5100743.... 2013 NaN dir56/17606460-why-not-world.html 8 Why Not-World\n", + "5588 4.66 190 NaN good_reads:book https://www.goodreads.com/author/show/4942228.... 2011 /genres/romance|/genres/m-m-romance|/genres/sc... dir56/11737700-fade.html 996 Fade (In the company of shadows, #4)\n", + "5591 4.58 31 1500118680 good_reads:book https://www.goodreads.com/author/show/7738947.... 2014 /genres/romance|/genres/new-adult dir56/22023804-logan-s-story.html 45 Logan's Story (Sand & Clay, #0.5)\n", + "5601 4.66 312 0842384898 good_reads:book https://www.goodreads.com/author/show/5158478.... 1902 /genres/christian|/genres/religion|/genres/non... dir57/930470.Holy_Bible.html 2666 Holy Bible\n", + "5607 4.66 513 0007444397 good_reads:book https://www.goodreads.com/author/show/4659154.... 2011 /genres/non-fiction|/genres/biography dir57/11792612-dare-to-dream.html 5572 Dare to Dream (100% Official)\n", + "5619 4.52 462 0991190920 good_reads:book https://www.goodreads.com/author/show/7092218.... 2014 /genres/fantasy|/genres/paranormal|/genres/fai... dir57/18188649-escaping-destiny.html 3795 Escaping Destiny (The Fae Chronicles, #3)\n", + "5635 4.54 958 0778315703 good_reads:book https://www.goodreads.com/author/show/4480131.... 2013 /genres/erotica|/genres/bdsm|/genres/adult-fic... dir57/17251444-the-mistress.html 4869 The Mistress (The Original Sinners, #4)\n", + "5642 4.70 158 1417642165 good_reads:book https://www.goodreads.com/author/show/13778.Bi... 1992 /genres/sequential-art|/genres/comics|/genres/... dir57/70487.Calvin_and_Hobbes.html 9224 Calvin and Hobbes\n", + "5657 4.80 8 1469908530 good_reads:book https://www.goodreads.com/author/show/4695431.... 2012 /genres/fantasy dir57/15734769-myrtle-mae-and-the-mirror-in-th... 10 Myrtle Mae and the Mirror in the Attic (The Ma...\n", + "5665 4.53 61 NaN good_reads:book https://www.goodreads.com/author/show/7738947.... 2014 /genres/romance|/genres/new-adult|/genres/myst... dir57/20975446-tainted-pictures.html 103 Tainted Pictures (Photographer Trilogy, #2)\n", + "5683 4.56 204 NaN good_reads:book https://www.goodreads.com/author/show/3097905.... NaN /genres/fantasy|/genres/young-adult|/genres/ro... dir57/12474623-tiger-s-dream.html 895 Tiger's Dream (The Tiger Saga, #5)\n", + "5692 5.00 0 NaN good_reads:book https://www.goodreads.com/author/show/5989528.... 2012 NaN dir57/14288412-abstraction-in-theory---laws-of... 6 Abstraction In Theory - Laws Of Physical Trans...\n", + "5716 4.67 34 0810117134 good_reads:book https://www.goodreads.com/author/show/205563.M... 1970 /genres/classics|/genres/fiction|/genres/histo... dir58/1679497.The_Fortress.html 1335 The Fortress\n", + "5717 4.71 4 NaN good_reads:book https://www.goodreads.com/author/show/5838022.... 2012 NaN dir58/13741511-american-amaranth.html 14 American Amaranth\n", + "5718 4.60 656 1613725132 good_reads:book https://www.goodreads.com/author/show/1122775.... 2012 /genres/romance|/genres/m-m-romance|/genres/ro... dir58/13246997-armed-dangerous.html 5268 Armed & Dangerous (Cut & Run, #5)\n", + "5726 4.55 106 1594170347 good_reads:book https://www.goodreads.com/author/show/5158478.... 1952 /genres/religion|/genres/reference|/genres/rel... dir58/147635.Holy_Bible.html 1750 Holy Bible\n", + "5729 4.83 16 NaN good_reads:book https://www.goodreads.com/author/show/7058502.... 2014 NaN dir58/22312293-the-keeper.html 29 The Keeper (The Keeper, #5)\n", + "5753 4.61 811 1937551865 good_reads:book https://www.goodreads.com/author/show/1122775.... 2013 /genres/romance|/genres/m-m-romance|/genres/ro... dir58/16159276-touch-geaux.html 4212 Touch & Geaux (Cut & Run, #7)\n", + "5764 4.54 228 NaN good_reads:book https://www.goodreads.com/author/show/2112402.... 2013 /genres/non-fiction|/genres/self-help|/genres/... dir58/18479831-staying-strong.html 2343 Staying Strong\n", + "5778 4.63 0 NaN good_reads:book https://www.goodreads.com/author/show/4808225.... 2010 NaN dir58/11187937-un-spoken.html 19 (Un) Spoken\n", + "5806 4.57 121 0679777458 good_reads:book https://www.goodreads.com/author/show/8361.Dor... 1966 /genres/historical-fiction|/genres/fiction|/ge... dir59/351211.The_Disorderly_Knights.html 2177 The Disorderly Knights (The Lymond Chronicles,...\n", + "5873 4.55 103 144247372X good_reads:book https://www.goodreads.com/author/show/2876763.... 2012 /genres/fantasy|/genres/paranormal|/genres/ang... dir59/14367071-the-complete-hush-hush-saga.html 2869 The Complete Hush, Hush Saga\n", + "5874 4.78 18 2851944371 good_reads:book https://www.goodreads.com/author/show/318835.O... 1972 /genres/poetry|/genres/fiction|/genres/nobel-p... dir59/2014000.Le_Monogramme.html 565 Le Monogramme\n", + "5880 4.61 123 NaN good_reads:book https://www.goodreads.com/author/show/4942228.... 2010 /genres/romance|/genres/m-m-romance|/genres/sc... dir59/10506860-the-interludes.html 1031 The Interludes (In the company of shadows, #3)\n", + "5957 4.72 104 178048044X good_reads:book https://www.goodreads.com/author/show/20248.J_... 2010 /genres/romance|/genres/paranormal|/genres/vam... dir60/10780042-j-r-ward-collection.html 1788 J. R. Ward Collection\n", + "\n", + "[224 rows x 10 columns]" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.query(\"rating > 4.5\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Here we create a mask and use it to \"index\" into the dataframe to get the rows we want." + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ratingreview_countisbnbooktypeauthor_urlyeargenre_urlsdirrating_countnameauthor
473.6857850143039954bookhttps://www.goodreads.com/author/show/903.Homer-800/genres/classics|/genres/fiction|/genres/poetr...dir01/1381.The_Odyssey.html560248The OdysseyHomer
2464.013650147712556bookhttps://www.goodreads.com/author/show/903.Homer-800/genres/classics|/genres/fantasy|/genres/mytho...dir03/1375.The_Iliad_The_Odyssey.html35123The Iliad/The OdysseyHomer
4553.8514990140449140bookhttps://www.goodreads.com/author/show/879.Plato-380/genres/philosophy|/genres/classics|/genres/no...dir05/30289.The_Republic.html82022The RepublicPlato
5963.7712400679729526bookhttps://www.goodreads.com/author/show/919.Virgil-29/genres/classics|/genres/poetry|/genres/fictio...dir06/12914.The_Aeneid.html60308The AeneidVirgil
6293.6412311580495931bookhttps://www.goodreads.com/author/show/1002.Sop...-429/genres/classics|/genres/plays|/genres/drama|/...dir07/1554.Oedipus_Rex.html93192Oedipus RexSophocles
6743.9235591590302257bookhttps://www.goodreads.com/author/show/1771.Sun...-512/genres/non-fiction|/genres/politics|/genres/c...dir07/10534.The_Art_of_War.html114619The Art of WarSun_Tzu
7464.0610870140449183bookhttps://www.goodreads.com/author/show/5158478....-500/genres/classics|/genres/spirituality|/genres/...dir08/99944.The_Bhagavad_Gita.html31634The Bhagavad GitaAnonymous
7773.5210381580493882bookhttps://www.goodreads.com/author/show/1002.Sop...-442/genres/drama|/genres/fiction|/genres/classics...dir08/7728.Antigone.html49084AntigoneSophocles
12333.94704015602764Xbookhttps://www.goodreads.com/author/show/1002.Sop...-400/genres/classics|/genres/plays|/genres/drama|/...dir13/1540.The_Oedipus_Cycle.html36008The Oedipus CycleSophocles
13974.038900192840509bookhttps://www.goodreads.com/author/show/12452.Aesop-560/genres/classics|/genres/childrens|/genres/lit...dir14/21348.Aesop_s_Fables.html71259Aesop's FablesAesop
13983.6016440141026286bookhttps://www.goodreads.com/author/show/5158478....-1500/genres/religion|/genres/literature|/genres/an...dir14/19351.The_Epic_of_Gilgamesh.html42026The Epic of GilgameshAnonymous
14283.805390486275485bookhttps://www.goodreads.com/author/show/973.Euri...-431/genres/classics|/genres/plays|/genres/drama|/...dir15/752900.Medea.html29858MedeaEuripides
18153.964930140443339bookhttps://www.goodreads.com/author/show/990.Aesc...-458/genres/classics|/genres/plays|/genres/drama|/...dir19/1519.The_Oresteia.html18729The OresteiaAeschylus
18824.023770872205541bookhttps://www.goodreads.com/author/show/879.Plato-400/genres/philosophy|/genres/classics|/genres/no...dir19/22632.The_Trial_and_Death_of_Socrates.html18712The Trial and Death of SocratesPlato
20783.843990140440399bookhttps://www.goodreads.com/author/show/957.Thuc...-411/genres/history|/genres/classics|/genres/non-f...dir21/261243.The_History_of_the_Peloponnesian_...17212The History of the Peloponnesian WarThucydides
25273.945060140449086bookhttps://www.goodreads.com/author/show/901.Hero...-440/genres/history|/genres/classics|/genres/non-f...dir26/1362.The_Histories.html20570The HistoriesHerodotus
31334.301310872203492bookhttps://www.goodreads.com/author/show/879.Plato-400/genres/philosophy|/genres/classics|/genres/no...dir32/9462.Complete_Works.html7454Complete WorksPlato
32743.884110140449493bookhttps://www.goodreads.com/author/show/2192.Ari...-350/genres/philosophy|/genres/classics|/genres/no...dir33/19068.The_Nicomachean_Ethics.html16534The Nicomachean EthicsAristotle
37573.823640872206033bookhttps://www.goodreads.com/author/show/1011.Ari...-411/genres/plays|/genres/classics|/genres/drama|/...dir38/1591.Lysistrata.html18070LysistrataAristophanes
44023.995160140449272bookhttps://www.goodreads.com/author/show/879.Plato-370/genres/non-fiction|/genres/classics|/genres/p...dir45/81779.The_Symposium.html18457The SymposiumPlato
44754.112810865163480bookhttps://www.goodreads.com/author/show/879.Plato-390/genres/philosophy|/genres/classics|/genres/no...dir45/73945.Apology.html11478ApologyPlato
53674.071330872206335bookhttps://www.goodreads.com/author/show/879.Plato-360/genres/philosophy|/genres/classics|/genres/no...dir54/30292.Five_Dialogues.html9964Five DialoguesPlato
\n", + "
" + ], + "text/plain": [ + " rating review_count isbn booktype author_url year genre_urls dir rating_count name author\n", + "47 3.68 5785 0143039954 book https://www.goodreads.com/author/show/903.Homer -800 /genres/classics|/genres/fiction|/genres/poetr... dir01/1381.The_Odyssey.html 560248 The Odyssey Homer\n", + "246 4.01 365 0147712556 book https://www.goodreads.com/author/show/903.Homer -800 /genres/classics|/genres/fantasy|/genres/mytho... dir03/1375.The_Iliad_The_Odyssey.html 35123 The Iliad/The Odyssey Homer\n", + "455 3.85 1499 0140449140 book https://www.goodreads.com/author/show/879.Plato -380 /genres/philosophy|/genres/classics|/genres/no... dir05/30289.The_Republic.html 82022 The Republic Plato\n", + "596 3.77 1240 0679729526 book https://www.goodreads.com/author/show/919.Virgil -29 /genres/classics|/genres/poetry|/genres/fictio... dir06/12914.The_Aeneid.html 60308 The Aeneid Virgil\n", + "629 3.64 1231 1580495931 book https://www.goodreads.com/author/show/1002.Sop... -429 /genres/classics|/genres/plays|/genres/drama|/... dir07/1554.Oedipus_Rex.html 93192 Oedipus Rex Sophocles\n", + "674 3.92 3559 1590302257 book https://www.goodreads.com/author/show/1771.Sun... -512 /genres/non-fiction|/genres/politics|/genres/c... dir07/10534.The_Art_of_War.html 114619 The Art of War Sun_Tzu\n", + "746 4.06 1087 0140449183 book https://www.goodreads.com/author/show/5158478.... -500 /genres/classics|/genres/spirituality|/genres/... dir08/99944.The_Bhagavad_Gita.html 31634 The Bhagavad Gita Anonymous\n", + "777 3.52 1038 1580493882 book https://www.goodreads.com/author/show/1002.Sop... -442 /genres/drama|/genres/fiction|/genres/classics... dir08/7728.Antigone.html 49084 Antigone Sophocles\n", + "1233 3.94 704 015602764X book https://www.goodreads.com/author/show/1002.Sop... -400 /genres/classics|/genres/plays|/genres/drama|/... dir13/1540.The_Oedipus_Cycle.html 36008 The Oedipus Cycle Sophocles\n", + "1397 4.03 890 0192840509 book https://www.goodreads.com/author/show/12452.Aesop -560 /genres/classics|/genres/childrens|/genres/lit... dir14/21348.Aesop_s_Fables.html 71259 Aesop's Fables Aesop\n", + "1398 3.60 1644 0141026286 book https://www.goodreads.com/author/show/5158478.... -1500 /genres/religion|/genres/literature|/genres/an... dir14/19351.The_Epic_of_Gilgamesh.html 42026 The Epic of Gilgamesh Anonymous\n", + "1428 3.80 539 0486275485 book https://www.goodreads.com/author/show/973.Euri... -431 /genres/classics|/genres/plays|/genres/drama|/... dir15/752900.Medea.html 29858 Medea Euripides\n", + "1815 3.96 493 0140443339 book https://www.goodreads.com/author/show/990.Aesc... -458 /genres/classics|/genres/plays|/genres/drama|/... dir19/1519.The_Oresteia.html 18729 The Oresteia Aeschylus\n", + "1882 4.02 377 0872205541 book https://www.goodreads.com/author/show/879.Plato -400 /genres/philosophy|/genres/classics|/genres/no... dir19/22632.The_Trial_and_Death_of_Socrates.html 18712 The Trial and Death of Socrates Plato\n", + "2078 3.84 399 0140440399 book https://www.goodreads.com/author/show/957.Thuc... -411 /genres/history|/genres/classics|/genres/non-f... dir21/261243.The_History_of_the_Peloponnesian_... 17212 The History of the Peloponnesian War Thucydides\n", + "2527 3.94 506 0140449086 book https://www.goodreads.com/author/show/901.Hero... -440 /genres/history|/genres/classics|/genres/non-f... dir26/1362.The_Histories.html 20570 The Histories Herodotus\n", + "3133 4.30 131 0872203492 book https://www.goodreads.com/author/show/879.Plato -400 /genres/philosophy|/genres/classics|/genres/no... dir32/9462.Complete_Works.html 7454 Complete Works Plato\n", + "3274 3.88 411 0140449493 book https://www.goodreads.com/author/show/2192.Ari... -350 /genres/philosophy|/genres/classics|/genres/no... dir33/19068.The_Nicomachean_Ethics.html 16534 The Nicomachean Ethics Aristotle\n", + "3757 3.82 364 0872206033 book https://www.goodreads.com/author/show/1011.Ari... -411 /genres/plays|/genres/classics|/genres/drama|/... dir38/1591.Lysistrata.html 18070 Lysistrata Aristophanes\n", + "4402 3.99 516 0140449272 book https://www.goodreads.com/author/show/879.Plato -370 /genres/non-fiction|/genres/classics|/genres/p... dir45/81779.The_Symposium.html 18457 The Symposium Plato\n", + "4475 4.11 281 0865163480 book https://www.goodreads.com/author/show/879.Plato -390 /genres/philosophy|/genres/classics|/genres/no... dir45/73945.Apology.html 11478 Apology Plato\n", + "5367 4.07 133 0872206335 book https://www.goodreads.com/author/show/879.Plato -360 /genres/philosophy|/genres/classics|/genres/no... dir54/30292.Five_Dialogues.html 9964 Five Dialogues Plato" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df[df.year < 0]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "If you want to combine these conditions, use the second form and put '()' brackets around each condition. The query uses a boolean AND. Each condition ceates a mask of trues and falses." + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ratingreview_countisbnbooktypeauthor_urlyeargenre_urlsdirrating_countname
2464.013650147712556good_reads:bookhttps://www.goodreads.com/author/show/903.Homer-800/genres/classics|/genres/fantasy|/genres/mytho...dir03/1375.The_Iliad_The_Odyssey.html35123The Iliad/The Odyssey
7464.0610870140449183good_reads:bookhttps://www.goodreads.com/author/show/5158478....-500/genres/classics|/genres/spirituality|/genres/...dir08/99944.The_Bhagavad_Gita.html31634The Bhagavad Gita
13974.038900192840509good_reads:bookhttps://www.goodreads.com/author/show/12452.Aesop-560/genres/classics|/genres/childrens|/genres/lit...dir14/21348.Aesop_s_Fables.html71259Aesop's Fables
18824.023770872205541good_reads:bookhttps://www.goodreads.com/author/show/879.Plato-400/genres/philosophy|/genres/classics|/genres/no...dir19/22632.The_Trial_and_Death_of_Socrates.html18712The Trial and Death of Socrates
31334.301310872203492good_reads:bookhttps://www.goodreads.com/author/show/879.Plato-400/genres/philosophy|/genres/classics|/genres/no...dir32/9462.Complete_Works.html7454Complete Works
44754.112810865163480good_reads:bookhttps://www.goodreads.com/author/show/879.Plato-390/genres/philosophy|/genres/classics|/genres/no...dir45/73945.Apology.html11478Apology
53674.071330872206335good_reads:bookhttps://www.goodreads.com/author/show/879.Plato-360/genres/philosophy|/genres/classics|/genres/no...dir54/30292.Five_Dialogues.html9964Five Dialogues
\n", + "
" + ], + "text/plain": [ + " rating review_count isbn booktype author_url year genre_urls dir rating_count name\n", + "246 4.01 365 0147712556 good_reads:book https://www.goodreads.com/author/show/903.Homer -800 /genres/classics|/genres/fantasy|/genres/mytho... dir03/1375.The_Iliad_The_Odyssey.html 35123 The Iliad/The Odyssey\n", + "746 4.06 1087 0140449183 good_reads:book https://www.goodreads.com/author/show/5158478.... -500 /genres/classics|/genres/spirituality|/genres/... dir08/99944.The_Bhagavad_Gita.html 31634 The Bhagavad Gita\n", + "1397 4.03 890 0192840509 good_reads:book https://www.goodreads.com/author/show/12452.Aesop -560 /genres/classics|/genres/childrens|/genres/lit... dir14/21348.Aesop_s_Fables.html 71259 Aesop's Fables\n", + "1882 4.02 377 0872205541 good_reads:book https://www.goodreads.com/author/show/879.Plato -400 /genres/philosophy|/genres/classics|/genres/no... dir19/22632.The_Trial_and_Death_of_Socrates.html 18712 The Trial and Death of Socrates\n", + "3133 4.30 131 0872203492 good_reads:book https://www.goodreads.com/author/show/879.Plato -400 /genres/philosophy|/genres/classics|/genres/no... dir32/9462.Complete_Works.html 7454 Complete Works\n", + "4475 4.11 281 0865163480 good_reads:book https://www.goodreads.com/author/show/879.Plato -390 /genres/philosophy|/genres/classics|/genres/no... dir45/73945.Apology.html 11478 Apology\n", + "5367 4.07 133 0872206335 good_reads:book https://www.goodreads.com/author/show/879.Plato -360 /genres/philosophy|/genres/classics|/genres/no... dir54/30292.Five_Dialogues.html 9964 Five Dialogues" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df[(df.year < 0) & (df.rating > 4)]#there were none greater than 4.5!" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "###Cleaning" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We first check the datatypes. Notice that `review_count`, `rating_count` are of type `object` (which means they are either strings or Pandas couldnt figure what they are), while `year` is a float." + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "rating float64\n", + "review_count object\n", + "isbn object\n", + "booktype object\n", + "author_url object\n", + "year float64\n", + "genre_urls object\n", + "dir object\n", + "rating_count object\n", + "name object\n", + "dtype: object" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.dtypes" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Suppose we try and fix this" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "ename": "ValueError", + "evalue": "invalid literal for long() with base 10: 'None'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mdf\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m'rating_count'\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mdf\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mrating_count\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mastype\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mint\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2\u001b[0m \u001b[0mdf\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m'review_count'\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mdf\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mreview_count\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mastype\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mint\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 3\u001b[0m \u001b[0mdf\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m'year'\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mdf\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0myear\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mastype\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mint\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m//anaconda/lib/python2.7/site-packages/pandas/core/generic.pyc\u001b[0m in \u001b[0;36mastype\u001b[0;34m(self, dtype, copy, raise_on_error, **kwargs)\u001b[0m\n\u001b[1;32m 2409\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2410\u001b[0m mgr = self._data.astype(\n\u001b[0;32m-> 2411\u001b[0;31m dtype=dtype, copy=copy, raise_on_error=raise_on_error, **kwargs)\n\u001b[0m\u001b[1;32m 2412\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_constructor\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mmgr\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m__finalize__\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2413\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m//anaconda/lib/python2.7/site-packages/pandas/core/internals.pyc\u001b[0m in \u001b[0;36mastype\u001b[0;34m(self, dtype, **kwargs)\u001b[0m\n\u001b[1;32m 2502\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2503\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mastype\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mdtype\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 2504\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mapply\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'astype'\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mdtype\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mdtype\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2505\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2506\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mconvert\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m//anaconda/lib/python2.7/site-packages/pandas/core/internals.pyc\u001b[0m in \u001b[0;36mapply\u001b[0;34m(self, f, axes, filter, do_integrity_check, **kwargs)\u001b[0m\n\u001b[1;32m 2457\u001b[0m copy=align_copy)\n\u001b[1;32m 2458\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 2459\u001b[0;31m \u001b[0mapplied\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mgetattr\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mb\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mf\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2460\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2461\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0misinstance\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mapplied\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mlist\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m//anaconda/lib/python2.7/site-packages/pandas/core/internals.pyc\u001b[0m in \u001b[0;36mastype\u001b[0;34m(self, dtype, copy, raise_on_error, values, **kwargs)\u001b[0m\n\u001b[1;32m 371\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mastype\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mdtype\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mcopy\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mFalse\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mraise_on_error\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mTrue\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mvalues\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mNone\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 372\u001b[0m return self._astype(dtype, copy=copy, raise_on_error=raise_on_error,\n\u001b[0;32m--> 373\u001b[0;31m values=values, **kwargs)\n\u001b[0m\u001b[1;32m 374\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 375\u001b[0m def _astype(self, dtype, copy=False, raise_on_error=True, values=None,\n", + "\u001b[0;32m//anaconda/lib/python2.7/site-packages/pandas/core/internals.pyc\u001b[0m in \u001b[0;36m_astype\u001b[0;34m(self, dtype, copy, raise_on_error, values, klass, **kwargs)\u001b[0m\n\u001b[1;32m 401\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mvalues\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0mNone\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 402\u001b[0m \u001b[0;31m# _astype_nansafe works fine with 1-d only\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 403\u001b[0;31m \u001b[0mvalues\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mcom\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_astype_nansafe\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mvalues\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mravel\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mdtype\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mcopy\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mTrue\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 404\u001b[0m \u001b[0mvalues\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mvalues\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mreshape\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mvalues\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mshape\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 405\u001b[0m newb = make_block(values,\n", + "\u001b[0;32m//anaconda/lib/python2.7/site-packages/pandas/core/common.pyc\u001b[0m in \u001b[0;36m_astype_nansafe\u001b[0;34m(arr, dtype, copy)\u001b[0m\n\u001b[1;32m 2729\u001b[0m \u001b[0;32melif\u001b[0m \u001b[0marr\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdtype\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mobject_\u001b[0m \u001b[0;32mand\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0missubdtype\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mdtype\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtype\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0minteger\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2730\u001b[0m \u001b[0;31m# work around NumPy brokenness, #1987\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 2731\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mlib\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mastype_intsafe\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0marr\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mravel\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mdtype\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mreshape\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0marr\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mshape\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2732\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2733\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mcopy\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32mpandas/lib.pyx\u001b[0m in \u001b[0;36mpandas.lib.astype_intsafe (pandas/lib.c:14844)\u001b[0;34m()\u001b[0m\n", + "\u001b[0;32mpandas/src/util.pxd\u001b[0m in \u001b[0;36mutil.set_value_at (pandas/lib.c:63086)\u001b[0;34m()\u001b[0m\n", + "\u001b[0;31mValueError\u001b[0m: invalid literal for long() with base 10: 'None'" + ] + } + ], + "source": [ + "df['rating_count']=df.rating_count.astype(int)\n", + "df['review_count']=df.review_count.astype(int)\n", + "df['year']=df.year.astype(int)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Oppos we got an error. Something is not right. Its trying to convert some python datatype: `None` into an int. This usually means data was missing. Was it?" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ratingreview_countisbnbooktypeauthor_urlyeargenre_urlsdirrating_countname
24424.23526good_reads:bookhttps://www.goodreads.com/author/show/623606.A...NaN/genres/religion|/genres/islam|/genres/non-fic...dir25/1301625.La_Tahzan.html4134La Tahzan
28694.612good_reads:bookhttps://www.goodreads.com/author/show/8182217....NaNdir29/22031070-my-death-experiences---a-preach...23My Death Experiences - A Preacher’s 18 Apoca...
3643NaNNoneNoneNoneNoneNaNdir37/9658936-harry-potter.htmlNoneNone
5282NaNNoneNoneNoneNoneNaNdir53/113138.The_Winner.htmlNoneNone
55723.71358423336603good_reads:bookhttps://www.goodreads.com/author/show/285658.E...NaN/genres/fictiondir56/890680._rase_una_vez_el_amor_pero_tuve_q...403Érase una vez el amor pero tuve que matarlo. ...
56584.3244good_reads:bookhttps://www.goodreads.com/author/show/25307.Ro...NaN/genres/fantasy|/genres/fantasy|/genres/epic-f...dir57/5533041-assassin-s-apprentice-royal-assa...3850Assassin's Apprentice / Royal Assassin (Farsee...
56834.56204good_reads:bookhttps://www.goodreads.com/author/show/3097905....NaN/genres/fantasy|/genres/young-adult|/genres/ro...dir57/12474623-tiger-s-dream.html895Tiger's Dream (The Tiger Saga, #5)
\n", + "
" + ], + "text/plain": [ + " rating review_count isbn booktype author_url year genre_urls dir rating_count name\n", + "2442 4.23 526 good_reads:book https://www.goodreads.com/author/show/623606.A... NaN /genres/religion|/genres/islam|/genres/non-fic... dir25/1301625.La_Tahzan.html 4134 La Tahzan\n", + "2869 4.61 2 good_reads:book https://www.goodreads.com/author/show/8182217.... NaN dir29/22031070-my-death-experiences---a-preach... 23 My Death Experiences - A Preacher’s 18 Apoca...\n", + "3643 NaN None None None None NaN dir37/9658936-harry-potter.html None None\n", + "5282 NaN None None None None NaN dir53/113138.The_Winner.html None None\n", + "5572 3.71 35 8423336603 good_reads:book https://www.goodreads.com/author/show/285658.E... NaN /genres/fiction dir56/890680._rase_una_vez_el_amor_pero_tuve_q... 403 Érase una vez el amor pero tuve que matarlo. ...\n", + "5658 4.32 44 good_reads:book https://www.goodreads.com/author/show/25307.Ro... NaN /genres/fantasy|/genres/fantasy|/genres/epic-f... dir57/5533041-assassin-s-apprentice-royal-assa... 3850 Assassin's Apprentice / Royal Assassin (Farsee...\n", + "5683 4.56 204 good_reads:book https://www.goodreads.com/author/show/3097905.... NaN /genres/fantasy|/genres/young-adult|/genres/ro... dir57/12474623-tiger-s-dream.html 895 Tiger's Dream (The Tiger Saga, #5)" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df[df.year.isnull()]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Aha, we had some incomplete data. Lets get rid of it" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(5993, 10)" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df = df[df.year.notnull()]\n", + "df.shape" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We removed those 7 rows. Lets try the type conversion again" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "df['rating_count']=df.rating_count.astype(int)\n", + "df['review_count']=df.review_count.astype(int)\n", + "df['year']=df.year.astype(int)" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "rating float64\n", + "review_count int64\n", + "isbn object\n", + "booktype object\n", + "author_url object\n", + "year int64\n", + "genre_urls object\n", + "dir object\n", + "rating_count int64\n", + "name object\n", + "dtype: object" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.dtypes" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Much cleaner now!" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "###Visualizing\n", + "\n", + "Pandas has handy built in visualization." + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "image/png": "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\nUqEMAEkq1P8CWOKSaEYjMvAAAAAASUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "df.rating.hist();" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We can do this in more detail, plotting against a mean, with cutom binsize or number of bins. Note how to label axes and create legends." + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4.04220073358 4.04220073358 4.05\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAf4AAAFtCAYAAADmnQjIAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzt3Xtc1HW+x/H3DOCFGdAot13LqMxbmSSKqXnfMkwlTbFA\n0ZNdjpZaeVnJG2qa17JMy9paS9RVS/J0cdOTmpaYGpWZpltWZIYkGuPMgAw4v/OHx9nIlEvMgPxe\nz7/gO7/v7/f5+vXBe353i2EYhgAAgClYK7sAAAAQOAQ/AAAmQvADAGAiBD8AACZC8AMAYCIEPwAA\nJkLwA5WsadOm6t27t/r06aO+ffsqNjZW/fv315dfflli39dff10rV66UJK1atUovvfSSv8tV06ZN\nlZubW6wtLS1Nw4YNkyQtXLhQ69atu+A6Fi1apE2bNvmtRgDnF1zZBQCQUlNTVbduXd/v//jHPzRj\nxgytWrXqgv0yMjLUuHFjSdI999zj1xovxGKx+H4eNWpUicvv3LlTjRo18mdJAM6D4AeqgF8/R6uo\nqEg//fST74tATk6OpkyZohMnTujYsWOqX7++nn32WWVkZGjLli1KT09XzZo1deLECeXm5mry5Mnq\n1q2b7rrrLu3YsUNZWVnq0aOHxo0bJ0l66aWXtHbtWtlsNrVq1UqbNm3S5s2b9cknn2jOnDk6ffq0\nLBaL/vu//1vdu3cvsd7f/p6cnKzGjRtr6NChWrhwod5//32FhISobt26mj17tjZu3Kgvv/xSc+fO\nVVBQkG6++WZNmzZNBw8elCR16tRJo0ePVlBQkLZu3ar58+crKChIzZo1U3p6ulauXKmdO3fqjTfe\n0KlTpxQWFqYlS5YoJSVFmZmZys3Nlc1m01NPPaVrrrlGSUlJat68uT7++GMdP35cgwcP1vHjx7Vr\n1y7l5+frmWee8X15AsyA4AeqgMGDB8tqterEiROqWbOmunbtqieffFKStH79ekVHR+v++++XJD34\n4IP6n//5H917773avHmzGjdurIEDB2rRokXF9rzz8vK0YsUKZWdnq3v37kpMTNS3336rN998U2vX\nrpXdbtfEiRN9fZ577jnde++9uuOOO3Tw4EGtWbPmvME/ePBgBQUF+X53OBxq0qSJpDN7/xaLRVlZ\nWVq2bJl27NihkJAQLV26VF988YUGDhyo9957T0lJSbr11ls1fvx4RURE6O2335bH49Hw4cP1yiuv\nKD4+Xn/729+0bNkyNWnSROvWrdObb77pq/fQoUPavHmzbDabNmzYoDp16mj16tWSpJSUFK1YsUKT\nJk2SJB05ckRvvvmmvvjiCw0YMEBLlizR+PHjNWvWLC1fvlzTp0+vyOkEqjSCH6gCzh7q/+qrr/TA\nAw+oZcuWioiIkHQmZD/55BMtXbpU33//vb7++mtFRUX5+p7d2/7tXvhf//pXSdLll1+uSy+9VLm5\nudq6dat69Oghu90uSRo4cKB27NghSbrjjjs0bdo0bd68We3bt9djjz1WYr1nvfnmm9qwYUOxZf78\n5z+radOm6tu3rzp27KhOnTqpXbt256zrww8/9J3SqFGjhhISEvTaa6/p2muv1XXXXef7QtGnTx/N\nmDHD169x48ay2WySpNtvv11XXnmlUlNTlZmZqV27dqlly5a+Zc9+gbnyyislSR07dpQkXXXVVdq5\nc+d5xwlUR1zcB1QhzZo10+OPP66JEyfqyJEjkqR58+Zp4cKFuvTSS3XPPffolltuKRbyv97L/7Va\ntWoV+90wDIWEhMjr9frarNb//Am4++679fbbb+uWW27RRx99pLi4OLlcrlLV/XuH/i0Wi5YvX67Z\ns2frkksu0axZszRz5sxz+nq93mL9T58+rcLCQgUFBZ2z3l/Xezb0JWnlypWaNGmSQkNDFRcXp549\nexbrW6NGjWLrOXu0gleVwIwIfqCK6dmzp1q2bOk71L99+3YNGTJEcXFxioiIUHp6ui+8g4KCVFhY\n6Ot7oSCzWCzq3LmzNm7c6Av0N954wxem99xzj7766iv17dtX06dP18mTJ3Xy5Mky13+2hgMHDqhX\nr1669tpr9eCDD2rIkCG+8/jBwcG+ujt06KAVK1ZIkjwej9asWaMOHTooOjpa33//va/Phg0bdPLk\nyd/9orN9+3b17dtX/fr109VXX63NmzcX+4JDwAP/waF+oJL9XpBNnjxZcXFx2r59ux5++GHNnTtX\nL774oiIiInT77bcrMzNT0pkL4c6enz57bv1C2rZtqwEDBujuu+9WrVq11KhRI9+RgXHjxmnmzJl6\n5plnZLFYNGLECNWvX79U9f667WwdTZs2VWxsrPr166fQ0FDVrl3bd869a9eumjNnjgoLCzVp0iQ9\n8cQT6t27tzwejzp16qRhw4YpODhYTz31lMaPHy+r1armzZsrODhYtWrVOqeGoUOHasqUKVq3bp0u\n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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "sns.set_context(\"notebook\")\n", + "meanrat=df.rating.mean()\n", + "#you can get means and medians in different ways\n", + "print meanrat, np.mean(df.rating), df.rating.median()\n", + "with sns.axes_style(\"whitegrid\"):\n", + " df.rating.hist(bins=30, alpha=0.4);\n", + " plt.axvline(meanrat, 0, 0.75, color='r', label='Mean')\n", + " plt.xlabel(\"average rating of book\")\n", + " plt.ylabel(\"Counts\")\n", + " plt.title(\"Ratings Histogram\")\n", + " plt.legend()\n", + " #sns.despine()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "One can see the sparseness of review counts. This will be important when we learn about recommendations: we'll have to *regularize* our models to deal with it." + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\nY5QfQS3uAAAAAElFTkSuQmCC\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "df.review_count.hist(bins=np.arange(0, 40000, 400))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The structure may be easier to see if we rescale the x-axis to be logarithmic." + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "image/png": "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\nD18k4BsAAAAASUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "df.review_count.hist(bins=100)\n", + "plt.xscale(\"log\");" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Here we make a scatterplot in matplotlib of rating against year. By setting the alpha transparency low we can how the density of highly rated books on goodreads has changed." + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\nPxtVvum0I3bQAAAAAElFTkSuQmCC\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.scatter(df.year, df.rating, lw=0, alpha=.08)\n", + "plt.xlim([1900,2010])\n", + "plt.xlabel(\"Year\")\n", + "plt.ylabel(\"Rating\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "###Pythons and ducks\n", + "\n", + "Notice that we used the series in the x-list and y-list slots in the `scatter` function in the `plt` module.\n", + "\n", + "In working with python I always remember: a python is a duck.\n", + "\n", + "What I mean is, python has a certain way of doing things. For example lets call one of these ways listiness. Listiness works on lists, dictionaries, files, and a general notion of something called an iterator.\n", + "\n", + "A Pandas series plays like a python list:" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "alist=[1,2,3,4,5]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We can construct another list by using the syntax below, also called a list comprehension." + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[1, 4, 9, 16, 25]" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "asquaredlist=[i*i for i in alist]\n", + "asquaredlist" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "And then we can again make a scatterplot" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAeAAAAFVCAYAAAA30zxTAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAFJpJREFUeJzt3W9snXX9//FXu04O2wqyWDQmOHAhgBKI6BaaQDVmQHUq\nTFnoHJX9ARElIJOFsgFlC7jpEjVmM1sgQR2GLppBWGIgMjE1rHFGZIaRqTdABBbcJFm6SVmh/d2Q\nLz+/fqG7VtZ9uvbxuEV7ztl5583o81zXdXqoGxwcHAwAcFTVlx4AAMYjAQaAAgQYAAoQYAAoQIAB\noAABBoACGoa68Y033shtt92W5557LnV1dVmxYkXe8573pKOjI/X19Tn99NPT2dmZurq6ozUvAIwJ\nQwb48ccfT319fR544IFs37493/ve95IkS5YsyYwZM9LZ2ZmtW7dm1qxZR2VYABgrhjwFPWvWrKxc\nuTJJ8uKLL+bEE0/Mzp07M2PGjCRJS0tLtm3bNvJTAsAYc8hrwBMmTEhHR0fuvvvufP7zn89/fnDW\npEmT0tvbO6IDAsBYNOQp6P+xevXq7N27N3Pnzs3Bgwff+v6BAwdywgknHPLxg4ODrhMDwH8YMsAP\nPfRQXn755Vx77bWp1Wqpr6/P2Wefne3bt2fmzJnp7u5Oc3PzIZ+krq4ue/Y4Uj6UpqZGe6rIrqqx\np2rsqTq7qqapqfGQ9xkywK2treno6MiVV16Z119/PcuXL8+HP/zh3H777env78/06dPT2tp6xAYG\ngPFiyADXarX84Ac/+D/f37hx44gNBADjgQ/iAIACBBgAChBgAChAgAGgAAEGgAIEGAAKEGAAKECA\nAaAAAQaAAgQYAAoQYAAoQIABoAABBoACBBgAChBgAChAgAGgAAEGgAIEGAAKEGAAKECAAaAAAQaA\nAgQYAAoQYAAoQIABoAABBoACBBgAChBgAChAgAGgAAEGgAIEGAAKEGAAKECAAaAAAQaAAgQYAAoQ\nYAAoQIABoICGoW7s7+/PsmXL8tJLL+XgwYO57rrr8oEPfCDXXnttTj311CTJvHnz8tnPfvZozAoA\nY8aQAd6yZUumTp2aNWvWZN++fbn00kvzjW98I4sWLcrChQuP1owAFNbX15euru40NtYye/bM1Gq1\n0iMd84YMcGtray655JIkycDAQBoaGrJz5848++yz2bp1a6ZNm5Zly5Zl8uTJR2VYAI6+vr6+XHHF\ng+np+feBV3Pzfdm0aY4Iv0tDXgOeNGlSJk+enP379+fGG2/MTTfdlHPOOSe33HJL7r///pxyyilZ\nu3bt0ZoVgAK6urrfjO/EJBPT07MgXV3dpcc65g15BJwku3fvzvXXX5/58+dn9uzZ6e3tTWNjY5Jk\n1qxZueuuuyo9UVNT47ubdJywp+rsqhp7qsae3llj4/890m1srNnZuzRkgPfu3ZtFixals7Mz559/\nfpLk6quvzvLly3POOeekp6cnZ599dqUn2rOn991PO8Y1NTXaU0V2VY09VWNPQ5s9e2aam+9LT8+C\nJElz848ze/YcOxtClRcndYODg4PvdONdd92VRx55JKeddtpb37v55puzevXqNDQ05OSTT87KlSsr\nXQP2L+rQ/BCozq6qsadq7OnQvAnr8LzrAB9J/nIfmh8C1dlVNfZUjT1VZ1fVVAmwD+IAgAIEGAAK\nEGAAKECAAaAAAQaAAgQYAAoQYAAoQIABoAABBoACBBgAChBgAChAgAGgAAEGgAIEGAAKEGAAKECA\nAaAAAQaAAgQYAAoQYAAoQIABoAABBoACBBgAChBgAChAgAGgAAEGgAIEGAAKEGAAKECAAaAAAQaA\nAgQYAAoQYAAoQIABoAABBoACBBgAChBgAChAgAGggIahbuzv78+yZcvy0ksv5eDBg7nuuusyffr0\ndHR0pL6+Pqeffno6OztTV1d3tOYFgDFhyABv2bIlU6dOzZo1a7Jv375ceumlOeuss7JkyZLMmDEj\nnZ2d2bp1a2bNmnW05gWAMWHIU9Ctra254YYbkiQDAwNpaGjIM888kxkzZiRJWlpasm3btpGfEgDG\nmCEDPGnSpEyePDn79+/PjTfemG9+85sZGBj4X7f39vaO+JAAMNYMeQo6SXbv3p3rr78+8+fPz+c+\n97msWbPmrdsOHDiQE044odITNTU1Dn/KccSeqrOrauypGnuqzq6OjCEDvHfv3ixatCidnZ05//zz\nkyRnnXVWtm/fnpkzZ6a7uzvNzc2VnmjPHkfKh9LU1GhPFdlVNfZUjT1VZ1fVVHmRMmSA169fn97e\n3qxbty7r1q1Lkixfvjx33313+vv7M3369LS2th6ZaQFgHKkbHBwcPBpP5BXToXllWZ1dVWNP1dhT\ndXZVTZUjYB/EAQAFCDAAFCDAAFCAAANAAQIMAAUIMAAUIMAAUIAAA0ABAgwABQgwABQgwABQgAAD\nQAECDAAFCDAAFCDAAFCAAANAAQIMAAUIMAAUIMAAUIAAA0ABAgwABQgwABQgwABQgAADQAECDAAF\nCDAAFCDAAFCAAANAAQ2lBwAopa+vL11d3WlsrGX27Jmp1WqlR2IcEWBgXOrr68sVVzyYnp6FSZLm\n5vuyadMcEeaocQoaGJe6urrfjO/EJBPT07MgXV3dpcdiHBFgAChAgIFxqa2tJc3N9yU5mORgmpt/\nnLa2ltJjMY64BgyMS7VaLZs2zUlX15Y334Tl+i9HlwAD41atVsuCBRenqakxe/b0lh6HccYpaAAo\noFKAd+zYkfb29iTJM888k5aWlrS3t6e9vT2//OUvR3RAABiLDnkK+p577snDDz+cyZMnJ0l27tyZ\nhQsXZuHChSM+HACMVYc8Ap42bVrWrl2bwcHBJMnTTz+d3/zmN7nyyiuzfPnyHDhwYMSHBICxpm7w\nf8o6hBdeeCHf+ta3smnTpmzevDlnnnlmPvKRj2T9+vXZt29fbrnllqMxKwCMGYf9LuiLLroojY2N\nSZJZs2blrrvuqvQ47zA8NO/ErM6uqrGnauypOruqpqmp8ZD3Oex3QV999dX505/+lCTp6enJ2Wef\nffiTAcA4V/kIuK6uLkmyYsWKrFixIg0NDTn55JOzcuXKERsOAMaqSteAjwSnLA7NqZ3q7Koae6rG\nnqqzq2pG5BQ0APDuCTAAFCDAAFCAAANAAQIMAAUIMAAUIMAAUIAAA0ABAgwABQgwABQgwABQgAAD\nQAECDAAFCDAAFCDAAFCAAANAAQIMAAUIMAAUIMAAUIAAA0ABAgwABQgwABQgwABQgAADQAECDAAF\nCDAAFCDAAFCAAANAAQIMAAUIMAAUIMAAUIAAA0ABAgwABQgwABQgwABQgAADQAGVArxjx460t7cn\nSf72t79l3rx5mT9/fu68884MDg6O6IAAMBYdMsD33HNPbrvttvT39ydJVq1alSVLluRnP/tZBgcH\ns3Xr1hEfEgDGmkMGeNq0aVm7du1bR7rPPPNMZsyYkSRpaWnJtm3bRnZCABiDGg51h4svvjgvvPDC\nW1//5ynnSZMmpbe3t9ITNTU1DmO88ceeqrOrauypGnuqzq6OjEMG+L/V1///g+YDBw7khBNOqPS4\nPXuqhXo8a2pqtKeK7Koae6rGnqqzq2qqvEg57HdBn3XWWdm+fXuSpLu7O5/4xCcOfzIAGOcqHwHX\n1dUlSTo6OnL77benv78/06dPT2tr64gNBwBjVd3gUfo9IqcsDs2pnersqhp7qsaeqrOrakbkFDQA\n8O4d9puwgNGvr68vXV3daWysZfbsmanVaqVHAv6LAMMY09fXlyuueDA9PQuTJM3N92XTpjkiDKOM\nU9AwxnR1db8Z34lJJqanZ0G6urpLjwX8FwEGgAIEGMaYtraWNDffl+RgkoNpbv5x2tpaSo8F/BfX\ngGGMqdVq2bRpTrq6trz5JizXf2E0EmAYg2q1WhYsuNjvbMIo5hQ0ABQgwABQgAADQAECDAAFCDAA\nFCDAAFCAAANAAQIMAAUIMAAUIMAAUIAAA0ABAgwABQgwABQgwABQgAADQAECDAAFCDAAFCDAAFCA\nAANAAQIMAAUIMAAUIMAAUIAAA0ABAgwABQgwABQgwABQgAADQAENw33gnDlzMmXKlCTJKaeckm9/\n+9tHbCgAGOuGFeDXXnstSbJx48YjOgwAjBfDOgW9a9euvPrqq1m8eHGuuuqq7Nix40jPBQBj2rCO\ngI8//vgsXrw4c+fOzXPPPZdrrrkmjz76aOrrXVIGgCrqBgcHBw/3QQcPHszg4GCOO+64JMncuXOz\ndu3avP/97z/iAwLAWDSsI+DNmzfnz3/+czo7O/Pyyy9n//79aWpqGvIxe/b0DmvA8aSpqdGeKrKr\nauypGnuqzq6qaWpqPOR9hhXgyy+/PLfeemvmz5+fJFm1apXTzwBwGIYV4IaGhqxZs+ZIzwIA44bD\nVgAoQIABoIBhfxIWlNDX15euru40NtYye/bM1Gq10iMBDIsAc8zo6+vLFVc8mJ6ehUmS5ub7smnT\nHBEGjklOQXPM6OrqfjO+E5NMTE/PgnR1dZceC2BYBBgAChBgjhltbS1pbr4vycEkB9Pc/OO0tbWU\nHgtgWFwD5phRq9WyadOcdHVtefNNWK7/AscuAeaYUqvVsmDBxT4ODzjmOQUNAAUIMAAUIMAAUIAA\nA0ABAgwABQgwABQgwABQgAADQAECDAAFCDAAFCDAAFCAAANAAQIMAAUIMAAUIMAAUIAAA0ABAgwA\nBQgwABQgwABQQEPpAUj6+vrS1dWdxsZaZs+emVqtVnokAEaYABfW19eXK654MD09C5Mkzc33ZdOm\nOSIMMMY5BV1YV1f3m/GdmGRienoWpKuru/RYAIwwAQaAAgS4sLa2ljQ335fkYJKDaW7+cdraWkqP\nBcAIcw24sFqtlk2b5qSra8ubb8Jy/RdgPBDgUaBWq2XBgovT1NSYPXt6S48DwFHgFDQAFDCsI+CB\ngYHceeed+ctf/pKJEyfm7rvvzoc+9KEjPRsAjFnDOgJ+7LHH0t/fn66urtx8881ZvXr1kZ4LAMa0\nYQX4ySefzIUXXpgkOffcc/P0008f0aEAYKwbVoD379+fKVOmvPX1hAkTMjAwcMSGAoCxbljXgKdM\nmZIDBw689fXAwEDq64dueVNT43Ceatyxp+rsqhp7qsaeqrOrI2NYAT7vvPPy+OOP5zOf+Uyeeuqp\nnHHGGYd8jF+vOTS/hlSdXVVjT9XYU3V2VU2VFynDCvBFF12UJ554Im1tbUmSVatWDeePAYBxa1gB\nrqury4oVK470LAAwbvggDgAoQIABoAABBoACBBgAChBgAChAgAGgAAEGgAIEGAAKEGAAKECAAaAA\nAQaAAgQYAAoQYAAoQIABoAABBoACBBgAChBgAChAgAGgAAEGgAIEGAAKEGAAKECAAaAAAQaAAgQY\nAAoQYAAoQIABoAABBoACBBgAChBgAChAgAGgAAEGgAIEGAAKEGAAKECAAaAAAQaAAgQYAApoONwH\nDA4OpqWlJaeeemqS5GMf+1iWLFlypOcCgDHtsAP8/PPP56Mf/WjWr18/EvMAwLhw2Kegd+7cmX/8\n4x/5yle+kq9+9at59tlnR2IuABjThjwC/vnPf56f/vSn/+t7nZ2dufbaa3PJJZfkD3/4Q5YuXZpf\n/OIXIzokAIw1dYODg4OH84C+vr5MmDAhEydOTJK0tLSku7t7RIYDgLHqsE9Br1u3Lj/5yU+SJLt2\n7coHP/jBIz4UAIx1h30E3Nvbm6VLl+bAgQNpaGjIHXfckdNOO22k5gOAMemwAwwAvHs+iAMAChBg\nAChAgAGgAAEGgAJGLMADAwO544470tbWlvb29jz//PMj9VRjxo4dO9Le3l56jFGrv78/S5cuzfz5\n8zN37tz8+te/Lj3SqPXGG2/k1ltvzbx58/LlL385f/3rX0uPNKr985//zCc/+Umf7DeEOXPmpL29\nPe3t7Vm2bFnpcUa1DRs2pK2tLV/60pfy4IMPvuP9DvuzoKt67LHH0t/fn66uruzYsSOrV6/Oj370\no5F6umPePffck4cffjiTJ08uPcqotWXLlkydOjVr1qzJvn37ctlll+XTn/506bFGpccffzz19fV5\n4IEHsn379nz/+9/339876O/vzx133JHjjz++9Cij1muvvZYk2bhxY+FJRr/f/e53+eMf/5iurq78\n61//yr333vuO9x2xI+Ann3wyF154YZLk3HPPzdNPPz1STzUmTJs2LWvXro3fCntnra2tueGGG5L8\n+wzLhAkTCk80es2aNSsrV65Mkrz44os58cQTC080en33u9/NvHnz0tTUVHqUUWvXrl159dVXs3jx\n4lx11VXZsWNH6ZFGrSeeeCJnnHFGvv71r+drX/vakAcJI3YEvH///kyZMuWtrydMmJCBgYHU17vs\n/HYuvvjivPDCC6XHGNUmTZqU5N9/t2688cbcdNNNhSca3SZMmJCOjo786le/yg9/+MPS44xKmzdv\nztSpU3PBBRdkw4YNXgC/g+OPPz6LFy/O3Llz89xzz+Waa67Jo48+6uf523jllVeye/fubNiwIX//\n+99z3XXX5ZFHHnnb+47Y9qZMmZIDBw689bX4ciTs3r07V111VS677LLMnj279Dij3urVq/Poo4/m\n9ttvT19fX+lxRp3Nmzdn27ZtaW9vz65du9LR0ZG9e/eWHmvUOfXUU/OFL3zhrX9+73vfmz179hSe\nanQ66aSTcsEFF6ShoSGnnXZajjvuuLzyyitve98RK+J555331v+k4amnnsoZZ5wxUk/FOLF3794s\nWrQoS5cuzRe/+MXS44xqDz30UDZs2JAkqdVqqaur8wL4bdx///3ZuHFjNm7cmDPPPDPf+c538r73\nva/0WKPO5s2bs3r16iTJyy+/nP379ztl/w4+/vGP57e//W2Sf+/q1VdfzUknnfS29x2xU9AXXXRR\nnnjiibS1tSVJVq1aNVJPNabU1dWVHmHUWr9+fXp7e7Nu3bqsW7cuSXLvvffmuOOOKzzZ6NPa2pqO\njo5ceeWVef3117N8+fK85z3vKT0Wx6jLL788t956a+bPn5/k3z/PvaB7e5/61Kfy+9//PpdffnkG\nBgbS2dn5jj/XfRY0ABTgJQwAFCDAAFCAAANAAQIMAAUIMAAUIMAAUIAAA0AB/w974zB2h57R5wAA\nAABJRU5ErkJggg==\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.scatter(alist, asquaredlist);" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + } + ], + "source": [ + "print type(alist)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In other words, something is a duck if it quacks like a duck. A Pandas series quacks like a python list. They both support something called the iterator protocol, an notion of behaving in a \"listy\" way. And Python functions like `plt.scatter` will accept anything that behaves listy. Indeed here's one more example:" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "image/png": "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\nlZWVpRkzZmjDhg3y+XxqaWnRzp075ff7VVVVpQULFqi3t1dr1qxRT0+PLMtSQ0OD8vLyxmJuAADg\nv0Ys/DfeeENZWVlqbm5We3u7fv3rX0uSqqurVVJSog0bNmj37t2aPXu2mpqa1NraqmQyqYqKCs2d\nO1fNzc0qKirSqlWrtGvXLu3YsUN1dXWjPjEAAPClEQv/6quv1lVXXSVJ+uijj3TRRRepra1NJSUl\nkqSysjK99dZbysrKUjQaVU5OjnJyclRQUKDOzk51dHTonnvukSSVlpbqySefHMXpAACAoXj6HX52\ndrZqa2u1ZcsWXX/99XJdN3OfZVlKJBKybVuhUGjAuG3bsm1blmUNWBcAAIytEd/hn9HQ0KDjx4/r\ntttuUyqVyozbtq1wOKxgMCjHcTLjjuMoFAoNGHccR+FweMTXsqwLMrfDuZOUnx8aZm1zkYt3ZOUN\nOXlHVt6Q08QxYuG//PLL+uSTT7RixQrl5uYqKytLs2bNUnt7u6644grF43HNmTNHkUhE27ZtUyqV\nUjKZVFdXlwoLCxWNRhWPxxWJRBSPx1VcXDziRjlOMnM7kDyl7m7OCgyWnx8iF4/Iyhty8o6svCEn\nb8bqoGjEwi8vL1dtba2WLFmi06dPq66uTpdddpnWr1+vvr4+TZ8+XeXl5fL5fKqsrFQsFlM6nVZ1\ndbUCgYAqKipUU1OjWCymQCCgxsbGsZgXAAA4i889+xfyE8AzL70tZeVmli/2n9T8OT8dxy2amDhy\n9o6svCEn78jKG3LyZqze4XPhHQAADEDhAwBgAAofAAADUPgAABiAwgcAwAAUPgAABqDwAQAwAIUP\nAIABKHwAAAxA4QMAYAAKHwAAA1D4AAAYgMIHAMAAFD4AAAag8AEAMACFDwCAASh8AAAMQOEDAGAA\nCh8AAANQ+AAAGIDCBwDAABQ+AAAGoPABADAAhQ8AgAEofAAADEDhAwBgAAofAAADUPgAABiAwgcA\nwAAUPgAABvAPd2dfX5/Wrl2rY8eOKZVKqaqqSpdeeqlWrFihadOmSZJisZiuvfZatbS0aOfOnfL7\n/aqqqtKCBQvU29urNWvWqKenR5ZlqaGhQXl5eWMxLwAAcJZhC/+VV15RXl6eHn/8cZ08eVI33nij\nfvGLX2jZsmW66667Mut1d3erqalJra2tSiaTqqio0Ny5c9Xc3KyioiKtWrVKu3bt0o4dO1RXVzfq\n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\nGIDCBwDAAP8fTbhp017bPN4AAAAASUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.hist(df.rating_count.values, bins=100, alpha=0.5);" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " \n" + ] + } + ], + "source": [ + "print type(df.rating_count), type(df.rating_count.values)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Series and numpy lists behave similarly as well.\n", + "\n", + "\n", + "### Vectorization\n", + "\n", + "Numpy arrays are a bit different from regular python lists, and are the bread and butter of data science. Pandas Series are built atop them. " + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[1, 2, 3, 4, 5, 1, 2, 3, 4, 5]" + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "alist + alist" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([1, 2, 3, 4, 5])" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "np.array(alist)" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 2, 4, 6, 8, 10])" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "np.array(alist)+np.array(alist)" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 1, 4, 9, 16, 25])" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "np.array(alist)**2" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In other words, operations on numpy arrays, and by extension, Pandas Series, are **vectorized**. You can add two numpy lists by just using `+` whereas the result isnt what you might expect for regular python lists. To add regular python lists elementwise, you will need to use a loop:" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[2, 4, 6, 8, 10]" + ] + }, + "execution_count": 40, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "newlist=[]\n", + "for item in alist:\n", + " newlist.append(item+item)\n", + "newlist" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Vectorization** is a powerful idiom, and we will use it a lot in this class. And, for almost all data intensive computing, we will use numpy arrays rather than python lists, as the python numerical stack is based on it. \n", + "\n", + "You have seen this in idea in spreadsheets where you add an entire column to another one.\n", + "\n", + "Two final examples" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "[ 1 4 9 16 25]\n" + ] + } + ], + "source": [ + "a=np.array([1,2,3,4,5])\n", + "print type(a)\n", + "b=np.array([1,2,3,4,5])\n", + "\n", + "print a*b" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([2, 3, 4, 5, 6])" + ] + }, + "execution_count": 42, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "a+1" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.10" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/all.csv b/all.csv new file mode 100644 index 0000000..7e655d5 --- /dev/null +++ b/all.csv @@ -0,0 +1,6000 @@ +4.40,136455,0439023483,good_reads:book,https://www.goodreads.com/author/show/153394.Suzanne_Collins,2008,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/science-fiction|/genres/romance|/genres/adventure|/genres/book-club|/genres/young-adult|/genres/teen|/genres/apocalyptic|/genres/post-apocalyptic|/genres/action,dir01/2767052-the-hunger-games.html,2958974,"The Hunger Games (The Hunger Games, #1)" +4.41,16648,0439358078,good_reads:book,https://www.goodreads.com/author/show/1077326.J_K_Rowling,2003,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/magic|/genres/childrens|/genres/adventure|/genres/science-fiction-fantasy,dir01/2.Harry_Potter_and_the_Order_of_the_Phoenix.html,1284478,"Harry Potter and the Order of the Phoenix (Harry Potter, #5)" +3.56,85746,0316015849,good_reads:book,https://www.goodreads.com/author/show/941441.Stephenie_Meyer,2005,/genres/young-adult|/genres/fantasy|/genres/romance|/genres/paranormal|/genres/vampires|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/urban-fantasy,dir01/41865.Twilight.html,2579564,"Twilight (Twilight, #1)" +4.23,47906,0061120081,good_reads:book,https://www.goodreads.com/author/show/1825.Harper_Lee,1960,/genres/classics|/genres/fiction|/genres/historical-fiction|/genres/academic|/genres/school|/genres/literature|/genres/young-adult|/genres/academic|/genres/read-for-school|/genres/novels|/genres/book-club|/genres/young-adult|/genres/high-school,dir01/2657.To_Kill_a_Mockingbird.html,2078123,To Kill a Mockingbird +4.23,34772,0679783261,good_reads:book,https://www.goodreads.com/author/show/1265.Jane_Austen,1813,/genres/classics|/genres/fiction|/genres/romance|/genres/historical-fiction|/genres/literature|/genres/novels|/genres/european-literature|/genres/british-literature|/genres/classics|/genres/classic-literature|/genres/adult|/genres/academic|/genres/school,dir01/1885.Pride_and_Prejudice.html,1388992,Pride and Prejudice +4.25,12363,0446675539,good_reads:book,https://www.goodreads.com/author/show/11081.Margaret_Mitchell,1936,/genres/classics|/genres/historical-fiction|/genres/fiction|/genres/romance|/genres/literature|/genres/romance|/genres/historical-romance|/genres/war|/genres/military-history|/genres/civil-war,dir01/18405.Gone_with_the_Wind.html,645470,Gone with the Wind +4.22,7205,0066238501,good_reads:book,https://www.goodreads.com/author/show/1069006.C_S_Lewis,1949,/genres/classics|/genres/young-adult|/genres/childrens|/genres/christian|/genres/adventure|/genres/science-fiction-fantasy|/genres/fantasy|/genres/religion|/genres/fantasy|/genres/magic|/genres/literature,dir01/11127.The_Chronicles_of_Narnia.html,286677,"The Chronicles of Narnia (Chronicles of Narnia, #1-7)" +4.38,10902,0060256656,good_reads:book,https://www.goodreads.com/author/show/435477.Shel_Silverstein,1964,/genres/childrens|/genres/young-adult|/genres/childrens|/genres/picture-books|/genres/fantasy|/genres/inspirational|/genres/classics|/genres/academic|/genres/school|/genres/philosophy|/genres/childrens|/genres/juvenile|/genres/short-stories,dir01/370493.The_Giving_Tree.html,502891,The Giving Tree +3.79,20670,0452284244,good_reads:book,https://www.goodreads.com/author/show/3706.George_Orwell,1945,/genres/classics|/genres/fiction|/genres/science-fiction|/genres/dystopia|/genres/literature|/genres/fantasy|/genres/academic|/genres/school|/genres/politics|/genres/science-fiction|/genres/academic|/genres/read-for-school|/genres/novels,dir01/7613.Animal_Farm.html,1364879,Animal Farm +4.18,12302,0345391802,good_reads:book,https://www.goodreads.com/author/show/4.Douglas_Adams,1979,/genres/science-fiction|/genres/humor|/genres/fantasy|/genres/classics|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny,dir01/11.The_Hitchhiker_s_Guide_to_the_Galaxy.html,724713,"The Hitchhiker's Guide to the Galaxy (Hitchhiker's Guide to the Galaxy, #1)" +4.03,20937,0739326228,good_reads:book,https://www.goodreads.com/author/show/614.Arthur_Golden,1997,/genres/fiction|/genres/historical-fiction|/genres/romance|/genres/cultural|/genres/japan|/genres/classics|/genres/book-club|/genres/adult|/genres/contemporary|/genres/adult-fiction|/genres/novels,dir01/930.Memoirs_of_a_Geisha.html,1042679,Memoirs of a Geisha +3.72,34959,0307277674,good_reads:book,https://www.goodreads.com/author/show/630.Dan_Brown,2003,/genres/mystery|/genres/thriller|/genres/suspense|/genres/historical-fiction|/genres/adventure|/genres/thriller|/genres/mystery-thriller|/genres/novels|/genres/adult|/genres/mystery|/genres/crime|/genres/adult-fiction,dir01/968.The_Da_Vinci_Code.html,1220657,"The Da Vinci Code (Robert Langdon, #2)" +4.36,69524,0375831002,good_reads:book,https://www.goodreads.com/author/show/11466.Markus_Zusak,2005,/genres/historical-fiction|/genres/young-adult|/genres/fiction|/genres/book-club|/genres/world-war-ii|/genres/holocaust|/genres/war|/genres/history|/genres/world-war-ii|/genres/classics|/genres/young-adult|/genres/teen|/genres/fantasy,dir01/19063.The_Book_Thief.html,675431,The Book Thief +4.05,5516,0451527747,good_reads:book,https://www.goodreads.com/author/show/8164.Lewis_Carroll,1865,/genres/classics|/genres/childrens|/genres/young-adult|/genres/literature|/genres/adventure|/genres/novels|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/19th-century|/genres/classics|/genres/classic-literature|/genres/childrens|/genres/juvenile,dir01/24213.Alice_s_Adventures_in_Wonderland_Through_the_Looking_Glass.html,301702,Alice's Adventures in Wonderland & Through the Looking-Glass +3.72,10156,0743477111,good_reads:book,https://www.goodreads.com/author/show/947.William_Shakespeare,1597,/genres/classics|/genres/plays|/genres/fiction|/genres/romance|/genres/academic|/genres/school|/genres/drama|/genres/literature|/genres/academic|/genres/read-for-school|/genres/young-adult|/genres/high-school,dir01/18135.Romeo_and_Juliet.html,1211146,Romeo and Juliet +4.09,10082,0451525264,good_reads:book,https://www.goodreads.com/author/show/13661.Victor_Hugo,1862,/genres/classics|/genres/historical-fiction|/genres/literature|/genres/cultural|/genres/france|/genres/novels|/genres/romance|/genres/european-literature|/genres/french-literature|/genres/classics|/genres/classic-literature|/genres/literature|/genres/19th-century|/genres/drama,dir01/24280.Les_Mis_rables.html,418004,Les Misérables +3.92,38061,,good_reads:book,https://www.goodreads.com/author/show/498072.Audrey_Niffenegger,2003,/genres/fiction|/genres/romance|/genres/fantasy|/genres/science-fiction|/genres/time-travel|/genres/science-fiction|/genres/book-club|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/adult|/genres/adult-fiction,dir01/18619684-the-time-traveler-s-wife.html,927254,The Time Traveler's Wife +4.58,1314,0345538374,good_reads:book,https://www.goodreads.com/author/show/656983.J_R_R_Tolkien,1973,/genres/fantasy|/genres/classics|/genres/science-fiction-fantasy|/genres/adventure|/genres/fantasy|/genres/epic-fantasy|/genres/literature|/genres/young-adult|/genres/epic|/genres/fantasy|/genres/high-fantasy|/genres/novels,dir01/30.J_R_R_Tolkien_4_Book_Boxed_Set.html,68495,J.R.R. Tolkien 4-Book Boxed Set +3.60,18039,0140283331,good_reads:book,https://www.goodreads.com/author/show/306.William_Golding,1954,/genres/classics|/genres/academic|/genres/school|/genres/literature|/genres/science-fiction|/genres/dystopia|/genres/academic|/genres/read-for-school|/genres/novels|/genres/young-adult|/genres/adventure|/genres/young-adult|/genres/high-school|/genres/horror,dir01/7624.Lord_of_the_Flies.html,1232126,Lord of the Flies +4.28,30815,0812550706,good_reads:book,https://www.goodreads.com/author/show/589.Orson_Scott_Card,1985,/genres/science-fiction|/genres/young-adult|/genres/fantasy|/genres/classics|/genres/science-fiction|/genres/dystopia|/genres/book-club|/genres/science-fiction-fantasy|/genres/war|/genres/adventure|/genres/novels,dir01/375802.Ender_s_Game.html,624730,"Ender's Game (The Ender Quintet, #1)" +4.02,11942,0375751513,good_reads:book,https://www.goodreads.com/author/show/3565.Oscar_Wilde,1890,/genres/classics|/genres/fiction|/genres/horror|/genres/literature|/genres/fantasy|/genres/gothic|/genres/novels|/genres/literature|/genres/19th-century|/genres/book-club|/genres/european-literature|/genres/british-literature,dir01/5297.The_Picture_of_Dorian_Gray.html,409478,The Picture of Dorian Gray +4.14,8681,0143058142,good_reads:book,https://www.goodreads.com/author/show/3137322.Fyodor_Dostoyevsky,1866,/genres/classics|/genres/cultural|/genres/russia|/genres/literature|/genres/literature|/genres/russian-literature|/genres/mystery|/genres/crime|/genres/philosophy|/genres/academic|/genres/school|/genres/literature|/genres/19th-century|/genres/novels|/genres/classics|/genres/classic-literature,dir01/7144.Crime_and_Punishment.html,294297,Crime and Punishment +4.11,8897,0064410935,good_reads:book,https://www.goodreads.com/author/show/988142.E_B_White,1952,/genres/childrens|/genres/fiction|/genres/classics|/genres/young-adult|/genres/animals|/genres/childrens|/genres/juvenile|/genres/fantasy|/genres/academic|/genres/school|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/chapter-books,dir01/24178.Charlotte_s_Web.html,662707,Charlotte's Web +4.20,8678,0451528824,good_reads:book,https://www.goodreads.com/author/show/5350.L_M_Montgomery,1908,/genres/fiction|/genres/young-adult|/genres/classics|/genres/childrens|/genres/historical-fiction|/genres/cultural|/genres/canada|/genres/literature|/genres/childrens|/genres/juvenile|/genres/romance|/genres/young-adult|/genres/coming-of-age,dir01/8127.Anne_of_Green_Gables.html,393594,"Anne of Green Gables (Anne of Green Gables, #1)" +3.75,36955,0061122416,good_reads:book,https://www.goodreads.com/author/show/566.Paulo_Coelho,1988,/genres/fiction|/genres/classics|/genres/fantasy|/genres/philosophy|/genres/book-club|/genres/novels|/genres/spirituality|/genres/literature|/genres/inspirational|/genres/adventure,dir01/865.The_Alchemist.html,876518,The Alchemist +3.94,18581,0007491565,good_reads:book,https://www.goodreads.com/author/show/1630.Ray_Bradbury,1953,/genres/classics|/genres/fiction|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/literature|/genres/academic|/genres/school|/genres/fantasy|/genres/science-fiction-fantasy,dir01/17470674-fahrenheit-451.html,783133,Fahrenheit 451 +4.43,112279,0525478817,good_reads:book,https://www.goodreads.com/author/show/1406384.John_Green,2012,/genres/young-adult|/genres/book-club|/genres/drama,dir01/11870085-the-fault-in-our-stars.html,1150626,The Fault in Our Stars +3.79,15833,0142000671,good_reads:book,https://www.goodreads.com/author/show/585.John_Steinbeck,1937,/genres/fiction|/genres/classics|/genres/academic|/genres/school|/genres/literature|/genres/historical-fiction|/genres/academic|/genres/read-for-school|/genres/novels|/genres/young-adult|/genres/high-school|/genres/literature|/genres/american|/genres/classics|/genres/classic-literature,dir01/890.Of_Mice_and_Men.html,1070755,Of Mice and Men +4.04,13214,0440498058,good_reads:book,https://www.goodreads.com/author/show/106.Madeleine_L_Engle,1962,/genres/fantasy|/genres/young-adult|/genres/classics|/genres/science-fiction|/genres/childrens|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/time-travel|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile,dir01/18131.A_Wrinkle_in_Time.html,420001,"A Wrinkle in Time (A Wrinkle in Time Quintet, #1)" +3.94,11736,0393970124,good_reads:book,https://www.goodreads.com/author/show/6988.Bram_Stoker,1897,/genres/classics|/genres/horror|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/gothic|/genres/literature|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/novels,dir01/17245.Dracula.html,429079,Dracula +4.24,10614,0345418263,good_reads:book,https://www.goodreads.com/author/show/12521.William_Goldman,1973,/genres/fantasy|/genres/classics|/genres/romance|/genres/humor|/genres/young-adult|/genres/adventure|/genres/science-fiction-fantasy|/genres/fantasy|/genres/fairy-tales|/genres/humor|/genres/comedy|/genres/book-club,dir01/21787.The_Princess_Bride.html,457219,The Princess Bride +3.93,12622,0060929871,good_reads:book,https://www.goodreads.com/author/show/3487.Aldous_Huxley,1932,/genres/classics|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/academic|/genres/school|/genres/novels|/genres/fantasy|/genres/science-fiction-fantasy|/genres/philosophy|/genres/young-adult|/genres/high-school|/genres/european-literature|/genres/british-literature,dir01/5129.Brave_New_World.html,751377,Brave New World +4.44,70247,0399155341,good_reads:book,https://www.goodreads.com/author/show/1943477.Kathryn_Stockett,2009,/genres/book-club|/genres/historical-fiction|/genres/adult-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/drama|/genres/american|/genres/southern|/genres/classics|/genres/contemporary|/genres/realistic-fiction|/genres/novels,dir01/4667024-the-help.html,1091909,The Help +3.99,14777,0060531045,good_reads:book,https://www.goodreads.com/author/show/13450.Gabriel_Garc_a_M_rquez,1967,/genres/fiction|/genres/classics|/genres/magical-realism|/genres/literature|/genres/novels|/genres/fantasy|/genres/historical-fiction|/genres/european-literature|/genres/spanish-literature|/genres/book-club|/genres/cultural|/genres/latin-american,dir01/320.One_Hundred_Years_of_Solitude.html,419719,One Hundred Years of Solitude +4.07,22713,0142437204,good_reads:book,https://www.goodreads.com/author/show/1036615.Charlotte_Bront_,1847,/genres/fiction|/genres/romance|/genres/literature|/genres/historical-fiction|/genres/gothic|/genres/academic|/genres/school|/genres/novels|/genres/classics|/genres/classic-literature|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/19th-century,dir01/10210.Jane_Eyre.html,893232,Jane Eyre +4.23,6228,0099408392,good_reads:book,https://www.goodreads.com/author/show/4489.Maurice_Sendak,1963,/genres/childrens|/genres/childrens|/genres/picture-books|/genres/classics|/genres/fiction|/genres/fantasy|/genres/adventure|/genres/young-adult|/genres/kids|/genres/childrens|/genres/juvenile|/genres/animals,dir01/19543.Where_the_Wild_Things_Are.html,426455,Where the Wild Things Are +3.78,9056,0142437174,good_reads:book,https://www.goodreads.com/author/show/1244.Mark_Twain,1884,/genres/classics|/genres/fiction|/genres/young-adult|/genres/historical-fiction|/genres/academic|/genres/school|/genres/adventure|/genres/novels|/genres/childrens|/genres/academic|/genres/read-for-school|/genres/literature|/genres/american,dir01/2956.The_Adventures_of_Huckleberry_Finn.html,824146,The Adventures of Huckleberry Finn +3.72,31131,0316166685,good_reads:book,https://www.goodreads.com/author/show/316.Alice_Sebold,2002,/genres/fiction|/genres/mystery|/genres/young-adult|/genres/contemporary|/genres/fantasy|/genres/book-club|/genres/mystery|/genres/crime|/genres/adult|/genres/adult-fiction|/genres/drama,dir01/12232938-the-lovely-bones.html,1190963,The Lovely Bones +4.30,33912,1594489505,good_reads:book,https://www.goodreads.com/author/show/569.Khaled_Hosseini,2007,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/contemporary|/genres/novels|/genres/adult-fiction|/genres/adult|/genres/literature|/genres/drama|/genres/war,dir01/128029.A_Thousand_Splendid_Suns.html,563920,A Thousand Splendid Suns +4.09,8839,0517189607,good_reads:book,https://www.goodreads.com/author/show/2041.Frances_Hodgson_Burnett,1911,/genres/historical-fiction|/genres/childrens|/genres/young-adult|/genres/literature|/genres/classics|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/middle-grade|/genres/european-literature|/genres/british-literature|/genres/classics|/genres/classic-literature|/genres/fiction,dir01/2998.The_Secret_Garden.html,469736,The Secret Garden +4.05,50663,1565125606,good_reads:book,https://www.goodreads.com/author/show/24556.Sara_Gruen,2006,/genres/book-club|/genres/contemporary|/genres/fiction|/genres/literary-fiction|/genres/classics|/genres/media-tie-in|/genres/movies|/genres/historical-fiction|/genres/cultural|/genres/canada|/genres/modern|/genres/romance|/genres/love-story,dir01/43641.Water_for_Elephants.html,885435,Water for Elephants +4.29,5426,0394800168,good_reads:book,https://www.goodreads.com/author/show/61105.Dr_Seuss,1960,/genres/childrens|/genres/childrens|/genres/picture-books|/genres/classics|/genres/poetry|/genres/humor|/genres/fantasy|/genres/kids|/genres/young-adult|/genres/food-and-drink|/genres/food|/genres/childrens|/genres/juvenile,dir01/23772.Green_Eggs_and_Ham.html,362840,Green Eggs and Ham +3.79,18287,0393978893,good_reads:book,https://www.goodreads.com/author/show/4191.Emily_Bront_,1847,/genres/classics|/genres/romance|/genres/literature|/genres/gothic|/genres/historical-fiction|/genres/novels|/genres/literature|/genres/19th-century|/genres/classics|/genres/classic-literature|/genres/academic|/genres/school,dir01/6185.Wuthering_Heights.html,685269,Wuthering Heights +4.34,82098,0062024035,good_reads:book,https://www.goodreads.com/author/show/4039811.Veronica_Roth,2011,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/fiction|/genres/fantasy|/genres/science-fiction|/genres/romance,dir01/13335037-divergent.html,1127983,"Divergent (Divergent, #1)" +3.76,9390,0141439602,good_reads:book,https://www.goodreads.com/author/show/239579.Charles_Dickens,1859,/genres/classics|/genres/fiction|/genres/historical-fiction|/genres/literature|/genres/academic|/genres/school|/genres/novels|/genres/classics|/genres/classic-literature|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/19th-century|/genres/cultural|/genres/france,dir01/1953.A_Tale_of_Two_Cities.html,509640,A Tale of Two Cities +4.12,37615,1416914285,good_reads:book,https://www.goodreads.com/author/show/150038.Cassandra_Clare,2007,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/angels|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/magic,dir01/256683.City_of_Bones.html,716398,"City of Bones (The Mortal Instruments, #1)" +3.86,36670,0770430074,good_reads:book,https://www.goodreads.com/author/show/811.Yann_Martel,2001,/genres/fiction|/genres/fantasy|/genres/book-club|/genres/adventure|/genres/classics|/genres/contemporary|/genres/literature|/genres/novels|/genres/philosophy|/genres/cultural|/genres/india,dir01/4214.Life_of_Pi.html,794732,Life of Pi +3.68,5785,0143039954,good_reads:book,https://www.goodreads.com/author/show/903.Homer,-800,/genres/classics|/genres/fiction|/genres/poetry|/genres/fantasy|/genres/mythology|/genres/academic|/genres/school|/genres/literature|/genres/fantasy|/genres/adventure|/genres/academic|/genres/read-for-school|/genres/epic,dir01/1381.The_Odyssey.html,560248,The Odyssey +3.99,13389,0345803922,good_reads:book,https://www.goodreads.com/author/show/128382.Leo_Tolstoy,1877,/genres/classics|/genres/fiction|/genres/cultural|/genres/russia|/genres/literature|/genres/romance|/genres/historical-fiction|/genres/novels|/genres/literature|/genres/russian-literature|/genres/book-club|/genres/literature|/genres/19th-century,dir01/15823480-anna-karenina.html,307786,Anna Karenina +3.85,11628,,good_reads:book,https://www.goodreads.com/author/show/5152.Vladimir_Nabokov,1955,/genres/classics|/genres/fiction|/genres/literature|/genres/cultural|/genres/russia|/genres/novels|/genres/romance|/genres/book-club|/genres/literature|/genres/russian-literature,dir01/7604.Lolita.html,374886,Lolita +4.01,12532,0385333846,good_reads:book,https://www.goodreads.com/author/show/2778055.Kurt_Vonnegut,1969,/genres/fiction|/genres/classics|/genres/science-fiction|/genres/literature|/genres/war|/genres/historical-fiction|/genres/novels|/genres/fantasy|/genres/literature|/genres/american|/genres/humor,dir01/4981.Slaughterhouse_Five.html,630319,Slaughterhouse-Five +3.79,18284,0192815431,good_reads:book,https://www.goodreads.com/author/show/4191.Emily_Bront_,1847,/genres/classics|/genres/romance|/genres/literature|/genres/gothic|/genres/historical-fiction|/genres/novels|/genres/literature|/genres/19th-century|/genres/classics|/genres/classic-literature|/genres/academic|/genres/school,dir01/589092.Wuthering_Heights.html,685224,Wuthering Heights +4.00,13703,014038572X,good_reads:book,https://www.goodreads.com/author/show/762707.S_E_Hinton,1967,/genres/classics|/genres/fiction|/genres/young-adult|/genres/academic|/genres/school|/genres/academic|/genres/read-for-school|/genres/realistic-fiction|/genres/historical-fiction|/genres/young-adult|/genres/coming-of-age|/genres/childrens|/genres/drama,dir01/231804.The_Outsiders.html,446938,The Outsiders +3.96,9761,0684833395,good_reads:book,https://www.goodreads.com/author/show/3167.Joseph_Heller,1961,/genres/classics|/genres/literature|/genres/american|/genres/humor|/genres/book-club|/genres/classics|/genres/modern-classics,dir01/168668.Catch_22.html,396550,"Catch-22 (Catch-22, #1)" +4.26,22156,0451207149,good_reads:book,https://www.goodreads.com/author/show/3447.Ken_Follett,1989,/genres/historical-fiction|/genres/fiction|/genres/book-club|/genres/historical-fiction|/genres/medieval|/genres/classics|/genres/fantasy|/genres/novels|/genres/adult|/genres/adult-fiction|/genres/epic,dir01/5043.The_Pillars_of_the_Earth.html,332614,"The Pillars of the Earth (The Pillars of the Earth, #1)" +4.12,8326,0340839937,good_reads:book,https://www.goodreads.com/author/show/58.Frank_Herbert,1963,/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/classics|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/space-opera|/genres/novels|/genres/adventure|/genres/speculative-fiction|/genres/epic,dir01/234225.Dune.html,361984,"Dune (Dune Chronicles, #1)" +3.77,31737,0316769177,good_reads:book,https://www.goodreads.com/author/show/819789.J_D_Salinger,1951,/genres/classics|/genres/fiction|/genres/young-adult|/genres/literature|/genres/academic|/genres/school|/genres/novels|/genres/young-adult|/genres/coming-of-age|/genres/literature|/genres/american|/genres/young-adult|/genres/high-school|/genres/academic|/genres/read-for-school,dir01/5107.The_Catcher_in_the_Rye.html,1500230,The Catcher in the Rye +4.02,7320,038039586X,good_reads:book,https://www.goodreads.com/author/show/7717.Richard_Adams,1972,/genres/classics|/genres/fiction|/genres/fantasy|/genres/young-adult|/genres/animals|/genres/childrens|/genres/adventure|/genres/literature|/genres/novels|/genres/book-club,dir01/76620.Watership_Down.html,217315,Watership Down +3.84,38222,0743273567,good_reads:book,https://www.goodreads.com/author/show/3190.F_Scott_Fitzgerald,1925,/genres/classics|/genres/fiction|/genres/literature|/genres/academic|/genres/school|/genres/historical-fiction|/genres/romance|/genres/book-club|/genres/novels|/genres/young-adult|/genres/high-school|/genres/academic|/genres/read-for-school,dir01/4671.The_Great_Gatsby.html,1803088,The Great Gatsby +4.31,9713,0385199570,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1978,/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/apocalyptic|/genres/suspense|/genres/novels|/genres/science-fiction-fantasy|/genres/fantasy|/genres/supernatural|/genres/adult|/genres/mystery|/genres/adult-fiction,dir01/149267.The_Stand.html,316586,The Stand +4.03,26761,0743454537,good_reads:book,https://www.goodreads.com/author/show/7128.Jodi_Picoult,2004,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/book-club|/genres/drama|/genres/adult|/genres/contemporary|/genres/young-adult|/genres/adult-fiction|/genres/realistic-fiction|/genres/novels,dir01/10917.My_Sister_s_Keeper.html,646158,My Sister's Keeper +3.70,12050,0141439475,good_reads:book,https://www.goodreads.com/author/show/11139.Mary_Shelley,1818,/genres/academic|/genres/school|/genres/academic|/genres/read-for-school|/genres/classics|/genres/classic-literature|/genres/literature|/genres/19th-century|/genres/european-literature|/genres/british-literature|/genres/young-adult|/genres/high-school|/genres/adult|/genres/science-fiction-fantasy,dir01/18490.Frankenstein.html,625571,Frankenstein +3.70,8925,0192833596,good_reads:book,https://www.goodreads.com/author/show/239579.Charles_Dickens,1861,/genres/classics|/genres/fiction|/genres/literature|/genres/historical-fiction|/genres/academic|/genres/school|/genres/novels|/genres/classics|/genres/classic-literature|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/19th-century|/genres/academic|/genres/read-for-school,dir01/2623.Great_Expectations.html,341308,Great Expectations +4.22,12309,0061120073,good_reads:book,https://www.goodreads.com/author/show/2327917.Betty_Smith,1943,/genres/classics|/genres/fiction|/genres/book-club|/genres/historical-fiction|/genres/young-adult|/genres/young-adult|/genres/coming-of-age|/genres/literature|/genres/novels|/genres/new-york|/genres/adult,dir01/14891.A_Tree_Grows_in_Brooklyn.html,227813,A Tree Grows in Brooklyn +4.27,3329,0192835084,good_reads:book,https://www.goodreads.com/author/show/2448.Arthur_Conan_Doyle,1892,/genres/classics|/genres/mystery|/genres/fiction|/genres/short-stories|/genres/mystery|/genres/crime|/genres/mystery|/genres/detective|/genres/literature|/genres/adventure|/genres/european-literature|/genres/british-literature|/genres/historical-fiction,dir01/3590.The_Adventures_of_Sherlock_Holmes.html,119128,"The Adventures of Sherlock Holmes (Sherlock Holmes, #3)" +4.04,7686,0007205236,good_reads:book,https://www.goodreads.com/author/show/3347.Frank_McCourt,1996,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/cultural|/genres/ireland|/genres/classics|/genres/biography|/genres/autobiography|/genres/biography-memoir|/genres/history|/genres/european-literature|/genres/irish-literature|/genres/book-club|/genres/biography,dir01/252577.Angela_s_Ashes.html,316412,"Angela's Ashes (Frank McCourt, #1)" +4.16,5130,0451163966,good_reads:book,https://www.goodreads.com/author/show/7285.Ken_Kesey,1962,/genres/classics|/genres/literature|/genres/psychology|/genres/academic|/genres/school|/genres/literature|/genres/american|/genres/contemporary|/genres/fiction|/genres/mental-health|/genres/mental-illness|/genres/adult-fiction|/genres/classics|/genres/modern-classics,dir01/332613.One_Flew_Over_the_Cuckoo_s_Nest.html,375638,One Flew Over the Cuckoo's Nest +3.98,15207,038549081X,good_reads:book,https://www.goodreads.com/author/show/3472.Margaret_Atwood,1985,/genres/fiction|/genres/science-fiction|/genres/dystopia|/genres/classics|/genres/science-fiction|/genres/feminism|/genres/book-club|/genres/fantasy|/genres/literature|/genres/cultural|/genres/canada|/genres/novels,dir01/38447.The_Handmaid_s_Tale.html,361917,The Handmaid's Tale +3.94,31472,0307265439,good_reads:book,https://www.goodreads.com/author/show/4178.Cormac_McCarthy,2006,/genres/science-fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/science-fiction|/genres/dystopia|/genres/horror|/genres/book-club|/genres/literature|/genres/classics|/genres/novels|/genres/contemporary|/genres/science-fiction|/genres/apocalyptic,dir01/6288.The_Road.html,399166,The Road +3.94,9589,0061148512,good_reads:book,https://www.goodreads.com/author/show/4379.Sylvia_Plath,1963,/genres/classics|/genres/fiction|/genres/psychology|/genres/literature|/genres/feminism|/genres/mental-health|/genres/mental-illness|/genres/poetry,dir01/6514.The_Bell_Jar.html,301713,The Bell Jar +3.98,16612,0060786507,good_reads:book,https://www.goodreads.com/author/show/3541.Barbara_Kingsolver,1998,/genres/fiction|/genres/historical-fiction|/genres/cultural|/genres/africa|/genres/book-club|/genres/classics|/genres/literature|/genres/novels|/genres/contemporary|/genres/adult-fiction|/genres/religion,dir01/7244.The_Poisonwood_Bible.html,449361,The Poisonwood Bible +4.17,9775,0316323705,good_reads:book,https://www.goodreads.com/author/show/2001717.Daphne_du_Maurier,1938,/genres/classics|/genres/fiction|/genres/mystery|/genres/romance|/genres/gothic|/genres/book-club|/genres/historical-fiction|/genres/suspense|/genres/literature|/genres/european-literature|/genres/british-literature,dir01/17899948-rebecca.html,216763,Rebecca +4.13,5567,0671727796,good_reads:book,https://www.goodreads.com/author/show/7380.Alice_Walker,1982,/genres/fiction|/genres/historical-fiction|/genres/classics|/genres/literature|/genres/cultural|/genres/african-american|/genres/feminism|/genres/novels|/genres/adult|/genres/adult-fiction|/genres/literature|/genres/american,dir01/11486.The_Color_Purple.html,297036,The Color Purple +3.95,6345,0393312836,good_reads:book,https://www.goodreads.com/author/show/5735.Anthony_Burgess,1962,/genres/classics|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/literature|/genres/novels|/genres/european-literature|/genres/british-literature|/genres/adult,dir01/227463.A_Clockwork_Orange.html,328471,A Clockwork Orange +4.28,5226,0374528373,good_reads:book,https://www.goodreads.com/author/show/3137322.Fyodor_Dostoyevsky,1880,/genres/classics|/genres/fiction|/genres/cultural|/genres/russia|/genres/literature|/genres/literature|/genres/russian-literature|/genres/philosophy|/genres/novels|/genres/literature|/genres/19th-century|/genres/classics|/genres/classic-literature|/genres/religion,dir01/4934.The_Brothers_Karamazov.html,119574,The Brothers Karamazov +4.23,12644,0156012197,good_reads:book,https://www.goodreads.com/author/show/1020792.Antoine_de_Saint_Exup_ry,1940,/genres/young-adult|/genres/childrens|/genres/philosophy|/genres/classics|/genres/novels|/genres/fantasy|/genres/cultural|/genres/france|/genres/fiction|/genres/childrens|/genres/juvenile|/genres/adventure,dir01/157993.The_Little_Prince.html,456663,The Little Prince +4.44,35009,0553588486,good_reads:book,https://www.goodreads.com/author/show/346732.George_R_R_Martin,1996,/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/adult|/genres/adventure|/genres/fantasy|/genres/high-fantasy|/genres/epic|/genres/fantasy|/genres/dragons|/genres/science-fiction|/genres/novels,dir01/13496.A_Game_of_Thrones.html,813425,"A Game of Thrones (A Song of Ice and Fire, #1)" +3.66,11888,0452011876,good_reads:book,https://www.goodreads.com/author/show/432.Ayn_Rand,1957,/genres/fiction|/genres/classics|/genres/philosophy|/genres/literature|/genres/politics|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/novels|/genres/economics,dir01/662.Atlas_Shrugged.html,212339,Atlas Shrugged +4.14,21408,0440242940,good_reads:book,https://www.goodreads.com/author/show/3617.Diana_Gabaldon,1991,/genres/historical-fiction|/genres/romance|/genres/fantasy|/genres/fiction|/genres/science-fiction|/genres/time-travel|/genres/romance|/genres/historical-romance|/genres/adult|/genres/cultural|/genres/scotland|/genres/book-club|/genres/science-fiction,dir01/10964.Outlander.html,304238,"Outlander (Outlander, #1)" +4.18,31846,0786838655,good_reads:book,https://www.goodreads.com/author/show/15872.Rick_Riordan,2005,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/mythology|/genres/fiction|/genres/adventure|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/mythology|/genres/greek-mythology|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/magic,dir01/28187.The_Lightning_Thief.html,806465,"The Lightning Thief (Percy Jackson and the Olympians, #1)" +4.20,34026,0671027344,good_reads:book,https://www.goodreads.com/author/show/12898.Stephen_Chbosky,1999,/genres/young-adult|/genres/fiction|/genres/realistic-fiction|/genres/contemporary|/genres/young-adult|/genres/coming-of-age|/genres/romance|/genres/young-adult|/genres/teen|/genres/book-club,dir01/22628.The_Perks_of_Being_a_Wallflower.html,579402,The Perks of Being a Wallflower +3.94,7302,0553208845,good_reads:book,https://www.goodreads.com/author/show/1113469.Hermann_Hesse,1922,/genres/classics|/genres/fiction|/genres/philosophy|/genres/literature|/genres/religion|/genres/spirituality|/genres/religion|/genres/buddhism|/genres/european-literature|/genres/german-literature|/genres/novels|/genres/historical-fiction,dir01/52036.Siddhartha.html,269635,Siddhartha +3.82,3602,0142437239,good_reads:book,https://www.goodreads.com/author/show/4037220.Miguel_de_Cervantes_Saavedra,1605,/genres/classics|/genres/fiction|/genres/literature|/genres/european-literature|/genres/spanish-literature|/genres/adventure|/genres/novels|/genres/historical-fiction|/genres/cultural|/genres/spain|/genres/humor|/genres/classics|/genres/classic-literature,dir01/3836.Don_Quixote.html,104118,Don Quixote +4.21,46332,1594480001,good_reads:book,https://www.goodreads.com/author/show/569.Khaled_Hosseini,2002,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/contemporary|/genres/novels|/genres/literature|/genres/classics|/genres/adult-fiction|/genres/adult|/genres/drama,dir01/77203.The_Kite_Runner.html,1268863,The Kite Runner +4.21,8768,0552135399,good_reads:book,https://www.goodreads.com/author/show/3075.John_Irving,1989,/genres/fiction|/genres/classics|/genres/book-club|/genres/literature|/genres/contemporary|/genres/novels|/genres/literary-fiction|/genres/adult-fiction|/genres/literature|/genres/american|/genres/adult,dir01/4473.A_Prayer_for_Owen_Meany.html,185806,A Prayer for Owen Meany +4.16,14968,,good_reads:book,https://www.goodreads.com/author/show/137902.Richelle_Mead,2007,/genres/young-adult|/genres/teen|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/young-adult-fantasy|/genres/romance|/genres/young-adult|/genres/high-school|/genres/romance|/genres/paranormal-romance|/genres/love,dir01/18660669-vampire-academy.html,297022,"Vampire Academy (Vampire Academy, #1)" +4.20,34030,1451696191,good_reads:book,https://www.goodreads.com/author/show/12898.Stephen_Chbosky,1999,/genres/young-adult|/genres/fiction|/genres/realistic-fiction|/genres/young-adult|/genres/coming-of-age|/genres/contemporary|/genres/romance|/genres/young-adult|/genres/teen|/genres/book-club|/genres/classics|/genres/novels,dir01/13573503-the-perks-of-being-a-wallflower.html,579497,The Perks of Being a Wallflower +4.06,55616,0307269752,good_reads:book,https://www.goodreads.com/author/show/706255.Stieg_Larsson,2005,/genres/mystery|/genres/crime|/genres/book-club|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/contemporary|/genres/adult|/genres/adult-fiction|/genres/mystery|/genres/novels|/genres/thriller,dir01/2429135.The_Girl_with_the_Dragon_Tattoo.html,1219742,"The Girl with the Dragon Tattoo (Millennium, #1)" +4.13,14120,0312353766,good_reads:book,https://www.goodreads.com/author/show/626222.Anita_Diamant,1997,/genres/historical-fiction|/genres/fiction|/genres/book-club|/genres/religion|/genres/adult-fiction|/genres/adult|/genres/novels|/genres/womens|/genres/literature|/genres/christian,dir01/4989.The_Red_Tent.html,335756,The Red Tent +3.40,7564,0142437247,good_reads:book,https://www.goodreads.com/author/show/1624.Herman_Melville,1851,/genres/classics|/genres/literature|/genres/adventure|/genres/novels|/genres/historical-fiction|/genres/literature|/genres/american|/genres/classics|/genres/classic-literature|/genres/literature|/genres/19th-century,dir01/153747.Moby_Dick_or_The_Whale.html,309450,"Moby-Dick; or, The Whale" +4.03,13892,0553816713,good_reads:book,https://www.goodreads.com/author/show/2345.Nicholas_Sparks,1996,/genres/love|/genres/romance|/genres/realistic-fiction|/genres/classics|/genres/young-adult|/genres/novels|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/high-school|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit,dir01/15931.The_Notebook.html,836208,"The Notebook (The Notebook, #1)" +4.25,6520,0141301066,good_reads:book,https://www.goodreads.com/author/show/4273.Roald_Dahl,1988,/genres/childrens|/genres/fantasy|/genres/young-adult|/genres/classics,dir01/39988.Matilda.html,301881,Matilda +4.00,12509,0451529308,good_reads:book,https://www.goodreads.com/author/show/1315.Louisa_May_Alcott,1868,/genres/classics|/genres/young-adult|/genres/historical-fiction|/genres/romance|/genres/literature|/genres/childrens|/genres/classics|/genres/classic-literature|/genres/literature|/genres/19th-century|/genres/womens-fiction|/genres/chick-lit|/genres/literature|/genres/american,dir01/1934.Little_Women.html,968323,"Little Women (Little Women, #1)" +3.95,5967,0345476875,good_reads:book,https://www.goodreads.com/author/show/7577.Anne_Rice,1976,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/horror|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/gothic|/genres/historical-fiction|/genres/fantasy|/genres/paranormal|/genres/science-fiction-fantasy|/genres/fantasy|/genres/supernatural,dir01/43763.Interview_with_the_Vampire.html,314027,"Interview with the Vampire (The Vampire Chronicles, #1)" +3.93,17399,0312422156,good_reads:book,https://www.goodreads.com/author/show/1467.Jeffrey_Eugenides,2002,/genres/fiction|/genres/book-club|/genres/contemporary|/genres/historical-fiction|/genres/novels|/genres/literature|/genres/literary-fiction|/genres/glbt|/genres/adult-fiction|/genres/adult,dir01/2187.Middlesex.html,392127,Middlesex +4.11,38249,0385732554,good_reads:book,https://www.goodreads.com/author/show/2493.Lois_Lowry,1993,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/classics|/genres/science-fiction|/genres/fantasy|/genres/academic|/genres/school|/genres/childrens|/genres/book-club,dir01/3636.The_Giver.html,903900,"The Giver (The Giver, #1)" +3.89,11145,0679879242,good_reads:book,https://www.goodreads.com/author/show/3618.Philip_Pullman,1995,/genres/young-adult|/genres/childrens|/genres/science-fiction|/genres/adventure|/genres/science-fiction|/genres/steampunk|/genres/science-fiction-fantasy|/genres/fantasy|/genres/fantasy|/genres/magic,dir01/119322.The_Golden_Compass.html,696716,"The Golden Compass (His Dark Materials, #1)" +3.96,22248,0142001740,good_reads:book,https://www.goodreads.com/author/show/4711.Sue_Monk_Kidd,2001,/genres/american|/genres/southern|/genres/fiction|/genres/book-club|/genres/novels|/genres/literary-fiction|/genres/cultural|/genres/african-american|/genres/young-adult|/genres/high-school|/genres/media-tie-in|/genres/movies|/genres/romance|/genres/academic|/genres/read-for-school,dir01/37435.The_Secret_Life_of_Bees.html,742872,The Secret Life of Bees +3.63,9682,0684830493,good_reads:book,https://www.goodreads.com/author/show/1455.Ernest_Hemingway,1952,/genres/classics|/genres/fiction|/genres/literature|/genres/novels|/genres/academic|/genres/school|/genres/literature|/genres/american|/genres/adventure,dir01/2165.The_Old_Man_and_the_Sea.html,317776,The Old Man and the Sea +4.36,1438,0385074077,good_reads:book,https://www.goodreads.com/author/show/4624490.Edgar_Allan_Poe,1975,/genres/classics|/genres/short-stories|/genres/mystery|/genres/literature|/genres/gothic|/genres/poetry|/genres/classics|/genres/classic-literature|/genres/literature|/genres/american|/genres/fiction|/genres/horror,dir01/23919.The_Complete_Stories_and_Poems.html,142955,The Complete Stories and Poems +4.32,1886,0525467564,good_reads:book,https://www.goodreads.com/author/show/81466.A_A_Milne,1926,/genres/classics|/genres/childrens|/genres/fiction|/genres/fantasy|/genres/young-adult|/genres/childrens|/genres/picture-books|/genres/animals|/genres/childrens|/genres/juvenile|/genres/literature|/genres/european-literature|/genres/british-literature,dir02/99107.Winnie_the_Pooh.html,157833,Winnie-the-Pooh +3.66,8943,0140042598,good_reads:book,https://www.goodreads.com/author/show/1742.Jack_Kerouac,1957,/genres/classics|/genres/fiction|/genres/travel|/genres/literature|/genres/novels|/genres/literature|/genres/american,dir02/70401.On_the_Road.html,206394,On the Road +3.86,4453,0143039563,good_reads:book,https://www.goodreads.com/author/show/1244.Mark_Twain,1876,/genres/classics|/genres/fiction|/genres/young-adult|/genres/adventure|/genres/literature|/genres/historical-fiction|/genres/childrens|/genres/academic|/genres/school|/genres/literature|/genres/american|/genres/novels,dir02/24583.The_Adventures_of_Tom_Sawyer.html,386157,The Adventures of Tom Sawyer +4.29,9918,0618346252,good_reads:book,https://www.goodreads.com/author/show/656983.J_R_R_Tolkien,1954,/genres/fantasy|/genres/classics|/genres/fiction|/genres/adventure|/genres/science-fiction-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/literature,dir02/34.The_Fellowship_of_the_Ring.html,1175830,"The Fellowship of the Ring (The Lord of the Rings, #1)" +4.08,5373,0142403881,good_reads:book,https://www.goodreads.com/author/show/4273.Roald_Dahl,1964,/genres/childrens|/genres/fantasy|/genres/fiction|/genres/classics|/genres/young-adult|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/middle-grade|/genres/adventure|/genres/european-literature|/genres/british-literature|/genres/novels,dir02/6310.Charlie_and_the_Chocolate_Factory.html,353665,"Charlie and the Chocolate Factory (Charlie Bucket, #1)" +4.27,4081,0241003008,good_reads:book,https://www.goodreads.com/author/show/3362.Eric_Carle,1969,/genres/childrens|/genres/childrens|/genres/picture-books|/genres/fiction|/genres/animals|/genres/classics|/genres/kids|/genres/science|/genres/mathematics|/genres/young-adult|/genres/childrens|/genres/juvenile|/genres/environment|/genres/nature,dir02/4948.The_Very_Hungry_Caterpillar.html,200116,The Very Hungry Caterpillar +4.05,6820,0571224385,good_reads:book,https://www.goodreads.com/author/show/6343.Milan_Kundera,1981,/genres/fiction|/genres/classics|/genres/philosophy|/genres/novels|/genres/european-literature|/genres/czech-literature|/genres/contemporary|/genres/romance,dir02/9717.The_Unbearable_Lightness_of_Being.html,169077,The Unbearable Lightness of Being +3.99,13930,0751529818,good_reads:book,https://www.goodreads.com/author/show/2331.Mitch_Albom,1997,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/inspirational|/genres/biography|/genres/philosophy|/genres/classics|/genres/contemporary|/genres/adult|/genres/book-club|/genres/self-help,dir02/6900.Tuesdays_with_Morrie.html,345737,Tuesdays with Morrie +4.50,108,1557831572,good_reads:book,https://www.goodreads.com/author/show/4390174.Reduced_Shakespeare_Company,1994,/genres/plays|/genres/classics|/genres/humor|/genres/drama|/genres/fiction|/genres/plays|/genres/theatre|/genres/poetry|/genres/literature|/genres/humor|/genres/funny|/genres/humor|/genres/comedy,dir02/1423.The_Compleat_Works_of_Wllm_Shkspr.html,5617,The Compleat Works of Wllm Shkspr +3.32,8099,0142437263,good_reads:book,https://www.goodreads.com/author/show/7799.Nathaniel_Hawthorne,1850,/genres/classics|/genres/fiction|/genres/historical-fiction|/genres/academic|/genres/school|/genres/literature|/genres/young-adult|/genres/high-school|/genres/academic|/genres/read-for-school|/genres/classics|/genres/classic-literature|/genres/novels|/genres/romance,dir02/12296.The_Scarlet_Letter.html,385305,The Scarlet Letter +4.44,3989,067168390X,good_reads:book,https://www.goodreads.com/author/show/1055.Larry_McMurtry,1985,/genres/fiction|/genres/historical-fiction|/genres/classics|/genres/western|/genres/adventure|/genres/literature|/genres/novels|/genres/book-club|/genres/romance,dir02/256008.Lonesome_Dove.html,86506,Lonesome Dove +4.00,6715,0375806814,good_reads:book,https://www.goodreads.com/author/show/6810.Wilson_Rawls,1961,/genres/classics|/genres/fiction|/genres/young-adult|/genres/childrens|/genres/academic|/genres/school|/genres/animals|/genres/historical-fiction|/genres/realistic-fiction|/genres/academic|/genres/read-for-school|/genres/childrens|/genres/juvenile,dir02/10365.Where_the_Red_Fern_Grows.html,207333,Where the Red Fern Grows +4.33,4781,0679760806,good_reads:book,https://www.goodreads.com/author/show/3873.Mikhail_Bulgakov,1967,/genres/classics|/genres/cultural|/genres/russia|/genres/fantasy|/genres/literature|/genres/magical-realism|/genres/literature|/genres/russian-literature|/genres/novels|/genres/book-club|/genres/historical-fiction|/genres/literature|/genres/20th-century,dir02/117833.The_Master_and_Margarita.html,93145,The Master and Margarita +3.86,12885,1401308589,good_reads:book,https://www.goodreads.com/author/show/2331.Mitch_Albom,2003,/genres/fiction|/genres/inspirational|/genres/contemporary|/genres/fantasy|/genres/book-club|/genres/adult|/genres/spirituality|/genres/adult-fiction|/genres/classics|/genres/novels,dir02/3431.The_Five_People_You_Meet_in_Heaven.html,353446,The Five People You Meet in Heaven +4.02,17106,1416989412,good_reads:book,https://www.goodreads.com/author/show/2876763.Becca_Fitzpatrick,2009,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/teen,dir02/6339664-hush-hush.html,290241,"Hush, Hush (Hush, Hush, #1)" +3.82,25866,1400032717,good_reads:book,https://www.goodreads.com/author/show/1050.Mark_Haddon,2003,/genres/mystery|/genres/young-adult|/genres/book-club|/genres/contemporary|/genres/novels|/genres/literature|/genres/psychology|/genres/adult-fiction|/genres/realistic-fiction|/genres/adult,dir02/1618.The_Curious_Incident_of_the_Dog_in_the_Night_Time.html,632146,The Curious Incident of the Dog in the Night-Time +3.92,8393,,good_reads:book,https://www.goodreads.com/author/show/957894.Albert_Camus,1942,/genres/classics|/genres/fiction|/genres/philosophy|/genres/cultural|/genres/france|/genres/literature|/genres/novels|/genres/academic|/genres/school|/genres/european-literature|/genres/french-literature,dir02/49552.The_Stranger.html,307566,The Stranger +3.78,13978,0375826696,good_reads:book,https://www.goodreads.com/author/show/8349.Christopher_Paolini,2002,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/dragons|/genres/adventure|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/epic-fantasy,dir02/113436.Eragon.html,734004,"Eragon (The Inheritance Cycle, #1)" +4.13,3063,039480001X,good_reads:book,https://www.goodreads.com/author/show/61105.Dr_Seuss,1957,/genres/childrens|/genres/childrens|/genres/picture-books|/genres/classics|/genres/fiction|/genres/poetry|/genres/fantasy|/genres/humor|/genres/kids|/genres/animals|/genres/young-adult,dir02/233093.The_Cat_in_the_Hat.html,251257,The Cat in the Hat +4.08,9424,0450040186,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1977,/genres/horror|/genres/fiction|/genres/thriller|/genres/classics|/genres/fantasy|/genres/mystery|/genres/fantasy|/genres/paranormal|/genres/suspense|/genres/fantasy|/genres/supernatural|/genres/adult,dir02/11588.The_Shining.html,549790,The Shining (The Shining #1) +4.21,16810,0143034901,good_reads:book,https://www.goodreads.com/author/show/815.Carlos_Ruiz_Zaf_n,2001,/genres/fiction|/genres/historical-fiction|/genres/mystery|/genres/book-club|/genres/fantasy|/genres/writing|/genres/books-about-books|/genres/cultural|/genres/spain|/genres/gothic|/genres/european-literature|/genres/spanish-literature|/genres/literature,dir02/1232.The_Shadow_of_the_Wind.html,205658,"The Shadow of the Wind (The Cemetery of Forgotten Books, #1)" +4.08,3872,0156001314,good_reads:book,https://www.goodreads.com/author/show/1730.Umberto_Eco,1980,/genres/mystery|/genres/literature|/genres/history|/genres/mystery|/genres/crime|/genres/cultural|/genres/italy|/genres/historical-fiction|/genres/medieval|/genres/classics|/genres/thriller|/genres/european-literature|/genres/italian-literature,dir02/119073.The_Name_of_the_Rose.html,147828,The Name of the Rose +4.01,7901,0679745580,good_reads:book,https://www.goodreads.com/author/show/431149.Truman_Capote,1965,/genres/non-fiction|/genres/classics|/genres/crime|/genres/true-crime|/genres/mystery|/genres/crime|/genres/history|/genres/mystery|/genres/book-club|/genres/literature,dir02/168642.In_Cold_Blood.html,308086,In Cold Blood +4.33,1764,0060529962,good_reads:book,https://www.goodreads.com/author/show/5300.Laura_Ingalls_Wilder,1953,/genres/classics|/genres/childrens|/genres/historical-fiction|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/juvenile|/genres/literature|/genres/kids|/genres/childrens|/genres/middle-grade|/genres/literature|/genres/american,dir02/114345.The_Little_House_Collection.html,107854,"The Little House Collection (Little House, #1-9)" +3.97,6586,0156030306,good_reads:book,https://www.goodreads.com/author/show/11072.Daniel_Keyes,1959,/genres/fiction|/genres/classics|/genres/science-fiction|/genres/young-adult|/genres/academic|/genres/school|/genres/literature|/genres/psychology|/genres/novels|/genres/academic|/genres/read-for-school|/genres/adult,dir02/18373.Flowers_for_Algernon.html,216766,Flowers for Algernon +4.31,15855,1416975861,good_reads:book,https://www.goodreads.com/author/show/150038.Cassandra_Clare,2009,/genres/paranormal|/genres/angels|/genres/historical-fiction|/genres/young-adult|/genres/teen|/genres/adventure,dir02/7171637-clockwork-angel.html,301285,"Clockwork Angel (The Infernal Devices, #1)" +3.73,5429,0553213695,good_reads:book,https://www.goodreads.com/author/show/5223.Franz_Kafka,1915,/genres/classics|/genres/literature|/genres/fantasy|/genres/short-stories|/genres/academic|/genres/school|/genres/european-literature|/genres/german-literature|/genres/horror|/genres/novels|/genres/academic|/genres/read-for-school|/genres/young-adult|/genres/high-school,dir02/485894.The_Metamorphosis.html,246701,The Metamorphosis +4.42,7508,1595141979,good_reads:book,https://www.goodreads.com/author/show/137902.Richelle_Mead,2008,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/fiction|/genres/young-adult|/genres/teen,dir02/2802316-shadow-kiss.html,184786,"Shadow Kiss (Vampire Academy, #3)" +4.31,8530,0930289234,good_reads:book,https://www.goodreads.com/author/show/3961.Alan_Moore,1986,/genres/sequential-art|/genres/graphic-novels|/genres/fiction|/genres/fantasy|/genres/science-fiction|/genres/graphic-novels-comics|/genres/sequential-art|/genres/comics|/genres/classics|/genres/comics|/genres/superheroes|/genres/science-fiction|/genres/dystopia|/genres/mystery,dir02/472331.Watchmen.html,289035,Watchmen +4.33,3715,0451205766,good_reads:book,https://www.goodreads.com/author/show/12605.Mario_Puzo,1969,/genres/fiction|/genres/classics|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery|/genres/historical-fiction|/genres/drama|/genres/novels|/genres/literature|/genres/literature|/genres/american,dir02/22034.The_Godfather.html,178229,The Godfather +4.19,8399,0312330871,good_reads:book,https://www.goodreads.com/author/show/123715.Agatha_Christie,1939,/genres/classics|/genres/mystery|/genres/thriller|/genres/mystery-thriller|/genres/book-club|/genres/suspense|/genres/academic|/genres/school|/genres/mystery|/genres/detective|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/mystery|/genres/murder-mystery,dir02/16299.And_Then_There_Were_None.html,239438,And Then There Were None +4.19,7269,0393327345,good_reads:book,https://www.goodreads.com/author/show/2546.Chuck_Palahniuk,1996,/genres/fiction|/genres/thriller|/genres/contemporary|/genres/novels|/genres/classics|/genres/adult|/genres/mystery|/genres/literature|/genres/adult-fiction,dir02/5759.Fight_Club.html,266232,Fight Club +4.04,1809,0679433139,good_reads:book,https://www.goodreads.com/author/show/5031312.Dante_Alighieri,1321,/genres/fiction|/genres/classics|/genres/philosophy|/genres/fantasy|/genres/european-literature|/genres/italian-literature|/genres/classics|/genres/classic-literature|/genres/cultural|/genres/italy|/genres/historical-fiction|/genres/medieval,dir02/6656.The_Divine_Comedy.html,61544,The Divine Comedy +3.82,6068,0061120065,good_reads:book,https://www.goodreads.com/author/show/15151.Zora_Neale_Hurston,1900,/genres/classics|/genres/literature|/genres/cultural|/genres/african-american|/genres/book-club|/genres/young-adult|/genres/high-school|/genres/novels|/genres/academic|/genres/read-for-school|/genres/literature|/genres/american|/genres/romance|/genres/adult-fiction,dir02/37415.Their_Eyes_Were_Watching_God.html,135686,Their Eyes Were Watching God +3.84,4259,0449213943,good_reads:book,https://www.goodreads.com/author/show/4116.Erich_Maria_Remarque,1928,/genres/classics|/genres/fiction|/genres/historical-fiction|/genres/war|/genres/literature|/genres/academic|/genres/school|/genres/european-literature|/genres/german-literature|/genres/novels|/genres/war|/genres/military|/genres/cultural|/genres/germany,dir02/355697.All_Quiet_on_the_Western_Front.html,163815,All Quiet on the Western Front +4.12,8481,0446693804,good_reads:book,https://www.goodreads.com/author/show/2345.Nicholas_Sparks,1999,/genres/romance|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/contemporary|/genres/adult|/genres/drama|/genres/love|/genres/adult-fiction|/genres/realistic-fiction,dir02/3473.A_Walk_to_Remember.html,378276,A Walk to Remember +3.90,11113,0439244196,good_reads:book,https://www.goodreads.com/author/show/6569.Louis_Sachar,1998,/genres/young-adult|/genres/fiction|/genres/childrens|/genres/realistic-fiction|/genres/adventure|/genres/mystery|/genres/academic|/genres/school|/genres/childrens|/genres/middle-grade,dir02/38709.Holes.html,494991,"Holes (Holes, #1)" +4.18,3272,0380018179,good_reads:book,https://www.goodreads.com/author/show/2325.Colleen_McCullough,1977,/genres/fiction|/genres/historical-fiction|/genres/romance|/genres/cultural|/genres/australia|/genres/classics|/genres/romance|/genres/historical-romance|/genres/womens-fiction|/genres/chick-lit|/genres/novels|/genres/adult|/genres/drama,dir02/3412.The_Thorn_Birds.html,197717,The Thorn Birds +4.32,7460,1595141758,good_reads:book,https://www.goodreads.com/author/show/137902.Richelle_Mead,2008,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural,dir02/2282133.Frostbite.html,193452,"Frostbite (Vampire Academy, #2)" +4.26,3510,0060775858,good_reads:book,https://www.goodreads.com/author/show/18479.Margaret_Wise_Brown,1900,/genres/childrens|/genres/childrens|/genres/picture-books|/genres/classics|/genres/fiction|/genres/kids|/genres/poetry|/genres/childrens|/genres/juvenile|/genres/young-adult|/genres/animals|/genres/childrens|/genres/storytime,dir02/32929.Goodnight_Moon.html,199556,Goodnight Moon +3.44,43943,0143038419,good_reads:book,https://www.goodreads.com/author/show/11679.Elizabeth_Gilbert,2000,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/travel|/genres/book-club|/genres/womens-fiction|/genres/chick-lit|/genres/biography|/genres/romance|/genres/spirituality|/genres/adult,dir02/19501.Eat_Pray_Love.html,859742,"Eat, Pray, Love" +4.10,4240,0805072454,good_reads:book,https://www.goodreads.com/author/show/5255014.J_M_Barrie,1902,/genres/classics|/genres/fantasy|/genres/childrens|/genres/fiction|/genres/young-adult|/genres/adventure,dir02/34268.Peter_Pan.html,129775,Peter Pan +4.39,6683,1595141987,good_reads:book,https://www.goodreads.com/author/show/137902.Richelle_Mead,2009,/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural,dir02/5996153-blood-promise.html,173912,"Blood Promise (Vampire Academy, #4)" +3.94,6456,1416500189,good_reads:book,https://www.goodreads.com/author/show/704.Pearl_S_Buck,1931,/genres/classics|/genres/historical-fiction|/genres/cultural|/genres/china|/genres/book-club|/genres/literature|/genres/cultural|/genres/asia|/genres/novels|/genres/academic|/genres/school|/genres/adult-fiction,dir02/1078.The_Good_Earth.html,143952,"The Good Earth (House of Earth, #1)" +4.34,1418,0007173040,good_reads:book,https://www.goodreads.com/author/show/61105.Dr_Seuss,1957,/genres/childrens|/genres/childrens|/genres/picture-books|/genres/classics|/genres/holiday|/genres/fantasy|/genres/poetry|/genres/humor|/genres/kids|/genres/young-adult|/genres/childrens|/genres/juvenile,dir02/113946.How_the_Grinch_Stole_Christmas_.html,176257,How the Grinch Stole Christmas! +3.86,11400,140003468X,good_reads:book,https://www.goodreads.com/author/show/13450.Gabriel_Garc_a_M_rquez,1985,/genres/fiction|/genres/classics|/genres/historical-fiction|/genres/book-club|/genres/literature|/genres/magical-realism|/genres/novels|/genres/european-literature|/genres/spanish-literature|/genres/literary-fiction|/genres/cultural|/genres/latin-american,dir02/9712.Love_in_the_Time_of_Cholera.html,239553,Love in the Time of Cholera +3.83,12076,038572179X,good_reads:book,https://www.goodreads.com/author/show/2408.Ian_McEwan,2001,/genres/fiction|/genres/historical-fiction|/genres/romance|/genres/classics|/genres/book-club|/genres/contemporary|/genres/literature|/genres/war|/genres/literary-fiction|/genres/novels,dir02/6867.Atonement.html,271577,Atonement +4.10,15070,0747263744,good_reads:book,https://www.goodreads.com/author/show/1221698.Neil_Gaiman,2001,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/mythology|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/contemporary|/genres/horror|/genres/novels|/genres/book-club,dir02/4407.American_Gods.html,299245,"American Gods (American Gods, #1)" +4.35,2316,0679889108,good_reads:book,https://www.goodreads.com/author/show/61105.Dr_Seuss,1971,/genres/childrens|/genres/childrens|/genres/picture-books|/genres/fiction|/genres/classics|/genres/fantasy|/genres/poetry|/genres/environment|/genres/kids|/genres/young-adult|/genres/childrens|/genres/juvenile,dir02/7784.The_Lorax.html,162754,The Lorax +3.95,5652,0140621679,good_reads:book,https://www.goodreads.com/author/show/3242.L_Frank_Baum,1900,/genres/classics|/genres/fantasy|/genres/fiction|/genres/childrens|/genres/young-adult|/genres/adventure|/genres/literature|/genres/childrens|/genres/juvenile|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/fairy-tales,dir02/236093.The_Wonderful_Wizard_of_Oz.html,180522,"The Wonderful Wizard of Oz (Oz, #1)" +4.16,3993,158049580X,good_reads:book,https://www.goodreads.com/author/show/3565.Oscar_Wilde,1895,/genres/classics|/genres/plays|/genres/fiction|/genres/drama|/genres/humor|/genres/literature|/genres/academic|/genres/school|/genres/plays|/genres/theatre|/genres/humor|/genres/comedy|/genres/romance,dir02/92303.The_Importance_of_Being_Earnest.html,143966,The Importance of Being Earnest +3.97,6572,0140120831,good_reads:book,https://www.goodreads.com/author/show/39402.Patrick_S_skind,1985,/genres/fiction|/genres/horror|/genres/classics|/genres/mystery|/genres/mystery|/genres/crime|/genres/thriller|/genres/european-literature|/genres/german-literature|/genres/novels|/genres/literature,dir02/343.Perfume.html,137455,Perfume +3.71,4787,0141439599,good_reads:book,https://www.goodreads.com/author/show/15905.Thomas_Hardy,1891,/genres/classics|/genres/fiction|/genres/romance|/genres/literature|/genres/literature|/genres/19th-century|/genres/historical-fiction|/genres/romance|/genres/historical-romance|/genres/european-literature|/genres/british-literature|/genres/young-adult|/genres/feminism,dir02/32261.Tess_of_the_d_Urbervilles.html,123981,Tess of the d'Urbervilles +4.10,4474,0345350499,good_reads:book,https://www.goodreads.com/author/show/4841825.Marion_Zimmer_Bradley,1983,/genres/fantasy|/genres/fiction|/genres/historical-fiction|/genres/mythology|/genres/arthurian|/genres/science-fiction-fantasy|/genres/fantasy|/genres/mythology|/genres/classics|/genres/romance|/genres/fantasy|/genres/magic|/genres/adult,dir02/402045.The_Mists_of_Avalon.html,128783,"The Mists of Avalon (Avalon, #1)" +4.35,3234,0345453743,good_reads:book,https://www.goodreads.com/author/show/4.Douglas_Adams,1996,/genres/science-fiction|/genres/fiction|/genres/humor|/genres/fantasy|/genres/classics|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny|/genres/adventure|/genres/novels,dir02/13.The_Ultimate_Hitchhiker_s_Guide_to_the_Galaxy.html,186102,The Ultimate Hitchhiker's Guide to the Galaxy (Hitchhiker's Guide to the Galaxy #1-5) +4.19,3927,000100039X,good_reads:book,https://www.goodreads.com/author/show/6466154.Khalil_Gibran,1923,/genres/classics|/genres/spirituality|/genres/religion|/genres/literature|/genres/self-help|/genres/novels|/genres/literature|/genres/20th-century|/genres/adult|/genres/writing|/genres/essays|/genres/religion|/genres/islam,dir02/2547.The_Prophet.html,113290,The Prophet +4.03,3473,,good_reads:book,https://www.goodreads.com/author/show/4785.Alexandre_Dumas,1843,/genres/classics|/genres/fiction|/genres/historical-fiction|/genres/adventure|/genres/literature|/genres/cultural|/genres/france|/genres/european-literature|/genres/french-literature|/genres/classics|/genres/classic-literature|/genres/novels|/genres/romance,dir02/7190.The_Three_Musketeers.html,156968,The Three Musketeers +4.19,29449,0142402516,good_reads:book,https://www.goodreads.com/author/show/1406384.John_Green,2005,/genres/young-adult|/genres/fiction|/genres/contemporary|/genres/romance|/genres/realistic-fiction|/genres/young-adult|/genres/teen,dir02/99561.Looking_for_Alaska.html,426482,Looking for Alaska +4.09,6213,0451169514,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1986,/genres/horror|/genres/fiction|/genres/thriller|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/mystery|/genres/suspense|/genres/adult|/genres/novels,dir02/18342.It.html,275565,It +3.86,4976,0143038095,good_reads:book,https://www.goodreads.com/author/show/5246.Amy_Tan,1989,/genres/fiction|/genres/historical-fiction|/genres/classics|/genres/cultural|/genres/china|/genres/contemporary|/genres/adult-fiction|/genres/literature|/genres/womens-fiction|/genres/chick-lit|/genres/novels|/genres/adult,dir02/7763.The_Joy_Luck_Club.html,432603,The Joy Luck Club +4.47,11678,0739380338,good_reads:book,https://www.goodreads.com/author/show/15872.Rick_Riordan,2009,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/mythology|/genres/fiction|/genres/adventure|/genres/childrens|/genres/mythology|/genres/greek-mythology,dir02/4502507-the-last-olympian.html,317734,"The Last Olympian (Percy Jackson and the Olympians, #5)" +3.93,3421,0743477545,good_reads:book,https://www.goodreads.com/author/show/947.William_Shakespeare,1595,/genres/plays|/genres/drama|/genres/classics|/genres/fantasy|/genres/academic|/genres/school|/genres/romance|/genres/literature|/genres/plays|/genres/theatre|/genres/poetry|/genres/academic|/genres/read-for-school,dir02/1622.A_Midsummer_Night_s_Dream.html,250272,A Midsummer Night's Dream +4.55,15777,075640407X,good_reads:book,https://www.goodreads.com/author/show/108424.Patrick_Rothfuss,2007,/genres/fantasy|/genres/fiction,dir02/186074.The_Name_of_the_Wind.html,210018,"The Name of the Wind (The Kingkiller Chronicle, #1)" +4.17,43787,0007442912,good_reads:book,https://www.goodreads.com/author/show/4039811.Veronica_Roth,2012,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/science-fiction|/genres/romance|/genres/young-adult|/genres/teen|/genres/adventure|/genres/apocalyptic|/genres/post-apocalyptic|/genres/action|/genres/science-fiction-fantasy|/genres/fantasy,dir02/11735983-insurgent.html,552682,"Insurgent (Divergent, #2)" +3.38,6393,1892295490,good_reads:book,https://www.goodreads.com/author/show/3345.Joseph_Conrad,1899,/genres/classics|/genres/fiction|/genres/literature|/genres/cultural|/genres/africa|/genres/academic|/genres/school|/genres/historical-fiction|/genres/novels|/genres/young-adult|/genres/high-school|/genres/academic|/genres/read-for-school|/genres/adventure,dir02/4900.Heart_of_Darkness.html,202833,Heart of Darkness +3.75,3568,0743278909,good_reads:book,https://www.goodreads.com/author/show/16904.Richard_Bach,1970,/genres/fiction|/genres/classics|/genres/philosophy|/genres/fantasy|/genres/spirituality|/genres/inspirational|/genres/literature|/genres/young-adult|/genres/novels|/genres/self-help,dir02/71728.Jonathan_Livingston_Seagull.html,103970,Jonathan Livingston Seagull +4.21,5811,0394820371,good_reads:book,https://www.goodreads.com/author/show/214.Norton_Juster,1961,/genres/fantasy|/genres/fiction|/genres/childrens|/genres/classics|/genres/young-adult|/genres/humor|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/academic|/genres/school,dir02/378.The_Phantom_Tollbooth.html,135140,The Phantom Tollbooth +3.46,2016,0140424385,good_reads:book,https://www.goodreads.com/author/show/1838.Geoffrey_Chaucer,1390,/genres/classics|/genres/fiction|/genres/poetry|/genres/literature|/genres/academic|/genres/school|/genres/historical-fiction|/genres/medieval|/genres/short-stories|/genres/historical-fiction|/genres/classics|/genres/classic-literature|/genres/european-literature|/genres/british-literature,dir02/2696.The_Canterbury_Tales.html,116085,The Canterbury Tales +4.04,3591,0345915593,good_reads:book,https://www.goodreads.com/author/show/3075.John_Irving,1978,/genres/classics|/genres/literature|/genres/contemporary|/genres/novels|/genres/humor|/genres/literature|/genres/american|/genres/literary-fiction|/genres/adult-fiction|/genres/drama|/genres/adult,dir02/7069.The_World_According_to_Garp.html,138174,The World According to Garp +3.97,3952,0553381679,good_reads:book,https://www.goodreads.com/author/show/861.Jean_M_Auel,1980,/genres/fiction|/genres/fantasy|/genres/romance|/genres/classics|/genres/adventure|/genres/historical-fiction|/genres/prehistoric|/genres/adult|/genres/historical-fiction|/genres/adult-fiction|/genres/novels,dir02/1295.The_Clan_of_the_Cave_Bear.html,146688,"The Clan of the Cave Bear (Earth's Children, #1)" +3.72,3527,0679722769,good_reads:book,https://www.goodreads.com/author/show/5144.James_Joyce,1920,/genres/classics|/genres/fiction|/genres/literature|/genres/european-literature|/genres/irish-literature|/genres/novels|/genres/cultural|/genres/ireland|/genres/literature|/genres/20th-century|/genres/literary-fiction|/genres/literature|/genres/banned-books|/genres/classics|/genres/classic-literature,dir02/338798.Ulysses.html,60891,Ulysses +3.61,5038,0192840398,good_reads:book,https://www.goodreads.com/author/show/1461.Gustave_Flaubert,1856,/genres/classics|/genres/fiction|/genres/cultural|/genres/france|/genres/literature|/genres/european-literature|/genres/french-literature|/genres/romance|/genres/literature|/genres/19th-century|/genres/novels|/genres/historical-fiction|/genres/classics|/genres/classic-literature,dir02/2175.Madame_Bovary.html,120610,Madame Bovary +3.47,20152,0060987103,good_reads:book,https://www.goodreads.com/author/show/7025.Gregory_Maguire,1995,/genres/fantasy|/genres/book-club|/genres/adult|/genres/science-fiction-fantasy|/genres/adult-fiction|/genres/fantasy|/genres/fairy-tales|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/witches|/genres/novels|/genres/contemporary,dir02/37442.Wicked.html,405260,Wicked (The Wicked Years #1) +4.02,14169,0743227441,good_reads:book,https://www.goodreads.com/author/show/9987.Philippa_Gregory,2001,/genres/historical-fiction|/genres/fiction|/genres/romance|/genres/book-club|/genres/adult|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/historical-romance|/genres/european-literature|/genres/british-literature|/genres/adult-fiction|/genres/drama,dir02/37470.The_Other_Boleyn_Girl.html,318994,"The Other Boleyn Girl (The Tudor Court, #2)" +4.26,9131,0060853980,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,1990,/genres/fantasy|/genres/fiction|/genres/humor|/genres/humor|/genres/comedy|/genres/fantasy|/genres/urban-fantasy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny|/genres/science-fiction,dir02/12067.Good_Omens.html,206975,Good Omens +3.76,4890,0099910101,good_reads:book,https://www.goodreads.com/author/show/1455.Ernest_Hemingway,1929,/genres/classics|/genres/fiction|/genres/literature|/genres/war|/genres/historical-fiction|/genres/novels|/genres/literature|/genres/american|/genres/romance|/genres/academic|/genres/school|/genres/classics|/genres/classic-literature,dir02/10799.A_Farewell_to_Arms.html,146375,A Farewell to Arms +4.32,2851,0679805273,good_reads:book,https://www.goodreads.com/author/show/61105.Dr_Seuss,1990,/genres/childrens|/genres/childrens|/genres/picture-books|/genres/fiction|/genres/classics|/genres/poetry|/genres/fantasy|/genres/young-adult|/genres/inspirational|/genres/kids|/genres/humor,dir02/191139.Oh_The_Places_You_ll_Go_.html,173666,"Oh, The Places You'll Go!" +3.77,4102,0439227143,good_reads:book,https://www.goodreads.com/author/show/1240.Jack_London,1903,/genres/classics|/genres/young-adult|/genres/literature|/genres/academic|/genres/school|/genres/childrens|/genres/animals|/genres/dogs|/genres/literature|/genres/american|/genres/classics|/genres/classic-literature|/genres/academic|/genres/read-for-school,dir02/1852.The_Call_of_the_Wild.html,169714,The Call of the Wild +3.81,3566,0141439742,good_reads:book,https://www.goodreads.com/author/show/239579.Charles_Dickens,1839,/genres/classics|/genres/fiction|/genres/literature|/genres/historical-fiction|/genres/novels|/genres/classics|/genres/classic-literature|/genres/literature|/genres/19th-century|/genres/european-literature|/genres/british-literature|/genres/young-adult|/genres/academic|/genres/school,dir02/18254.Oliver_Twist.html,165705,Oliver Twist +4.48,8134,1595143068,good_reads:book,https://www.goodreads.com/author/show/137902.Richelle_Mead,2009,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/fiction|/genres/fantasy|/genres/young-adult|/genres/teen,dir02/6527740-last-sacrifice.html,138061,"Last Sacrifice (Vampire Academy, #6)" +3.98,5041,0517223627,good_reads:book,https://www.goodreads.com/author/show/8164.Lewis_Carroll,1865,/genres/classics|/genres/fantasy|/genres/fiction|/genres/childrens|/genres/young-adult|/genres/adventure,dir02/13023.Alice_in_Wonderland.html,219370,Alice in Wonderland (Alice's Adventures in Wonderland #1) +3.94,6594,0439366771,good_reads:book,https://www.goodreads.com/author/show/1949.Katherine_Paterson,1977,/genres/young-adult|/genres/childrens|/genres/fantasy|/genres/classics|/genres/realistic-fiction|/genres/childrens|/genres/middle-grade|/genres/academic|/genres/school|/genres/childrens|/genres/juvenile|/genres/academic|/genres/read-for-school|/genres/adventure,dir02/2839.Bridge_to_Terabithia.html,248693,Bridge to Terabithia +4.39,6212,1595142509,good_reads:book,https://www.goodreads.com/author/show/137902.Richelle_Mead,2010,/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural,dir02/6479259-spirit-bound.html,180067,"Spirit Bound (Vampire Academy, #5)" +4.33,2249,0440178002,good_reads:book,https://www.goodreads.com/author/show/6417.James_Clavell,1975,/genres/historical-fiction|/genres/cultural|/genres/japan|/genres/classics|/genres/adventure|/genres/cultural|/genres/asia|/genres/literature|/genres/novels|/genres/literature|/genres/asian-literature|/genres/fiction|/genres/asian-literature|/genres/japanese-literature,dir02/402093.Sh_gun.html,79596,"Shōgun (Asian Saga, #3)" +4.19,27934,0307269981,good_reads:book,https://www.goodreads.com/author/show/706255.Stieg_Larsson,2006,/genres/mystery|/genres/crime|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/contemporary|/genres/adult|/genres/mystery|/genres/thriller|/genres/adult-fiction,dir02/5060378-the-girl-who-played-with-fire.html,443385,"The Girl Who Played with Fire (Millennium, #2)" +3.75,14109,0385738935,good_reads:book,https://www.goodreads.com/author/show/2905297.Lauren_Kate,2009,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/angels|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/paranormal,dir02/6487308-fallen.html,274191,"Fallen (Fallen, #1)" +3.87,9222,0802130208,good_reads:book,https://www.goodreads.com/author/show/3049.John_Kennedy_Toole,1980,/genres/fiction|/genres/classics|/genres/humor|/genres/literature|/genres/book-club|/genres/novels|/genres/humor|/genres/comedy|/genres/literature|/genres/american,dir02/310612.A_Confederacy_of_Dunces.html,133699,A Confederacy of Dunces +3.79,5198,0753453800,good_reads:book,https://www.goodreads.com/author/show/854076.Robert_Louis_Stevenson,1883,/genres/classics|/genres/fiction|/genres/adventure|/genres/young-adult|/genres/childrens|/genres/historical-fiction|/genres/adventure|/genres/pirates|/genres/fantasy,dir02/295.Treasure_Island.html,209608,Treasure Island +4.36,8996,1423101464,good_reads:book,https://www.goodreads.com/author/show/15872.Rick_Riordan,2008,/genres/young-adult|/genres/fantasy|/genres/mythology|/genres/fiction|/genres/adventure|/genres/childrens|/genres/mythology|/genres/greek-mythology|/genres/childrens|/genres/middle-grade|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/magic,dir02/2120932.The_Battle_of_the_Labyrinth.html,360183,"The Battle of the Labyrinth (Percy Jackson and the Olympians, #4)" +3.93,3223,0140439447,good_reads:book,https://www.goodreads.com/author/show/239579.Charles_Dickens,1850,/genres/classics|/genres/fiction|/genres/literature|/genres/historical-fiction|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/literature|/genres/19th-century|/genres/classics|/genres/classic-literature,dir02/58696.David_Copperfield.html,115291,David Copperfield +3.82,6885,0743297334,good_reads:book,https://www.goodreads.com/author/show/1455.Ernest_Hemingway,1926,/genres/classics|/genres/literature|/genres/novels|/genres/literature|/genres/american|/genres/academic|/genres/school|/genres/book-club|/genres/historical-fiction|/genres/classics|/genres/classic-literature|/genres/fiction|/genres/literary-fiction,dir02/3876.The_Sun_Also_Rises.html,215107,The Sun Also Rises +3.78,7786,0671021001,good_reads:book,https://www.goodreads.com/author/show/3505.Wally_Lamb,1992,/genres/fiction|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/book-club|/genres/adult-fiction|/genres/novels|/genres/adult|/genres/drama|/genres/literary-fiction|/genres/young-adult|/genres/coming-of-age,dir02/5203.She_s_Come_Undone.html,202811,She's Come Undone +3.97,17654,0618711651,good_reads:book,https://www.goodreads.com/author/show/2617.Jonathan_Safran_Foer,2005,/genres/fiction|/genres/book-club|/genres/contemporary|/genres/historical-fiction|/genres/novels|/genres/adult-fiction|/genres/literature|/genres/adult|/genres/literary-fiction|/genres/literature|/genres/american,dir02/4588.Extremely_Loud_and_Incredibly_Close.html,229001,Extremely Loud and Incredibly Close +4.20,13257,0786856866,good_reads:book,https://www.goodreads.com/author/show/15872.Rick_Riordan,2006,/genres/young-adult|/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/mythology|/genres/childrens|/genres/mythology|/genres/greek-mythology|/genres/childrens|/genres/middle-grade|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/teen,dir02/28186.The_Sea_of_Monsters.html,350206,"The Sea of Monsters (Percy Jackson and the Olympians, #2)" +4.15,10094,0060764899,good_reads:book,https://www.goodreads.com/author/show/1069006.C_S_Lewis,1950,/genres/science-fiction-fantasy|/genres/christian-fiction|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/childrens|/genres/novels|/genres/young-adult|/genres/fantasy|/genres/high-fantasy|/genres/european-literature|/genres/british-literature|/genres/religion,dir02/100915.The_Lion_the_Witch_and_the_Wardrobe.html,956559,"The Lion, the Witch, and the Wardrobe (Chronicles of Narnia, #1)" +4.06,8630,,good_reads:book,https://www.goodreads.com/author/show/941441.Stephenie_Meyer,2008,/genres/young-adult|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/urban-fantasy,dir02/4502877-midnight-sun.html,124018,"Midnight Sun (Twilight, #1.5)" +4.33,1034,0340606517,good_reads:book,https://www.goodreads.com/author/show/6900.Thomas_Keneally,1982,/genres/history|/genres/classics|/genres/world-war-ii|/genres/holocaust|/genres/war|/genres/biography|/genres/non-fiction|/genres/history|/genres/world-war-ii,dir02/375013.Schindler_s_List.html,87241,Schindler's List +3.71,5256,1400033411,good_reads:book,https://www.goodreads.com/author/show/3534.Toni_Morrison,1987,/genres/fiction|/genres/classics|/genres/historical-fiction|/genres/literature|/genres/cultural|/genres/african-american|/genres/novels|/genres/magical-realism|/genres/academic|/genres/school|/genres/literature|/genres/american|/genres/literary-fiction,dir02/6149.Beloved.html,176710,Beloved +3.80,16433,0545123267,good_reads:book,https://www.goodreads.com/author/show/1330292.Maggie_Stiefvater,2008,/genres/young-adult|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/teen,dir02/6068551-shiver.html,254332,"Shiver (The Wolves of Mercy Falls, #1)" +3.80,6237,0452287022,good_reads:book,https://www.goodreads.com/author/show/1973.Tracy_Chevalier,1999,/genres/historical-fiction|/genres/fiction|/genres/classics|/genres/art|/genres/book-club|/genres/romance|/genres/adult-fiction|/genres/adult|/genres/novels|/genres/literature,dir02/2865.Girl_With_a_Pearl_Earring.html,331962,Girl With a Pearl Earring +3.49,3583,0142437336,good_reads:book,https://www.goodreads.com/author/show/8120.Arthur_Miller,1953,/genres/classics|/genres/plays|/genres/fiction|/genres/historical-fiction|/genres/drama|/genres/academic|/genres/school|/genres/academic|/genres/read-for-school|/genres/literature|/genres/young-adult|/genres/high-school|/genres/plays|/genres/theatre,dir03/17250.The_Crucible.html,170672,The Crucible +4.23,3896,0440238609,good_reads:book,https://www.goodreads.com/author/show/3618.Philip_Pullman,2000,/genres/fantasy|/genres/young-adult|/genres/science-fiction-fantasy|/genres/childrens|/genres/science-fiction|/genres/adventure|/genres/science-fiction|/genres/steampunk|/genres/classics|/genres/religion|/genres/fantasy|/genres/magic,dir03/18116.His_Dark_Materials.html,77343,His Dark Materials (His Dark Materials #1-3) +4.41,5884,0553256696,good_reads:book,https://www.goodreads.com/author/show/102203.Corrie_ten_Boom,1971,/genres/non-fiction|/genres/biography|/genres/history|/genres/christian|/genres/classics|/genres/autobiography|/genres/memoir|/genres/world-war-ii|/genres/holocaust|/genres/book-club|/genres/history|/genres/world-war-ii|/genres/inspirational,dir03/561909.The_Hiding_Place.html,115878,The Hiding Place +4.19,3433,0142437018,good_reads:book,https://www.goodreads.com/author/show/2041.Frances_Hodgson_Burnett,1905,/genres/classics|/genres/fiction|/genres/childrens|/genres/young-adult|/genres/historical-fiction|/genres/childrens|/genres/juvenile|/genres/literature|/genres/childrens|/genres/middle-grade|/genres/european-literature|/genres/british-literature|/genres/classics|/genres/classic-literature,dir03/3008.A_Little_Princess.html,141781,A Little Princess +4.30,9761,0141382899,good_reads:book,https://www.goodreads.com/author/show/15872.Rick_Riordan,2007,/genres/fiction|/genres/childrens|/genres/mythology|/genres/greek-mythology|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/teen|/genres/action|/genres/science-fiction-fantasy|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/young-adult-fantasy,dir03/561456.The_Titan_s_Curse.html,272457,"The Titan's Curse (Percy Jackson and the Olympians, #3)" +4.09,11916,0739461192,good_reads:book,https://www.goodreads.com/author/show/8002.John_Grogan,2005,/genres/non-fiction|/genres/animals|/genres/autobiography|/genres/memoir|/genres/biography|/genres/animals|/genres/dogs|/genres/humor|/genres/book-club|/genres/adult|/genres/biography-memoir|/genres/contemporary,dir03/12691.Marley_and_Me.html,266456,Marley and Me +3.78,10932,0312360266,good_reads:book,https://www.goodreads.com/author/show/17015.P_C_Cast,2007,/genres/romance|/genres/paranormal-romance|/genres/young-adult|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen|/genres/science-fiction-fantasy|/genres/fiction,dir03/30183.Marked.html,274193,Marked (House of Night #1) +4.15,2594,0525457585,good_reads:book,https://www.goodreads.com/author/show/15619.Michael_Ende,1979,/genres/childrens|/genres/young-adult|/genres/adventure|/genres/science-fiction-fantasy|/genres/novels|/genres/fantasy|/genres/magic|/genres/writing|/genres/books-about-books|/genres/fantasy|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/middle-grade,dir03/27712.The_Neverending_Story.html,85501,The Neverending Story +4.18,5328,0140285601,good_reads:book,https://www.goodreads.com/author/show/2778055.Kurt_Vonnegut,1963,/genres/fiction|/genres/classics|/genres/science-fiction|/genres/literature|/genres/humor|/genres/novels|/genres/science-fiction|/genres/dystopia,dir03/135479.Cat_s_Cradle.html,189850,Cat's Cradle +3.69,64489,1612130291,good_reads:book,https://www.goodreads.com/author/show/4725841.E_L_James,2011,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/adult|/genres/erotica|/genres/bdsm|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/book-club|/genres/romance|/genres/contemporary-romance|/genres/romance|/genres/erotic-romance|/genres/adult-fiction,dir03/10818853-fifty-shades-of-grey.html,922131,"Fifty Shades of Grey (Fifty Shades, #1)" +3.95,2656,0143039091,good_reads:book,https://www.goodreads.com/author/show/3843.Kenneth_Grahame,1908,/genres/classics|/genres/fiction|/genres/childrens|/genres/fantasy|/genres/young-adult|/genres/animals,dir03/5659.The_Wind_in_the_Willows.html,93599,The Wind in the Willows +4.18,6333,0062023179,good_reads:book,https://www.goodreads.com/author/show/1069006.C_S_Lewis,1942,/genres/fiction|/genres/classics|/genres/religion|/genres/christian|/genres/religion|/genres/christianity|/genres/religion|/genres/theology|/genres/spirituality|/genres/philosophy|/genres/religion|/genres/faith|/genres/fantasy,dir03/17383917-the-screwtape-letters.html,154753,The Screwtape Letters +3.87,16857,0689865384,good_reads:book,https://www.goodreads.com/author/show/13957.Scott_Westerfeld,2005,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/romance|/genres/young-adult|/genres/teen|/genres/adventure|/genres/apocalyptic|/genres/post-apocalyptic|/genres/science-fiction-fantasy,dir03/24770.Uglies.html,308160,"Uglies (Uglies, #1)" +4.27,1867,0380002558,good_reads:book,https://www.goodreads.com/author/show/83846.Margery_Williams,1922,/genres/childrens|/genres/classics|/genres/fiction|/genres/childrens|/genres/picture-books|/genres/fantasy|/genres/animals|/genres/childrens|/genres/juvenile|/genres/young-adult|/genres/kids|/genres/fantasy|/genres/fairy-tales,dir03/144974.The_Velveteen_Rabbit.html,138672,The Velveteen Rabbit +4.21,311,0307346668,good_reads:book,https://www.goodreads.com/author/show/286014.Ki_Longfellow,2005,/genres/historical-fiction|/genres/religion|/genres/literature|/genres/spirituality,dir03/514811.The_Secret_Magdalene.html,2404,The Secret Magdalene +3.88,6392,0679457313,good_reads:book,https://www.goodreads.com/author/show/6134.Arundhati_Roy,1997,/genres/fiction|/genres/cultural|/genres/india|/genres/contemporary|/genres/literature|/genres/book-club|/genres/novels|/genres/asian-literature|/genres/indian-literature|/genres/historical-fiction|/genres/literary-fiction,dir03/9777.The_God_of_Small_Things.html,131789,The God of Small Things +4.33,1734,0060513063,good_reads:book,https://www.goodreads.com/author/show/435477.Shel_Silverstein,1981,/genres/poetry|/genres/childrens|/genres/classics|/genres/fiction|/genres/humor|/genres/young-adult|/genres/childrens|/genres/picture-books|/genres/childrens|/genres/juvenile|/genres/kids|/genres/humor|/genres/funny,dir03/30118.A_Light_in_the_Attic.html,211261,A Light in the Attic +3.66,23731,0964729237,good_reads:book,https://www.goodreads.com/author/show/806593.Wm_Paul_Young,2007,/genres/fiction|/genres/christian|/genres/christian-fiction|/genres/book-club|/genres/religion|/genres/spirituality|/genres/inspirational|/genres/religion|/genres/faith|/genres/religion|/genres/christianity|/genres/adult,dir03/1812457.The_Shack.html,285933,The Shack +4.14,6419,0060987561,good_reads:book,https://www.goodreads.com/author/show/3505.Wally_Lamb,1998,/genres/literature|/genres/contemporary|/genres/literary-fiction|/genres/book-club|/genres/novels|/genres/family|/genres/realistic-fiction|/genres/adult-fiction|/genres/modern|/genres/womens-fiction|/genres/chick-lit,dir03/227711.I_Know_This_Much_Is_True.html,199559,I Know This Much Is True +4.32,5438,080701429X,good_reads:book,https://www.goodreads.com/author/show/2782.Viktor_E_Frankl,1946,/genres/non-fiction|/genres/psychology|/genres/philosophy|/genres/history|/genres/autobiography|/genres/memoir|/genres/biography|/genres/classics|/genres/self-help|/genres/world-war-ii|/genres/holocaust|/genres/spirituality,dir03/4069.Man_s_Search_for_Meaning.html,93850,Man's Search for Meaning +4.18,7406,0965341984,good_reads:book,https://www.goodreads.com/author/show/3354.Haruki_Murakami,1994,/genres/magical-realism|/genres/fantasy|/genres/literature|/genres/contemporary|/genres/novels|/genres/mystery|/genres/book-club|/genres/cultural|/genres/asia|/genres/literary-fiction|/genres/literature|/genres/asian-literature,dir03/11275.The_Wind_Up_Bird_Chronicle.html,103389,The Wind-Up Bird Chronicle +4.08,3756,0679785892,good_reads:book,https://www.goodreads.com/author/show/5237.Hunter_S_Thompson,1971,/genres/fiction|/genres/classics|/genres/humor|/genres/writing|/genres/journalism|/genres/contemporary|/genres/literature|/genres/literature|/genres/american|/genres/novels|/genres/travel|/genres/humor|/genres/comedy,dir03/7745.Fear_and_Loathing_in_Las_Vegas.html,164347,Fear and Loathing in Las Vegas +4.53,15256,055357342X,good_reads:book,https://www.goodreads.com/author/show/346732.George_R_R_Martin,2000,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/epic|/genres/adult|/genres/adventure|/genres/fantasy|/genres/dragons|/genres/fantasy|/genres/magic,dir03/62291.A_Storm_of_Swords.html,327992,"A Storm of Swords (A Song of Ice and Fire, #3)" +4.06,24213,1595141715,good_reads:book,https://www.goodreads.com/author/show/569269.Jay_Asher,2007,/genres/young-adult|/genres/contemporary|/genres/fiction|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/mystery,dir03/1217100.Thirteen_Reasons_Why.html,305767,Thirteen Reasons Why +4.39,1891,0440174643,good_reads:book,https://www.goodreads.com/author/show/17434.Alex_Haley,1976,/genres/historical-fiction|/genres/classics|/genres/cultural|/genres/african-american|/genres/cultural|/genres/africa|/genres/literature|/genres/novels|/genres/literature|/genres/american|/genres/race|/genres/adult|/genres/adult-fiction,dir03/546018.Roots.html,90460,Roots +3.85,3907,0679732241,good_reads:book,https://www.goodreads.com/author/show/3535.William_Faulkner,1929,/genres/literature|/genres/classics|/genres/literature|/genres/american|/genres/novels|/genres/academic|/genres/school|/genres/literature|/genres/20th-century|/genres/american|/genres/southern|/genres/gothic|/genres/southern-gothic|/genres/book-club|/genres/literary-fiction,dir03/10975.The_Sound_and_the_Fury.html,98118,The Sound and the Fury +4.27,8690,0380813815,good_reads:book,https://www.goodreads.com/author/show/16218.Christopher_Moore,2002,/genres/humor|/genres/historical-fiction|/genres/fantasy|/genres/religion|/genres/humor|/genres/comedy|/genres/book-club|/genres/adult|/genres/adult-fiction|/genres/novels|/genres/humor|/genres/funny,dir03/28881.Lamb.html,94242,Lamb +3.94,6578,0590920685,good_reads:book,https://www.goodreads.com/author/show/13677.Gail_Carson_Levine,1997,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/romance|/genres/fantasy|/genres/fairy-tales|/genres/childrens|/genres/fantasy|/genres/magic|/genres/childrens|/genres/middle-grade|/genres/adventure|/genres/classics,dir03/24337.Ella_Enchanted.html,250828,Ella Enchanted +4.03,7336,0156007754,good_reads:book,https://www.goodreads.com/author/show/1285555.Jos_Saramago,1995,/genres/science-fiction|/genres/book-club|/genres/literature|/genres/science-fiction|/genres/dystopia|/genres/novels|/genres/classics|/genres/contemporary|/genres/horror|/genres/apocalyptic|/genres/post-apocalyptic,dir03/2526.Blindness.html,87337,"Blindness (Blindness, #1)" +3.79,3886,0618391118,good_reads:book,https://www.goodreads.com/author/show/656983.J_R_R_Tolkien,1977,/genres/fantasy|/genres/classics|/genres/science-fiction-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/literature|/genres/fantasy|/genres/mythology,dir03/7332.The_Silmarillion.html,108607,The Silmarillion +4.07,2334,0441627404,good_reads:book,https://www.goodreads.com/author/show/426944.T_H_White,1958,/genres/fantasy|/genres/classics|/genres/fiction|/genres/historical-fiction|/genres/mythology|/genres/arthurian|/genres/fantasy|/genres/mythology|/genres/science-fiction-fantasy|/genres/young-adult|/genres/literature,dir03/43545.The_Once_and_Future_King.html,66600,The Once and Future King (The Once and Future King #1-4) +4.05,2337,0099446782,good_reads:book,https://www.goodreads.com/author/show/12455.Thomas_Harris,1988,/genres/horror|/genres/thriller|/genres/mystery|/genres/mystery|/genres/crime|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/classics|/genres/adult,dir03/23807.The_Silence_of_the_Lambs.html,278405,"The Silence of the Lambs (Hannibal Lecter, #2)" +3.76,5103,0440439884,good_reads:book,https://www.goodreads.com/author/show/4999.Scott_O_Dell,1960,/genres/young-adult|/genres/fiction|/genres/historical-fiction|/genres/childrens|/genres/classics|/genres/adventure|/genres/academic|/genres/school|/genres/adventure|/genres/survival|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile,dir03/233818.Island_of_the_Blue_Dolphins.html,185607,Island of the Blue Dolphins (Island of the Blue Dolphins #1) +3.88,4560,0316182540,good_reads:book,https://www.goodreads.com/author/show/3540.Janet_Fitch,1999,/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/adult-fiction|/genres/drama|/genres/book-club|/genres/young-adult|/genres/coming-of-age|/genres/adult|/genres/novels|/genres/young-adult|/genres/literature,dir03/32234.White_Oleander.html,185903,White Oleander +3.98,2662,0099428644,good_reads:book,https://www.goodreads.com/author/show/5223.Franz_Kafka,1925,/genres/classics|/genres/literature|/genres/european-literature|/genres/german-literature|/genres/philosophy|/genres/novels|/genres/science-fiction|/genres/dystopia,dir03/17690.The_Trial.html,97826,The Trial +3.97,3021,0060809248,good_reads:book,https://www.goodreads.com/author/show/9057.Gaston_Leroux,1910,/genres/classics|/genres/fiction|/genres/horror|/genres/romance|/genres/mystery|/genres/gothic|/genres/historical-fiction|/genres/literature|/genres/cultural|/genres/france|/genres/fantasy,dir03/480204.The_Phantom_of_the_Opera.html,109018,The Phantom of the Opera +3.86,4448,0441788386,good_reads:book,https://www.goodreads.com/author/show/205.Robert_A_Heinlein,1961,/genres/science-fiction|/genres/classics|/genres/science-fiction-fantasy|/genres/fantasy,dir03/350.Stranger_in_a_Strange_Land.html,169571,Stranger in a Strange Land +3.86,4686,030734813X,good_reads:book,https://www.goodreads.com/author/show/5194.Michael_Crichton,1990,/genres/fiction|/genres/science-fiction|/genres/classics|/genres/literature|/genres/thriller|/genres/young-adult|/genres/high-school|/genres/literature|/genres/20th-century,dir03/7677.Jurassic_Park.html,471307,"Jurassic Park (Jurassic Park, #1)" +3.74,12064,0751537284,good_reads:book,https://www.goodreads.com/author/show/5918.Elizabeth_Kostova,2003,/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/mystery|/genres/fantasy|/genres/paranormal|/genres/gothic|/genres/thriller|/genres/book-club|/genres/fantasy|/genres/supernatural|/genres/adult|/genres/adult-fiction,dir03/10692.The_Historian.html,163212,The Historian +4.10,33716,0385340990,good_reads:book,https://www.goodreads.com/author/show/1194527.Mary_Ann_Shaffer,2007,/genres/historical-fiction|/genres/book-club|/genres/romance|/genres/adult-fiction|/genres/adult|/genres/history|/genres/world-war-ii|/genres/war|/genres/writing|/genres/books-about-books|/genres/european-literature|/genres/british-literature|/genres/womens-fiction|/genres/chick-lit,dir03/2728527-the-guernsey-literary-and-potato-peel-pie-society.html,303572,The Guernsey Literary and Potato Peel Pie Society +3.93,3228,0684803356,good_reads:book,https://www.goodreads.com/author/show/1455.Ernest_Hemingway,1940,/genres/classics|/genres/fiction|/genres/literature|/genres/war|/genres/historical-fiction|/genres/novels|/genres/literature|/genres/american,dir03/46170.For_Whom_the_Bell_Tolls.html,148169,For Whom the Bell Tolls +4.10,4031,0425200450,good_reads:book,https://www.goodreads.com/author/show/123715.Agatha_Christie,1934,/genres/mystery|/genres/fiction|/genres/classics|/genres/mystery|/genres/crime|/genres/mystery|/genres/detective|/genres/thriller|/genres/mystery-thriller|/genres/european-literature|/genres/british-literature|/genres/thriller|/genres/novels|/genres/book-club,dir03/16304.Murder_on_the_Orient_Express.html,98795,"Murder on the Orient Express (Hercule Poirot, #10)" +4.53,5404,0545265355,good_reads:book,https://www.goodreads.com/author/show/153394.Suzanne_Collins,2010,/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/romance|/genres/adventure,dir03/7938275-the-hunger-games-trilogy-boxset.html,102330,"The Hunger Games Trilogy Boxset (The Hunger Games, #1-3)" +4.01,2381,0345476883,good_reads:book,https://www.goodreads.com/author/show/7577.Anne_Rice,1985,/genres/horror|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/gothic|/genres/adult|/genres/science-fiction-fantasy,dir03/43814.The_Vampire_Lestat.html,116211,"The Vampire Lestat (The Vampire Chronicles, #2)" +3.93,15778,0743298020,good_reads:book,https://www.goodreads.com/author/show/22665.Diane_Setterfield,2006,/genres/fiction|/genres/mystery|/genres/book-club|/genres/historical-fiction|/genres/gothic|/genres/writing|/genres/books-about-books|/genres/adult|/genres/adult-fiction|/genres/fantasy|/genres/contemporary,dir03/40440.The_Thirteenth_Tale.html,169177,The Thirteenth Tale +3.86,2634,0743477553,good_reads:book,https://www.goodreads.com/author/show/947.William_Shakespeare,1603,/genres/classics|/genres/plays|/genres/drama|/genres/academic|/genres/school|/genres/literature|/genres/plays|/genres/theatre|/genres/poetry|/genres/academic|/genres/read-for-school|/genres/tragedy|/genres/european-literature|/genres/british-literature,dir03/12996.Othello.html,190893,Othello +4.01,365,0147712556,good_reads:book,https://www.goodreads.com/author/show/903.Homer,-800,/genres/classics|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/academic|/genres/school|/genres/adventure|/genres/classics|/genres/classic-literature|/genres/literature|/genres/ancient|/genres/young-adult|/genres/high-school|/genres/poetry|/genres/novels,dir03/1375.The_Iliad_The_Odyssey.html,35123,The Iliad/The Odyssey +4.15,11692,0140449264,good_reads:book,https://www.goodreads.com/author/show/4785.Alexandre_Dumas,1844,/genres/classics|/genres/fiction|/genres/adventure|/genres/literature|/genres/cultural|/genres/france|/genres/novels|/genres/classics|/genres/classic-literature,dir03/7126.The_Count_of_Monte_Cristo.html,443316,The Count of Monte Cristo +3.88,1915,074348276X,good_reads:book,https://www.goodreads.com/author/show/947.William_Shakespeare,1605,/genres/classics|/genres/plays|/genres/drama|/genres/fiction|/genres/literature|/genres/academic|/genres/school|/genres/plays|/genres/theatre|/genres/poetry|/genres/european-literature|/genres/british-literature|/genres/tragedy,dir03/12938.King_Lear.html,106791,King Lear +4.80,644,0740748475,good_reads:book,https://www.goodreads.com/author/show/13778.Bill_Watterson,2005,/genres/sequential-art|/genres/comics|/genres/humor|/genres/sequential-art|/genres/graphic-novels|/genres/fiction|/genres/classics|/genres/humor|/genres/comedy|/genres/graphic-novels-comics|/genres/comics|/genres/comic-book|/genres/sequential-art|/genres/comic-strips|/genres/childrens,dir03/24812.The_Complete_Calvin_and_Hobbes.html,22674,The Complete Calvin and Hobbes +4.16,3484,0553383809,good_reads:book,https://www.goodreads.com/author/show/2238.Isabel_Allende,1982,/genres/fiction|/genres/magical-realism|/genres/historical-fiction|/genres/classics|/genres/literature|/genres/fantasy|/genres/european-literature|/genres/spanish-literature|/genres/novels|/genres/romance|/genres/cultural|/genres/latin-american,dir03/9328.The_House_of_the_Spirits.html,100078,The House of the Spirits +4.31,2193,0751514624,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1981,/genres/horror|/genres/fiction|/genres/short-stories|/genres/thriller|/genres/mystery|/genres/fantasy|/genres/drama|/genres/suspense|/genres/classics|/genres/literature|/genres/american,dir03/39662.Different_Seasons_featuring_The_Shawshank_Redemption.html,103270,Different Seasons featuring The Shawshank Redemption +4.12,1151,1416523715,good_reads:book,https://www.goodreads.com/author/show/1438.Walt_Whitman,1855,/genres/classics|/genres/poetry|/genres/fiction|/genres/literature|/genres/american|/genres/literature|/genres/19th-century|/genres/classics|/genres/classic-literature|/genres/academic|/genres/school|/genres/adult|/genres/environment|/genres/nature|/genres/literature|/genres/banned-books,dir03/27494.Leaves_of_Grass.html,47942,Leaves of Grass +3.95,3469,0375814248,good_reads:book,https://www.goodreads.com/author/show/4273.Roald_Dahl,1961,/genres/childrens|/genres/fantasy|/genres/fiction|/genres/classics|/genres/young-adult,dir03/6689.James_and_the_Giant_Peach.html,198424,James and the Giant Peach +3.77,1830,0140424393,good_reads:book,https://www.goodreads.com/author/show/9876.John_Milton,1667,/genres/religion|/genres/fantasy|/genres/epic|/genres/classics|/genres/classic-literature|/genres/classics|/genres/philosophy|/genres/european-literature|/genres/british-literature|/genres/academic|/genres/college|/genres/fantasy|/genres/mythology|/genres/literature|/genres/17th-century,dir03/15997.Paradise_Lost.html,77956,Paradise Lost +3.77,4149,1840224029,good_reads:book,https://www.goodreads.com/author/show/26242.Harriet_Beecher_Stowe,1852,/genres/classics|/genres/fiction|/genres/historical-fiction|/genres/literature|/genres/literature|/genres/american|/genres/novels|/genres/classics|/genres/classic-literature|/genres/academic|/genres/school|/genres/literature|/genres/19th-century,dir03/46787.Uncle_Tom_s_Cabin.html,108941,Uncle Tom's Cabin +4.16,13452,1442403543,good_reads:book,https://www.goodreads.com/author/show/150038.Cassandra_Clare,2011,/genres/young-adult|/genres/paranormal|/genres/angels|/genres/paranormal|/genres/demons|/genres/young-adult|/genres/teen|/genres/paranormal|/genres/vampires|/genres/adventure,dir03/6752378-city-of-fallen-angels.html,224643,"City of Fallen Angels (The Mortal Instruments, #4)" +4.05,11842,0385751060,good_reads:book,https://www.goodreads.com/author/show/7195.John_Boyne,2006,/genres/historical-fiction|/genres/young-adult|/genres/world-war-ii|/genres/holocaust|/genres/war|/genres/classics|/genres/book-club|/genres/history|/genres/world-war-ii|/genres/childrens|/genres/academic|/genres/school|/genres/young-adult|/genres/teen,dir03/39999.The_Boy_in_the_Striped_Pajamas.html,173862,The Boy in the Striped Pajamas +3.74,3605,0486266893,good_reads:book,https://www.goodreads.com/author/show/5754446.Voltaire,1759,/genres/classics|/genres/fiction|/genres/philosophy|/genres/cultural|/genres/france|/genres/literature|/genres/humor|/genres/academic|/genres/school|/genres/european-literature|/genres/french-literature|/genres/literature|/genres/18th-century|/genres/novels,dir03/19380.Candide.html,113185,Candide +3.80,2747,0679732764,good_reads:book,https://www.goodreads.com/author/show/7508.Ralph_Ellison,1952,/genres/classics|/genres/fiction|/genres/literature|/genres/cultural|/genres/african-american|/genres/academic|/genres/school|/genres/novels|/genres/historical-fiction|/genres/literature|/genres/american|/genres/race|/genres/young-adult|/genres/high-school,dir03/16981.Invisible_Man.html,85856,Invisible Man +4.35,11228,142311339X,good_reads:book,https://www.goodreads.com/author/show/15872.Rick_Riordan,2010,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/mythology|/genres/adventure|/genres/mythology|/genres/greek-mythology,dir03/7736182-the-lost-hero.html,281762,"The Lost Hero (The Heroes of Olympus, #1)" +4.28,1927,0312965788,good_reads:book,https://www.goodreads.com/author/show/18062.James_Herriot,1972,/genres/non-fiction|/genres/animals|/genres/autobiography|/genres/memoir|/genres/biography|/genres/classics|/genres/humor|/genres/biography-memoir|/genres/biography|/genres/autobiography|/genres/european-literature|/genres/british-literature|/genres/environment|/genres/nature,dir03/32085.All_Creatures_Great_and_Small.html,71234,All Creatures Great and Small +4.06,2429,0786226749,good_reads:book,https://www.goodreads.com/author/show/3075.John_Irving,1985,/genres/literary-fiction|/genres/romance|/genres/literature|/genres/20th-century|/genres/literature|/genres/media-tie-in|/genres/movies|/genres/modern,dir03/4687.The_Cider_House_Rules.html,100816,The Cider House Rules +3.89,12551,0385486804,good_reads:book,https://www.goodreads.com/author/show/1235.Jon_Krakauer,1996,/genres/non-fiction|/genres/biography|/genres/adventure|/genres/travel|/genres/classics|/genres/environment|/genres/nature|/genres/autobiography|/genres/memoir|/genres/academic|/genres/school|/genres/book-club|/genres/adventure|/genres/survival,dir03/1845.Into_the_Wild.html,429644,Into the Wild +3.77,2393,0691096120,good_reads:book,https://www.goodreads.com/author/show/10264.Henry_David_Thoreau,1854,/genres/classics|/genres/non-fiction|/genres/philosophy|/genres/environment|/genres/nature|/genres/literature|/genres/autobiography|/genres/memoir|/genres/biography|/genres/writing|/genres/essays|/genres/literature|/genres/american|/genres/academic|/genres/school,dir03/16902.Walden.html,81621,Walden +4.04,19435,0061726834,good_reads:book,https://www.goodreads.com/author/show/2936493.Lauren_Oliver,2011,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fantasy|/genres/fiction,dir03/11614718-delirium.html,229511,"Delirium (Delirium, #1)" +3.60,3841,0543898083,good_reads:book,https://www.goodreads.com/author/show/5132.Kate_Chopin,1899,/genres/classics|/genres/fiction|/genres/feminism|/genres/literature|/genres/academic|/genres/school|/genres/historical-fiction|/genres/young-adult|/genres/high-school|/genres/academic|/genres/read-for-school|/genres/novels|/genres/literature|/genres/american,dir03/58345.The_Awakening.html,93427,The Awakening +4.18,2490,0553381547,good_reads:book,https://www.goodreads.com/author/show/6942.Pat_Conroy,1986,/genres/fiction|/genres/american|/genres/southern|/genres/contemporary|/genres/romance|/genres/classics|/genres/drama|/genres/literature|/genres/adult-fiction|/genres/literary-fiction|/genres/novels,dir03/16735.The_Prince_of_Tides.html,120826,The Prince of Tides +4.10,7306,0767902890,good_reads:book,https://www.goodreads.com/author/show/2330.Tim_O_Brien,1990,/genres/fiction|/genres/historical-fiction|/genres/war|/genres/classics|/genres/short-stories|/genres/academic|/genres/school|/genres/literature|/genres/book-club|/genres/war|/genres/military|/genres/academic|/genres/read-for-school,dir03/133518.The_Things_They_Carried.html,111586,The Things They Carried +3.87,3789,0689841582,good_reads:book,https://www.goodreads.com/author/show/12942.Judy_Blume,1970,/genres/young-adult|/genres/fiction|/genres/childrens|/genres/classics|/genres/realistic-fiction|/genres/young-adult|/genres/coming-of-age|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/young-adult|/genres/teen|/genres/literature|/genres/banned-books,dir03/37732.Are_You_There_God_It_s_Me_Margaret.html,124928,"Are You There God? It's Me, Margaret" +4.46,2039,037582913X,good_reads:book,https://www.goodreads.com/author/show/24824.Jon_Stone,1971,/genres/childrens|/genres/picture-books|/genres/childrens|/genres/fiction|/genres/humor|/genres/classics|/genres/kids|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/storytime|/genres/humor|/genres/funny|/genres/young-adult,dir03/44186.The_Monster_at_the_End_of_this_Book.html,78806,The Monster at the End of this Book +4.17,1464,0679736379,good_reads:book,https://www.goodreads.com/author/show/7565.William_Styron,1976,/genres/fiction|/genres/classics|/genres/historical-fiction|/genres/world-war-ii|/genres/holocaust|/genres/war|/genres/literature|/genres/history|/genres/world-war-ii|/genres/novels|/genres/literary-fiction|/genres/literature|/genres/american,dir03/228560.Sophie_s_Choice.html,52059,Sophie's Choice +4.33,3693,034541005X,good_reads:book,https://www.goodreads.com/author/show/63.Bryce_Courtenay,1989,/genres/classics|/genres/fiction|/genres/young-adult|/genres/coming-of-age|/genres/novels|/genres/literature|/genres/book-club|/genres/historical-fiction|/genres/drama|/genres/contemporary|/genres/academic|/genres/school,dir03/122.The_Power_of_One.html,40928,The Power of One +4.15,2114,0679642420,good_reads:book,https://www.goodreads.com/author/show/3137322.Fyodor_Dostoyevsky,1869,/genres/fiction|/genres/cultural|/genres/russia|/genres/literature|/genres/russian-literature|/genres/literature|/genres/classics|/genres/novels|/genres/literature|/genres/19th-century|/genres/philosophy,dir03/12505.The_Idiot.html,57607,The Idiot +4.38,15247,0553381695,good_reads:book,https://www.goodreads.com/author/show/346732.George_R_R_Martin,1998,/genres/fantasy|/genres/epic|/genres/science-fiction-fantasy|/genres/fantasy|/genres/dragons|/genres/war|/genres/novels|/genres/adult-fiction|/genres/science-fiction,dir03/10572.A_Clash_of_Kings.html,379437,"A Clash of Kings (A Song of Ice and Fire, #2)" +3.97,13033,014131088X,good_reads:book,https://www.goodreads.com/author/show/10003.Laurie_Halse_Anderson,1999,/genres/young-adult|/genres/fiction|/genres/realistic-fiction|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/academic|/genres/school|/genres/young-adult|/genres/high-school|/genres/young-adult|/genres/coming-of-age|/genres/sociology|/genres/abuse|/genres/drama,dir03/439288.Speak.html,246831,Speak +3.95,14914,0441008534,good_reads:book,https://www.goodreads.com/author/show/17061.Charlaine_Harris,2001,/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/romance|/genres/mystery|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/adult,dir03/301082.Dead_Until_Dark.html,353620,"Dead Until Dark (Sookie Stackhouse, #1)" +3.98,3927,0316769029,good_reads:book,https://www.goodreads.com/author/show/819789.J_D_Salinger,1957,/genres/fiction|/genres/classics|/genres/literature|/genres/short-stories|/genres/novels|/genres/literature|/genres/american,dir03/5113.Franny_and_Zooey.html,127120,Franny and Zooey +4.16,23642,030726999X,good_reads:book,https://www.goodreads.com/author/show/706255.Stieg_Larsson,2007,/genres/fiction|/genres/mystery|/genres/mystery|/genres/crime|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/contemporary|/genres/adult|/genres/thriller|/genres/cultural|/genres/sweden|/genres/adult-fiction,dir03/6892870-the-girl-who-kicked-the-hornet-s-nest.html,363443,"The Girl Who Kicked the Hornet's Nest (Millennium, #3)" +3.94,1729,0753454947,good_reads:book,https://www.goodreads.com/author/show/49.Johanna_Spyri,1880,/genres/classics|/genres/childrens|/genres/fiction|/genres/young-adult|/genres/historical-fiction|/genres/childrens|/genres/juvenile|/genres/literature|/genres/19th-century|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/childrens-classics|/genres/literature,dir03/93.Heidi.html,123744,Heidi +4.03,3575,0450417395,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1987,/genres/horror|/genres/fiction|/genres/thriller|/genres/suspense|/genres/mystery|/genres/novels|/genres/adult,dir03/10614.Misery.html,228937,Misery +3.90,9271,0060838728,good_reads:book,https://www.goodreads.com/author/show/7136914.Ann_Patchett,2001,/genres/fiction|/genres/book-club|/genres/contemporary|/genres/literary-fiction|/genres/novels|/genres/literature|/genres/adult-fiction|/genres/music|/genres/adult,dir03/5826.Bel_Canto.html,148007,Bel Canto +4.48,11827,1416975888,good_reads:book,https://www.goodreads.com/author/show/150038.Cassandra_Clare,2011,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/steampunk|/genres/romance|/genres/paranormal|/genres/angels|/genres/paranormal|/genres/vampires|/genres/historical-fiction,dir03/10025305-clockwork-prince.html,175876,"Clockwork Prince (The Infernal Devices, #2)" +4.50,663,0517053616,good_reads:book,https://www.goodreads.com/author/show/947.William_Shakespeare,1623,/genres/classics|/genres/poetry|/genres/fiction|/genres/drama|/genres/literature|/genres/plays|/genres/reference|/genres/plays|/genres/theatre|/genres/classics|/genres/classic-literature|/genres/european-literature|/genres/british-literature,dir03/569564.The_Complete_Works.html,35436,The Complete Works +4.58,15195,1406321346,good_reads:book,https://www.goodreads.com/author/show/150038.Cassandra_Clare,2013,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/science-fiction|/genres/steampunk|/genres/paranormal|/genres/angels|/genres/historical-fiction|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural,dir03/18335634-clockwork-princess.html,130161,"Clockwork Princess (The Infernal Devices, #3)" +4.46,133,0975925598,good_reads:book,https://www.goodreads.com/author/show/286014.Ki_Longfellow,2009,/genres/historical-fiction|/genres/cultural|/genres/egypt|/genres/literature|/genres/book-club|/genres/philosophy,dir03/6801755-flow-down-like-silver.html,1304,Flow Down Like Silver +3.83,8197,0439709105,good_reads:book,https://www.goodreads.com/author/show/15873.Cornelia_Funke,2003,/genres/young-adult|/genres/fiction|/genres/childrens|/genres/adventure|/genres/fantasy|/genres/magic|/genres/childrens|/genres/middle-grade|/genres/writing|/genres/books-about-books,dir03/28194.Inkheart.html,234736,"Inkheart (Inkworld, #1)" +4.16,9544,0060557818,good_reads:book,https://www.goodreads.com/author/show/1221698.Neil_Gaiman,1996,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/horror|/genres/adventure|/genres/young-adult,dir03/14497.Neverwhere.html,182148,Neverwhere +4.04,3727,0553803719,good_reads:book,https://www.goodreads.com/author/show/16667.Isaac_Asimov,1951,/genres/science-fiction|/genres/classics|/genres/science-fiction-fantasy|/genres/fantasy|/genres/science-fiction|/genres/space-opera|/genres/space|/genres/novels|/genres/speculative-fiction|/genres/fiction|/genres/literature,dir03/29579.Foundation.html,200448,"Foundation (Foundation, #1)" +4.10,14435,015206396X,good_reads:book,https://www.goodreads.com/author/show/1373880.Kristin_Cashore,2008,/genres/fiction|/genres/fantasy|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/young-adult-fantasy|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/supernatural,dir03/3236307-graceling.html,204715,"Graceling (Graceling Realm, #1)" +3.57,2792,0142437344,good_reads:book,https://www.goodreads.com/author/show/5144.James_Joyce,1916,/genres/classics|/genres/literature|/genres/european-literature|/genres/irish-literature|/genres/novels|/genres/cultural|/genres/ireland|/genres/academic|/genres/school|/genres/literature|/genres/20th-century,dir03/7588.A_Portrait_of_the_Artist_as_a_Young_Man.html,74247,A Portrait of the Artist as a Young Man +3.77,3906,0802142842,good_reads:book,https://www.goodreads.com/author/show/7130.Charles_Frazier,1994,/genres/fiction|/genres/historical-fiction|/genres/romance|/genres/military-history|/genres/civil-war|/genres/war|/genres/book-club|/genres/literature|/genres/classics|/genres/novels|/genres/adult-fiction,dir03/10920.Cold_Mountain.html,138975,Cold Mountain +3.89,3442,0451529170,good_reads:book,https://www.goodreads.com/author/show/173.George_Eliot,1872,/genres/classics|/genres/literature|/genres/literature|/genres/19th-century|/genres/historical-fiction|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/romance|/genres/classics|/genres/classic-literature|/genres/book-club|/genres/literary-fiction,dir03/19089.Middlemarch.html,73951,Middlemarch +3.83,4970,1857993284,good_reads:book,https://www.goodreads.com/author/show/1388082.Jostein_Gaarder,1991,/genres/fiction|/genres/philosophy|/genres/classics|/genres/novels|/genres/roman|/genres/modern,dir03/10959.Sophie_s_World.html,98179,Sophie's World +3.97,5563,0060764902,good_reads:book,https://www.goodreads.com/author/show/1069006.C_S_Lewis,1955,/genres/fantasy|/genres/classics|/genres/childrens|/genres/young-adult|/genres/science-fiction-fantasy|/genres/kids|/genres/adventure|/genres/christian|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/young-adult-fantasy,dir03/65605.The_Magician_s_Nephew.html,208641,"The Magician's Nephew (Chronicles of Narnia, #6)" +3.70,5992,014028009X,good_reads:book,https://www.goodreads.com/author/show/3090.Helen_Fielding,1996,/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/humor|/genres/contemporary|/genres/humor|/genres/funny|/genres/humor|/genres/comedy|/genres/adult|/genres/adult-fiction|/genres/european-literature|/genres/british-literature|/genres/novels,dir03/227443.Bridget_Jones_s_Diary.html,539148,"Bridget Jones's Diary (Bridget Jones, #1)" +4.02,28835,0385737947,good_reads:book,https://www.goodreads.com/author/show/348878.James_Dashner,2009,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fantasy|/genres/apocalyptic|/genres/post-apocalyptic|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/paranormal|/genres/contemporary|/genres/science-fiction-fantasy|/genres/adventure,dir03/6186357-the-maze-runner.html,295499,"The Maze Runner (Maze Runner, #1)" +4.17,6304,076790818X,good_reads:book,https://www.goodreads.com/author/show/7.Bill_Bryson,2003,/genres/science|/genres/history|/genres/non-fiction|/genres/humor|/genres/science|/genres/popular-science|/genres/science|/genres/physics|/genres/reference,dir03/21.A_Short_History_of_Nearly_Everything.html,132718,A Short History of Nearly Everything +4.29,5288,006441034X,good_reads:book,https://www.goodreads.com/author/show/4260.Diana_Wynne_Jones,1986,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/magic|/genres/childrens|/genres/adventure,dir03/6294.Howl_s_Moving_Castle.html,91023,"Howl's Moving Castle (Howl's Moving Castle, #1)" +4.20,19915,,good_reads:book,https://www.goodreads.com/author/show/4464118.Jamie_McGuire,2011,/genres/romance|/genres/new-adult|/genres/young-adult|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/academic|/genres/college|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/adult|/genres/love,dir03/11505797-beautiful-disaster.html,271613,"Beautiful Disaster (Beautiful, #1)" +4.22,2892,0375508414,good_reads:book,https://www.goodreads.com/author/show/6125.Fannie_Flagg,1987,/genres/historical-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/american|/genres/southern|/genres/classics|/genres/glbt|/genres/humor|/genres/contemporary|/genres/adult-fiction|/genres/book-club,dir04/9375.Fried_Green_Tomatoes_at_the_Whistle_Stop_Cafe.html,150350,Fried Green Tomatoes at the Whistle Stop Cafe +4.37,2058,,good_reads:book,https://www.goodreads.com/author/show/5158478.Anonymous,632,/genres/religion|/genres/classics|/genres/spirituality|/genres/history|/genres/non-fiction|/genres/fantasy|/genres/mythology,dir04/646462.The_Quran.html,29243,The Quran +3.55,6335,0385474547,good_reads:book,https://www.goodreads.com/author/show/8051.Chinua_Achebe,1958,/genres/classics|/genres/cultural|/genres/africa|/genres/historical-fiction|/genres/literature|/genres/academic|/genres/read-for-school|/genres/novels|/genres/young-adult|/genres/high-school|/genres/literature|/genres/african-literature|/genres/book-club|/genres/adult-fiction,dir04/37781.Things_Fall_Apart.html,150479,"Things Fall Apart (The African Trilogy, #1)" +3.76,3772,0151009988,good_reads:book,https://www.goodreads.com/author/show/6765.Virginia_Woolf,1925,/genres/classics|/genres/fiction|/genres/literature|/genres/novels|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/20th-century|/genres/feminism,dir04/14942.Mrs_Dalloway.html,98163,Mrs. Dalloway +4.54,572,0140259449,good_reads:book,https://www.goodreads.com/author/show/1265.Jane_Austen,1933,/genres/classics|/genres/fiction|/genres/romance|/genres/literature|/genres/historical-fiction|/genres/novels|/genres/regency|/genres/european-literature|/genres/british-literature|/genres/anthologies|/genres/classics|/genres/classic-literature,dir04/14905.The_Complete_Novels.html,17539,The Complete Novels +3.83,4333,0451528557,good_reads:book,https://www.goodreads.com/author/show/880695.H_G_Wells,1895,/genres/classics|/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/time-travel|/genres/fantasy|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/dystopia|/genres/literature|/genres/science-fiction|/genres/steampunk,dir04/2493.The_Time_Machine.html,191098,The Time Machine +4.38,3083,0451933028,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1996,/genres/novels|/genres/drama|/genres/fiction|/genres/horror|/genres/science-fiction|/genres/media-tie-in|/genres/movies|/genres/thriller|/genres/mystery-thriller|/genres/magical-realism|/genres/thriller|/genres/modern,dir04/11566.The_Green_Mile.html,130310,The Green Mile +3.54,4196,0743253973,good_reads:book,https://www.goodreads.com/author/show/3496.John_Knowles,1959,/genres/classics|/genres/fiction|/genres/young-adult|/genres/academic|/genres/school|/genres/historical-fiction|/genres/literature|/genres/academic|/genres/read-for-school|/genres/young-adult|/genres/high-school|/genres/young-adult|/genres/coming-of-age|/genres/novels,dir04/5148.A_Separate_Peace.html,124028,A Separate Peace +3.73,3801,,good_reads:book,https://www.goodreads.com/author/show/3535.William_Faulkner,1930,/genres/classics|/genres/fiction|/genres/literature|/genres/novels|/genres/literature|/genres/american|/genres/academic|/genres/school|/genres/american|/genres/southern,dir04/77013.As_I_Lay_Dying.html,76262,As I Lay Dying +4.15,25325,1554681723,good_reads:book,https://www.goodreads.com/author/show/194531.Garth_Stein,2008,/genres/fiction|/genres/book-club|/genres/animals|/genres/animals|/genres/dogs|/genres/contemporary|/genres/adult-fiction|/genres/adult|/genres/family|/genres/philosophy|/genres/realistic-fiction,dir04/3153910-the-art-of-racing-in-the-rain.html,242771,The Art of Racing in the Rain +4.16,7362,0312282990,good_reads:book,https://www.goodreads.com/author/show/2715.Michael_Chabon,2000,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/literature|/genres/novels|/genres/contemporary|/genres/sequential-art|/genres/comics|/genres/literary-fiction,dir04/3985.The_Amazing_Adventures_of_Kavalier_Clay.html,117620,The Amazing Adventures of Kavalier & Clay +3.97,9236,0446528056,good_reads:book,https://www.goodreads.com/author/show/2345.Nicholas_Sparks,2006,/genres/romance|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/adult|/genres/love|/genres/adult-fiction|/genres/drama|/genres/young-adult|/genres/realistic-fiction,dir04/5526.Dear_John.html,309307,Dear John +3.95,3097,0385338600,good_reads:book,https://www.goodreads.com/author/show/721.John_Grisham,1989,/genres/fiction|/genres/thriller|/genres/mystery|/genres/crime|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/adult-fiction|/genres/adult|/genres/mystery|/genres/novels|/genres/law,dir04/32542.A_Time_to_Kill.html,463135,"A Time to Kill (Jake Brigance, #1)" +3.72,4605,0060589469,good_reads:book,https://www.goodreads.com/author/show/401.Robert_M_Pirsig,1974,/genres/non-fiction|/genres/classics|/genres/spirituality|/genres/travel|/genres/literature|/genres/psychology|/genres/autobiography|/genres/memoir|/genres/religion|/genres/religion|/genres/buddhism|/genres/philosophy,dir04/629.Zen_and_the_Art_of_Motorcycle_Maintenance.html,107205,Zen and the Art of Motorcycle Maintenance +4.02,6880,0375704027,good_reads:book,https://www.goodreads.com/author/show/3354.Haruki_Murakami,1987,/genres/fiction|/genres/cultural|/genres/japan|/genres/asian-literature|/genres/japanese-literature|/genres/romance|/genres/contemporary|/genres/literature|/genres/novels|/genres/magical-realism|/genres/cultural|/genres/asia|/genres/book-club,dir04/11297.Norwegian_Wood.html,121903,Norwegian Wood +3.52,2560,0141439491,good_reads:book,https://www.goodreads.com/author/show/1831.Jonathan_Swift,1726,/genres/classics|/genres/fantasy|/genres/literature|/genres/adventure|/genres/novels|/genres/classics|/genres/classic-literature|/genres/academic|/genres/school|/genres/literature|/genres/18th-century,dir04/7733.Gulliver_s_Travels.html,127495,Gulliver's Travels +4.05,6858,1400031702,good_reads:book,https://www.goodreads.com/author/show/8719.Donna_Tartt,1992,/genres/fiction|/genres/mystery|/genres/contemporary|/genres/book-club|/genres/thriller|/genres/mystery|/genres/crime|/genres/novels|/genres/literature|/genres/literary-fiction,dir04/29044.The_Secret_History.html,94831,The Secret History +3.59,8028,031253275X,good_reads:book,https://www.goodreads.com/author/show/200317.Alyson_Noel,2009,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/teen,dir04/3975774-evermore.html,178600,"Evermore (The Immortals, #1)" +3.73,4483,1583485090,good_reads:book,https://www.goodreads.com/author/show/881203.Willa_Cather,1918,/genres/classics|/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/literature|/genres/academic|/genres/school|/genres/literature|/genres/american|/genres/novels|/genres/adult-fiction,dir04/17150.My_ntonia.html,74937,My Ántonia +4.23,8347,0451216954,good_reads:book,https://www.goodreads.com/author/show/20248.J_R_Ward,2005,/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/vampires|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/contemporary|/genres/adult-fiction|/genres/erotica|/genres/adult|/genres/fantasy|/genres/urban-fantasy|/genres/action,dir04/42899.Dark_Lover.html,166000,"Dark Lover (Black Dagger Brotherhood, #1)" +4.10,8071,1416989439,good_reads:book,https://www.goodreads.com/author/show/2876763.Becca_Fitzpatrick,2010,/genres/young-adult|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural,dir04/7791997-crescendo.html,167697,"Crescendo (Hush, Hush, #2)" +3.86,2417,0771068719,good_reads:book,https://www.goodreads.com/author/show/4030.Michael_Ondaatje,1992,/genres/historical-fiction|/genres/classics|/genres/romance|/genres/cultural|/genres/canada|/genres/literature|/genres/novels|/genres/contemporary|/genres/literary-fiction|/genres/history|/genres/world-war-ii|/genres/cultural|/genres/africa,dir04/11713.The_English_Patient.html,69152,The English Patient +3.76,6857,1416914633,good_reads:book,https://www.goodreads.com/author/show/69007.Beatrice_Sparks,1971,/genres/young-adult|/genres/fiction|/genres/classics|/genres/young-adult|/genres/teen|/genres/realistic-fiction|/genres/contemporary|/genres/psychology|/genres/literature|/genres/banned-books|/genres/drama|/genres/young-adult|/genres/coming-of-age,dir04/46799.Go_Ask_Alice.html,154354,Go Ask Alice +4.14,3329,0590032496,good_reads:book,https://www.goodreads.com/author/show/4273.Roald_Dahl,1983,/genres/childrens|/genres/fantasy|/genres/fiction|/genres/young-adult|/genres/classics,dir04/6327.The_Witches.html,154449,The Witches +4.13,890,0553212281,good_reads:book,https://www.goodreads.com/author/show/4624490.Edgar_Allan_Poe,1843,/genres/classics|/genres/horror|/genres/fiction|/genres/short-stories|/genres/poetry|/genres/literature|/genres/mystery|/genres/academic|/genres/school|/genres/gothic|/genres/classics|/genres/classic-literature,dir04/391729.The_Tell_Tale_Heart_and_Other_Writings.html,168732,The Tell-Tale Heart and Other Writings +4.24,2645,1401207928,good_reads:book,https://www.goodreads.com/author/show/3961.Alan_Moore,1982,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fiction|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/graphic-novels-comics|/genres/comics|/genres/comic-book,dir04/5805.V_for_Vendetta.html,142949,V for Vendetta +3.93,6559,0375840400,good_reads:book,https://www.goodreads.com/author/show/8349.Christopher_Paolini,2005,/genres/fantasy|/genres/science-fiction-fantasy|/genres/young-adult|/genres/young-adult-fantasy|/genres/fantasy|/genres/dragons|/genres/childrens,dir04/45978.Eldest.html,201615,"Eldest (The Inheritance Cycle, #2)" +3.38,3546,0393320979,good_reads:book,https://www.goodreads.com/author/show/4699102.Unknown,800,/genres/classics|/genres/poetry|/genres/fantasy|/genres/literature|/genres/academic|/genres/school|/genres/fantasy|/genres/mythology|/genres/historical-fiction|/genres/medieval|/genres/academic|/genres/read-for-school|/genres/epic|/genres/young-adult|/genres/high-school,dir04/52357.Beowulf.html,136848,Beowulf +3.79,4957,0141439807,good_reads:book,https://www.goodreads.com/author/show/1265.Jane_Austen,1814,/genres/romance|/genres/classics|/genres/historical-fiction|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/19th-century|/genres/classics|/genres/classic-literature|/genres/regency|/genres/romance|/genres/historical-romance|/genres/novels|/genres/adult,dir04/45032.Mansfield_Park.html,152538,Mansfield Park +3.93,23622,1612130585,good_reads:book,https://www.goodreads.com/author/show/4725841.E_L_James,2011,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/fiction|/genres/erotica|/genres/bdsm|/genres/adult|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/contemporary-romance|/genres/romance|/genres/erotic-romance|/genres/adult-fiction,dir04/11857408-fifty-shades-darker.html,431846,"Fifty Shades Darker (Fifty Shades, #2)" +3.77,17990,0316042676,good_reads:book,https://www.goodreads.com/author/show/2895706.Kami_Garcia,2009,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/paranormal|/genres/witches|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy,dir04/6304335-beautiful-creatures.html,295281,"Beautiful Creatures (Caster Chronicles, #1)" +4.00,36864,0385534639,good_reads:book,https://www.goodreads.com/author/show/4370565.Erin_Morgenstern,2010,/genres/fantasy|/genres/fiction|/genres/book-club|/genres/romance|/genres/historical-fiction|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/adult|/genres/magical-realism|/genres/adult-fiction,dir04/9361589-the-night-circus.html,271617,The Night Circus +4.04,8822,0061142026,good_reads:book,https://www.goodreads.com/author/show/1221698.Neil_Gaiman,1998,/genres/fantasy|/genres/fiction|/genres/young-adult|/genres/romance|/genres/science-fiction-fantasy|/genres/adventure|/genres/fantasy|/genres/magic|/genres/sequential-art|/genres/graphic-novels,dir04/16793.Stardust.html,187131,Stardust +4.32,3392,0920668372,good_reads:book,https://www.goodreads.com/author/show/6039100.Robert_Munsch,1986,/genres/childrens|/genres/childrens|/genres/picture-books|/genres/fiction|/genres/classics|/genres/family|/genres/love|/genres/kids|/genres/cultural|/genres/canada|/genres/realistic-fiction|/genres/childrens|/genres/juvenile,dir04/310259.Love_You_Forever.html,109952,Love You Forever +4.07,7140,0440227534,good_reads:book,https://www.goodreads.com/author/show/2493.Lois_Lowry,1989,/genres/childrens|/genres/classics|/genres/young-adult|/genres/world-war-ii|/genres/holocaust|/genres/academic|/genres/school|/genres/history|/genres/world-war-ii|/genres/academic|/genres/read-for-school|/genres/childrens|/genres/middle-grade|/genres/war|/genres/childrens|/genres/juvenile,dir04/47281.Number_the_Stars.html,270826,Number the Stars +3.78,15384,1400078776,good_reads:book,https://www.goodreads.com/author/show/4280.Kazuo_Ishiguro,2005,/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/book-club|/genres/contemporary|/genres/literature|/genres/adult|/genres/romance|/genres/novels|/genres/adult-fiction|/genres/literary-fiction,dir04/6334.Never_Let_Me_Go.html,209827,Never Let Me Go +4.11,7474,1400079276,good_reads:book,https://www.goodreads.com/author/show/3354.Haruki_Murakami,2002,/genres/asian-literature|/genres/japanese-literature|/genres/magical-realism|/genres/cultural|/genres/japan|/genres/fantasy|/genres/literature|/genres/novels|/genres/contemporary|/genres/cultural|/genres/asia|/genres/book-club|/genres/literary-fiction,dir04/4929.Kafka_on_the_Shore.html,111874,Kafka on the Shore +3.99,6738,0375826726,good_reads:book,https://www.goodreads.com/author/show/8349.Christopher_Paolini,2008,/genres/fantasy|/genres/dragons|/genres/fiction|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/magic|/genres/adventure|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/epic-fantasy,dir04/2248573.Brisingr.html,152384,"Brisingr (The Inheritance Cycle, #3)" +3.82,4961,0374480095,good_reads:book,https://www.goodreads.com/author/show/1954.Natalie_Babbitt,1974,/genres/classics|/genres/childrens|/genres/young-adult|/genres/academic|/genres/school|/genres/romance|/genres/historical-fiction|/genres/academic|/genres/read-for-school|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile,dir04/84981.Tuck_Everlasting.html,131914,Tuck Everlasting +4.31,2084,0679724346,good_reads:book,https://www.goodreads.com/author/show/2622245.Lao_Tzu,1989,/genres/non-fiction|/genres/religion|/genres/classics|/genres/spirituality|/genres/poetry|/genres/religion|/genres/taoism|/genres/cultural|/genres/china|/genres/philosophy|/genres/philosophy|/genres/eastern-philosophy|/genres/reference,dir04/67896.Tao_Te_Ching.html,56239,Tao Te Ching +3.92,2939,0582418275,good_reads:book,https://www.goodreads.com/author/show/721.John_Grisham,1991,/genres/fiction|/genres/thriller|/genres/mystery|/genres/suspense|/genres/mystery|/genres/crime|/genres/thriller|/genres/legal-thriller|/genres/thriller|/genres/mystery-thriller|/genres/law|/genres/novels|/genres/adult-fiction,dir04/5358.The_Firm.html,352806,The Firm +3.91,4669,0552995878,good_reads:book,https://www.goodreads.com/author/show/4694.Laura_Esquivel,1989,/genres/fiction|/genres/romance|/genres/magical-realism|/genres/historical-fiction|/genres/fantasy|/genres/food-and-drink|/genres/food|/genres/classics|/genres/adult-fiction|/genres/literature|/genres/novels,dir04/6952.Like_Water_for_Chocolate.html,228527,Like Water for Chocolate +4.02,3487,0451528018,good_reads:book,https://www.goodreads.com/author/show/2448.Arthur_Conan_Doyle,1901,/genres/classics|/genres/mystery|/genres/fiction|/genres/mystery|/genres/crime|/genres/mystery|/genres/detective|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/thriller|/genres/thriller|/genres/mystery-thriller|/genres/historical-fiction,dir04/8921.The_Hound_of_the_Baskervilles.html,105569,"The Hound of the Baskervilles (Sherlock Holmes, #5)" +4.12,9558,0446547565,good_reads:book,https://www.goodreads.com/author/show/2345.Nicholas_Sparks,2008,/genres/romance|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/contemporary|/genres/realistic-fiction|/genres/adult|/genres/love|/genres/drama|/genres/adult-fiction,dir04/6400090-the-last-song.html,304841,The Last Song +4.45,8173,1423140591,good_reads:book,https://www.goodreads.com/author/show/15872.Rick_Riordan,2011,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/mythology|/genres/adventure|/genres/fiction|/genres/mythology|/genres/greek-mythology|/genres/childrens|/genres/fantasy|/genres/magic|/genres/romance|/genres/childrens|/genres/middle-grade,dir04/9520360-the-son-of-neptune.html,199991,"The Son of Neptune (The Heroes of Olympus, #2)" +3.73,8678,0439488400,good_reads:book,https://www.goodreads.com/author/show/12696.Jerry_Spinelli,2000,/genres/young-adult|/genres/realistic-fiction|/genres/romance|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/childrens|/genres/academic|/genres/school|/genres/childrens|/genres/middle-grade,dir04/22232.Stargirl.html,172010,"Stargirl (Stargirl, #1)" +4.00,3630,0099578514,good_reads:book,https://www.goodreads.com/author/show/3299.Salman_Rushdie,1981,/genres/fiction|/genres/cultural|/genres/india|/genres/classics|/genres/magical-realism|/genres/historical-fiction|/genres/literature|/genres/fantasy|/genres/novels|/genres/asian-literature|/genres/indian-literature|/genres/book-club,dir04/14836.Midnight_s_Children.html,60592,Midnight's Children +4.09,7028,0446617792,good_reads:book,https://www.goodreads.com/author/show/3780.James_Patterson,2005,/genres/young-adult|/genres/fantasy|/genres/science-fiction|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/teen|/genres/action|/genres/mystery|/genres/fantasy|/genres/urban-fantasy,dir04/13152.The_Angel_Experiment.html,134422,"The Angel Experiment (Maximum Ride, #1)" +3.87,1870,0439236193,good_reads:book,https://www.goodreads.com/author/show/1240.Jack_London,1906,/genres/classics|/genres/adventure|/genres/animals|/genres/young-adult|/genres/literature|/genres/historical-fiction|/genres/childrens|/genres/novels|/genres/literature|/genres/american|/genres/classics|/genres/classic-literature,dir04/43035.White_Fang.html,73157,White Fang +4.05,4782,0345404475,good_reads:book,https://www.goodreads.com/author/show/4764.Philip_K_Dick,1968,/genres/science-fiction|/genres/fiction|/genres/classics|/genres/science-fiction|/genres/dystopia|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/cyberpunk|/genres/fantasy|/genres/novels|/genres/speculative-fiction|/genres/apocalyptic|/genres/post-apocalyptic,dir04/7082.Do_Androids_Dream_of_Electric_Sheep_.html,149516,Do Androids Dream of Electric Sheep? +4.03,4951,0440238153,good_reads:book,https://www.goodreads.com/author/show/3618.Philip_Pullman,1999,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/science-fiction|/genres/childrens|/genres/science-fiction|/genres/steampunk|/genres/science-fiction-fantasy|/genres/adventure,dir04/18122.The_Amber_Spyglass.html,149624,"The Amber Spyglass (His Dark Materials, #3)" +3.77,3073,0743225422,good_reads:book,https://www.goodreads.com/author/show/1262010.Annie_Proulx,1993,/genres/fiction|/genres/contemporary|/genres/literature|/genres/book-club|/genres/cultural|/genres/canada|/genres/literary-fiction|/genres/novels|/genres/classics|/genres/adult-fiction|/genres/literature|/genres/american,dir04/7354.The_Shipping_News.html,78575,The Shipping News +4.00,6887,0452284694,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1982,/genres/fantasy|/genres/fiction|/genres/horror|/genres/science-fiction|/genres/western|/genres/science-fiction-fantasy|/genres/adventure,dir04/43615.The_Gunslinger.html,223559,"The Gunslinger (The Dark Tower, #1)" +4.49,2056,0553328255,good_reads:book,https://www.goodreads.com/author/show/2448.Arthur_Conan_Doyle,1924,/genres/classics|/genres/mystery|/genres/mystery|/genres/crime|/genres/short-stories|/genres/literature|/genres/mystery|/genres/detective|/genres/historical-fiction,dir04/188572.The_Complete_Sherlock_Holmes.html,89192,The Complete Sherlock Holmes +4.02,1397,0679774386,good_reads:book,https://www.goodreads.com/author/show/7902.Boris_Pasternak,1957,/genres/fiction|/genres/historical-fiction|/genres/classics|/genres/literature|/genres/russian-literature|/genres/literature|/genres/romance|/genres/novels|/genres/war,dir04/130440.Doctor_Zhivago.html,47829,Doctor Zhivago +3.92,2158,0439228905,good_reads:book,https://www.goodreads.com/author/show/2530.Anna_Sewell,1877,/genres/classics|/genres/fiction|/genres/childrens|/genres/young-adult|/genres/animals|/genres/animals|/genres/horses|/genres/historical-fiction|/genres/literature|/genres/childrens|/genres/juvenile|/genres/adventure,dir04/3685.Black_Beauty.html,143489,Black Beauty +3.90,4341,0679745653,good_reads:book,https://www.goodreads.com/author/show/431149.Truman_Capote,1958,/genres/literature|/genres/literature|/genres/american|/genres/book-club|/genres/novels|/genres/literature|/genres/20th-century|/genres/classics|/genres/modern-classics|/genres/fiction|/genres/contemporary|/genres/classics|/genres/literary-fiction,dir04/251688.Breakfast_at_Tiffany_s.html,102899,Breakfast at Tiffany's +4.09,16143,0060530928,good_reads:book,https://www.goodreads.com/author/show/1221698.Neil_Gaiman,2007,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/horror|/genres/childrens|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/ghosts|/genres/fantasy|/genres/supernatural,dir04/2213661.The_Graveyard_Book.html,202566,The Graveyard Book +3.94,1162,0785819118,good_reads:book,https://www.goodreads.com/author/show/12793.Charles_Darwin,1859,/genres/science|/genres/non-fiction|/genres/classics|/genres/biology|/genres/evolution|/genres/science|/genres/biology|/genres/philosophy|/genres/history|/genres/environment|/genres/nature|/genres/science|/genres/natural-history|/genres/reference,dir04/22463.The_Origin_of_Species.html,45274,The Origin of Species +4.08,4459,0679879250,good_reads:book,https://www.goodreads.com/author/show/3618.Philip_Pullman,1996,/genres/young-adult|/genres/childrens|/genres/science-fiction|/genres/fantasy|/genres/science-fiction|/genres/steampunk|/genres/science-fiction-fantasy|/genres/young-adult|/genres/teen|/genres/religion|/genres/young-adult|/genres/young-adult-fantasy|/genres/novels,dir04/119324.The_Subtle_Knife.html,189366,"The Subtle Knife (His Dark Materials, #2)" +4.02,13595,0812968069,good_reads:book,https://www.goodreads.com/author/show/713.Lisa_See,2004,/genres/historical-fiction|/genres/book-club|/genres/cultural|/genres/china|/genres/cultural|/genres/asia|/genres/adult-fiction|/genres/adult|/genres/literature|/genres/asian-literature,dir04/1103.Snow_Flower_and_the_Secret_Fan.html,217926,Snow Flower and the Secret Fan +4.32,11770,1442416866,good_reads:book,https://www.goodreads.com/author/show/150038.Cassandra_Clare,2012,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/vampires|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/urban-fantasy,dir04/8755776-city-of-lost-souls.html,193107,"City of Lost Souls (The Mortal Instruments, #5)" +4.08,3486,0385334206,good_reads:book,https://www.goodreads.com/author/show/2778055.Kurt_Vonnegut,1973,/genres/fiction|/genres/classics|/genres/science-fiction|/genres/humor|/genres/literature|/genres/novels|/genres/literature|/genres/american,dir04/4980.Breakfast_of_Champions.html,138079,Breakfast of Champions +3.96,2461,0812970063,good_reads:book,https://www.goodreads.com/author/show/5031312.Dante_Alighieri,1314,/genres/classics|/genres/fiction|/genres/literature|/genres/religion|/genres/academic|/genres/school|/genres/fantasy|/genres/european-literature|/genres/italian-literature|/genres/historical-fiction|/genres/medieval|/genres/philosophy|/genres/classics|/genres/classic-literature,dir04/15645.Inferno.html,72009,"Inferno (The Divine Comedy, #1)" +4.31,5875,0385335970,good_reads:book,https://www.goodreads.com/author/show/3617.Diana_Gabaldon,1992,/genres/historical-fiction|/genres/romance|/genres/fantasy|/genres/fiction|/genres/science-fiction|/genres/time-travel|/genres/romance|/genres/historical-romance|/genres/cultural|/genres/scotland|/genres/adult,dir04/5364.Dragonfly_in_Amber.html,105522,"Dragonfly in Amber (Outlander, #2)" +3.45,2099,0435233076,good_reads:book,https://www.goodreads.com/author/show/8120.Arthur_Miller,1949,/genres/plays|/genres/fiction|/genres/drama|/genres/academic|/genres/school|/genres/classics|/genres/literature|/genres/academic|/genres/read-for-school|/genres/plays|/genres/theatre|/genres/young-adult|/genres/high-school|/genres/literature|/genres/american,dir04/12898.Death_of_a_Salesman.html,106564,Death of a Salesman +3.95,4195,0312360282,good_reads:book,https://www.goodreads.com/author/show/17015.P_C_Cast,2007,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/teen,dir04/676924.Betrayed.html,175739,Betrayed (House of Night #2) +3.95,3581,1573225517,good_reads:book,https://www.goodreads.com/author/show/2929.Nick_Hornby,1995,/genres/fiction|/genres/humor|/genres/contemporary|/genres/novels|/genres/romance|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/humor|/genres/comedy|/genres/humor|/genres/funny|/genres/music,dir04/285092.High_Fidelity.html,120986,High Fidelity +3.97,2819,0312379838,good_reads:book,https://www.goodreads.com/author/show/17015.P_C_Cast,2008,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/magic,dir04/2866718-untamed.html,164242,Untamed (House of Night #4) +3.96,1620,0822210894,good_reads:book,https://www.goodreads.com/author/show/7751.Tennessee_Williams,1947,/genres/classics|/genres/drama|/genres/fiction|/genres/plays|/genres/academic|/genres/school|/genres/plays|/genres/theatre|/genres/literature|/genres/american|/genres/literature|/genres/academic|/genres/read-for-school|/genres/young-adult|/genres/high-school,dir04/12220.A_Streetcar_Named_Desire.html,141684,A Streetcar Named Desire +3.92,572,0553213482,good_reads:book,https://www.goodreads.com/author/show/285217.Johann_Wolfgang_von_Goethe,1787,/genres/plays|/genres/poetry|/genres/literature|/genres/european-literature|/genres/german-literature|/genres/philosophy|/genres/literature|/genres/19th-century|/genres/plays|/genres/theatre|/genres/academic|/genres/read-for-school|/genres/classics|/genres/classic-literature|/genres/horror,dir04/14706.Faust.html,35699,Faust +3.93,21841,0345803507,good_reads:book,https://www.goodreads.com/author/show/4725841.E_L_James,2012,/genres/romance|/genres/erotica|/genres/bdsm|/genres/adult|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/contemporary-romance|/genres/adult-fiction|/genres/erotica|/genres/adult-fiction|/genres/new-adult|/genres/love,dir04/13536860-fifty-shades-freed.html,439710,"Fifty Shades Freed (Fifty Shades, #3)" +3.69,6721,0375408266,good_reads:book,https://www.goodreads.com/author/show/2894.Bernhard_Schlink,1995,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/european-literature|/genres/german-literature|/genres/romance|/genres/world-war-ii|/genres/holocaust|/genres/classics|/genres/contemporary|/genres/war|/genres/history|/genres/world-war-ii,dir04/101299.The_Reader.html,104848,The Reader +4.06,10870,1558743669,good_reads:book,https://www.goodreads.com/author/show/1881.Dave_Pelzer,1992,/genres/non-fiction|/genres/biography|/genres/autobiography|/genres/memoir|/genres/psychology|/genres/sociology|/genres/abuse|/genres/biography|/genres/autobiography|/genres/adult|/genres/biography-memoir|/genres/true-story|/genres/book-club,dir04/60748.A_Child_Called_It_.html,256934,"A Child Called ""It""" +4.32,5475,140003065X,good_reads:book,https://www.goodreads.com/author/show/3539.Rohinton_Mistry,1996,/genres/cultural|/genres/india|/genres/historical-fiction|/genres/book-club|/genres/fiction|/genres/cultural|/genres/canada|/genres/asian-literature|/genres/indian-literature|/genres/literature|/genres/novels|/genres/contemporary|/genres/cultural|/genres/asia,dir04/5211.A_Fine_Balance.html,77245,A Fine Balance +4.05,3871,1576469239,good_reads:book,https://www.goodreads.com/author/show/2893961.Emmuska_Orczy,1903,/genres/historical-fiction|/genres/romance|/genres/adventure|/genres/book-club|/genres/literature|/genres/classics|/genres/classic-literature|/genres/cultural|/genres/france|/genres/european-history|/genres/french-revolution|/genres/novels|/genres/adult,dir04/136116.The_Scarlet_Pimpernel.html,78872,The Scarlet Pimpernel +4.49,2449,0141014083,good_reads:book,https://www.goodreads.com/author/show/5117.Art_Spiegelman,2003,/genres/sequential-art|/genres/graphic-novels|/genres/non-fiction|/genres/history|/genres/sequential-art|/genres/comics|/genres/biography|/genres/autobiography|/genres/memoir|/genres/world-war-ii|/genres/holocaust|/genres/war|/genres/graphic-novels-comics,dir04/15195.The_Complete_Maus.html,44944,"The Complete Maus (Maus, #1-2)" +4.01,2777,0449213447,good_reads:book,https://www.goodreads.com/author/show/7385.Chaim_Potok,1967,/genres/fiction|/genres/classics|/genres/young-adult|/genres/historical-fiction|/genres/literature|/genres/jewish|/genres/religion|/genres/literature|/genres/academic|/genres/school|/genres/book-club|/genres/novels,dir04/187181.The_Chosen.html,56221,The Chosen +4.15,5594,0812511816,good_reads:book,https://www.goodreads.com/author/show/6252.Robert_Jordan,1990,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/epic|/genres/fantasy|/genres/magic|/genres/adult|/genres/science-fiction,dir04/228665.The_Eye_of_the_World.html,159883,"The Eye of the World (Wheel of Time, #1)" +4.06,11951,0743496728,good_reads:book,https://www.goodreads.com/author/show/7128.Jodi_Picoult,2007,/genres/fiction|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/book-club|/genres/drama|/genres/adult|/genres/adult-fiction|/genres/realistic-fiction|/genres/young-adult,dir04/14866.Nineteen_Minutes.html,184762,Nineteen Minutes +4.06,17380,014241493X,good_reads:book,https://www.goodreads.com/author/show/1406384.John_Green,2008,/genres/young-adult|/genres/fiction|/genres/contemporary|/genres/mystery|/genres/romance|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/coming-of-age|/genres/adventure|/genres/travel|/genres/road-trip,dir04/6442769-paper-towns.html,261257,Paper Towns +3.80,5358,0679735771,good_reads:book,https://www.goodreads.com/author/show/2751.Bret_Easton_Ellis,1991,/genres/fiction|/genres/horror|/genres/thriller|/genres/contemporary|/genres/classics|/genres/mystery|/genres/crime|/genres/literature|/genres/novels|/genres/literature|/genres/american|/genres/mystery,dir04/28676.American_Psycho.html,120289,American Psycho +3.86,4742,0679751521,good_reads:book,https://www.goodreads.com/author/show/4952.John_Berendt,1994,/genres/non-fiction|/genres/mystery|/genres/crime|/genres/true-crime|/genres/mystery|/genres/crime|/genres/history|/genres/book-club|/genres/american|/genres/southern|/genres/travel|/genres/classics|/genres/autobiography|/genres/memoir,dir04/386187.Midnight_in_the_Garden_of_Good_and_Evil.html,121676,Midnight in the Garden of Good and Evil +3.90,3391,0312360304,good_reads:book,https://www.goodreads.com/author/show/17015.P_C_Cast,2008,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy,dir04/1326258.Chosen.html,132136,Chosen (House of Night #3) +3.72,3195,0937832383,good_reads:book,https://www.goodreads.com/author/show/16201.Niccol_Machiavelli,1532,/genres/classics|/genres/philosophy|/genres/politics|/genres/history|/genres/non-fiction|/genres/literature|/genres/politics|/genres/political-science|/genres/academic|/genres/school|/genres/european-literature|/genres/italian-literature|/genres/cultural|/genres/italy,dir04/28862.The_Prince.html,116681,The Prince +4.32,144,0975925512,good_reads:book,https://www.goodreads.com/author/show/286014.Ki_Longfellow,2011,/genres/horror|/genres/fantasy|/genres/literature|/genres/magical-realism|/genres/mystery|/genres/fantasy|/genres/supernatural|/genres/thriller|/genres/gothic|/genres/fantasy|/genres/mythology|/genres/contemporary,dir04/11324204-houdini-heart.html,1184,Houdini Heart +4.55,8820,0756404738,good_reads:book,https://www.goodreads.com/author/show/108424.Patrick_Rothfuss,2011,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/epic|/genres/adult|/genres/science-fiction|/genres/novels,dir04/1215032.The_Wise_Man_s_Fear.html,142499,"The Wise Man's Fear (The Kingkiller Chronicle, #2)" +3.74,7627,0765356155,good_reads:book,https://www.goodreads.com/author/show/8842.Susanna_Clarke,2004,/genres/fantasy|/genres/science-fiction-fantasy|/genres/classics|/genres/fantasy|/genres/high-fantasy|/genres/horror|/genres/humor|/genres/modern|/genres/romance|/genres/dark|/genres/fantasy|/genres/low-fantasy,dir04/14201.Jonathan_Strange_Mr_Norrell.html,103441,Jonathan Strange & Mr Norrell +3.74,3299,006075995X,good_reads:book,https://www.goodreads.com/author/show/3489.Rebecca_Wells,1996,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/book-club|/genres/contemporary|/genres/adult-fiction|/genres/adult|/genres/american|/genres/southern|/genres/novels|/genres/humor|/genres/historical-fiction,dir04/137791.Divine_Secrets_of_the_Ya_Ya_Sisterhood.html,390701,Divine Secrets of the Ya-Ya Sisterhood +3.94,3851,0450031063,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1975,/genres/horror|/genres/fiction|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/thriller|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/suspense|/genres/mystery|/genres/novels,dir04/11590._Salem_s_Lot.html,173341,'Salem's Lot +3.93,1988,0451527887,good_reads:book,https://www.goodreads.com/author/show/13661.Victor_Hugo,1831,/genres/classics|/genres/fiction|/genres/historical-fiction|/genres/cultural|/genres/france|/genres/literature|/genres/european-literature|/genres/french-literature|/genres/romance|/genres/gothic|/genres/literature|/genres/19th-century|/genres/classics|/genres/classic-literature,dir04/30597.The_Hunchback_of_Notre_Dame.html,89741,The Hunchback of Notre-Dame +4.09,2974,0553278223,good_reads:book,https://www.goodreads.com/author/show/1630.Ray_Bradbury,1950,/genres/fiction|/genres/classics|/genres/short-stories|/genres/science-fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/literature|/genres/american|/genres/literature|/genres/speculative-fiction|/genres/space,dir04/76778.The_Martian_Chronicles.html,98443,The Martian Chronicles +3.62,3004,0375757325,good_reads:book,https://www.goodreads.com/author/show/2007.Daniel_Defoe,1719,/genres/classics|/genres/fiction|/genres/adventure|/genres/literature|/genres/historical-fiction|/genres/novels|/genres/literature|/genres/18th-century|/genres/academic|/genres/school|/genres/european-literature|/genres/british-literature,dir04/2932.Robinson_Crusoe.html,132755,Robinson Crusoe +3.96,2159,0679720219,good_reads:book,https://www.goodreads.com/author/show/957894.Albert_Camus,1947,/genres/classics|/genres/philosophy|/genres/cultural|/genres/france|/genres/literature|/genres/novels|/genres/european-literature|/genres/french-literature|/genres/literature|/genres/20th-century,dir04/11989.The_Plague.html,74915,The Plague +4.34,4759,0316921173,good_reads:book,https://www.goodreads.com/author/show/4339.David_Foster_Wallace,1995,/genres/literature|/genres/novels|/genres/contemporary|/genres/classics|/genres/humor|/genres/literary-fiction|/genres/literature|/genres/american,dir04/6759.Infinite_Jest.html,34232,Infinite Jest +3.73,2930,067976402X,good_reads:book,https://www.goodreads.com/author/show/1873.David_Guterson,1994,/genres/fiction|/genres/historical-fiction|/genres/mystery|/genres/book-club|/genres/literature|/genres/novels|/genres/romance|/genres/contemporary|/genres/adult-fiction|/genres/classics,dir04/77142.Snow_Falling_on_Cedars.html,96207,Snow Falling on Cedars +3.81,5374,0747560595,good_reads:book,https://www.goodreads.com/author/show/1467.Jeffrey_Eugenides,1993,/genres/young-adult|/genres/contemporary|/genres/novels|/genres/literature|/genres/adult-fiction|/genres/literary-fiction|/genres/fiction|/genres/young-adult|/genres/coming-of-age|/genres/adult|/genres/literature|/genres/american,dir04/10956.The_Virgin_Suicides.html,126306,The Virgin Suicides +4.09,435,0393974995,good_reads:book,https://www.goodreads.com/author/show/18540.T_S_Eliot,1922,/genres/poetry|/genres/classics|/genres/literature|/genres/literature|/genres/20th-century|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/american|/genres/academic|/genres/school|/genres/academic|/genres/college|/genres/academic|/genres/read-for-school|/genres/classics|/genres/classic-literature,dir04/34080.The_Waste_Land.html,22508,The Waste Land +4.08,1696,0140282580,good_reads:book,https://www.goodreads.com/author/show/1113469.Hermann_Hesse,1927,/genres/fiction|/genres/classics|/genres/philosophy|/genres/literature|/genres/european-literature|/genres/german-literature|/genres/novels|/genres/cultural|/genres/germany|/genres/literature|/genres/20th-century|/genres/fantasy|/genres/psychology,dir04/16631.Steppenwolf.html,62663,Steppenwolf +3.92,3509,159308143X,good_reads:book,https://www.goodreads.com/author/show/16.Edith_Wharton,1920,/genres/classics|/genres/historical-fiction|/genres/literature|/genres/romance|/genres/book-club|/genres/literature|/genres/american|/genres/novels|/genres/classics|/genres/classic-literature|/genres/new-york|/genres/literature|/genres/20th-century,dir04/53835.The_Age_of_Innocence.html,76761,The Age of Innocence +4.53,9292,1423140605,good_reads:book,https://www.goodreads.com/author/show/15872.Rick_Riordan,2012,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/mythology|/genres/adventure|/genres/fiction,dir05/12127750-the-mark-of-athena.html,128412,"The Mark of Athena (The Heroes of Olympus, #3)" +4.47,4738,0451219368,good_reads:book,https://www.goodreads.com/author/show/20248.J_R_Ward,2006,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/adult-fiction|/genres/erotica|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/vampires|/genres/romance|/genres/contemporary|/genres/romance|/genres/erotic-romance,dir05/42900.Lover_Awakened.html,110463,"Lover Awakened (Black Dagger Brotherhood, #3)" +3.63,20329,0143038257,good_reads:book,https://www.goodreads.com/author/show/27837.Greg_Mortenson,2006,/genres/non-fiction|/genres/book-club|/genres/autobiography|/genres/memoir|/genres/biography|/genres/travel|/genres/education,dir05/49436.Three_Cups_of_Tea.html,216604,Three Cups of Tea +4.02,13422,0375507256,good_reads:book,https://www.goodreads.com/author/show/6538289.David_Mitchell,2004,/genres/fiction|/genres/science-fiction|/genres/fantasy|/genres/historical-fiction|/genres/book-club|/genres/science-fiction|/genres/dystopia|/genres/contemporary|/genres/literature|/genres/novels|/genres/literary-fiction,dir05/49628.Cloud_Atlas.html,115424,Cloud Atlas +4.09,4445,0571225381,good_reads:book,https://www.goodreads.com/author/show/4280.Kazuo_Ishiguro,1988,/genres/fiction|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/contemporary|/genres/novels|/genres/book-club|/genres/literary-fiction,dir05/28921.The_Remains_of_the_Day.html,78900,The Remains of the Day +3.89,5705,0060529709,good_reads:book,https://www.goodreads.com/author/show/2617.Jonathan_Safran_Foer,2001,/genres/fiction|/genres/historical-fiction|/genres/contemporary|/genres/novels|/genres/book-club|/genres/literature|/genres/world-war-ii|/genres/holocaust,dir05/256566.Everything_Is_Illuminated.html,109385,Everything Is Illuminated +3.73,24348,0525423648,good_reads:book,https://www.goodreads.com/author/show/1304470.Ally_Condie,2010,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/romance|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/young-adult|/genres/teen,dir05/7735333-matched.html,329865,"Matched (Matched, #1)" +3.33,3802,0142000698,good_reads:book,https://www.goodreads.com/author/show/585.John_Steinbeck,1945,/genres/fiction|/genres/classics|/genres/literature|/genres/academic|/genres/school|/genres/academic|/genres/read-for-school|/genres/historical-fiction|/genres/novels|/genres/literature|/genres/american|/genres/young-adult|/genres/high-school|/genres/classics|/genres/classic-literature,dir05/5308.The_Pearl.html,102467,The Pearl +4.14,16926,0062059939,good_reads:book,https://www.goodreads.com/author/show/2987125.Kiera_Cass,2012,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/romance|/genres/fantasy|/genres/fiction,dir05/10507293-the-selection.html,173458,"The Selection (The Selection, #1)" +3.68,3569,1884365302,good_reads:book,https://www.goodreads.com/author/show/23510.Upton_Sinclair,1905,/genres/classics|/genres/historical-fiction|/genres/literature|/genres/politics|/genres/academic|/genres/school|/genres/novels|/genres/classics|/genres/classic-literature|/genres/food-and-drink|/genres/food|/genres/literature|/genres/american|/genres/academic|/genres/read-for-school,dir05/41681.The_Jungle.html,81155,The Jungle +4.47,6948,1590525132,good_reads:book,https://www.goodreads.com/author/show/6492.Francine_Rivers,1991,/genres/christian-fiction|/genres/christian|/genres/fiction|/genres/romance|/genres/historical-fiction|/genres/romance|/genres/historical-romance|/genres/book-club|/genres/inspirational|/genres/romance|/genres/christian-romance|/genres/adult,dir05/11422.Redeeming_Love.html,106530,Redeeming Love +4.18,4053,0141311371,good_reads:book,https://www.goodreads.com/author/show/4273.Roald_Dahl,1982,/genres/childrens|/genres/fantasy|/genres/fiction|/genres/young-adult|/genres/classics,dir05/6319.The_BFG.html,157954,The BFG +3.85,2654,0192839993,good_reads:book,https://www.goodreads.com/author/show/5144.James_Joyce,1914,/genres/classics|/genres/fiction|/genres/short-stories|/genres/literature|/genres/european-literature|/genres/irish-literature|/genres/cultural|/genres/ireland|/genres/literature|/genres/20th-century|/genres/academic|/genres/school,dir05/11012.Dubliners.html,61638,Dubliners +3.78,6347,0786817879,good_reads:book,https://www.goodreads.com/author/show/10896.Eoin_Colfer,2001,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/adventure|/genres/science-fiction|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/childrens|/genres/middle-grade|/genres/science-fiction-fantasy,dir05/249747.Artemis_Fowl.html,272097,"Artemis Fowl (Artemis Fowl, #1)" +3.84,4343,0441569595,good_reads:book,https://www.goodreads.com/author/show/9226.William_Gibson,1984,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/cyberpunk|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/dystopia|/genres/classics|/genres/fantasy|/genres/novels|/genres/speculative-fiction|/genres/literature,dir05/22328.Neuromancer.html,152316,Neuromancer (Sprawl #1) +3.94,12468,0349113912,good_reads:book,https://www.goodreads.com/author/show/2849.David_Sedaris,2000,/genres/humor|/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/writing|/genres/essays|/genres/short-stories|/genres/humor|/genres/comedy|/genres/humor|/genres/funny|/genres/biography|/genres/book-club|/genres/adult,dir05/4137.Me_Talk_Pretty_One_Day.html,424431,Me Talk Pretty One Day +3.78,1091,0316003727,good_reads:book,https://www.goodreads.com/author/show/941441.Stephenie_Meyer,2007,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen|/genres/womens-fiction|/genres/chick-lit,dir05/690926.The_Twilight_Collection.html,38723,"The Twilight Collection (Twilight, #1-3)" +3.96,18598,0739303406,good_reads:book,https://www.goodreads.com/author/show/5869.Erik_Larson,2002,/genres/non-fiction|/genres/crime|/genres/true-crime|/genres/mystery|/genres/mystery|/genres/crime|/genres/history|/genres/book-club|/genres/biography|/genres/history|/genres/american-history|/genres/adult|/genres/horror,dir05/21996.The_Devil_in_the_White_City.html,242195,The Devil in the White City +4.20,5214,0679728759,good_reads:book,https://www.goodreads.com/author/show/4178.Cormac_McCarthy,1985,/genres/fiction|/genres/western|/genres/historical-fiction|/genres/literature|/genres/classics|/genres/novels|/genres/literature|/genres/american|/genres/horror|/genres/literary-fiction|/genres/contemporary,dir05/394535.Blood_Meridian_or_the_Evening_Redness_in_the_West.html,50907,"Blood Meridian, or the Evening Redness in the West" +3.74,3032,140679239X,good_reads:book,https://www.goodreads.com/author/show/6765.Virginia_Woolf,1927,/genres/classics|/genres/literature|/genres/novels|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/20th-century,dir05/59716.To_the_Lighthouse.html,62887,To the Lighthouse +3.74,4285,0743496310,good_reads:book,https://www.goodreads.com/author/show/1353301.V_C_Andrews,1979,/genres/horror|/genres/young-adult|/genres/romance|/genres/mystery|/genres/gothic|/genres/classics|/genres/thriller|/genres/drama,dir05/43448.Flowers_in_the_Attic.html,88029,"Flowers in the Attic (Dollanganger, #1)" +3.64,47308,0007524277,good_reads:book,https://www.goodreads.com/author/show/4039811.Veronica_Roth,2013,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/fiction|/genres/science-fiction|/genres/fantasy|/genres/romance,dir05/18710190-allegiant.html,358301,"Allegiant (Divergent, #3)" +3.93,7241,0747599874,good_reads:book,https://www.goodreads.com/author/show/1077326.J_K_Rowling,2008,/genres/fantasy|/genres/young-adult|/genres/short-stories|/genres/childrens|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/fairy-tales|/genres/science-fiction-fantasy|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/european-literature|/genres/british-literature,dir05/3950967-the-tales-of-beedle-the-bard.html,164982,The Tales of Beedle the Bard +3.91,6068,0385739141,good_reads:book,https://www.goodreads.com/author/show/2905297.Lauren_Kate,2010,/genres/young-adult|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/urban-fantasy,dir05/7740152-torment.html,132321,"Torment (Fallen, #2)" +4.08,2363,0099471426,good_reads:book,https://www.goodreads.com/author/show/7577.Anne_Rice,1990,/genres/horror|/genres/fantasy|/genres/paranormal|/genres/witches|/genres/romance|/genres/thriller|/genres/fantasy|/genres/dark-fantasy|/genres/science-fiction-fantasy|/genres/suspense|/genres/fiction|/genres/science-fiction,dir05/11901.The_Witching_Hour.html,68197,"The Witching Hour (Lives of the Mayfair Witches, #1)" +4.42,809,1859855423,good_reads:book,https://www.goodreads.com/author/show/2737.Max_Lucado,1997,/genres/childrens|/genres/childrens|/genres/picture-books|/genres/christian|/genres/religion|/genres/inspirational|/genres/christian-fiction|/genres/fantasy|/genres/kids|/genres/religion|/genres/christianity|/genres/spirituality,dir05/56728.You_Are_Special.html,29993,You Are Special +4.07,3043,006112527X,good_reads:book,https://www.goodreads.com/author/show/1069006.C_S_Lewis,1952,/genres/fantasy|/genres/fiction|/genres/classics|/genres/young-adult|/genres/childrens|/genres/christian|/genres/adventure|/genres/christian-fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic,dir05/140225.The_Voyage_of_the_Dawn_Treader.html,241438,"The Voyage of the Dawn Treader (Chronicles of Narnia, #3)" +3.99,22152,0525421033,good_reads:book,https://www.goodreads.com/author/show/295178.Gayle_Forman,2009,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/fiction|/genres/realistic-fiction|/genres/romance|/genres/love-story|/genres/book-club|/genres/academic|/genres/school|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/teen,dir05/4374400-if-i-stay.html,231338,"If I Stay (If I Stay, #1)" +3.98,2420,0316926345,good_reads:book,https://www.goodreads.com/author/show/11315.Evelyn_Waugh,1944,/genres/classics|/genres/fiction|/genres/literature|/genres/historical-fiction|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/book-club|/genres/literature|/genres/20th-century|/genres/literary-fiction|/genres/classics|/genres/modern-classics,dir05/30933.Brideshead_Revisited.html,52890,Brideshead Revisited +3.91,2724,1420925431,good_reads:book,https://www.goodreads.com/author/show/86404.E_M_Forster,1908,/genres/classics|/genres/fiction|/genres/romance|/genres/literature|/genres/historical-fiction|/genres/european-literature|/genres/british-literature|/genres/cultural|/genres/italy|/genres/book-club|/genres/novels|/genres/literature|/genres/20th-century,dir05/3087.A_Room_with_a_View.html,91033,A Room with a View +3.95,29323,0316098337,good_reads:book,https://www.goodreads.com/author/show/23613.Emma_Donoghue,2010,/genres/fiction|/genres/book-club|/genres/contemporary|/genres/adult|/genres/adult-fiction|/genres/realistic-fiction|/genres/drama|/genres/novels|/genres/literary-fiction|/genres/mystery|/genres/crime,dir05/7937843-room.html,312719,Room +4.15,1212,0806512814,good_reads:book,https://www.goodreads.com/author/show/29068.Dalton_Trumbo,1939,/genres/fiction|/genres/classics|/genres/war|/genres/historical-fiction|/genres/literature|/genres/politics|/genres/horror|/genres/novels|/genres/philosophy|/genres/literature|/genres/american,dir05/51606.Johnny_Got_His_Gun.html,18007,Johnny Got His Gun +4.00,2638,0007202326,good_reads:book,https://www.goodreads.com/author/show/1069006.C_S_Lewis,1955,/genres/fantasy|/genres/fiction|/genres/classics|/genres/young-adult|/genres/childrens|/genres/christian|/genres/adventure|/genres/christian-fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic,dir05/84369.The_Last_Battle.html,116275,"The Last Battle (Chronicles of Narnia, #7)" +4.27,9649,1620610078,good_reads:book,https://www.goodreads.com/author/show/4476934.Jennifer_L_Armentrout,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/aliens|/genres/romance|/genres/fantasy|/genres/science-fiction|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/fiction,dir05/12578077-obsidian.html,94518,"Obsidian (Lux, #1)" +3.94,2760,031237982X,good_reads:book,https://www.goodreads.com/author/show/17015.P_C_Cast,2008,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/teen,dir05/4134071-hunted.html,112010,"Hunted (House of Night, #5)" +4.23,7232,192076920X,good_reads:book,https://www.goodreads.com/author/show/18907.Gregory_David_Roberts,2003,/genres/fiction|/genres/cultural|/genres/india|/genres/travel|/genres/adventure|/genres/book-club|/genres/novels|/genres/contemporary|/genres/cultural|/genres/asia,dir05/33600.Shantaram.html,63695,Shantaram +4.14,4744,0441012183,good_reads:book,https://www.goodreads.com/author/show/17061.Charlaine_Harris,2004,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/fiction|/genres/mystery|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/adult,dir05/140077.Dead_to_the_World.html,161517,"Dead to the World (Sookie Stackhouse, #4)" +4.27,1224,067972477X,good_reads:book,https://www.goodreads.com/author/show/3012988.Robert_Graves,1934,/genres/historical-fiction|/genres/fiction|/genres/classics|/genres/literature|/genres/novels|/genres/cultural|/genres/italy|/genres/european-literature|/genres/british-literature|/genres/politics|/genres/literature|/genres/20th-century|/genres/roman,dir05/18765.I_Claudius.html,28485,"I, Claudius (Claudius, #1)" +4.20,455,0316184136,good_reads:book,https://www.goodreads.com/author/show/7440.Emily_Dickinson,1955,/genres/poetry|/genres/classics|/genres/fiction|/genres/literature|/genres/literature|/genres/american|/genres/literature|/genres/19th-century,dir05/112204.The_Complete_Poems.html,45854,The Complete Poems +3.76,5592,1593082649,good_reads:book,https://www.goodreads.com/author/show/1265.Jane_Austen,1817,/genres/classics|/genres/fiction|/genres/romance|/genres/literature|/genres/historical-fiction|/genres/gothic|/genres/literature|/genres/19th-century|/genres/european-literature|/genres/british-literature|/genres/classics|/genres/classic-literature|/genres/novels,dir05/50398.Northanger_Abbey.html,156259,Northanger Abbey +3.89,5160,0618680004,good_reads:book,https://www.goodreads.com/author/show/1194.Richard_Dawkins,2006,/genres/non-fiction|/genres/religion|/genres/science|/genres/philosophy|/genres/religion|/genres/atheism|/genres/spirituality|/genres/religion|/genres/theology|/genres/politics,dir05/14743.The_God_Delusion.html,111584,The God Delusion +3.73,1931,0141439831,good_reads:book,https://www.goodreads.com/author/show/3953.William_Makepeace_Thackeray,1847,/genres/classics|/genres/literature|/genres/historical-fiction|/genres/literature|/genres/19th-century|/genres/european-literature|/genres/british-literature|/genres/romance|/genres/classics|/genres/classic-literature|/genres/novels|/genres/literature|/genres/english-literature|/genres/book-club,dir05/5797.Vanity_Fair.html,70104,Vanity Fair +3.78,7177,0689875347,good_reads:book,https://www.goodreads.com/author/show/2526.Libba_Bray,2003,/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/supernatural|/genres/mystery|/genres/young-adult|/genres/fantasy|/genres/young-adult|/genres/young-adult-fantasy|/genres/gothic,dir05/3682.A_Great_and_Terrible_Beauty.html,147931,"A Great and Terrible Beauty (Gemma Doyle, #1)" +3.97,2292,0143037617,good_reads:book,https://www.goodreads.com/author/show/239579.Charles_Dickens,1853,/genres/fiction|/genres/literature|/genres/classics|/genres/literature|/genres/19th-century|/genres/historical-fiction|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/mystery|/genres/classics|/genres/classic-literature|/genres/literature|/genres/english-literature,dir05/31242.Bleak_House.html,49176,Bleak House +3.79,2291,,good_reads:book,https://www.goodreads.com/author/show/1433597.Samuel_Beckett,1952,/genres/plays|/genres/classics|/genres/academic|/genres/read-for-school|/genres/european-literature|/genres/irish-literature|/genres/fiction|/genres/drama|/genres/classics|/genres/modern-classics|/genres/literature|/genres/adult-fiction|/genres/novels,dir05/17716.Waiting_for_Godot.html,75494,Waiting for Godot +3.98,4914,0553380958,good_reads:book,https://www.goodreads.com/author/show/545.Neal_Stephenson,1992,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/cyberpunk|/genres/science-fiction-fantasy|/genres/fantasy|/genres/science-fiction|/genres/dystopia|/genres/speculative-fiction|/genres/novels|/genres/classics|/genres/thriller,dir05/830.Snow_Crash.html,132106,Snow Crash +4.15,1291,0001713221,good_reads:book,https://www.goodreads.com/author/show/13898.P_D_Eastman,1960,/genres/childrens|/genres/childrens|/genres/picture-books|/genres/animals|/genres/classics|/genres/family|/genres/kids|/genres/humor|/genres/young-adult|/genres/childrens|/genres/juvenile|/genres/animals|/genres/birds,dir05/197084.Are_You_My_Mother_.html,107477,Are You My Mother? +3.94,3407,0553375407,good_reads:book,https://www.goodreads.com/author/show/10330.Daniel_Quinn,1991,/genres/spirituality|/genres/fantasy|/genres/classics|/genres/environment|/genres/literature|/genres/book-club|/genres/novels|/genres/religion|/genres/fiction|/genres/academic|/genres/school,dir05/227265.Ishmael.html,50473,Ishmael +4.18,13706,039925675X,good_reads:book,https://www.goodreads.com/author/show/4342215.Marie_Lu,2011,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/romance|/genres/science-fiction|/genres/fantasy|/genres/fiction|/genres/adventure|/genres/young-adult|/genres/teen|/genres/action|/genres/apocalyptic|/genres/post-apocalyptic,dir05/9275658-legend.html,159070,"Legend (Legend, #1)" +4.08,1627,0061007226,good_reads:book,https://www.goodreads.com/author/show/104728.William_Peter_Blatty,1971,/genres/fiction|/genres/horror|/genres/classics|/genres/fantasy|/genres/paranormal|/genres/thriller|/genres/fantasy|/genres/supernatural|/genres/religion|/genres/fantasy|/genres/mystery|/genres/novels,dir05/179780.The_Exorcist.html,81799,The Exorcist +3.83,2458,074326195X,good_reads:book,https://www.goodreads.com/author/show/3527.Alan_Paton,1940,/genres/fiction|/genres/classics|/genres/cultural|/genres/africa|/genres/historical-fiction|/genres/literature|/genres/academic|/genres/school|/genres/book-club|/genres/novels|/genres/academic|/genres/read-for-school|/genres/young-adult|/genres/high-school,dir05/6150.Cry_the_Beloved_Country.html,39703,"Cry, the Beloved Country" +4.03,14129,055358202X,good_reads:book,https://www.goodreads.com/author/show/346732.George_R_R_Martin,2005,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/epic,dir05/13497.A_Feast_for_Crows.html,291531,"A Feast for Crows (A Song of Ice and Fire, #4)" +3.98,2761,014200068X,good_reads:book,https://www.goodreads.com/author/show/585.John_Steinbeck,1945,/genres/classics|/genres/fiction|/genres/literature|/genres/novels|/genres/historical-fiction|/genres/literature|/genres/american|/genres/book-club|/genres/literary-fiction|/genres/classics|/genres/classic-literature|/genres/adult-fiction,dir05/4799.Cannery_Row.html,57311,Cannery Row +3.46,2582,014303961X,good_reads:book,https://www.goodreads.com/author/show/17623.D_H_Lawrence,1928,/genres/classics|/genres/fiction|/genres/romance|/genres/literature|/genres/adult-fiction|/genres/erotica|/genres/novels|/genres/book-club|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/banned-books|/genres/historical-fiction,dir05/32067.Lady_Chatterley_s_Lover.html,51169,Lady Chatterley's Lover +4.08,1838,0451530179,good_reads:book,https://www.goodreads.com/author/show/4176632.W_Somerset_Maugham,1914,/genres/classics|/genres/fiction|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/novels,dir05/31548.Of_Human_Bondage.html,26541,Of Human Bondage +3.85,1499,0140449140,good_reads:book,https://www.goodreads.com/author/show/879.Plato,-380,/genres/philosophy|/genres/classics|/genres/non-fiction|/genres/politics|/genres/history|/genres/academic|/genres/school|/genres/literature|/genres/literature|/genres/ancient|/genres/politics|/genres/political-science|/genres/academic|/genres/college,dir05/30289.The_Republic.html,82022,The Republic +3.91,2565,014100018X,good_reads:book,https://www.goodreads.com/author/show/9432.Joanne_Harris,1998,/genres/fiction|/genres/romance|/genres/magical-realism|/genres/cultural|/genres/france|/genres/womens-fiction|/genres/chick-lit|/genres/fantasy|/genres/contemporary|/genres/food-and-drink|/genres/food|/genres/book-club|/genres/historical-fiction,dir05/47401.Chocolat.html,62363,"Chocolat (Chocolat, #1)" +4.37,3982,0385335997,good_reads:book,https://www.goodreads.com/author/show/3617.Diana_Gabaldon,1993,/genres/historical-fiction|/genres/romance|/genres/fantasy|/genres/fiction|/genres/science-fiction|/genres/time-travel|/genres/romance|/genres/historical-romance|/genres/cultural|/genres/scotland|/genres/adult|/genres/adventure|/genres/science-fiction,dir05/10987.Voyager.html,93245,Voyager (Outlander #3) +4.15,5738,0142406252,good_reads:book,https://www.goodreads.com/author/show/2987.Sarah_Dessen,2004,/genres/young-adult|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/romance|/genres/fiction|/genres/young-adult|/genres/teen,dir05/51737.The_Truth_About_Forever.html,134700,The Truth About Forever +4.11,7970,0802798225,good_reads:book,https://www.goodreads.com/author/show/274533.Simone_Elkeles,2008,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/realistic-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/high-school|/genres/fiction|/genres/young-adult|/genres/teen,dir05/4268157-perfect-chemistry.html,137142,"Perfect Chemistry (Perfect Chemistry, #1)" +4.08,5628,0670061050,good_reads:book,https://www.goodreads.com/author/show/2987.Sarah_Dessen,2006,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/music|/genres/young-adult|/genres/high-school|/genres/young-adult|/genres/young-adult-romance|/genres/young-adult|/genres/young-adult-contemporary,dir05/51738.Just_Listen.html,150335,Just Listen +3.90,4144,0812474945,good_reads:book,https://www.goodreads.com/author/show/3541.Barbara_Kingsolver,1988,/genres/fiction|/genres/book-club|/genres/contemporary|/genres/novels|/genres/adult-fiction|/genres/adult|/genres/literature|/genres/literary-fiction|/genres/academic|/genres/school|/genres/classics,dir05/30868.The_Bean_Trees.html,82340,"The Bean Trees (Greer Family, #1)" +3.99,4788,0312181108,good_reads:book,https://www.goodreads.com/author/show/6208.Dodie_Smith,1948,/genres/fiction|/genres/classics|/genres/young-adult|/genres/historical-fiction|/genres/romance|/genres/book-club|/genres/young-adult|/genres/coming-of-age|/genres/european-literature|/genres/british-literature|/genres/adult|/genres/adult-fiction,dir05/31122.I_Capture_the_Castle.html,42694,I Capture the Castle +4.12,2538,0553803700,good_reads:book,https://www.goodreads.com/author/show/16667.Isaac_Asimov,1950,/genres/science-fiction|/genres/classics|/genres/short-stories|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/robots|/genres/fantasy,dir05/41804.I_Robot.html,131616,"I, Robot (Robot, #0.1)" +3.95,8264,0373210086,good_reads:book,https://www.goodreads.com/author/show/2995873.Julie_Kagawa,2009,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/fairies|/genres/fairies|/genres/fae|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance|/genres/adventure,dir05/6644117-the-iron-king.html,108729,"The Iron King (The Iron Fey, #1)" +4.22,4885,0061245089,good_reads:book,https://www.goodreads.com/author/show/669810.Jeaniene_Frost,2007,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy|/genres/adult|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/mystery,dir05/1421990.Halfway_to_the_Grave.html,79311,"Halfway to the Grave (Night Huntress, #1)" +4.11,4255,0765346524,good_reads:book,https://www.goodreads.com/author/show/3441.Terry_Goodkind,1994,/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/romance|/genres/epic|/genres/adult|/genres/science-fiction,dir05/43889.Wizard_s_First_Rule.html,130125,"Wizard's First Rule (Sword of Truth, #1)" +3.70,5690,0061214655,good_reads:book,https://www.goodreads.com/author/show/175855.Melissa_Marr,2007,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/fairies|/genres/fae|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic,dir05/305234.Wicked_Lovely.html,110640,"Wicked Lovely (Wicked Lovely, #1)" +3.63,1227,0811214044,good_reads:book,https://www.goodreads.com/author/show/7751.Tennessee_Williams,1945,/genres/plays|/genres/classics|/genres/drama|/genres/academic|/genres/school|/genres/plays|/genres/theatre|/genres/young-adult|/genres/high-school|/genres/literature|/genres/academic|/genres/read-for-school|/genres/literature|/genres/american,dir05/92517.The_Glass_Menagerie.html,66441,The Glass Menagerie +4.19,2534,0316767727,good_reads:book,https://www.goodreads.com/author/show/819789.J_D_Salinger,1953,/genres/literature|/genres/short-stories|/genres/literature|/genres/american|/genres/classics|/genres/fiction,dir05/4009.Nine_Stories.html,93223,Nine Stories +4.19,7601,1582349908,good_reads:book,https://www.goodreads.com/author/show/49177.Shannon_Hale,2003,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/fairy-tales|/genres/fiction|/genres/romance|/genres/adventure|/genres/fantasy|/genres/magic|/genres/book-club|/genres/young-adult|/genres/teen|/genres/childrens,dir05/179064.The_Goose_Girl.html,74274,"The Goose Girl (The Books of Bayern, #1)" +4.03,4882,0061662690,good_reads:book,https://www.goodreads.com/author/show/7581.Kelley_Armstrong,2008,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/shapeshifters|/genres/werewolves|/genres/paranormal|/genres/ghosts|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance,dir05/2800905-the-summoning.html,101959,"The Summoning (Darkest Powers, #1)" +3.97,4031,0141439610,good_reads:book,https://www.goodreads.com/author/show/4012.Wilkie_Collins,1860,/genres/mystery|/genres/classics|/genres/gothic|/genres/literature|/genres/literature|/genres/19th-century|/genres/book-club|/genres/horror|/genres/historical-fiction|/genres/european-literature|/genres/british-literature|/genres/mystery|/genres/crime,dir05/5890.The_Woman_in_White.html,68042,The Woman in White +3.95,4973,0802139256,good_reads:book,https://www.goodreads.com/author/show/13591.Leif_Enger,2001,/genres/fiction|/genres/book-club|/genres/historical-fiction|/genres/adult-fiction|/genres/adult|/genres/novels|/genres/contemporary,dir05/227571.Peace_Like_a_River.html,45979,Peace Like a River +4.07,1471,0156004801,good_reads:book,https://www.goodreads.com/author/show/3736.Robert_Penn_Warren,1946,/genres/fiction|/genres/classics|/genres/historical-fiction|/genres/politics|/genres/literature|/genres/novels|/genres/literature|/genres/american|/genres/book-club|/genres/american|/genres/southern,dir05/5527.All_the_King_s_Men.html,35724,All the King's Men +4.57,824,1416997857,good_reads:book,https://www.goodreads.com/author/show/150038.Cassandra_Clare,2009,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal|/genres/vampires|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/magic,dir05/6485421-the-mortal-instruments-boxed-set.html,39720,"The Mortal Instruments Boxed Set (The Mortal Instruments, #1-3)" +4.09,6067,0618101365,good_reads:book,https://www.goodreads.com/author/show/3670.Jhumpa_Lahiri,1999,/genres/short-stories|/genres/fiction|/genres/contemporary|/genres/adult|/genres/cultural|/genres/india|/genres/asian-literature|/genres/indian-literature|/genres/book-club|/genres/novels|/genres/modern|/genres/academic|/genres/read-for-school,dir05/5439.Interpreter_of_Maladies.html,89333,Interpreter of Maladies +4.09,1601,0142402494,good_reads:book,https://www.goodreads.com/author/show/410653.Astrid_Lindgren,1945,/genres/fiction|/genres/childrens|/genres/young-adult|/genres/classics|/genres/fantasy|/genres/humor|/genres/adventure|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/middle-grade|/genres/european-literature|/genres/swedish-literature,dir05/19302.Pippi_Longstocking.html,90353,Pippi Longstocking +4.23,12520,1401323251,good_reads:book,https://www.goodreads.com/author/show/287960.Randy_Pausch,2008,/genres/non-fiction|/genres/biography|/genres/inspirational|/genres/book-club|/genres/autobiography|/genres/memoir|/genres/philosophy|/genres/biography|/genres/autobiography|/genres/biography-memoir|/genres/adult|/genres/spirituality,dir05/2318271.The_Last_Lecture.html,172097,The Last Lecture +3.60,20467,0385504225,good_reads:book,https://www.goodreads.com/author/show/630.Dan_Brown,2008,/genres/adventure|/genres/adult|/genres/novels|/genres/fiction|/genres/mystery|/genres/crime|/genres/adult-fiction|/genres/mystery|/genres/contemporary|/genres/thriller|/genres/mystery-thriller|/genres/thriller,dir05/6411961-the-lost-symbol.html,283013,"The Lost Symbol (Robert Langdon, #3)" +4.41,3753,0006513220,good_reads:book,https://www.goodreads.com/author/show/47499.Paullina_Simons,1997,/genres/historical-fiction|/genres/romance|/genres/romance|/genres/historical-romance|/genres/fiction|/genres/cultural|/genres/russia|/genres/war|/genres/adult,dir05/83144.The_Bronze_Horseman.html,26592,"The Bronze Horseman (The Bronze Horseman, #1)" +4.26,1595,0395389496,good_reads:book,https://www.goodreads.com/author/show/9685.Chris_Van_Allsburg,1985,/genres/childrens|/genres/picture-books|/genres/childrens|/genres/holiday|/genres/christmas|/genres/fantasy|/genres/classics|/genres/holiday|/genres/kids|/genres/adventure|/genres/childrens|/genres/juvenile|/genres/young-adult,dir05/420282.The_Polar_Express.html,105093,The Polar Express +4.24,5968,1595143173,good_reads:book,https://www.goodreads.com/author/show/137902.Richelle_Mead,2011,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/fiction,dir05/8709527-bloodlines.html,97123,"Bloodlines (Bloodlines, #1)" +4.59,2622,0312362153,good_reads:book,https://www.goodreads.com/author/show/4430.Sherrilyn_Kenyon,2008,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/mythology|/genres/adult|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/supernatural,dir05/2299110.Acheron.html,35028,"Acheron (Dark-Hunter, #8)" +4.37,708,0380508567,good_reads:book,https://www.goodreads.com/author/show/16667.Isaac_Asimov,1951,/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/classics|/genres/fantasy|/genres/science-fiction|/genres/space-opera|/genres/literature|/genres/novels|/genres/speculative-fiction|/genres/space,dir05/46654.The_Foundation_Trilogy.html,56053,"The Foundation Trilogy (Foundation, #1-3)" +4.04,943,0451528921,good_reads:book,https://www.goodreads.com/author/show/670859.Edmond_Rostand,1897,/genres/classics|/genres/plays|/genres/drama|/genres/cultural|/genres/france|/genres/romance|/genres/literature|/genres/plays|/genres/theatre|/genres/academic|/genres/school|/genres/historical-fiction|/genres/european-literature|/genres/french-literature,dir05/15638.Cyrano_de_Bergerac.html,42783,Cyrano de Bergerac +3.87,3029,0312305060,good_reads:book,https://www.goodreads.com/author/show/1432.Michael_Cunningham,1998,/genres/historical-fiction|/genres/contemporary|/genres/book-club|/genres/novels|/genres/literature|/genres/literary-fiction|/genres/glbt,dir05/11899.The_Hours.html,79259,The Hours +4.18,4634,0441013813,good_reads:book,https://www.goodreads.com/author/show/40563.Patricia_Briggs,2006,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/shapeshifters,dir05/71811.Moon_Called.html,92036,"Moon Called (Mercy Thompson, #1)" +4.01,18401,0307346609,good_reads:book,https://www.goodreads.com/author/show/5791.Max_Brooks,2006,/genres/science-fiction|/genres/fantasy|/genres/horror|/genres/zombies|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/apocalyptic|/genres/war|/genres/book-club|/genres/science-fiction-fantasy,dir05/8908.World_War_Z.html,227990,World War Z +3.95,1750,0743482778,good_reads:book,https://www.goodreads.com/author/show/947.William_Shakespeare,1601,/genres/classics|/genres/plays|/genres/drama|/genres/fiction|/genres/academic|/genres/school|/genres/literature|/genres/romance|/genres/plays|/genres/theatre|/genres/poetry|/genres/academic|/genres/read-for-school,dir05/1625.Twelfth_Night.html,91457,Twelfth Night +4.05,7255,0385494785,good_reads:book,https://www.goodreads.com/author/show/1235.Jon_Krakauer,1997,/genres/non-fiction|/genres/adventure|/genres/autobiography|/genres/memoir|/genres/travel|/genres/biography|/genres/history|/genres/adventure|/genres/survival|/genres/sports|/genres/mountaineering|/genres/nature|/genres/outdoors|/genres/book-club,dir05/1898.Into_Thin_Air.html,234099,Into Thin Air +4.38,7478,076531178X,good_reads:book,https://www.goodreads.com/author/show/38550.Brandon_Sanderson,2006,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/adult,dir05/68428.Mistborn.html,120652,"Mistborn (Mistborn, #1)" +4.04,11587,0062085484,good_reads:book,https://www.goodreads.com/author/show/4637539.Tahereh_Mafi,2002,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/science-fiction,dir05/10429045-shatter-me.html,98933,"Shatter Me (Shatter Me, #1)" +4.13,1559,0142437964,good_reads:book,https://www.goodreads.com/author/show/233619.Marcel_Proust,1913,/genres/classics|/genres/fiction|/genres/cultural|/genres/france|/genres/literature|/genres/european-literature|/genres/french-literature|/genres/novels|/genres/literature|/genres/20th-century|/genres/literary-fiction|/genres/philosophy|/genres/classics|/genres/classic-literature,dir05/12749.Swann_s_Way.html,19101,"Swann's Way (In Search of Lost Time, #1)" +4.11,22847,0312370830,good_reads:book,https://www.goodreads.com/author/show/305400.Tatiana_de_Rosnay,2006,/genres/historical-fiction|/genres/book-club|/genres/world-war-ii|/genres/holocaust|/genres/history|/genres/world-war-ii|/genres/cultural|/genres/france|/genres/adult-fiction|/genres/war|/genres/adult|/genres/contemporary|/genres/novels,dir05/556602.Sarah_s_Key.html,250338,Sarah's Key +3.61,1883,0198320272,good_reads:book,https://www.goodreads.com/author/show/947.William_Shakespeare,1599,/genres/poetry|/genres/history|/genres/plays|/genres/theatre|/genres/academic|/genres/read-for-school|/genres/adult|/genres/classics|/genres/plays|/genres/classics|/genres/classic-literature|/genres/european-literature|/genres/british-literature|/genres/young-adult|/genres/high-school,dir05/13006.Julius_Caesar.html,100118,Julius Caesar +4.13,14554,0525423273,good_reads:book,https://www.goodreads.com/author/show/3095893.Stephanie_Perkins,2010,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/young-adult-contemporary|/genres/young-adult|/genres/young-adult-romance,dir05/6936382-anna-and-the-french-kiss.html,134390,"Anna and the French Kiss (Anna and the French Kiss, #1)" +4.23,5842,1442426640,good_reads:book,https://www.goodreads.com/author/show/2876763.Becca_Fitzpatrick,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/mystery|/genres/paranormal|/genres/angels,dir05/10637766-silence.html,126214,"Silence (Hush, Hush, #3)" +3.97,1192,0316341517,good_reads:book,https://www.goodreads.com/author/show/13263.Edith_Hamilton,1942,/genres/fantasy|/genres/mythology|/genres/classics|/genres/non-fiction|/genres/history|/genres/reference|/genres/academic|/genres/school|/genres/religion|/genres/literature|/genres/academic|/genres/read-for-school,dir05/23522.Mythology.html,26574,Mythology +4.43,13225,1301949825,good_reads:book,https://www.goodreads.com/author/show/5430144.Colleen_Hoover,2012,/genres/romance|/genres/new-adult|/genres/young-adult|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/sociology|/genres/abuse|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/drama|/genres/young-adult|/genres/high-school,dir05/15717943-hopeless.html,118532,"Hopeless (Hopeless, #1)" +3.86,3143,0439861365,good_reads:book,https://www.goodreads.com/author/show/1069006.C_S_Lewis,1954,/genres/fantasy|/genres/fiction|/genres/young-adult|/genres/childrens|/genres/christian|/genres/classics|/genres/christian-fiction|/genres/science-fiction-fantasy,dir06/84119.The_Horse_and_His_Boy.html,139843,"The Horse and His Boy (Chronicles of Narnia, #5)" +3.98,2767,1905654588,good_reads:book,https://www.goodreads.com/author/show/17015.P_C_Cast,2008,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/magic,dir06/6262365-tempted.html,109803,"Tempted (House of Night, #6)" +4.13,3687,0140620192,good_reads:book,https://www.goodreads.com/author/show/1413437.Elizabeth_Gaskell,1855,/genres/classics|/genres/fiction|/genres/romance|/genres/historical-fiction|/genres/literature|/genres/19th-century|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/romance|/genres/historical-romance|/genres/classics|/genres/classic-literature|/genres/book-club,dir06/156538.North_and_South.html,58708,North and South +3.95,3903,031286504X,good_reads:book,https://www.goodreads.com/author/show/8726.Richard_Matheson,1954,/genres/horror|/genres/fiction|/genres/science-fiction|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/apocalyptic|/genres/post-apocalyptic|/genres/short-stories|/genres/classics|/genres/science-fiction|/genres/dystopia|/genres/horror|/genres/zombies,dir06/547094.I_Am_Legend_and_Other_Stories.html,78326,I Am Legend and Other Stories +3.76,2603,0842342702,good_reads:book,https://www.goodreads.com/author/show/7625163.Tim_F_LaHaye,1995,/genres/fiction|/genres/christian|/genres/christian-fiction|/genres/religion|/genres/fantasy|/genres/thriller|/genres/religion|/genres/christianity|/genres/spirituality|/genres/science-fiction|/genres/novels,dir06/27523.Left_Behind.html,114906,"Left Behind (Left Behind, #1)" +3.87,7710,0689865392,good_reads:book,https://www.goodreads.com/author/show/13957.Scott_Westerfeld,2005,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/romance|/genres/young-adult|/genres/teen|/genres/science-fiction-fantasy|/genres/action|/genres/childrens|/genres/middle-grade,dir06/24768.Pretties.html,154009,"Pretties (Uglies, #2)" +4.37,4377,0451218043,good_reads:book,https://www.goodreads.com/author/show/20248.J_R_Ward,2006,/genres/paranormal|/genres/vampires|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/adult-fiction|/genres/erotica|/genres/fiction,dir06/35729.Lover_Eternal.html,106429,"Lover Eternal (Black Dagger Brotherhood, #2)" +3.92,6502,0142001805,good_reads:book,https://www.goodreads.com/author/show/4432.Jasper_Fforde,2001,/genres/mystery|/genres/humor|/genres/science-fiction|/genres/writing|/genres/books-about-books|/genres/science-fiction|/genres/time-travel|/genres/book-club|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/alternate-history|/genres/adult|/genres/fantasy,dir06/27003.The_Eyre_Affair.html,70802,The Eyre Affair (Thursday Next #1) +4.06,14719,0316134023,good_reads:book,https://www.goodreads.com/author/show/324620.Laini_Taylor,2011,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/demons,dir06/8490112-daughter-of-smoke-bone.html,121000,"Daughter of Smoke & Bone (Daughter of Smoke & Bone, #1)" +4.21,13826,0425263908,good_reads:book,https://www.goodreads.com/author/show/19823.Sylvia_Day,2012,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/contemporary|/genres/adult|/genres/romance|/genres/contemporary-romance|/genres/romance|/genres/erotic-romance|/genres/erotica|/genres/bdsm|/genres/womens-fiction|/genres/chick-lit|/genres/new-adult|/genres/adult-fiction,dir06/13572249-bared-to-you.html,255118,"Bared to You (Crossfire, #1)" +4.21,10671,1416912045,good_reads:book,https://www.goodreads.com/author/show/19564.Neal_Shusterman,2007,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fantasy|/genres/horror|/genres/young-adult|/genres/teen,dir06/764347.Unwind.html,93772,"Unwind (Unwind, #1)" +3.75,4113,0451528956,good_reads:book,https://www.goodreads.com/author/show/854076.Robert_Louis_Stevenson,1886,/genres/classics|/genres/horror|/genres/science-fiction|/genres/mystery|/genres/gothic|/genres/fantasy|/genres/literature|/genres/literature|/genres/19th-century|/genres/academic|/genres/school,dir06/51496.The_Strange_Case_of_Dr_Jekyll_and_Mr_Hyde.html,147124,The Strange Case of Dr. Jekyll and Mr. Hyde +4.32,5335,0765326264,good_reads:book,https://www.goodreads.com/author/show/327737.W_Bruce_Cameron,2010,/genres/fiction|/genres/animals|/genres/animals|/genres/dogs|/genres/book-club|/genres/contemporary|/genres/fantasy|/genres/humor,dir06/7723542-a-dog-s-purpose.html,35054,A Dog's Purpose +3.87,1419,0141439653,good_reads:book,https://www.goodreads.com/author/show/15905.Thomas_Hardy,1874,/genres/classics|/genres/fiction|/genres/romance|/genres/literature|/genres/literature|/genres/19th-century|/genres/historical-fiction|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/classics|/genres/classic-literature,dir06/31463.Far_from_the_Madding_Crowd.html,54595,Far from the Madding Crowd +3.77,2914,0375727345,good_reads:book,https://www.goodreads.com/author/show/9785.Andre_Dubus_III,1999,/genres/fiction|/genres/book-club|/genres/contemporary|/genres/literature|/genres/adult-fiction|/genres/literary-fiction|/genres/novels|/genres/adult|/genres/drama|/genres/suspense,dir06/359770.House_of_Sand_and_Fog.html,74541,House of Sand and Fog +3.86,2761,0679735909,good_reads:book,https://www.goodreads.com/author/show/1169504.A_S_Byatt,1990,/genres/historical-fiction|/genres/romance|/genres/mystery|/genres/literature|/genres/classics|/genres/literary-fiction|/genres/european-literature|/genres/british-literature|/genres/poetry|/genres/contemporary|/genres/novels,dir06/41219.Possession.html,45361,Possession +3.60,16149,0143037145,good_reads:book,https://www.goodreads.com/author/show/6876.Kim_Edwards,2004,/genres/book-club|/genres/contemporary|/genres/adult-fiction|/genres/adult|/genres/womens-fiction|/genres/chick-lit|/genres/drama|/genres/novels|/genres/historical-fiction|/genres/family|/genres/literature,dir06/10441.The_Memory_Keeper_s_Daughter.html,425762,The Memory Keeper's Daughter +4.33,2860,0385335989,good_reads:book,https://www.goodreads.com/author/show/3617.Diana_Gabaldon,1996,/genres/historical-fiction|/genres/romance|/genres/fantasy|/genres/science-fiction|/genres/time-travel|/genres/adult|/genres/science-fiction|/genres/romance|/genres/historical-romance,dir06/10988.Drums_of_Autumn.html,77852,"Drums of Autumn (Outlander, #4)" +4.12,2703,0060885378,good_reads:book,https://www.goodreads.com/author/show/5300.Laura_Ingalls_Wilder,1932,/genres/childrens|/genres/history|/genres/biography|/genres/classics|/genres/autobiography|/genres/memoir|/genres/childrens|/genres/middle-grade|/genres/family|/genres/childrens|/genres/chapter-books|/genres/kids|/genres/literature|/genres/american,dir06/8337.Little_House_in_the_Big_Woods.html,116728,"Little House in the Big Woods (Little House, #1)" +4.43,28354,1400064163,good_reads:book,https://www.goodreads.com/author/show/30913.Laura_Hillenbrand,2009,/genres/non-fiction|/genres/history|/genres/book-club|/genres/biography|/genres/war|/genres/history|/genres/world-war-ii|/genres/war|/genres/military,dir06/8664353-unbroken.html,240499,Unbroken +4.00,5024,0812550757,good_reads:book,https://www.goodreads.com/author/show/589.Orson_Scott_Card,1986,/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/young-adult|/genres/space|/genres/science-fiction|/genres/aliens|/genres/novels|/genres/speculative-fiction|/genres/science-fiction|/genres/dystopia,dir06/7967.Speaker_for_the_Dead.html,126456,"Speaker for the Dead (The Ender Quintet, #2)" +4.07,1055,0802132758,good_reads:book,https://www.goodreads.com/author/show/293.Tom_Stoppard,1966,/genres/plays|/genres/drama|/genres/classics|/genres/humor|/genres/literature|/genres/plays|/genres/theatre|/genres/academic|/genres/school|/genres/european-literature|/genres/british-literature|/genres/academic|/genres/read-for-school|/genres/young-adult|/genres/high-school,dir06/18545.Rosencrantz_and_Guildenstern_Are_Dead.html,52477,Rosencrantz and Guildenstern Are Dead +4.19,7870,0525950079,good_reads:book,https://www.goodreads.com/author/show/3447.Ken_Follett,2007,/genres/historical-fiction|/genres/fiction|/genres/historical-fiction|/genres/medieval|/genres/romance|/genres/european-literature|/genres/british-literature,dir06/5064.World_Without_End.html,97513,"World Without End (The Pillars of the Earth, #2)" +3.89,7812,0393328627,good_reads:book,https://www.goodreads.com/author/show/2633.Nicole_Krauss,2005,/genres/fiction|/genres/book-club|/genres/romance|/genres/historical-fiction|/genres/novels|/genres/contemporary|/genres/adult-fiction|/genres/adult|/genres/literary-fiction|/genres/literature,dir06/3867.The_History_of_Love.html,78627,The History of Love +4.27,3103,0345348109,good_reads:book,https://www.goodreads.com/author/show/16892.Michael_Shaara,1974,/genres/historical-fiction|/genres/fiction|/genres/military-history|/genres/civil-war|/genres/war|/genres/war|/genres/military|/genres/classics|/genres/book-club|/genres/history|/genres/american-history,dir06/682804.The_Killer_Angels.html,45161,The Killer Angels +4.24,21547,1451627289,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,2011,/genres/historical-fiction|/genres/science-fiction|/genres/science-fiction|/genres/time-travel|/genres/fantasy|/genres/horror|/genres/book-club|/genres/thriller|/genres/mystery|/genres/science-fiction|/genres/alternate-history|/genres/suspense,dir06/10644930-11-22-63.html,170986,11/22/63 +4.11,4322,0743223136,good_reads:book,https://www.goodreads.com/author/show/6281688.David_McCullough,2001,/genres/history|/genres/biography|/genres/non-fiction|/genres/history|/genres/american-history|/genres/politics|/genres/presidents|/genres/politics|/genres/biography-memoir|/genres/literature|/genres/american,dir06/2203.John_Adams.html,120603,John Adams +3.98,19161,0670022411,good_reads:book,https://www.goodreads.com/author/show/3849415.Deborah_Harkness,2011,/genres/mystery|/genres/young-adult|/genres/contemporary,dir06/8667848-a-discovery-of-witches.html,160542,"A Discovery of Witches (All Souls Trilogy, #1)" +4.10,3780,0553279378,good_reads:book,https://www.goodreads.com/author/show/3503.Maya_Angelou,1970,/genres/non-fiction|/genres/classics|/genres/autobiography|/genres/memoir|/genres/biography|/genres/biography|/genres/autobiography|/genres/poetry|/genres/cultural|/genres/african-american|/genres/book-club,dir06/13214.I_Know_Why_the_Caged_Bird_Sings.html,167788,I Know Why the Caged Bird Sings +4.25,14968,,good_reads:book,https://www.goodreads.com/author/show/346732.George_R_R_Martin,2011,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/dragons,dir06/10664113-a-dance-with-dragons.html,239921,"A Dance with Dragons (A Song of Ice and Fire, #5)" +4.18,2244,0064400026,good_reads:book,https://www.goodreads.com/author/show/5300.Laura_Ingalls_Wilder,1935,/genres/young-adult|/genres/childrens|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/chapter-books|/genres/kids|/genres/literature|/genres/novels|/genres/classics|/genres/childrens|/genres/childrens-classics,dir06/77767.Little_House_on_the_Prairie.html,140823,"Little House on the Prairie (Little House, #2)" +3.76,1587,0743477561,good_reads:book,https://www.goodreads.com/author/show/947.William_Shakespeare,1600,/genres/classics|/genres/plays|/genres/drama|/genres/fiction|/genres/literature|/genres/academic|/genres/school|/genres/plays|/genres/theatre|/genres/poetry|/genres/academic|/genres/read-for-school|/genres/european-literature|/genres/british-literature,dir06/24128.The_Merchant_of_Venice.html,92483,The Merchant of Venice +4.11,16873,0312641893,good_reads:book,https://www.goodreads.com/author/show/4684322.Marissa_Meyer,2012,/genres/young-adult|/genres/fantasy|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/romance|/genres/fantasy|/genres/fairy-tales|/genres/fiction|/genres/retellings|/genres/science-fiction|/genres/steampunk|/genres/young-adult|/genres/teen,dir06/11235712-cinder.html,139258,"Cinder (The Lunar Chronicles, #1)" +4.09,1622,0375507779,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1984,/genres/thriller|/genres/mystery|/genres/fantasy|/genres/supernatural|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/fantasy|/genres/paranormal|/genres/dark|/genres/novels,dir06/59219.The_Talisman.html,63223,"The Talisman (The Talisman, #1)" +4.03,8095,1423113381,good_reads:book,https://www.goodreads.com/author/show/15872.Rick_Riordan,2010,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/mythology|/genres/adventure|/genres/fiction|/genres/fantasy|/genres/magic|/genres/childrens|/genres/childrens|/genres/middle-grade,dir06/7090447-the-red-pyramid.html,163686,"The Red Pyramid (Kane Chronicles, #1)" +3.94,3637,0451219945,good_reads:book,https://www.goodreads.com/author/show/15292.Rachel_Caine,2006,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/ghosts,dir06/27266.Glass_Houses.html,65698,"Glass Houses (The Morganville Vampires, #1)" +3.86,4937,1416524304,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1974,/genres/horror|/genres/fiction|/genres/thriller|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/classics|/genres/adult|/genres/novels,dir06/10592.Carrie.html,234472,Carrie +4.14,2050,0451529553,good_reads:book,https://www.goodreads.com/author/show/3137322.Fyodor_Dostoyevsky,1861,/genres/classics|/genres/fiction|/genres/cultural|/genres/russia|/genres/philosophy|/genres/literature|/genres/literature|/genres/russian-literature|/genres/novels|/genres/literature|/genres/19th-century,dir06/17876.Notes_from_Underground.html,60034,Notes from Underground +4.15,2601,0345465083,good_reads:book,https://www.goodreads.com/author/show/30913.Laura_Hillenbrand,1999,/genres/non-fiction|/genres/history|/genres/biography|/genres/sports-and-games|/genres/sports|/genres/animals|/genres/animals|/genres/horses|/genres/book-club|/genres/biography-memoir|/genres/history|/genres/american-history|/genres/adult,dir06/110737.Seabiscuit.html,77385,Seabiscuit +4.05,1755,0743482751,good_reads:book,https://www.goodreads.com/author/show/947.William_Shakespeare,1599,/genres/classics|/genres/drama|/genres/plays|/genres/romance|/genres/literature|/genres/academic|/genres/school|/genres/plays|/genres/theatre|/genres/poetry|/genres/humor|/genres/comedy|/genres/european-literature|/genres/british-literature,dir06/12957.Much_Ado_About_Nothing.html,140736,Much Ado About Nothing +3.95,4316,0060959037,good_reads:book,https://www.goodreads.com/author/show/3541.Barbara_Kingsolver,2000,/genres/fiction|/genres/book-club|/genres/novels|/genres/contemporary|/genres/environment|/genres/nature|/genres/adult|/genres/adult-fiction|/genres/literature|/genres/literary-fiction|/genres/environment,dir06/14249.Prodigal_Summer.html,62885,Prodigal Summer +3.75,3007,0375759239,good_reads:book,https://www.goodreads.com/author/show/880695.H_G_Wells,1898,/genres/classics|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/literature|/genres/horror,dir06/8909.The_War_of_the_Worlds.html,113541,The War of the Worlds +3.82,1473,0345419626,good_reads:book,https://www.goodreads.com/author/show/7577.Anne_Rice,1988,/genres/horror|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/gothic|/genres/adult|/genres/science-fiction-fantasy,dir06/43758.The_Queen_of_the_Damned.html,91473,"The Queen of the Damned (The Vampire Chronicles, #3)" +4.26,19649,0375414495,good_reads:book,https://www.goodreads.com/author/show/93353.Abraham_Verghese,2009,/genres/fiction|/genres/book-club|/genres/historical-fiction|/genres/cultural|/genres/africa|/genres/adult-fiction|/genres/novels,dir06/3591262-cutting-for-stone.html,191788,Cutting for Stone +3.87,7147,0061448761,good_reads:book,https://www.goodreads.com/author/show/1599723.Michael_Grant,2008,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/teen|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/adventure,dir06/2536134.Gone.html,103502,"Gone (Gone, #1)" +4.18,1796,0553213148,good_reads:book,https://www.goodreads.com/author/show/5350.L_M_Montgomery,1909,/genres/classics|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/historical-fiction|/genres/cultural|/genres/canada|/genres/romance|/genres/childrens|/genres/juvenile|/genres/literature|/genres/novels,dir06/77390.Anne_of_Avonlea.html,67475,"Anne of Avonlea (Anne of Green Gables, #2)" +3.91,2109,0064405044,good_reads:book,https://www.goodreads.com/author/show/1069006.C_S_Lewis,1953,/genres/fantasy|/genres/fiction|/genres/classics|/genres/young-adult|/genres/childrens|/genres/christian|/genres/adventure|/genres/christian-fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic,dir06/65641.The_Silver_Chair.html,123801,"The Silver Chair (Chronicles of Narnia, #4)" +3.93,10775,0061969559,good_reads:book,https://www.goodreads.com/author/show/3380908.Pittacus_Lore,2010,/genres/young-adult|/genres/fantasy|/genres/science-fiction|/genres/science-fiction|/genres/aliens|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/adventure|/genres/young-adult|/genres/teen,dir06/7747374-i-am-number-four.html,179947,"I Am Number Four (Lorien Legacies, #1)" +4.17,2198,0451450523,good_reads:book,https://www.goodreads.com/author/show/1067608.Peter_S_Beagle,1968,/genres/fantasy|/genres/classics|/genres/young-adult|/genres/childrens|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/unicorns,dir06/29127.The_Last_Unicorn.html,60651,"The Last Unicorn (The Last Unicorn, #1)" +4.02,5450,014240120X,good_reads:book,https://www.goodreads.com/author/show/10074.Ellen_Raskin,1978,/genres/mystery|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/classics|/genres/childrens|/genres/middle-grade|/genres/academic|/genres/school|/genres/childrens|/genres/juvenile|/genres/realistic-fiction|/genres/thriller|/genres/mystery-thriller,dir06/902.The_Westing_Game.html,86707,The Westing Game +4.16,3407,0064471837,good_reads:book,https://www.goodreads.com/author/show/8347.Garth_Nix,1995,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/magic|/genres/adventure|/genres/science-fiction-fantasy|/genres/young-adult|/genres/young-adult-fantasy|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/high-fantasy|/genres/romance,dir06/518848.Sabriel.html,97210,"Sabriel (Abhorsen, #1)" +4.03,1419,0316296198,good_reads:book,https://www.goodreads.com/author/show/10039.John_Fowles,1965,/genres/fiction|/genres/classics|/genres/fantasy|/genres/literature|/genres/mystery|/genres/novels|/genres/cultural|/genres/greece|/genres/european-literature|/genres/british-literature|/genres/literary-fiction|/genres/contemporary,dir06/16286.The_Magus.html,26551,The Magus +3.88,1974,015603297X,good_reads:book,https://www.goodreads.com/author/show/1730.Umberto_Eco,1988,/genres/fiction|/genres/mystery|/genres/historical-fiction|/genres/literature|/genres/classics|/genres/european-literature|/genres/italian-literature|/genres/thriller|/genres/cultural|/genres/italy|/genres/philosophy|/genres/contemporary,dir06/17841.Foucault_s_Pendulum.html,35865,Foucault's Pendulum +3.65,7564,0375725784,good_reads:book,https://www.goodreads.com/author/show/3371.Dave_Eggers,2000,/genres/contemporary|/genres/book-club|/genres/literature|/genres/humor|/genres/novels,dir06/4953.A_Heartbreaking_Work_of_Staggering_Genius.html,122963,A Heartbreaking Work of Staggering Genius +4.54,4809,0385341679,good_reads:book,https://www.goodreads.com/author/show/48206.Karen_Marie_Moning,2011,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fairies|/genres/fae|/genres/adult|/genres/fiction|/genres/paranormal|/genres/fairies|/genres/fantasy|/genres/magic,dir06/7304203-shadowfever.html,52812,"Shadowfever (Fever, #5)" +3.98,5594,0786890754,good_reads:book,https://www.goodreads.com/author/show/7116.Cecelia_Ahern,2003,/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/fiction|/genres/contemporary|/genres/adult|/genres/love|/genres/romance|/genres/contemporary-romance|/genres/drama,dir06/366522.P_S_I_Love_You.html,195935,P.S. I Love You +3.91,2178,006083756X,good_reads:book,https://www.goodreads.com/author/show/9657.Richard_Wright,1940,/genres/classics|/genres/cultural|/genres/african-american|/genres/literature|/genres/historical-fiction|/genres/novels|/genres/academic|/genres/school|/genres/literature|/genres/american|/genres/race|/genres/literature|/genres/banned-books|/genres/american|/genres/african-american-literature,dir06/15622.Native_Son.html,50243,Native Son +3.53,7398,1582701709,good_reads:book,https://www.goodreads.com/author/show/29655.Rhonda_Byrne,2006,/genres/non-fiction|/genres/self-help|/genres/spirituality|/genres/inspirational|/genres/psychology|/genres/philosophy|/genres/self-help|/genres/personal-development|/genres/spirituality|/genres/new-age|/genres/religion|/genres/book-club,dir06/52529.The_Secret.html,152189,"The Secret (The Secret, #1)" +4.22,2533,1842430351,good_reads:book,https://www.goodreads.com/author/show/197.Tom_Robbins,1984,/genres/fantasy|/genres/humor|/genres/book-club|/genres/literature|/genres/novels|/genres/magical-realism|/genres/contemporary|/genres/fiction|/genres/adult-fiction|/genres/humor|/genres/comedy,dir06/8682.Jitterbug_Perfume.html,42078,Jitterbug Perfume +4.09,4798,0375706674,good_reads:book,https://www.goodreads.com/author/show/4178.Cormac_McCarthy,2005,/genres/fiction|/genres/thriller|/genres/mystery|/genres/crime|/genres/literature|/genres/western|/genres/mystery|/genres/novels|/genres/contemporary|/genres/literature|/genres/american|/genres/literary-fiction,dir06/12497.No_Country_for_Old_Men.html,77278,No Country for Old Men +4.12,3257,0060838655,good_reads:book,https://www.goodreads.com/author/show/1899.Howard_Zinn,1980,/genres/history|/genres/non-fiction|/genres/politics|/genres/history|/genres/american-history|/genres/reference|/genres/classics,dir06/2767.A_People_s_History_of_the_United_States.html,76984,A People's History of the United States +3.90,1686,,good_reads:book,https://www.goodreads.com/author/show/2313.Louis_de_Berni_res,1993,/genres/fiction|/genres/historical-fiction|/genres/romance|/genres/war|/genres/classics|/genres/cultural|/genres/greece|/genres/book-club|/genres/history|/genres/world-war-ii|/genres/literature|/genres/contemporary,dir06/3388.Captain_Corelli_s_Mandolin.html,47679,Captain Corelli's Mandolin +4.16,10710,1594200823,good_reads:book,https://www.goodreads.com/author/show/2121.Michael_Pollan,2006,/genres/non-fiction|/genres/food-and-drink|/genres/food|/genres/health|/genres/history|/genres/book-club|/genres/health|/genres/nutrition|/genres/environment|/genres/politics|/genres/food-and-drink|/genres/cooking|/genres/food-and-drink|/genres/foodie,dir06/3109.The_Omnivore_s_Dilemma.html,110887,The Omnivore's Dilemma +3.92,4203,1860498809,good_reads:book,https://www.goodreads.com/author/show/3472.Margaret_Atwood,2000,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/cultural|/genres/canada|/genres/contemporary|/genres/mystery|/genres/literature|/genres/literary-fiction|/genres/science-fiction|/genres/classics,dir06/78433.The_Blind_Assassin.html,82414,The Blind Assassin +3.91,2932,0752864327,good_reads:book,https://www.goodreads.com/author/show/5293.Robert_Ludlum,1980,/genres/fiction|/genres/thriller|/genres/mystery|/genres/suspense|/genres/adventure|/genres/spy-thriller|/genres/espionage|/genres/action|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/crime|/genres/thriller|/genres/spy-thriller,dir06/7869.The_Bourne_Identity.html,259768,"The Bourne Identity (Jason Bourne, #1)" +4.40,2311,0385340397,good_reads:book,https://www.goodreads.com/author/show/3617.Diana_Gabaldon,2004,/genres/romance|/genres/science-fiction|/genres/time-travel|/genres/fiction|/genres/fantasy|/genres/romance|/genres/historical-romance|/genres/historical-fiction|/genres/adult|/genres/cultural|/genres/scotland|/genres/adventure|/genres/science-fiction,dir06/10965.A_Breath_of_Snow_and_Ashes.html,58256,"A Breath of Snow and Ashes (Outlander, #6)" +3.93,3104,000720230X,good_reads:book,https://www.goodreads.com/author/show/1069006.C_S_Lewis,1951,/genres/fiction|/genres/childrens|/genres/fantasy|/genres/adventure|/genres/young-adult|/genres/science-fiction-fantasy|/genres/classics|/genres/fantasy|/genres/magic|/genres/childrens|/genres/juvenile,dir06/121749.Prince_Caspian.html,196678,"Prince Caspian (Chronicles of Narnia, #2)" +4.06,1205,3518367064,good_reads:book,https://www.goodreads.com/author/show/1113469.Hermann_Hesse,1919,/genres/fiction|/genres/classics|/genres/literature|/genres/philosophy|/genres/european-literature|/genres/german-literature|/genres/novels|/genres/cultural|/genres/germany,dir06/24861.Demian.html,32114,Demian +4.18,5993,0778324338,good_reads:book,https://www.goodreads.com/author/show/445303.Maria_V_Snyder,2004,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/magic|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/adult|/genres/science-fiction-fantasy,dir06/60510.Poison_Study.html,69461,"Poison Study (Study, #1)" +4.04,1176,0812972147,good_reads:book,https://www.goodreads.com/author/show/5158478.Anonymous,900,/genres/classics|/genres/fiction|/genres/fantasy|/genres/short-stories|/genres/literature|/genres/fantasy|/genres/fairy-tales|/genres/fantasy|/genres/mythology|/genres/adventure|/genres/folklore|/genres/childrens,dir06/93101.The_Arabian_Nights.html,42536,The Arabian Nights +4.19,5864,0385339151,good_reads:book,https://www.goodreads.com/author/show/48206.Karen_Marie_Moning,2006,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fairies|/genres/fae|/genres/adult|/genres/fiction|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/supernatural,dir06/112750.Darkfever.html,82915,"Darkfever (Fever, #1)" +3.94,87076,0307588378,good_reads:book,https://www.goodreads.com/author/show/2383.Gillian_Flynn,2012,/genres/fiction|/genres/mystery|/genres/book-club|/genres/thriller|/genres/mystery|/genres/crime|/genres/suspense|/genres/adult|/genres/contemporary|/genres/thriller|/genres/mystery-thriller|/genres/adult-fiction,dir06/19288043-gone-girl.html,682110,Gone Girl +3.98,8988,0061139378,good_reads:book,https://www.goodreads.com/author/show/1221698.Neil_Gaiman,2002,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/horror|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/science-fiction-fantasy|/genres/fantasy|/genres/paranormal|/genres/adventure|/genres/fantasy|/genres/supernatural,dir06/17061.Coraline.html,214087,Coraline +3.97,1015,0486298574,good_reads:book,https://www.goodreads.com/author/show/29527.Charlotte_Perkins_Gilman,1892,/genres/classics|/genres/fiction|/genres/short-stories|/genres/feminism|/genres/literature|/genres/horror|/genres/academic|/genres/school|/genres/literature|/genres/19th-century|/genres/womens,dir06/99300.The_Yellow_Wallpaper_and_Other_Stories.html,45524,The Yellow Wallpaper and Other Stories +4.03,4423,1841493015,good_reads:book,https://www.goodreads.com/author/show/17061.Charlaine_Harris,2003,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/romance|/genres/mystery|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/adult,dir06/140082.Club_Dead.html,165060,"Club Dead (Sookie Stackhouse, #3)" +3.91,2980,0446676071,good_reads:book,https://www.goodreads.com/author/show/2345.Nicholas_Sparks,1998,/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/adult|/genres/adult-fiction|/genres/romance|/genres/contemporary-romance|/genres/love|/genres/drama|/genres/novels|/genres/media-tie-in|/genres/movies,dir06/3478.Message_in_a_Bottle.html,141661,Message in a Bottle +3.98,5624,1841493007,good_reads:book,https://www.goodreads.com/author/show/17061.Charlaine_Harris,2001,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/romance|/genres/mystery|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/adult,dir06/110494.Living_Dead_in_Dallas.html,175941,"Living Dead in Dallas (Sookie Stackhouse, #2)" +4.60,5732,0765326353,good_reads:book,https://www.goodreads.com/author/show/38550.Brandon_Sanderson,2010,/genres/science-fiction-fantasy|/genres/fantasy|/genres/science-fiction,dir06/7235533-the-way-of-kings.html,76551,"The Way of Kings (The Stormlight Archive, #1)" +3.92,1964,0374529523,good_reads:book,https://www.goodreads.com/author/show/10420.Aleksandr_Solzhenitsyn,1962,/genres/classics|/genres/cultural|/genres/russia|/genres/historical-fiction|/genres/literature|/genres/literature|/genres/russian-literature|/genres/novels|/genres/politics|/genres/academic|/genres/school|/genres/literature|/genres/20th-century|/genres/classics|/genres/classic-literature,dir06/17125.One_Day_in_the_Life_of_Ivan_Denisovich.html,50366,One Day in the Life of Ivan Denisovich +4.18,2110,0394724550,good_reads:book,https://www.goodreads.com/author/show/21135.Anne_Morrow_Lindbergh,1955,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/book-club|/genres/classics|/genres/inspirational|/genres/spirituality|/genres/biography|/genres/philosophy|/genres/self-help|/genres/writing|/genres/essays,dir06/77295.Gift_from_the_Sea.html,22057,Gift from the Sea +4.05,2155,0451457994,good_reads:book,https://www.goodreads.com/author/show/7779.Arthur_C_Clarke,1968,/genres/science-fiction|/genres/fiction|/genres/classics|/genres/science-fiction-fantasy|/genres/space|/genres/fantasy|/genres/novels,dir06/70535.2001.html,113300,"2001 (Space Odyssey, #1)" +3.58,1592,0380017601,good_reads:book,https://www.goodreads.com/author/show/15516.Erich_Segal,1970,/genres/romance|/genres/classics|/genres/womens-fiction|/genres/chick-lit|/genres/novels|/genres/love|/genres/contemporary|/genres/romance|/genres/love-story|/genres/drama|/genres/adult|/genres/adult-fiction,dir06/73968.Love_Story.html,32895,"Love Story (Love Story, #1)" +3.82,3140,1416524347,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1983,/genres/horror|/genres/fiction|/genres/thriller|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/suspense|/genres/horror|/genres/zombies|/genres/mystery|/genres/adult,dir06/10583.Pet_Sematary.html,195753,Pet Sematary +4.27,2743,014016930X,good_reads:book,https://www.goodreads.com/author/show/157779.Wallace_Stegner,1971,/genres/historical-fiction|/genres/classics|/genres/book-club|/genres/literature|/genres/novels|/genres/literary-fiction|/genres/western|/genres/adult-fiction|/genres/literature|/genres/american|/genres/modern,dir06/292408.Angle_of_Repose.html,30233,Angle of Repose +3.96,8095,1406310255,good_reads:book,https://www.goodreads.com/author/show/370361.Patrick_Ness,2008,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fantasy|/genres/adventure|/genres/young-adult|/genres/teen|/genres/apocalyptic|/genres/post-apocalyptic|/genres/thriller|/genres/book-club|/genres/science-fiction|/genres/aliens,dir06/2118745.The_Knife_of_Never_Letting_Go.html,66987,"The Knife of Never Letting Go (Chaos Walking, #1)" +3.70,7519,1400034779,good_reads:book,https://www.goodreads.com/author/show/4738.Alexander_McCall_Smith,1998,/genres/mystery|/genres/fiction|/genres/cultural|/genres/africa|/genres/book-club|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery-thriller|/genres/adult-fiction|/genres/adult|/genres/mystery|/genres/detective|/genres/contemporary,dir06/7061.The_No_1_Ladies_Detective_Agency.html,133119,The No. 1 Ladies' Detective Agency (No. 1 Ladies' Detective Agency #1) +4.33,3442,0451222350,good_reads:book,https://www.goodreads.com/author/show/20248.J_R_Ward,2007,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/fiction|/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/contemporary|/genres/paranormal|/genres/vampires,dir06/304027.Lover_Unbound.html,77723,"Lover Unbound (Black Dagger Brotherhood, #5)" +4.34,925,0399231900,good_reads:book,https://www.goodreads.com/author/show/64709.Clement_C_Moore,1823,/genres/classics|/genres/childrens|/genres/holiday|/genres/childrens|/genres/picture-books|/genres/fantasy|/genres/kids|/genres/young-adult|/genres/family|/genres/childrens|/genres/storytime|/genres/childrens|/genres/childrens-classics,dir06/196970.The_Night_Before_Christmas.html,59445,The Night Before Christmas +3.94,11594,0061726818,good_reads:book,https://www.goodreads.com/author/show/2936493.Lauren_Oliver,2010,/genres/young-adult|/genres/contemporary|/genres/romance|/genres/fantasy|/genres/young-adult|/genres/teen|/genres/realistic-fiction|/genres/fantasy|/genres/paranormal|/genres/death|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/high-school,dir06/6482837-before-i-fall.html,138221,Before I Fall +3.94,7416,0545123283,good_reads:book,https://www.goodreads.com/author/show/1330292.Maggie_Stiefvater,2010,/genres/young-adult|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy,dir06/6654313-linger.html,97938,"Linger (The Wolves of Mercy Falls, #2)" +4.04,8552,006112429X,good_reads:book,https://www.goodreads.com/author/show/45922.Lionel_Shriver,2003,/genres/fiction|/genres/book-club|/genres/contemporary|/genres/drama|/genres/thriller|/genres/mystery|/genres/crime,dir06/80660.We_Need_to_Talk_About_Kevin.html,69555,We Need to Talk About Kevin +4.08,1398,051722285X,good_reads:book,https://www.goodreads.com/author/show/20849.Rosamunde_Pilcher,1987,/genres/fiction|/genres/romance|/genres/historical-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/book-club|/genres/contemporary|/genres/adult-fiction|/genres/novels|/genres/adult|/genres/european-literature|/genres/british-literature,dir06/37095.The_Shell_Seekers.html,54616,The Shell Seekers +4.33,9619,,good_reads:book,https://www.goodreads.com/author/show/5430144.Colleen_Hoover,2012,/genres/romance|/genres/new-adult|/genres/young-adult|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/realistic-fiction|/genres/young-adult|/genres/high-school|/genres/love,dir06/13372690-slammed.html,108997,"Slammed (Slammed, #1)" +4.25,2686,0440221668,good_reads:book,https://www.goodreads.com/author/show/3617.Diana_Gabaldon,2001,/genres/historical-fiction|/genres/romance|/genres/fiction|/genres/science-fiction|/genres/time-travel|/genres/fantasy|/genres/romance|/genres/historical-romance|/genres/adult,dir06/10967.The_Fiery_Cross.html,66772,"The Fiery Cross (Outlander, #5)" +4.16,3432,0553283685,good_reads:book,https://www.goodreads.com/author/show/2687.Dan_Simmons,1989,/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/space-opera,dir06/77566.Hyperion.html,76404,"Hyperion (Hyperion Cantos, #1)" +3.74,6450,1841156736,good_reads:book,https://www.goodreads.com/author/show/2578.Jonathan_Franzen,2001,/genres/fiction|/genres/book-club|/genres/contemporary|/genres/novels|/genres/literature|/genres/literary-fiction|/genres/literature|/genres/american,dir06/3805.The_Corrections.html,93226,The Corrections +3.77,1240,0679729526,good_reads:book,https://www.goodreads.com/author/show/919.Virgil,-29,/genres/classics|/genres/poetry|/genres/fiction|/genres/fantasy|/genres/mythology|/genres/academic|/genres/school|/genres/epic|/genres/literature|/genres/ancient|/genres/fantasy|/genres/classics|/genres/classic-literature|/genres/roman,dir06/12914.The_Aeneid.html,60308,The Aeneid +3.91,2612,0143039989,good_reads:book,https://www.goodreads.com/author/show/13388.Shirley_Jackson,1959,/genres/fiction|/genres/classics|/genres/gothic|/genres/horror|/genres/mystery|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/ghosts|/genres/book-club|/genres/fantasy|/genres/supernatural|/genres/fantasy,dir06/89717.The_Haunting_of_Hill_House.html,35131,The Haunting of Hill House +4.03,1750,0143039946,good_reads:book,https://www.goodreads.com/author/show/235.Thomas_Pynchon,1973,/genres/classics|/genres/literature|/genres/science-fiction|/genres/novels|/genres/historical-fiction|/genres/literature|/genres/american|/genres/war,dir06/415.Gravity_s_Rainbow.html,20291,Gravity's Rainbow +4.06,2412,0394758285,good_reads:book,https://www.goodreads.com/author/show/1377.Raymond_Chandler,1939,/genres/mystery|/genres/fiction|/genres/mystery|/genres/crime|/genres/classics|/genres/mystery|/genres/noir|/genres/mystery|/genres/detective|/genres/thriller|/genres/mystery-thriller|/genres/thriller|/genres/literature|/genres/american|/genres/literature,dir06/2052.The_Big_Sleep.html,57755,The Big Sleep +4.16,1860,1400031044,good_reads:book,https://www.goodreads.com/author/show/7385.Chaim_Potok,1972,/genres/fiction|/genres/classics|/genres/literature|/genres/jewish|/genres/historical-fiction|/genres/book-club|/genres/religion|/genres/young-adult|/genres/literature|/genres/religion|/genres/judaism|/genres/novels,dir07/11507.My_Name_Is_Asher_Lev.html,23909,My Name Is Asher Lev +3.61,5084,0452281253,good_reads:book,https://www.goodreads.com/author/show/432.Ayn_Rand,1918,/genres/fiction|/genres/classics|/genres/philosophy|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/literature|/genres/academic|/genres/school|/genres/academic|/genres/read-for-school|/genres/novels|/genres/politics,dir07/667.Anthem.html,76372,Anthem +3.56,9331,0440241413,good_reads:book,https://www.goodreads.com/author/show/6160.Sophie_Kinsella,1999,/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/romance|/genres/contemporary|/genres/humor|/genres/adult|/genres/adult-fiction|/genres/humor|/genres/funny|/genres/romance|/genres/contemporary-romance|/genres/humor|/genres/comedy,dir07/9416.Confessions_of_a_Shopaholic.html,415964,"Confessions of a Shopaholic (Shopaholic, #1)" +4.15,815,0872863107,good_reads:book,https://www.goodreads.com/author/show/4261.Allen_Ginsberg,1956,/genres/poetry|/genres/classics|/genres/fiction|/genres/literature|/genres/american|/genres/literature|/genres/literature|/genres/20th-century|/genres/glbt|/genres/literature|/genres/banned-books|/genres/glbt|/genres/queer|/genres/academic|/genres/college,dir07/6295.Howl_and_Other_Poems.html,53017,Howl and Other Poems +3.74,1506,0141439637,good_reads:book,https://www.goodreads.com/author/show/159.Henry_James,1881,/genres/classics|/genres/literature|/genres/literature|/genres/19th-century|/genres/literature|/genres/american|/genres/novels|/genres/historical-fiction|/genres/classics|/genres/classic-literature|/genres/romance|/genres/book-club|/genres/literary-fiction,dir07/264.The_Portrait_of_a_Lady.html,44278,The Portrait of a Lady +3.92,7642,0618485228,good_reads:book,https://www.goodreads.com/author/show/3670.Jhumpa_Lahiri,1999,/genres/fiction|/genres/cultural|/genres/india|/genres/book-club|/genres/contemporary|/genres/novels|/genres/literary-fiction|/genres/asian-literature|/genres/indian-literature|/genres/literature|/genres/adult-fiction|/genres/adult,dir07/33917.The_Namesake.html,143411,The Namesake +3.95,2752,038531258X,good_reads:book,https://www.goodreads.com/author/show/52627.Olive_Ann_Burns,1984,/genres/historical-fiction|/genres/book-club|/genres/classics|/genres/american|/genres/southern|/genres/adult-fiction|/genres/young-adult|/genres/adult|/genres/novels|/genres/humor|/genres/literature,dir07/306654.Cold_Sassy_Tree.html,61167,Cold Sassy Tree +4.03,3027,0812976142,good_reads:book,https://www.goodreads.com/author/show/27779.Caleb_Carr,1994,/genres/mystery|/genres/historical-fiction|/genres/thriller|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/historical-mystery|/genres/suspense|/genres/book-club|/genres/horror|/genres/new-york,dir07/40024.The_Alienist.html,73592,The Alienist +4.20,922,0061120669,good_reads:book,https://www.goodreads.com/author/show/957910.Henri_Charri_re,1969,/genres/non-fiction|/genres/biography|/genres/classics|/genres/adventure|/genres/autobiography|/genres/memoir|/genres/cultural|/genres/france|/genres/biography|/genres/autobiography|/genres/history|/genres/mystery|/genres/crime,dir07/6882.Papillon.html,27776,Papillon +3.86,5044,0413757102,good_reads:book,https://www.goodreads.com/author/show/27069.Richard_Yates,1961,/genres/fiction|/genres/classics|/genres/book-club|/genres/historical-fiction|/genres/novels|/genres/literature|/genres/literature|/genres/american|/genres/contemporary|/genres/literary-fiction|/genres/adult-fiction,dir07/48328.Revolutionary_Road.html,48653,Revolutionary Road +4.09,2528,,good_reads:book,https://www.goodreads.com/author/show/155517.Italo_Calvino,1979,/genres/fiction|/genres/classics|/genres/european-literature|/genres/italian-literature|/genres/literature|/genres/novels|/genres/cultural|/genres/italy|/genres/magical-realism|/genres/writing|/genres/books-about-books|/genres/literary-fiction,dir07/374233.If_on_a_Winter_s_Night_a_Traveler.html,34768,If on a Winter's Night a Traveler +4.44,1086,055215430X,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,2002,/genres/fantasy|/genres/humor|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/time-travel|/genres/humor|/genres/funny|/genres/science-fiction|/genres/novels|/genres/mystery|/genres/european-literature|/genres/british-literature,dir07/47989.Night_Watch.html,58758,"Night Watch (Discworld, #29)" +4.28,3600,0765342405,good_reads:book,https://www.goodreads.com/author/show/589.Orson_Scott_Card,1998,/genres/science-fiction|/genres/fiction|/genres/young-adult|/genres/science-fiction-fantasy|/genres/fantasy,dir07/9532.Ender_s_Shadow.html,87364,"Ender's Shadow (Ender's Shadow, #1)" +3.78,1662,0486452433,good_reads:book,https://www.goodreads.com/author/show/15905.Thomas_Hardy,1895,/genres/classics|/genres/fiction|/genres/european-literature|/genres/british-literature|/genres/romance|/genres/literature|/genres/literature|/genres/english-literature|/genres/literature|/genres/19th-century|/genres/tragedy|/genres/drama|/genres/adult-fiction,dir07/50798.Jude_the_Obscure.html,34301,Jude the Obscure +4.02,2513,0441007317,good_reads:book,https://www.goodreads.com/author/show/874602.Ursula_K_Le_Guin,1969,/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/classics|/genres/speculative-fiction|/genres/book-club|/genres/gender|/genres/feminism|/genres/novels,dir07/18423.The_Left_Hand_of_Darkness.html,41973,"The Left Hand of Darkness (Hainish Cycle, #4)" +4.25,2538,0689878559,good_reads:book,https://www.goodreads.com/author/show/8596.Tamora_Pierce,1983,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/magic|/genres/adventure|/genres/young-adult|/genres/young-adult-fantasy|/genres/young-adult|/genres/teen|/genres/childrens|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction-fantasy,dir07/13831.Alanna.html,65169,"Alanna (Song of the Lioness, #1)" +4.02,3213,0441014917,good_reads:book,https://www.goodreads.com/author/show/17061.Charlaine_Harris,2006,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/mystery|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/adult|/genres/shapeshifters|/genres/werewolves,dir07/140079.Definitely_Dead.html,144702,"Definitely Dead (Sookie Stackhouse, #6)" +4.42,4645,0967686563,good_reads:book,https://www.goodreads.com/author/show/3009967.Joseph_Smith_Jr_,1830,/genres/religion|/genres/non-fiction|/genres/christianity|/genres/lds|/genres/religion|/genres/church|/genres/spirituality|/genres/inspirational|/genres/history|/genres/classics,dir07/323355.The_Book_of_Mormon.html,56539,The Book of Mormon +4.18,3828,0449912558,good_reads:book,https://www.goodreads.com/author/show/4007.Mary_Doria_Russell,1996,/genres/science-fiction|/genres/fiction|/genres/book-club|/genres/religion|/genres/fantasy|/genres/science-fiction-fantasy|/genres/speculative-fiction|/genres/adult|/genres/novels|/genres/science-fiction|/genres/aliens,dir07/334176.The_Sparrow.html,28976,"The Sparrow (The Sparrow, #1)" +3.77,6144,0689865406,good_reads:book,https://www.goodreads.com/author/show/13957.Scott_Westerfeld,2006,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fantasy|/genres/fiction|/genres/young-adult|/genres/teen|/genres/romance|/genres/adventure|/genres/apocalyptic|/genres/post-apocalyptic|/genres/science-fiction-fantasy,dir07/24765.Specials.html,111249,"Specials (Uglies, #3)" +4.54,7767,1423146727,good_reads:book,https://www.goodreads.com/author/show/15872.Rick_Riordan,2013,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/mythology|/genres/adventure|/genres/fiction|/genres/romance|/genres/fantasy|/genres/magic|/genres/mythology|/genres/greek-mythology|/genres/childrens|/genres/middle-grade|/genres/childrens,dir07/12127810-the-house-of-hades.html,72082,"The House of Hades (The Heroes of Olympus, #4)" +4.31,3113,0451412354,good_reads:book,https://www.goodreads.com/author/show/20248.J_R_Ward,2007,/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/adult-fiction|/genres/erotica|/genres/fiction|/genres/fantasy|/genres/supernatural,dir07/42898.Lover_Revealed.html,79525,"Lover Revealed (Black Dagger Brotherhood, #4)" +3.94,1397,0486424545,good_reads:book,https://www.goodreads.com/author/show/86404.E_M_Forster,1910,/genres/classics|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/historical-fiction|/genres/novels|/genres/literature|/genres/20th-century|/genres/book-club,dir07/3102.Howards_End.html,39746,Howards End +4.00,2648,1905654944,good_reads:book,https://www.goodreads.com/author/show/17015.P_C_Cast,2010,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance,dir07/6917952-burned.html,103042,"Burned (House of Night, #7)" +3.83,5301,1423100034,good_reads:book,https://www.goodreads.com/author/show/56224.Ally_Carter,2006,/genres/young-adult|/genres/romance|/genres/mystery|/genres/spy-thriller|/genres/espionage|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/adventure,dir07/852470.I_d_Tell_You_I_Love_You_But_Then_I_d_Have_to_Kill_You.html,115027,"I'd Tell You I Love You, But Then I'd Have to Kill You (Gallagher Girls, #1)" +4.01,10995,0312362080,good_reads:book,https://www.goodreads.com/author/show/2384.Janet_Evanovich,1994,/genres/mystery|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/humor|/genres/romance|/genres/mystery|/genres/crime|/genres/humor|/genres/funny|/genres/adult|/genres/contemporary|/genres/humor|/genres/comedy,dir07/6853.One_for_the_Money.html,286137,"One for the Money (Stephanie Plum, #1)" +4.13,3951,0744583276,good_reads:book,https://www.goodreads.com/author/show/2713.E_L_Konigsburg,1967,/genres/childrens|/genres/fiction|/genres/young-adult|/genres/mystery|/genres/classics|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/adventure,dir07/3980.From_the_Mixed_Up_Files_of_Mrs_Basil_E_Frankweiler.html,103577,From the Mixed-Up Files of Mrs. Basil E. Frankweiler +4.02,1884,1416974504,good_reads:book,https://www.goodreads.com/author/show/50873.L_J_Smith,1996,/genres/young-adult|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/witches|/genres/romance|/genres/paranormal-romance|/genres/shapeshifters|/genres/werewolves,dir07/3099787-night-world-no-1.html,42164,"Night World, No. 1 (Night World, #1-3)" +4.07,980,0553213873,good_reads:book,https://www.goodreads.com/author/show/7275.Helen_Keller,1990,/genres/non-fiction|/genres/biography|/genres/classics|/genres/autobiography|/genres/memoir|/genres/history|/genres/biography|/genres/autobiography|/genres/biography-memoir|/genres/inspirational|/genres/childrens|/genres/book-club,dir07/821611.The_Story_of_My_Life.html,75608,The Story of My Life +3.64,1231,1580495931,good_reads:book,https://www.goodreads.com/author/show/1002.Sophocles,-429,/genres/classics|/genres/plays|/genres/drama|/genres/fiction|/genres/academic|/genres/school|/genres/literature|/genres/academic|/genres/read-for-school|/genres/fantasy|/genres/mythology|/genres/plays|/genres/theatre|/genres/young-adult|/genres/high-school,dir07/1554.Oedipus_Rex.html,93192,Oedipus Rex +3.97,6934,0385721676,good_reads:book,https://www.goodreads.com/author/show/3472.Margaret_Atwood,2003,/genres/fiction|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fantasy|/genres/cultural|/genres/canada|/genres/book-club|/genres/speculative-fiction|/genres/science-fiction-fantasy,dir07/46756.Oryx_and_Crake.html,103466,"Oryx and Crake (MaddAddam Trilogy, #1)" +3.96,2261,0060892994,good_reads:book,https://www.goodreads.com/author/show/6025722.Walter_M_Miller_Jr_,1959,/genres/science-fiction|/genres/fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/classics|/genres/fantasy|/genres/science-fiction|/genres/dystopia|/genres/science-fiction-fantasy|/genres/religion|/genres/speculative-fiction|/genres/science-fiction|/genres/apocalyptic,dir07/164154.A_Canticle_for_Leibowitz.html,47636,"A Canticle for Leibowitz (St. Leibowitz, #1)" +4.39,2952,0451225856,good_reads:book,https://www.goodreads.com/author/show/20248.J_R_Ward,2009,/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/vampires|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/adult-fiction|/genres/erotica,dir07/5098079-lover-avenged.html,68751,"Lover Avenged (Black Dagger Brotherhood, #7)" +4.00,6550,1599900734,good_reads:book,https://www.goodreads.com/author/show/49177.Shannon_Hale,2005,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/romance|/genres/childrens|/genres/middle-grade|/genres/fantasy|/genres/fairy-tales|/genres/adventure|/genres/childrens|/genres/juvenile|/genres/young-adult|/genres/teen,dir07/85990.Princess_Academy.html,66482,"Princess Academy (Princess Academy, #1)" +4.23,2909,1841497126,good_reads:book,https://www.goodreads.com/author/show/7581.Kelley_Armstrong,2010,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/ghosts|/genres/paranormal|/genres/witches,dir07/6468666-the-reckoning.html,75466,"The Reckoning (Darkest Powers, #3)" +4.23,3134,0060512806,good_reads:book,https://www.goodreads.com/author/show/545.Neal_Stephenson,1999,/genres/fiction|/genres/science-fiction|/genres/historical-fiction|/genres/science-fiction|/genres/cyberpunk|/genres/thriller|/genres/science-fiction-fantasy|/genres/war|/genres/fantasy|/genres/novels|/genres/adventure,dir07/816.Cryptonomicon.html,56039,Cryptonomicon +4.12,1351,0099427869,good_reads:book,https://www.goodreads.com/author/show/16904.Richard_Bach,1977,/genres/fiction|/genres/philosophy|/genres/spirituality|/genres/fantasy|/genres/classics|/genres/religion|/genres/inspirational|/genres/novels|/genres/literature|/genres/self-help,dir07/29946.Illusions.html,34872,Illusions +3.71,1242,0140436588,good_reads:book,https://www.goodreads.com/author/show/4345.Walter_Scott,1819,/genres/classics|/genres/historical-fiction|/genres/literature|/genres/adventure|/genres/romance|/genres/classics|/genres/classic-literature|/genres/european-literature|/genres/british-literature|/genres/historical-fiction|/genres/medieval|/genres/literature|/genres/19th-century|/genres/novels,dir07/6440.Ivanhoe.html,52301,Ivanhoe +3.87,10849,0061234001,good_reads:book,https://www.goodreads.com/author/show/798.Steven_D_Levitt,2001,/genres/non-fiction|/genres/economics|/genres/business|/genres/science|/genres/sociology|/genres/psychology|/genres/politics|/genres/book-club|/genres/social-science|/genres/culture,dir07/1202.Freakonomics.html,381098,"Freakonomics (Freakonomics, #1)" +3.94,1140,0679732187,good_reads:book,https://www.goodreads.com/author/show/3535.William_Faulkner,1936,/genres/classics|/genres/literature|/genres/literature|/genres/american|/genres/novels|/genres/historical-fiction|/genres/american|/genres/southern|/genres/gothic|/genres/southern-gothic,dir07/373755.Absalom_Absalom_.html,24333,"Absalom, Absalom!" +3.86,4681,0553384287,good_reads:book,https://www.goodreads.com/author/show/9355.Dean_Koontz,2003,/genres/horror|/genres/fiction|/genres/mystery|/genres/thriller|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/suspense|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/ghosts,dir07/14995.Odd_Thomas.html,164690,"Odd Thomas (Odd Thomas, #1)" +4.36,8022,0060987510,good_reads:book,https://www.goodreads.com/author/show/29184.Nancy_E_Turner,1998,/genres/historical-fiction|/genres/book-club|/genres/fiction|/genres/romance|/genres/adult-fiction|/genres/western|/genres/adult,dir07/348225.These_Is_My_Words.html,39605,"These Is My Words (Sarah Agnes Prine, #1)" +3.69,4253,0061124265,good_reads:book,https://www.goodreads.com/author/show/566.Paulo_Coelho,1998,/genres/fiction|/genres/philosophy|/genres/contemporary|/genres/novels|/genres/drama|/genres/literature|/genres/psychology|/genres/romance,dir07/1431.Veronika_Decides_to_Die.html,88993,Veronika Decides to Die +4.16,2658,0061662763,good_reads:book,https://www.goodreads.com/author/show/7581.Kelley_Armstrong,2009,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/ghosts|/genres/romance|/genres/paranormal|/genres/witches,dir07/5391115-the-awakening.html,76211,"The Awakening (Darkest Powers, #2)" +4.04,7221,0375856110,good_reads:book,https://www.goodreads.com/author/show/8349.Christopher_Paolini,2011,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/dragons|/genres/fiction|/genres/fantasy|/genres/magic|/genres/adventure|/genres/fantasy|/genres/high-fantasy,dir07/7664041-inheritance.html,98634,"Inheritance (The Inheritance Cycle, #4)" +3.95,1605,140003342X,good_reads:book,https://www.goodreads.com/author/show/3534.Toni_Morrison,1977,/genres/fiction|/genres/classics|/genres/literature|/genres/cultural|/genres/african-american|/genres/novels|/genres/academic|/genres/school|/genres/historical-fiction|/genres/magical-realism|/genres/contemporary|/genres/literature|/genres/american,dir07/11334.Song_of_Solomon.html,43626,Song of Solomon +4.15,5428,0689865198,good_reads:book,https://www.goodreads.com/author/show/2821144.Ellen_Hopkins,2001,/genres/young-adult|/genres/poetry|/genres/realistic-fiction|/genres/contemporary|/genres/young-adult|/genres/teen,dir07/270730.Crank.html,73025,"Crank (Crank, #1)" +4.06,2944,0441014941,good_reads:book,https://www.goodreads.com/author/show/17061.Charlaine_Harris,2007,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/romance|/genres/mystery|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/adult,dir07/140075.All_Together_Dead.html,148090,"All Together Dead (Sookie Stackhouse, #7)" +4.13,7988,,good_reads:book,https://www.goodreads.com/author/show/4126827.Michelle_Hodkin,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/mystery|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/horror|/genres/contemporary|/genres/thriller,dir07/11408650-the-unbecoming-of-mara-dyer.html,63906,"The Unbecoming of Mara Dyer (Mara Dyer, #1)" +3.66,3497,006114097X,good_reads:book,https://www.goodreads.com/author/show/50873.L_J_Smith,1991,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fiction,dir07/395871.The_Awakening_and_The_Struggle.html,59317,"The Awakening and The Struggle (The Vampire Diaries, #1-2)" +4.01,3221,0441013333,good_reads:book,https://www.goodreads.com/author/show/17061.Charlaine_Harris,2005,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/romance|/genres/mystery|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/adult,dir07/170210.Dead_as_a_Doornail.html,149295,"Dead as a Doornail (Sookie Stackhouse, #5)" +4.19,1504,0805066691,good_reads:book,https://www.goodreads.com/author/show/43443.Dee_Brown,1970,/genres/history|/genres/non-fiction|/genres/history|/genres/american-history|/genres/classics|/genres/war|/genres/politics|/genres/literature|/genres/american|/genres/western|/genres/biography|/genres/race,dir07/76401.Bury_My_Heart_at_Wounded_Knee.html,31483,Bury My Heart at Wounded Knee +4.28,871,0385418868,good_reads:book,https://www.goodreads.com/author/show/20105.Joseph_Campbell,1988,/genres/non-fiction|/genres/fantasy|/genres/mythology|/genres/philosophy|/genres/religion|/genres/history|/genres/psychology|/genres/spirituality|/genres/anthropology|/genres/classics|/genres/sociology,dir07/35519.The_Power_of_Myth.html,25798,The Power of Myth +4.02,3056,0441015891,good_reads:book,https://www.goodreads.com/author/show/17061.Charlaine_Harris,2008,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/romance|/genres/mystery|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural,dir07/2233407.From_Dead_to_Worse.html,135417,"From Dead to Worse (Sookie Stackhouse, #8)" +3.71,1406,1416534733,good_reads:book,https://www.goodreads.com/author/show/1244.Mark_Twain,1889,/genres/fantasy|/genres/classics|/genres/historical-fiction|/genres/humor|/genres/literature|/genres/science-fiction|/genres/time-travel|/genres/adventure|/genres/science-fiction|/genres/mythology|/genres/arthurian|/genres/literature|/genres/american,dir07/162898.A_Connecticut_Yankee_in_King_Arthur_s_Court.html,55619,A Connecticut Yankee in King Arthur's Court +3.30,3007,0142437808,good_reads:book,https://www.goodreads.com/author/show/16.Edith_Wharton,1911,/genres/classics|/genres/literature|/genres/academic|/genres/school|/genres/romance|/genres/historical-fiction|/genres/young-adult|/genres/high-school|/genres/literature|/genres/american|/genres/classics|/genres/classic-literature|/genres/academic|/genres/read-for-school|/genres/book-club,dir07/5246.Ethan_Frome.html,54930,Ethan Frome +4.13,2023,,good_reads:book,https://www.goodreads.com/author/show/9355.Dean_Koontz,1987,/genres/fiction|/genres/thriller|/genres/mystery|/genres/suspense|/genres/science-fiction|/genres/fantasy|/genres/animals|/genres/dogs|/genres/fantasy|/genres/paranormal|/genres/thriller|/genres/mystery-thriller|/genres/fantasy|/genres/supernatural,dir07/32423.Watchers.html,87516,Watchers +4.34,2564,0061245097,good_reads:book,https://www.goodreads.com/author/show/669810.Jeaniene_Frost,2008,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy|/genres/adult|/genres/fantasy|/genres/supernatural|/genres/fiction,dir07/2168860.One_Foot_in_the_Grave.html,61115,"One Foot in the Grave (Night Huntress, #2)" +3.99,3818,0375713344,good_reads:book,https://www.goodreads.com/author/show/8622.Katherine_Dunn,1989,/genres/fiction|/genres/book-club|/genres/horror|/genres/fantasy|/genres/novels|/genres/contemporary|/genres/adult-fiction|/genres/literature|/genres/literary-fiction|/genres/humor,dir07/13872.Geek_Love.html,33311,Geek Love +4.17,7609,1599906953,good_reads:book,https://www.goodreads.com/author/show/3433047.Sarah_J_Maas,2012,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/magic|/genres/adventure|/genres/fantasy|/genres/high-fantasy|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/young-adult-fantasy|/genres/mystery,dir07/7896527-throne-of-glass.html,72058,"Throne of Glass (Throne of Glass, #1)" +3.76,1620,0553381342,good_reads:book,https://www.goodreads.com/author/show/3083854.Tom_Wolfe,1987,/genres/classics|/genres/literature|/genres/novels|/genres/contemporary|/genres/new-york|/genres/literature|/genres/american|/genres/literary-fiction,dir07/2666.The_Bonfire_of_the_Vanities.html,41452,The Bonfire of the Vanities +4.42,21380,0375869026,good_reads:book,https://www.goodreads.com/author/show/4859212.R_J_Palacio,2012,/genres/realistic-fiction|/genres/young-adult|/genres/childrens|/genres/middle-grade|/genres/book-club|/genres/childrens|/genres/childrens|/genres/juvenile|/genres/academic|/genres/school|/genres/family|/genres/young-adult|/genres/coming-of-age|/genres/young-adult|/genres/teen,dir07/11387515-wonder.html,134042,Wonder +3.97,2589,0441783589,good_reads:book,https://www.goodreads.com/author/show/205.Robert_A_Heinlein,1959,/genres/science-fiction|/genres/fiction|/genres/classics|/genres/war|/genres/military|/genres/science-fiction-fantasy|/genres/war|/genres/fantasy|/genres/science-fiction|/genres/space-opera,dir07/17214.Starship_Troopers.html,91616,Starship Troopers +3.56,11864,0061374229,good_reads:book,https://www.goodreads.com/author/show/982213.David_Wroblewski,2008,/genres/book-club|/genres/adult-fiction|/genres/animals|/genres/contemporary|/genres/adult|/genres/novels|/genres/literary-fiction|/genres/historical-fiction|/genres/literature|/genres/drama,dir07/2731276-the-story-of-edgar-sawtelle.html,64867,The Story of Edgar Sawtelle +4.10,1454,0007173687,good_reads:book,https://www.goodreads.com/author/show/61105.Dr_Seuss,1960,/genres/childrens|/genres/childrens|/genres/picture-books|/genres/fiction|/genres/classics|/genres/poetry|/genres/kids|/genres/fantasy|/genres/animals|/genres/humor|/genres/science|/genres/mathematics,dir07/7770.One_Fish_Two_Fish_Red_Fish_Blue_Fish.html,96780,"One Fish, Two Fish, Red Fish, Blue Fish" +3.94,3737,0743269519,good_reads:book,https://www.goodreads.com/author/show/1538.Stephen_R_Covey,1989,/genres/non-fiction|/genres/self-help|/genres/business|/genres/psychology|/genres/leadership|/genres/self-help|/genres/personal-development|/genres/management|/genres/productivity|/genres/philosophy|/genres/inspirational,dir07/36072.The_7_Habits_of_Highly_Effective_People.html,177044,The 7 Habits of Highly Effective People +4.46,3140,0385341652,good_reads:book,https://www.goodreads.com/author/show/48206.Karen_Marie_Moning,2009,/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fairies|/genres/fae|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/fiction|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/fairies,dir07/6050298-dreamfever.html,54341,"Dreamfever (Fever, #4)" +4.10,2980,0006480098,good_reads:book,https://www.goodreads.com/author/show/25307.Robin_Hobb,1995,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/adventure|/genres/epic|/genres/young-adult|/genres/adult,dir07/45107.Assassin_s_Apprentice.html,87652,"Assassin's Apprentice (Farseer Trilogy, #1)" +4.02,3909,0441017150,good_reads:book,https://www.goodreads.com/author/show/17061.Charlaine_Harris,2009,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/mystery|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/shapeshifters|/genres/werewolves|/genres/adult,dir07/5161066-dead-and-gone.html,131312,"Dead and Gone (Sookie Stackhouse, #9)" +4.12,896,0679772871,good_reads:book,https://www.goodreads.com/author/show/19405.Thomas_Mann,1924,/genres/fiction|/genres/classics|/genres/european-literature|/genres/german-literature|/genres/literature|/genres/novels|/genres/philosophy|/genres/cultural|/genres/germany|/genres/literature|/genres/20th-century,dir07/88077.The_Magic_Mountain.html,16474,The Magic Mountain +3.73,13729,0340896965,good_reads:book,https://www.goodreads.com/author/show/46118.David_Nicholls,2001,/genres/fiction|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/book-club|/genres/contemporary|/genres/adult|/genres/adult-fiction|/genres/love|/genres/european-literature|/genres/british-literature|/genres/drama,dir07/6280118-one-day.html,180543,One Day +4.28,2256,0765343436,good_reads:book,https://www.goodreads.com/author/show/8649.Juliet_Marillier,1999,/genres/fantasy|/genres/romance|/genres/historical-fiction|/genres/fantasy|/genres/fairy-tales|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/adult,dir07/13928.Daughter_of_the_Forest.html,29532,"Daughter of the Forest (Sevenwaters, #1)" +3.86,1120,0552992097,good_reads:book,https://www.goodreads.com/author/show/3075.John_Irving,1981,/genres/contemporary|/genres/literature|/genres/novels|/genres/literature|/genres/american|/genres/literary-fiction|/genres/classics|/genres/adult-fiction|/genres/humor|/genres/family|/genres/adult,dir07/11768.The_Hotel_New_Hampshire.html,39824,The Hotel New Hampshire +4.16,1761,0340837942,good_reads:book,https://www.goodreads.com/author/show/205.Robert_A_Heinlein,1966,/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/classics|/genres/fantasy|/genres/politics|/genres/speculative-fiction|/genres/novels|/genres/science-fiction|/genres/dystopia|/genres/space,dir07/16690.The_Moon_Is_a_Harsh_Mistress.html,58567,The Moon Is a Harsh Mistress +3.92,3559,1590302257,good_reads:book,https://www.goodreads.com/author/show/1771.Sun_Tzu,-512,/genres/non-fiction|/genres/politics|/genres/classics|/genres/literature|/genres/psychology|/genres/philosophy|/genres/military|/genres/military-history|/genres/management|/genres/cultural|/genres/asia|/genres/classics|/genres/classic-literature,dir07/10534.The_Art_of_War.html,114619,The Art of War +3.75,2649,014034893X,good_reads:book,https://www.goodreads.com/author/show/26946.Mildred_D_Taylor,1976,/genres/historical-fiction|/genres/young-adult|/genres/classics|/genres/childrens|/genres/academic|/genres/read-for-school|/genres/cultural|/genres/african-american|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/realistic-fiction|/genres/cultural,dir07/310459.Roll_of_Thunder_Hear_My_Cry.html,78896,"Roll of Thunder, Hear My Cry (Logans, #4)" +4.04,1359,0099465892,good_reads:book,https://www.goodreads.com/author/show/5687.Irvine_Welsh,1993,/genres/fiction|/genres/contemporary|/genres/novels|/genres/literature|/genres/thriller|/genres/classics|/genres/mystery|/genres/crime|/genres/european-literature|/genres/british-literature|/genres/cultural|/genres/scotland|/genres/adult,dir07/135836.Trainspotting.html,84437,Trainspotting +4.13,2082,1857988841,good_reads:book,https://www.goodreads.com/author/show/2778055.Kurt_Vonnegut,1959,/genres/science-fiction|/genres/fiction|/genres/classics|/genres/literature|/genres/humor|/genres/novels|/genres/fantasy|/genres/science-fiction-fantasy,dir07/4982.The_Sirens_of_Titan.html,54190,The Sirens of Titan +4.07,8250,0446579939,good_reads:book,https://www.goodreads.com/author/show/2345.Nicholas_Sparks,2007,/genres/romance|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/adult|/genres/romance|/genres/contemporary-romance|/genres/love|/genres/adult-fiction|/genres/drama|/genres/book-club,dir07/3063499-the-lucky-one.html,185085,The Lucky One +4.10,1868,0553381539,good_reads:book,https://www.goodreads.com/author/show/6942.Pat_Conroy,1995,/genres/fiction|/genres/book-club|/genres/american|/genres/southern|/genres/contemporary|/genres/adult-fiction|/genres/novels|/genres/literature,dir07/16729.Beach_Music.html,24981,Beach Music +4.16,1045,0310241634,good_reads:book,https://www.goodreads.com/author/show/11237.Catherine_Marshall,1967,/genres/fiction|/genres/historical-fiction|/genres/christian-fiction|/genres/classics|/genres/christian|/genres/romance|/genres/young-adult|/genres/inspirational|/genres/adult|/genres/womens-fiction|/genres/chick-lit,dir07/229123.Christy.html,26903,Christy +4.06,1868,0152058109,good_reads:book,https://www.goodreads.com/author/show/6872556.P_L_Travers,1934,/genres/classics|/genres/childrens|/genres/fantasy|/genres/young-adult|/genres/childrens|/genres/juvenile,dir07/152380.Mary_Poppins.html,63704,"Mary Poppins (Mary Poppins, #1)" +4.05,3195,0064404773,good_reads:book,https://www.goodreads.com/author/show/5339.Robin_McKinley,1978,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/fairy-tales|/genres/romance|/genres/fiction|/genres/retellings|/genres/fairy-tales|/genres/fairy-tale-retellings|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/young-adult-fantasy,dir07/41424.Beauty.html,47340,Beauty (Folktales #1) +4.13,718,0141185856,good_reads:book,https://www.goodreads.com/author/show/22698.Richard_Llewellyn,1939,/genres/classics|/genres/fiction|/genres/historical-fiction|/genres/novels|/genres/book-club|/genres/literature|/genres/european-literature|/genres/british-literature,dir07/40496.How_Green_Was_My_Valley.html,8242,How Green Was My Valley +4.00,3899,0425197549,good_reads:book,https://www.goodreads.com/author/show/9550.Laurell_K_Hamilton,1993,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/horror|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/mystery,dir07/30281.Guilty_Pleasures.html,87548,"Guilty Pleasures (Anita Blake, Vampire Hunter, #1)" +3.94,2948,0380729407,good_reads:book,https://www.goodreads.com/author/show/1630.Ray_Bradbury,1962,/genres/horror|/genres/fantasy|/genres/classics|/genres/science-fiction|/genres/young-adult|/genres/science-fiction-fantasy|/genres/book-club|/genres/mystery|/genres/literature|/genres/thriller,dir07/248596.Something_Wicked_This_Way_Comes.html,49608,"Something Wicked This Way Comes (Green Town, #2)" +4.22,7908,,good_reads:book,https://www.goodreads.com/author/show/4890182.Susan_Ee,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/angels|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance,dir07/11500217-angelfall.html,63175,"Angelfall (Penryn & the End of Days, #1)" +3.95,3102,0452287065,good_reads:book,https://www.goodreads.com/author/show/3534.Toni_Morrison,1970,/genres/classics|/genres/cultural|/genres/african-american|/genres/historical-fiction|/genres/literature|/genres/novels|/genres/academic|/genres/school|/genres/book-club|/genres/adult-fiction|/genres/literature|/genres/american|/genres/literary-fiction,dir07/11337.The_Bluest_Eye.html,90460,The Bluest Eye +3.97,7795,0061150142,good_reads:book,https://www.goodreads.com/author/show/7128.Jodi_Picoult,1996,/genres/fiction|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/drama|/genres/adult-fiction|/genres/mystery|/genres/adult|/genres/book-club|/genres/young-adult,dir07/10916.The_Pact.html,180627,The Pact +4.33,77,0615770592,good_reads:book,https://www.goodreads.com/author/show/1280953.Ben_Peller,2013,/genres/fantasy|/genres/inspirational,dir07/17889664-to-live-and-die-in-fantasyland.html,82,"TO LIVE AND DIE IN fantasyLAnd (To Live, #3)" +3.59,9700,0307276902,good_reads:book,https://www.goodreads.com/author/show/822.James_Frey,2003,/genres/non-fiction|/genres/biography|/genres/book-club|/genres/contemporary|/genres/psychology|/genres/biography|/genres/autobiography,dir07/1241.A_Million_Little_Pieces.html,155900,A Million Little Pieces +3.69,12059,1933372605,good_reads:book,https://www.goodreads.com/author/show/643126.Muriel_Barbery,1900,/genres/book-club|/genres/cultural|/genres/france|/genres/philosophy|/genres/contemporary,dir07/2967752-the-elegance-of-the-hedgehog.html,84216,The Elegance of the Hedgehog +3.97,4506,0446615862,good_reads:book,https://www.goodreads.com/author/show/2345.Nicholas_Sparks,1991,/genres/romance|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/adult|/genres/adult-fiction|/genres/romance|/genres/contemporary-romance|/genres/love,dir07/3466.The_Wedding.html,100837,The Wedding +3.89,440,0486223051,good_reads:book,https://www.goodreads.com/author/show/11525.Samuel_Taylor_Coleridge,1798,/genres/poetry|/genres/classics|/genres/fiction|/genres/literature|/genres/academic|/genres/school|/genres/fantasy|/genres/european-literature|/genres/british-literature|/genres/gothic|/genres/classics|/genres/classic-literature|/genres/academic|/genres/read-for-school,dir07/732562.The_Rime_of_the_Ancient_Mariner.html,27723,The Rime of the Ancient Mariner +3.97,577,0451529758,good_reads:book,https://www.goodreads.com/author/show/6989.Rudyard_Kipling,1894,/genres/classics|/genres/fiction|/genres/childrens|/genres/fantasy|/genres/adventure|/genres/literature|/genres/short-stories|/genres/young-adult|/genres/animals|/genres/cultural|/genres/india,dir07/41684.The_Jungle_Books.html,49308,The Jungle Books +3.96,3127,0553383043,good_reads:book,https://www.goodreads.com/author/show/874602.Ursula_K_Le_Guin,1968,/genres/fantasy|/genres/young-adult|/genres/science-fiction-fantasy|/genres/classics|/genres/science-fiction|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/fantasy|/genres/epic-fantasy,dir07/13642.A_Wizard_of_Earthsea.html,108631,"A Wizard of Earthsea (Earthsea Cycle, #1)" +4.19,1289,0141185260,good_reads:book,https://www.goodreads.com/author/show/5152.Vladimir_Nabokov,1962,/genres/fiction|/genres/classics|/genres/poetry|/genres/literature|/genres/cultural|/genres/russia|/genres/novels|/genres/literature|/genres/russian-literature|/genres/literary-fiction|/genres/literature|/genres/20th-century|/genres/literature|/genres/american,dir07/7805.Pale_Fire.html,22221,Pale Fire +3.97,1118,0743453255,good_reads:book,https://www.goodreads.com/author/show/77004.Winston_Groom,1986,/genres/fiction|/genres/historical-fiction|/genres/media-tie-in|/genres/movies|/genres/classics|/genres/novels|/genres/humor|/genres/adventure|/genres/adult,dir07/186190.Forrest_Gump.html,30604,"Forrest Gump (Forrest Gump, #1)" +3.96,4371,0385524943,good_reads:book,https://www.goodreads.com/author/show/149883.Andrew_Davidson,2008,/genres/fiction|/genres/fantasy|/genres/romance|/genres/historical-fiction|/genres/book-club|/genres/contemporary|/genres/adult|/genres/fantasy|/genres/paranormal|/genres/adult-fiction|/genres/gothic,dir07/2595138-the-gargoyle.html,28502,The Gargoyle +3.95,4439,0763616052,good_reads:book,https://www.goodreads.com/author/show/13663.Kate_DiCamillo,2000,/genres/childrens|/genres/fiction|/genres/young-adult|/genres/animals|/genres/realistic-fiction|/genres/classics|/genres/academic|/genres/school|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/chapter-books,dir07/357664.Because_of_Winn_Dixie.html,120742,Because of Winn-Dixie +4.35,1005,0375508325,good_reads:book,https://www.goodreads.com/author/show/10538.Carl_Sagan,1980,/genres/science|/genres/non-fiction|/genres/science|/genres/astronomy|/genres/science|/genres/physics|/genres/history|/genres/philosophy|/genres/space|/genres/science|/genres/popular-science|/genres/classics|/genres/reference,dir08/55030.Cosmos.html,43698,Cosmos +3.92,2387,039333807X,good_reads:book,https://www.goodreads.com/author/show/2546.Chuck_Palahniuk,1999,/genres/fiction|/genres/contemporary|/genres/novels|/genres/thriller|/genres/humor|/genres/literature|/genres/american|/genres/literature|/genres/dark|/genres/book-club|/genres/literary-fiction,dir08/7076703-survivor.html,67063,Survivor +3.92,4141,0060739495,good_reads:book,https://www.goodreads.com/author/show/11633.Sharon_Creech,1994,/genres/young-adult|/genres/childrens|/genres/realistic-fiction|/genres/childrens|/genres/middle-grade|/genres/academic|/genres/school,dir08/53496.Walk_Two_Moons.html,107706,Walk Two Moons +4.15,2919,,good_reads:book,https://www.goodreads.com/author/show/3354.Haruki_Murakami,1985,/genres/fiction|/genres/fantasy|/genres/cultural|/genres/japan|/genres/asian-literature|/genres/japanese-literature|/genres/science-fiction|/genres/magical-realism|/genres/literature|/genres/contemporary|/genres/novels,dir08/10374.Hard_Boiled_Wonderland_and_the_End_of_the_World.html,48012,Hard-Boiled Wonderland and the End of the World +4.17,2442,0140143505,good_reads:book,https://www.goodreads.com/author/show/58918.Helene_Hanff,1970,/genres/non-fiction|/genres/writing|/genres/books-about-books|/genres/autobiography|/genres/memoir|/genres/biography|/genres/classics|/genres/book-club|/genres/european-literature|/genres/british-literature|/genres/biography-memoir|/genres/literature|/genres/adult,dir08/368916.84_Charing_Cross_Road.html,18604,"84, Charing Cross Road" +3.52,5511,0552151696,good_reads:book,https://www.goodreads.com/author/show/630.Dan_Brown,1998,/genres/fiction|/genres/thriller|/genres/mystery|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/adventure|/genres/mystery|/genres/crime|/genres/science-fiction|/genres/novels|/genres/action,dir08/11125.Digital_Fortress.html,286059,Digital Fortress +3.76,4238,0061668036,good_reads:book,https://www.goodreads.com/author/show/2096360.Aprilynne_Pike,2009,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/fairies|/genres/fantasy|/genres/magic|/genres/fairies|/genres/fae|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural,dir08/5056084-wings.html,51290,"Wings (Wings, #1)" +4.00,1195,0553119222,good_reads:book,https://www.goodreads.com/author/show/123715.Agatha_Christie,1978,/genres/mystery|/genres/mystery|/genres/crime|/genres/classics|/genres/mystery|/genres/detective|/genres/thriller|/genres/mystery-thriller|/genres/european-literature|/genres/british-literature|/genres/cultural|/genres/egypt|/genres/novels|/genres/mystery|/genres/murder-mystery|/genres/thriller,dir08/131359.Death_on_the_Nile.html,46877,"Death on the Nile (Hercule Poirot, #17)" +4.02,2011,184243022X,good_reads:book,https://www.goodreads.com/author/show/197.Tom_Robbins,1980,/genres/humor|/genres/literature|/genres/novels|/genres/book-club|/genres/contemporary|/genres/literature|/genres/american|/genres/humor|/genres/funny|/genres/humor|/genres/comedy|/genres/classics|/genres/adult-fiction,dir08/9566.Still_Life_with_Woodpecker.html,49306,Still Life with Woodpecker +4.25,5821,1442426675,good_reads:book,https://www.goodreads.com/author/show/2876763.Becca_Fitzpatrick,2012,/genres/paranormal|/genres/angels|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/magic,dir08/12751687-finale.html,67062,"Finale (Hush, Hush, #4)" +4.17,1947,0060584750,good_reads:book,https://www.goodreads.com/author/show/10289.Dennis_Lehane,2001,/genres/mystery|/genres/fiction|/genres/mystery|/genres/crime|/genres/thriller|/genres/thriller|/genres/mystery-thriller|/genres/suspense|/genres/drama|/genres/book-club|/genres/contemporary|/genres/mystery|/genres/detective,dir08/21671.Mystic_River.html,57728,Mystic River +4.10,1273,0451171357,good_reads:book,https://www.goodreads.com/author/show/12833.Irving_Stone,1958,/genres/historical-fiction|/genres/fiction|/genres/art|/genres/classics|/genres/cultural|/genres/italy|/genres/biography-memoir|/genres/art|/genres/art-history|/genres/literature|/genres/novels|/genres/adult-fiction,dir08/321552.The_Agony_and_the_Ecstasy.html,44403,The Agony and the Ecstasy +4.31,1079,0553258478,good_reads:book,https://www.goodreads.com/author/show/19708.Leon_Uris,1958,/genres/historical-fiction|/genres/classics|/genres/literature|/genres/jewish|/genres/war|/genres/cultural|/genres/israel|/genres/novels|/genres/literature|/genres/world-war-ii|/genres/holocaust|/genres/adult-fiction|/genres/adult,dir08/42697.Exodus.html,57085,Exodus +4.17,2639,0316155594,good_reads:book,https://www.goodreads.com/author/show/3780.James_Patterson,2006,/genres/young-adult|/genres/fantasy|/genres/science-fiction|/genres/adventure|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/action|/genres/young-adult|/genres/teen|/genres/romance|/genres/paranormal|/genres/angels,dir08/13139.School_s_Out_Forever.html,67871,"School's Out—Forever (Maximum Ride, #2)" +3.35,2579,0446364495,good_reads:book,https://www.goodreads.com/author/show/28024.Robert_James_Waller,1992,/genres/fiction|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/classics|/genres/contemporary|/genres/adult-fiction|/genres/adult|/genres/novels|/genres/love|/genres/drama,dir08/83674.The_Bridges_of_Madison_County.html,42332,The Bridges of Madison County +4.18,787,031215125X,good_reads:book,https://www.goodreads.com/author/show/1040250.M_M_Kaye,1978,/genres/historical-fiction|/genres/cultural|/genres/india|/genres/romance|/genres/classics|/genres/cultural|/genres/asia|/genres/adventure|/genres/romance|/genres/historical-romance|/genres/adult-fiction|/genres/book-club|/genres/novels,dir08/10222.The_Far_Pavilions.html,24592,The Far Pavilions +3.98,3177,,good_reads:book,https://www.goodreads.com/author/show/2546.Chuck_Palahniuk,1999,/genres/fiction|/genres/contemporary|/genres/novels|/genres/thriller|/genres/dark|/genres/adult-fiction|/genres/literature|/genres/humor|/genres/literature|/genres/american|/genres/adult,dir08/3304435-invisible-monsters.html,72893,Invisible Monsters +3.68,4115,0786838922,good_reads:book,https://www.goodreads.com/author/show/21911.Melissa_de_la_Cruz,2006,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/angels|/genres/fiction,dir08/872333.Blue_Bloods.html,96737,"Blue Bloods (Blue Bloods, #1)" +3.97,2473,0446672211,good_reads:book,https://www.goodreads.com/author/show/3510.Billie_Letts,1995,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/adult-fiction|/genres/contemporary|/genres/book-club|/genres/adult|/genres/romance|/genres/drama|/genres/novels|/genres/young-adult,dir08/5168.Where_the_Heart_Is.html,163497,Where the Heart Is +3.94,3588,0679744398,good_reads:book,https://www.goodreads.com/author/show/4178.Cormac_McCarthy,1992,/genres/fiction|/genres/western|/genres/literature|/genres/classics|/genres/novels|/genres/historical-fiction|/genres/book-club|/genres/literature|/genres/american|/genres/literary-fiction,dir08/469571.All_the_Pretty_Horses.html,50277,"All the Pretty Horses (The Border Trilogy, #1)" +4.30,20618,030788743X,good_reads:book,https://www.goodreads.com/author/show/31712.Ernest_Cline,2011,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/young-adult|/genres/book-club|/genres/adventure|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/cyberpunk|/genres/adult,dir08/9969571-ready-player-one.html,126029,Ready Player One +4.23,807,0140045295,good_reads:book,https://www.goodreads.com/author/show/7285.Ken_Kesey,1964,/genres/fiction|/genres/classics|/genres/literature|/genres/novels|/genres/literature|/genres/american,dir08/529626.Sometimes_a_Great_Notion.html,12340,Sometimes a Great Notion +4.11,7233,0803734611,good_reads:book,https://www.goodreads.com/author/show/1373880.Kristin_Cashore,2009,/genres/young-adult|/genres/fantasy|/genres/romance|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/young-adult-fantasy,dir08/6137154-fire.html,87028,"Fire (Graceling Realm, #2)" +4.10,4909,0670011940,good_reads:book,https://www.goodreads.com/author/show/2987.Sarah_Dessen,2009,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/fiction|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/young-adult-romance|/genres/young-adult|/genres/coming-of-age|/genres/love,dir08/5664985-along-for-the-ride.html,117601,Along for the Ride +3.89,1227,1842322761,good_reads:book,https://www.goodreads.com/author/show/21477.Nevil_Shute,1957,/genres/fiction|/genres/science-fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/classics|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/apocalyptic|/genres/cultural|/genres/australia|/genres/war|/genres/literature|/genres/novels,dir08/38180.On_the_Beach.html,19298,On the Beach +3.71,5217,0385729332,good_reads:book,https://www.goodreads.com/author/show/3681.Ann_Brashares,2001,/genres/young-adult|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/young-adult|/genres/teen|/genres/contemporary|/genres/realistic-fiction|/genres/childrens|/genres/young-adult|/genres/coming-of-age|/genres/young-adult|/genres/high-school,dir08/452306.The_Sisterhood_of_the_Traveling_Pants.html,376153,"The Sisterhood of the Traveling Pants (Sisterhood, #1)" +4.17,2180,0316155608,good_reads:book,https://www.goodreads.com/author/show/3780.James_Patterson,2007,/genres/young-adult|/genres/fantasy|/genres/science-fiction|/genres/adventure|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/young-adult|/genres/teen|/genres/action|/genres/paranormal|/genres/angels,dir08/33676.Saving_the_World_and_Other_Extreme_Sports.html,60975,"Saving the World and Other Extreme Sports (Maximum Ride, #3)" +4.06,2164,0671037706,good_reads:book,https://www.goodreads.com/author/show/1630.Ray_Bradbury,1957,/genres/classics|/genres/science-fiction|/genres/fantasy|/genres/young-adult|/genres/short-stories|/genres/book-club|/genres/literature|/genres/novels|/genres/young-adult|/genres/coming-of-age|/genres/literature|/genres/american,dir08/50033.Dandelion_Wine.html,27736,"Dandelion Wine (Green Town, #1)" +4.45,1469,0307594777,good_reads:book,https://www.goodreads.com/author/show/706255.Stieg_Larsson,2005,/genres/fiction|/genres/mystery|/genres/thriller|/genres/mystery|/genres/crime|/genres/suspense|/genres/contemporary|/genres/literature|/genres/book-club|/genres/adventure|/genres/action,dir08/7822895-the-millennium-trilogy.html,26363,The Millennium Trilogy +3.78,25875,1594744769,good_reads:book,https://www.goodreads.com/author/show/3046613.Ransom_Riggs,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/mystery|/genres/historical-fiction|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/science-fiction|/genres/time-travel|/genres/young-adult|/genres/teen,dir08/9460487-miss-peregrine-s-home-for-peculiar-children.html,250624,"Miss Peregrine's Home for Peculiar Children (Miss Peregrine's Peculiar Children, #1)" +3.66,2702,0061284394,good_reads:book,https://www.goodreads.com/author/show/1192311.Claudia_Gray,2008,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/young-adult|/genres/teen,dir08/2722413-evernight.html,52956,"Evernight (Evernight, #1)" +4.40,4807,1595143181,good_reads:book,https://www.goodreads.com/author/show/137902.Richelle_Mead,2012,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/witches,dir08/8709523-the-golden-lily.html,60758,"The Golden Lily (Bloodlines, #2)" +3.88,10827,1439148503,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,2009,/genres/horror|/genres/fiction|/genres/science-fiction|/genres/thriller|/genres/fantasy|/genres/mystery|/genres/suspense|/genres/science-fiction|/genres/dystopia|/genres/adult|/genres/science-fiction-fantasy,dir08/6320534-under-the-dome.html,136186,Under the Dome +4.13,11496,006197806X,good_reads:book,https://www.goodreads.com/author/show/2936493.Lauren_Oliver,2012,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/romance|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/young-adult|/genres/teen|/genres/adventure|/genres/apocalyptic|/genres/post-apocalyptic|/genres/love,dir08/9593911-pandemonium.html,127609,"Pandemonium (Delirium, #2)" +4.07,3125,0452286034,good_reads:book,https://www.goodreads.com/author/show/7581.Kelley_Armstrong,2001,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/adult|/genres/paranormal|/genres/shapeshifters|/genres/horror,dir08/11918.Bitten.html,56981,Bitten (Women of the Otherworld #1) +4.19,25441,1250012570,good_reads:book,https://www.goodreads.com/author/show/4208569.Rainbow_Rowell,2012,/genres/young-adult|/genres/romance|/genres/fiction|/genres/contemporary|/genres/realistic-fiction|/genres/young-adult|/genres/teen,dir08/15745753-eleanor-park.html,188536,Eleanor & Park +4.21,15995,,good_reads:book,https://www.goodreads.com/author/show/4208569.Rainbow_Rowell,2013,/genres/young-adult|/genres/contemporary|/genres/romance|/genres/fiction|/genres/realistic-fiction|/genres/new-adult|/genres/womens-fiction|/genres/chick-lit,dir08/16068905-fangirl.html,111240,Fangirl +3.92,3478,0440995779,good_reads:book,https://www.goodreads.com/author/show/7549.Elizabeth_George_Speare,1958,/genres/historical-fiction|/genres/young-adult|/genres/fiction|/genres/classics|/genres/childrens|/genres/romance|/genres/academic|/genres/school|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/middle-grade|/genres/paranormal|/genres/witches,dir08/703292.The_Witch_of_Blackbird_Pond.html,81563,The Witch of Blackbird Pond +4.36,2887,0385341636,good_reads:book,https://www.goodreads.com/author/show/48206.Karen_Marie_Moning,2008,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/fairies|/genres/fae|/genres/adult|/genres/paranormal|/genres/fairies|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/mystery|/genres/fantasy,dir08/2702704-faefever.html,54140,"Faefever (Fever, #3)" +4.18,5115,1881273156,good_reads:book,https://www.goodreads.com/author/show/622.Gary_Chapman,1992,/genres/non-fiction|/genres/self-help|/genres/christian|/genres/marriage|/genres/relationships|/genres/psychology|/genres/book-club|/genres/religion|/genres/christianity|/genres/inspirational,dir08/567795.The_Five_Love_Languages.html,111866,The Five Love Languages +4.00,2605,0446696137,good_reads:book,https://www.goodreads.com/author/show/2345.Nicholas_Sparks,2001,/genres/romance|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/adult|/genres/adult-fiction|/genres/romance|/genres/contemporary-romance|/genres/drama|/genres/love|/genres/mystery,dir08/3463.A_Bend_in_the_Road.html,94018,A Bend in the Road +4.35,849,0670674249,good_reads:book,https://www.goodreads.com/author/show/89552.Munro_Leaf,1936,/genres/childrens|/genres/picture-books|/genres/childrens|/genres/classics|/genres/fiction|/genres/animals|/genres/kids|/genres/childrens|/genres/juvenile|/genres/cultural|/genres/spain|/genres/young-adult|/genres/fantasy,dir08/773951.The_Story_of_Ferdinand.html,49704,The Story of Ferdinand +4.24,1143,0552152978,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,1992,/genres/fiction|/genres/humor|/genres/fantasy|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/religion|/genres/humor|/genres/funny,dir08/34484.Small_Gods.html,57575,"Small Gods (Discworld, #13)" +4.03,4356,0099285045,good_reads:book,https://www.goodreads.com/author/show/1455.Ernest_Hemingway,1964,/genres/classics|/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/biography|/genres/literature|/genres/cultural|/genres/france|/genres/travel|/genres/book-club|/genres/literature|/genres/american|/genres/biography|/genres/autobiography,dir08/4631.A_Moveable_Feast.html,61293,A Moveable Feast +4.06,2701,0553380168,good_reads:book,https://www.goodreads.com/author/show/1401.Stephen_Hawking,1987,/genres/non-fiction|/genres/history|/genres/science|/genres/science|/genres/astronomy|/genres/philosophy|/genres/science|/genres/popular-science|/genres/classics|/genres/science|/genres/physics|/genres/space|/genres/reference,dir08/3869.A_Brief_History_of_Time.html,109332,A Brief History of Time +4.04,6764,1590385810,good_reads:book,https://www.goodreads.com/author/show/25052.Brandon_Mull,2006,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/fantasy|/genres/magic,dir08/44652.Fablehaven.html,74715,"Fablehaven (Fablehaven, #1)" +4.06,1087,0140449183,good_reads:book,https://www.goodreads.com/author/show/5158478.Anonymous,-500,/genres/classics|/genres/spirituality|/genres/religion|/genres/hinduism|/genres/fantasy|/genres/mythology|/genres/religion|/genres/asian-literature|/genres/indian-literature|/genres/reference|/genres/religion|/genres/theology|/genres/academic|/genres/school|/genres/literature,dir08/99944.The_Bhagavad_Gita.html,31634,The Bhagavad Gita +4.42,3258,0451229851,good_reads:book,https://www.goodreads.com/author/show/20248.J_R_Ward,2010,/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/vampires|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/fiction|/genres/adult-fiction|/genres/erotica|/genres/fantasy|/genres/supernatural|/genres/contemporary,dir08/7046495-lover-mine.html,66014,"Lover Mine (Black Dagger Brotherhood, #8)" +4.06,5867,1936305623,good_reads:book,https://www.goodreads.com/author/show/4562483.Sylvain_Reynard,2011,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/adult-fiction|/genres/erotica|/genres/contemporary|/genres/adult|/genres/new-adult|/genres/romance|/genres/erotic-romance|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/academic|/genres/college,dir08/10140661-gabriel-s-inferno.html,93313,"Gabriel's Inferno (Gabriel's Inferno, #1)" +4.04,4099,0671027034,good_reads:book,https://www.goodreads.com/author/show/3317.Dale_Carnegie,1936,/genres/non-fiction|/genres/self-help|/genres/business|/genres/psychology|/genres/leadership|/genres/self-help|/genres/personal-development|/genres/classics|/genres/relationships|/genres/philosophy|/genres/language|/genres/communication,dir08/4865.How_to_Win_Friends_and_Influence_People.html,141379,How to Win Friends and Influence People +3.91,1430,0679732268,good_reads:book,https://www.goodreads.com/author/show/3535.William_Faulkner,1931,/genres/classics|/genres/literature|/genres/novels|/genres/literature|/genres/american|/genres/american|/genres/southern|/genres/gothic|/genres/southern-gothic|/genres/literary-fiction|/genres/academic|/genres/school|/genres/literature|/genres/20th-century|/genres/classics|/genres/classic-literature,dir08/10979.Light_in_August.html,32589,Light in August +4.03,3848,067001088X,good_reads:book,https://www.goodreads.com/author/show/2987.Sarah_Dessen,2008,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/fiction|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/high-school|/genres/young-adult|/genres/young-adult-contemporary|/genres/young-adult|/genres/coming-of-age,dir08/1295102.Lock_and_Key.html,95340,Lock and Key +4.06,3619,0142501557,good_reads:book,https://www.goodreads.com/author/show/2987.Sarah_Dessen,2002,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/music,dir08/22205.This_Lullaby.html,115816,This Lullaby +4.23,2926,156931778X,good_reads:book,https://www.goodreads.com/author/show/32595.Koushun_Takami,1999,/genres/science-fiction|/genres/dystopia|/genres/horror|/genres/science-fiction|/genres/young-adult|/genres/thriller|/genres/cultural|/genres/japan|/genres/asian-literature|/genres/japanese-literature,dir08/57891.Battle_Royale.html,26957,Battle Royale +3.92,1523,0425172902,good_reads:book,https://www.goodreads.com/author/show/3892.Tom_Clancy,1984,/genres/fiction|/genres/suspense|/genres/thriller|/genres/war|/genres/military|/genres/mystery|/genres/spy-thriller|/genres/espionage|/genres/adventure|/genres/action|/genres/war|/genres/thriller|/genres/mystery-thriller,dir08/19691.The_Hunt_for_Red_October.html,217852,"The Hunt for Red October (Jack Ryan, #3)" +3.83,2401,068480154X,good_reads:book,https://www.goodreads.com/author/show/3190.F_Scott_Fitzgerald,1933,/genres/classics|/genres/literature|/genres/literature|/genres/american|/genres/romance|/genres/novels|/genres/book-club|/genres/literature|/genres/20th-century,dir08/46164.Tender_Is_the_Night.html,56983,Tender Is the Night +4.21,3342,0743246985,good_reads:book,https://www.goodreads.com/author/show/1237.Jung_Chang,1991,/genres/biography|/genres/non-fiction|/genres/cultural|/genres/asia|/genres/book-club|/genres/autobiography|/genres/memoir|/genres/biography|/genres/autobiography|/genres/biography-memoir|/genres/literature|/genres/asian-literature,dir08/1848.Wild_Swans.html,42491,Wild Swans +4.12,3447,0446696110,good_reads:book,https://www.goodreads.com/author/show/2345.Nicholas_Sparks,2003,/genres/romance|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/adult|/genres/adult-fiction|/genres/romance|/genres/contemporary-romance|/genres/mystery|/genres/love|/genres/drama,dir08/15925.The_Guardian.html,107726,The Guardian +4.01,12855,0345504968,good_reads:book,https://www.goodreads.com/author/show/45315.Justin_Cronin,2010,/genres/horror|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/literature|/genres/american|/genres/contemporary|/genres/apocalyptic|/genres/post-apocalyptic|/genres/novels,dir08/6690798-the-passage.html,97893,"The Passage (The Passage, #1)" +3.85,2719,0140283307,good_reads:book,https://www.goodreads.com/author/show/233.Don_DeLillo,1984,/genres/classics|/genres/literature|/genres/novels|/genres/literature|/genres/american|/genres/contemporary|/genres/literary-fiction|/genres/book-club|/genres/academic|/genres/college|/genres/literature|/genres/20th-century|/genres/science-fiction,dir08/11762.White_Noise.html,48756,White Noise +3.91,4594,0385739168,good_reads:book,https://www.goodreads.com/author/show/2905297.Lauren_Kate,2011,/genres/young-adult|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural,dir08/9369720-passion.html,91495,"Passion (Fallen, #3)" +3.91,2152,0743466527,good_reads:book,https://www.goodreads.com/author/show/3515.Ann_Marie_MacDonald,1996,/genres/fiction|/genres/cultural|/genres/canada|/genres/historical-fiction|/genres/book-club|/genres/novels|/genres/adult-fiction|/genres/contemporary|/genres/literature|/genres/literary-fiction|/genres/drama,dir08/5174.Fall_on_Your_Knees.html,39887,Fall on Your Knees +4.15,2347,0312979975,good_reads:book,https://www.goodreads.com/author/show/4430.Sherrilyn_Kenyon,2002,/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/mythology|/genres/fiction|/genres/fantasy|/genres/supernatural,dir08/84136.Fantasy_Lover.html,52836,Fantasy Lover (Dark-Hunter companion novel) +4.34,1920,0061583073,good_reads:book,https://www.goodreads.com/author/show/669810.Jeaniene_Frost,2008,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy|/genres/adult|/genres/fantasy|/genres/supernatural,dir08/3570231-at-grave-s-end.html,47726,"At Grave's End (Night Huntress, #3)" +3.61,3196,0312532768,good_reads:book,https://www.goodreads.com/author/show/200317.Alyson_Noel,2009,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/teen,dir08/6134826-blue-moon.html,62260,"Blue Moon (The Immortals, #2)" +4.35,8451,0425263916,good_reads:book,https://www.goodreads.com/author/show/19823.Sylvia_Day,2012,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/adult|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/romance|/genres/erotic-romance|/genres/erotica|/genres/bdsm,dir08/13596809-reflected-in-you.html,182846,"Reflected in You (Crossfire, #2)" +4.27,3824,0373210183,good_reads:book,https://www.goodreads.com/author/show/2995873.Julie_Kagawa,2011,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/fairies|/genres/fantasy|/genres/magic|/genres/fairies|/genres/fae|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/adventure,dir08/8685612-the-iron-queen.html,60156,"The Iron Queen (The Iron Fey, #3)" +4.04,4406,039925482X,good_reads:book,https://www.goodreads.com/author/show/3041100.Andrea_Cremer,2010,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/magic,dir08/7402393-nightshade.html,59867,"Nightshade (Nightshade, #1)" +4.12,6310,0061996165,good_reads:book,https://www.goodreads.com/author/show/3290920.Cynthia_Hand,2011,/genres/young-adult|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/young-adult|/genres/young-adult-paranormal,dir08/7488244-unearthly.html,72796,"Unearthly (Unearthly, #1)" +4.23,1782,0312995059,good_reads:book,https://www.goodreads.com/author/show/4820.Jeffrey_Archer,1979,/genres/historical-fiction|/genres/thriller|/genres/drama|/genres/mystery|/genres/novels|/genres/classics,dir08/78983.Kane_and_Abel.html,51995,"Kane and Abel (Kane and Abel, #1)" +4.13,3607,0446611085,good_reads:book,https://www.goodreads.com/author/show/3780.James_Patterson,2001,/genres/romance|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/mystery|/genres/adult|/genres/adult-fiction|/genres/drama|/genres/love|/genres/book-club,dir08/7494.Suzanne_s_Diary_for_Nicholas.html,95315,Suzanne's Diary for Nicholas +4.18,1424,067084487X,good_reads:book,https://www.goodreads.com/author/show/27318.Jon_Scieszka,1992,/genres/childrens|/genres/picture-books|/genres/childrens|/genres/humor|/genres/fiction|/genres/fantasy|/genres/fantasy|/genres/fairy-tales|/genres/humor|/genres/funny|/genres/short-stories|/genres/kids|/genres/classics,dir08/407429.The_Stinky_Cheese_Man.html,56224,The Stinky Cheese Man +3.67,4402,0385720920,good_reads:book,https://www.goodreads.com/author/show/2546.Chuck_Palahniuk,2001,/genres/fiction|/genres/contemporary|/genres/humor|/genres/novels|/genres/literature|/genres/adult-fiction|/genres/literature|/genres/american|/genres/adult|/genres/dark|/genres/humor|/genres/comedy,dir08/29059.Choke.html,126754,Choke +4.11,334,1420925806,good_reads:book,https://www.goodreads.com/author/show/13453.William_Blake,1794,/genres/poetry|/genres/classics|/genres/literature|/genres/literature|/genres/18th-century|/genres/european-literature|/genres/british-literature|/genres/art|/genres/academic|/genres/school|/genres/literature|/genres/english-literature|/genres/philosophy|/genres/academic|/genres/college,dir08/171547.Songs_of_Innocence_and_of_Experience.html,20416,Songs of Innocence and of Experience +3.82,1475,074347757X,good_reads:book,https://www.goodreads.com/author/show/947.William_Shakespeare,1590,/genres/plays|/genres/drama|/genres/fiction|/genres/classics|/genres/academic|/genres/school|/genres/romance|/genres/literature|/genres/plays|/genres/theatre|/genres/poetry|/genres/humor|/genres/comedy,dir08/47021.The_Taming_of_the_Shrew.html,103254,The Taming of the Shrew +3.94,2320,0752865331,good_reads:book,https://www.goodreads.com/author/show/16927.Dashiell_Hammett,1929,/genres/classics|/genres/mystery|/genres/crime|/genres/fiction|/genres/mystery|/genres/noir|/genres/mystery|/genres/thriller|/genres/book-club|/genres/novels|/genres/thriller|/genres/mystery-thriller|/genres/literature|/genres/american,dir08/29999.The_Maltese_Falcon.html,48055,The Maltese Falcon +3.89,1111,0811201880,good_reads:book,https://www.goodreads.com/author/show/1466.Jean_Paul_Sartre,1938,/genres/philosophy|/genres/fiction|/genres/classics|/genres/cultural|/genres/france|/genres/literature|/genres/european-literature|/genres/french-literature|/genres/novels|/genres/literature|/genres/20th-century|/genres/classics|/genres/modern-classics|/genres/nobel-prize,dir08/298275.Nausea.html,41463,Nausea +3.52,1038,1580493882,good_reads:book,https://www.goodreads.com/author/show/1002.Sophocles,-442,/genres/drama|/genres/fiction|/genres/classics|/genres/academic|/genres/read-for-school|/genres/plays|/genres/plays|/genres/theatre|/genres/fantasy|/genres/mythology|/genres/literature|/genres/young-adult|/genres/high-school|/genres/tragedy,dir08/7728.Antigone.html,49084,Antigone +4.22,10212,0439813786,good_reads:book,https://www.goodreads.com/author/show/38120.Brian_Selznick,2007,/genres/young-adult|/genres/historical-fiction|/genres/fiction|/genres/childrens|/genres/sequential-art|/genres/graphic-novels|/genres/fantasy|/genres/mystery|/genres/childrens|/genres/middle-grade,dir08/9673436-the-invention-of-hugo-cabret.html,98905,The Invention of Hugo Cabret +4.34,166,0440360374,good_reads:book,https://www.goodreads.com/author/show/106.Madeleine_L_Engle,1989,/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/fiction|/genres/childrens|/genres/classics|/genres/science-fiction-fantasy|/genres/young-adult|/genres/teen|/genres/adventure|/genres/childrens|/genres/juvenile,dir08/7619.The_Time_Quartet_Box_Set.html,9132,"The Time Quartet Box Set (Time Quartet, #1-4)" +3.70,1244,0440222656,good_reads:book,https://www.goodreads.com/author/show/6098.Nicholas_Evans,1995,/genres/fiction|/genres/romance|/genres/animals|/genres/animals|/genres/horses|/genres/contemporary|/genres/drama|/genres/adult-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/adult|/genres/novels,dir08/479415.The_Horse_Whisperer.html,30792,The Horse Whisperer +4.00,10611,0062059963,good_reads:book,https://www.goodreads.com/author/show/2987125.Kiera_Cass,2013,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/romance|/genres/fantasy,dir08/16248068-the-elite.html,99925,"The Elite (The Selection, #2)" +4.20,7394,146109111X,good_reads:book,https://www.goodreads.com/author/show/4372391.S_C_Stephens,2009,/genres/romance|/genres/new-adult|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/adult|/genres/academic|/genres/college|/genres/music|/genres/womens-fiction|/genres/chick-lit|/genres/love,dir08/13517535-thoughtless.html,89963,"Thoughtless (Thoughtless, #1)" +3.94,3564,0060855924,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,1983,/genres/fiction|/genres/humor|/genres/fantasy|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/humor|/genres/funny|/genres/fantasy|/genres/magic|/genres/adventure|/genres/novels,dir08/34497.The_Color_of_Magic.html,141156,"The Color of Magic (Discworld, #1)" +3.83,7093,0375822747,good_reads:book,https://www.goodreads.com/author/show/2347.Jeanne_DuPrau,2003,/genres/young-adult|/genres/fantasy|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fiction|/genres/childrens|/genres/adventure|/genres/apocalyptic|/genres/post-apocalyptic|/genres/childrens|/genres/middle-grade|/genres/young-adult|/genres/teen,dir08/307791.The_City_of_Ember.html,140890,"The City of Ember (Book of Ember, #1)" +4.19,2223,0345418921,good_reads:book,https://www.goodreads.com/author/show/4.Douglas_Adams,1980,/genres/science-fiction|/genres/fiction|/genres/humor|/genres/fantasy|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/classics|/genres/humor|/genres/funny,dir08/8695.The_Restaurant_at_the_End_of_the_Universe.html,106219,"The Restaurant at the End of the Universe (Hitchhiker's Guide, #2)" +3.83,9711,0307593312,good_reads:book,https://www.goodreads.com/author/show/3354.Haruki_Murakami,2009,/genres/fiction|/genres/fantasy|/genres/cultural|/genres/japan|/genres/science-fiction|/genres/magical-realism|/genres/asian-literature|/genres/japanese-literature|/genres/contemporary|/genres/literature|/genres/science-fiction|/genres/dystopia|/genres/novels,dir08/10357575-1q84.html,79924,"1Q84 (1Q84, #1-3)" +3.94,1357,0143038109,good_reads:book,https://www.goodreads.com/author/show/5246.Amy_Tan,1991,/genres/historical-fiction|/genres/cultural|/genres/china|/genres/cultural|/genres/asia|/genres/contemporary|/genres/novels|/genres/fiction|/genres/literature|/genres/asian-literature|/genres/book-club|/genres/adult-fiction|/genres/literature,dir08/12557.The_Kitchen_God_s_Wife.html,46385,The Kitchen God's Wife +4.05,9448,0307279464,good_reads:book,https://www.goodreads.com/author/show/7.Bill_Bryson,1992,/genres/non-fiction|/genres/travel|/genres/humor|/genres/autobiography|/genres/memoir|/genres/environment|/genres/nature|/genres/adventure|/genres/book-club|/genres/biography|/genres/humor|/genres/funny|/genres/nature|/genres/outdoors,dir08/9791.A_Walk_in_the_Woods.html,161290,A Walk in the Woods +3.70,3926,0060589280,good_reads:book,https://www.goodreads.com/author/show/566.Paulo_Coelho,1975,/genres/fiction|/genres/romance|/genres/novels|/genres/contemporary|/genres/philosophy|/genres/literature|/genres/drama|/genres/adult,dir08/1430.Eleven_Minutes.html,77963,Eleven Minutes +3.83,1322,0141184272,good_reads:book,https://www.goodreads.com/author/show/6765.Virginia_Woolf,1928,/genres/fiction|/genres/classics|/genres/fantasy|/genres/literature|/genres/historical-fiction|/genres/novels|/genres/glbt|/genres/european-literature|/genres/british-literature|/genres/feminism|/genres/glbt|/genres/queer,dir08/18839.Orlando.html,25792,Orlando +4.03,2722,0312650248,good_reads:book,https://www.goodreads.com/author/show/17015.P_C_Cast,2011,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/young-adult|/genres/young-adult-paranormal,dir08/8652190-awakened.html,79967,"Awakened (House of Night, #8)" +4.11,7313,0375836675,good_reads:book,https://www.goodreads.com/author/show/11466.Markus_Zusak,2002,/genres/young-adult|/genres/fiction|/genres/mystery|/genres/contemporary|/genres/realistic-fiction|/genres/book-club|/genres/young-adult|/genres/teen|/genres/adult|/genres/cultural|/genres/australia|/genres/humor,dir08/19057.I_Am_the_Messenger.html,62637,I Am the Messenger +4.17,10547,0525422943,good_reads:book,https://www.goodreads.com/author/show/295178.Gayle_Forman,2011,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/fiction|/genres/realistic-fiction|/genres/music,dir08/8492825-where-she-went.html,95717,"Where She Went (If I Stay, #2)" +3.53,8804,031612558X,good_reads:book,https://www.goodreads.com/author/show/941441.Stephenie_Meyer,2009,/genres/young-adult|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen,dir08/7937462-the-short-second-life-of-bree-tanner.html,129567,"The Short Second Life of Bree Tanner (Twilight, #3.5)" +4.06,2059,1862301387,good_reads:book,https://www.goodreads.com/author/show/5329.Brian_Jacques,1986,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/animals|/genres/adventure|/genres/science-fiction-fantasy|/genres/childrens|/genres/middle-grade|/genres/classics|/genres/childrens|/genres/juvenile,dir08/7996.Redwall.html,52431,"Redwall (Redwall, #1)" +3.70,1299,0385315147,good_reads:book,https://www.goodreads.com/author/show/369288.Peter_H_eg,1992,/genres/european-literature|/genres/scandinavian-literature|/genres/cultural|/genres/denmark|/genres/mystery|/genres/book-club|/genres/thriller|/genres/mystery-thriller|/genres/novels|/genres/suspense|/genres/european-literature|/genres/danish|/genres/literature|/genres/mystery|/genres/crime,dir08/124509.Smilla_s_Sense_of_Snow.html,22336,Smilla's Sense of Snow +4.24,456,1903436575,good_reads:book,https://www.goodreads.com/author/show/947.William_Shakespeare,1609,/genres/poetry|/genres/classics|/genres/literature|/genres/fiction|/genres/romance|/genres/plays|/genres/european-literature|/genres/british-literature|/genres/academic|/genres/school|/genres/literature|/genres/17th-century|/genres/drama,dir08/42038.Shakespeare_s_Sonnets.html,42466,Shakespeare's Sonnets +3.88,2979,0375726403,good_reads:book,https://www.goodreads.com/author/show/7844.Richard_Russo,2001,/genres/fiction|/genres/book-club|/genres/contemporary|/genres/literature|/genres/novels|/genres/literary-fiction|/genres/adult-fiction,dir08/187020.Empire_Falls.html,71996,Empire Falls +4.22,312,0805005013,good_reads:book,https://www.goodreads.com/author/show/7715.Robert_Frost,1930,/genres/classics|/genres/literature|/genres/fiction|/genres/literature|/genres/american|/genres/poetry|/genres/literature|/genres/20th-century|/genres/classics|/genres/classic-literature|/genres/environment|/genres/nature|/genres/academic|/genres/school|/genres/young-adult|/genres/high-school,dir08/95819.The_Poetry_of_Robert_Frost.html,28241,The Poetry of Robert Frost +3.82,3140,0143036378,good_reads:book,https://www.goodreads.com/author/show/4128.J_M_Coetzee,1999,/genres/fiction|/genres/cultural|/genres/africa|/genres/literature|/genres/novels|/genres/contemporary|/genres/literary-fiction|/genres/classics|/genres/book-club|/genres/nobel-prize|/genres/literature|/genres/20th-century,dir09/6192.Disgrace.html,41315,Disgrace +4.34,8871,1480095532,good_reads:book,https://www.goodreads.com/author/show/5437976.J_A_Redmerski,2012,/genres/new-adult|/genres/romance|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/adult|/genres/fiction|/genres/travel|/genres/road-trip|/genres/love,dir09/16081272-the-edge-of-never.html,89916,"The Edge of Never (The Edge of Never, #1)" +4.03,3249,0060572965,good_reads:book,https://www.goodreads.com/author/show/17054.Kim_Harrison,2004,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/paranormal|/genres/witches|/genres/fiction|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/demons,dir09/30264.Dead_Witch_Walking.html,74252,"Dead Witch Walking (The Hollows, #1)" +4.13,992,0226500667,good_reads:book,https://www.goodreads.com/author/show/16943.Norman_Maclean,1976,/genres/fiction|/genres/short-stories|/genres/classics|/genres/literature|/genres/historical-fiction|/genres/book-club|/genres/novels|/genres/environment|/genres/nature|/genres/literature|/genres/american|/genres/western,dir09/30043.A_River_Runs_Through_It_and_Other_Stories.html,14894,A River Runs Through It and Other Stories +4.48,886,0802130305,good_reads:book,https://www.goodreads.com/author/show/500.Jorge_Luis_Borges,1944,/genres/fiction|/genres/short-stories|/genres/classics|/genres/literature|/genres/magical-realism|/genres/fantasy|/genres/european-literature|/genres/spanish-literature|/genres/cultural|/genres/latin-american|/genres/philosophy|/genres/literature|/genres/20th-century,dir09/426504.Ficciones.html,20908,Ficciones +4.10,12656,0330449605,good_reads:book,https://www.goodreads.com/author/show/615274.Kate_Morton,2008,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/mystery|/genres/romance|/genres/adult-fiction|/genres/fantasy|/genres/adult|/genres/cultural|/genres/australia|/genres/womens-fiction|/genres/chick-lit,dir09/3407877-the-forgotten-garden.html,109164,The Forgotten Garden +3.52,1799,1416500340,good_reads:book,https://www.goodreads.com/author/show/173.George_Eliot,1861,/genres/classics|/genres/literature|/genres/literature|/genres/19th-century|/genres/historical-fiction|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/classics|/genres/classic-literature|/genres/academic|/genres/school|/genres/book-club|/genres/academic|/genres/read-for-school,dir09/54539.Silas_Marner.html,33085,Silas Marner +3.62,1708,014144116X,good_reads:book,https://www.goodreads.com/author/show/86404.E_M_Forster,1924,/genres/classics|/genres/asian-literature|/genres/indian-literature|/genres/drama|/genres/modern|/genres/cultural|/genres/india|/genres/historical-fiction|/genres/cultural|/genres/novels|/genres/literature|/genres/european-literature|/genres/british-literature,dir09/45195.A_Passage_to_India.html,34438,A Passage to India +3.80,2791,076072850X,good_reads:book,https://www.goodreads.com/author/show/696805.Jules_Verne,1870,/genres/classics|/genres/science-fiction|/genres/adventure|/genres/fantasy|/genres/literature|/genres/science-fiction|/genres/steampunk|/genres/cultural|/genres/france|/genres/childrens|/genres/science-fiction-fantasy|/genres/novels,dir09/33507.Twenty_Thousand_Leagues_Under_the_Sea.html,84775,"Twenty Thousand Leagues Under the Sea (Extraordinary Voyages, #6)" +4.07,2540,0446696129,good_reads:book,https://www.goodreads.com/author/show/2345.Nicholas_Sparks,2000,/genres/romance|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/adult-fiction|/genres/romance|/genres/contemporary-romance|/genres/love|/genres/drama|/genres/novels|/genres/adult,dir09/3462.The_Rescue.html,111498,The Rescue +4.22,2415,1416524525,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1999,/genres/fantasy|/genres/fiction|/genres/horror|/genres/science-fiction|/genres/science-fiction-fantasy|/genres/western|/genres/adventure|/genres/epic,dir09/5091.The_Dark_Tower.html,67880,"The Dark Tower (The Dark Tower, #7)" +3.95,3031,078681859X,good_reads:book,https://www.goodreads.com/author/show/33467.Jonathan_Stroud,2003,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/magic|/genres/adventure|/genres/childrens|/genres/young-adult|/genres/young-adult-fantasy|/genres/humor|/genres/fantasy|/genres/urban-fantasy|/genres/science-fiction-fantasy,dir09/334123.The_Amulet_of_Samarkand.html,71924,"The Amulet of Samarkand (Bartimaeus, #1)" +4.25,3126,0802720862,good_reads:book,https://www.goodreads.com/author/show/274533.Simone_Elkeles,2010,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/realistic-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/high-school,dir09/7137775-rules-of-attraction.html,51492,"Rules of Attraction (Perfect Chemistry, #2)" +3.82,7112,0439206472,good_reads:book,https://www.goodreads.com/author/show/36746.Lemony_Snicket,1999,/genres/young-adult|/genres/fantasy|/genres/childrens|/genres/mystery|/genres/adventure|/genres/humor|/genres/childrens|/genres/juvenile|/genres/realistic-fiction|/genres/childrens|/genres/middle-grade|/genres/novels,dir09/78411.The_Bad_Beginning.html,195926,"The Bad Beginning (A Series of Unfortunate Events, #1)" +3.98,11263,0385738757,good_reads:book,https://www.goodreads.com/author/show/348878.James_Dashner,2010,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction,dir09/7631105-the-scorch-trials.html,156927,"The Scorch Trials (Maze Runner, #2)" +3.85,7195,0060874163,good_reads:book,https://www.goodreads.com/author/show/79589.Alex_Flinn,2007,/genres/young-adult|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/fairy-tales|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/teen|/genres/retellings|/genres/fantasy|/genres/urban-fantasy,dir09/544891.Beastly.html,115773,Beastly +3.99,6068,1423121309,good_reads:book,https://www.goodreads.com/author/show/2261547.Rachel_Hawkins,2010,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/vampires|/genres/paranormal|/genres/witches|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/urban-fantasy,dir09/5287473-hex-hall.html,81767,"Hex Hall (Hex Hall, #1)" +4.06,5126,1401303277,good_reads:book,https://www.goodreads.com/author/show/2331.Mitch_Albom,2004,/genres/fiction|/genres/inspirational|/genres/adult|/genres/contemporary|/genres/book-club|/genres/novels|/genres/adult-fiction|/genres/drama|/genres/fantasy|/genres/spirituality,dir09/10929.For_One_More_Day.html,82323,For One More Day +4.37,803,0143039962,good_reads:book,https://www.goodreads.com/author/show/4026.Pablo_Neruda,1924,/genres/poetry|/genres/classics|/genres/european-literature|/genres/spanish-literature|/genres/romance|/genres/cultural|/genres/latin-american|/genres/fiction|/genres/literature,dir09/5932.Twenty_Love_Poems_and_a_Song_of_Despair.html,23251,Twenty Love Poems and a Song of Despair +4.13,3840,1402784031,good_reads:book,https://www.goodreads.com/author/show/3097905.Colleen_Houck,2011,/genres/romance|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/fantasy|/genres/magic|/genres/adventure|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance,dir09/9284655-tiger-s-curse.html,30337,"Tiger's Curse (The Tiger Saga, #1)" +3.77,12195,0525476881,good_reads:book,https://www.goodreads.com/author/show/1406384.John_Green,2006,/genres/young-adult|/genres/fiction|/genres/contemporary|/genres/romance|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/humor,dir09/49750.An_Abundance_of_Katherines.html,172457,An Abundance of Katherines +3.93,2514,1844082938,good_reads:book,https://www.goodreads.com/author/show/16.Edith_Wharton,1905,/genres/classics|/genres/fiction|/genres/literature|/genres/historical-fiction|/genres/literature|/genres/american|/genres/novels|/genres/book-club|/genres/new-york|/genres/literature|/genres/20th-century|/genres/classics|/genres/classic-literature,dir09/17728.The_House_of_Mirth.html,49686,The House of Mirth +3.59,5957,0671027387,good_reads:book,https://www.goodreads.com/author/show/630.Dan_Brown,2001,/genres/fiction|/genres/thriller|/genres/mystery|/genres/suspense|/genres/adventure|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/crime|/genres/science-fiction|/genres/novels|/genres/action,dir09/976.Deception_Point.html,312726,Deception Point +3.84,12933,1594489580,good_reads:book,https://www.goodreads.com/author/show/55215.Junot_D_az,2001,/genres/book-club|/genres/fiction|/genres/novels|/genres/historical-fiction|/genres/literature|/genres/literary-fiction,dir09/297673.The_Brief_Wondrous_Life_of_Oscar_Wao.html,123850,The Brief Wondrous Life of Oscar Wao +4.45,5802,,good_reads:book,https://www.goodreads.com/author/show/6466759.Katja_Millay,2012,/genres/young-adult|/genres/romance|/genres/new-adult|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/fiction,dir09/16151178-the-sea-of-tranquility.html,37279,The Sea of Tranquility +4.12,3056,0451222725,good_reads:book,https://www.goodreads.com/author/show/20248.J_R_Ward,2008,/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/vampires|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/adult|/genres/fantasy|/genres/urban-fantasy|/genres/adult-fiction|/genres/adult-fiction|/genres/erotica|/genres/action,dir09/1240662.Lover_Enshrined.html,72581,"Lover Enshrined (Black Dagger Brotherhood, #6)" +3.90,1294,0385339690,good_reads:book,https://www.goodreads.com/author/show/721.John_Grisham,1996,/genres/thriller|/genres/mystery|/genres/suspense|/genres/mystery|/genres/crime|/genres/thriller|/genres/legal-thriller|/genres/thriller|/genres/mystery-thriller|/genres/law|/genres/adult-fiction|/genres/novels|/genres/adult,dir09/24192.The_Runaway_Jury.html,162641,The Runaway Jury +4.32,5351,1423157370,good_reads:book,https://www.goodreads.com/author/show/2973783.Alexandra_Bracken,2012,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/fantasy|/genres/science-fiction|/genres/romance,dir09/10576365-the-darkest-minds.html,37676,"The Darkest Minds (The Darkest Minds, #1)" +4.02,3111,1573225789,good_reads:book,https://www.goodreads.com/author/show/11728.James_McBride,1996,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/biography|/genres/book-club|/genres/cultural|/genres/african-american|/genres/academic|/genres/school|/genres/biography-memoir|/genres/biography|/genres/autobiography|/genres/race|/genres/adult,dir09/29209.The_Color_of_Water.html,61813,The Color of Water +4.04,1443,068484477X,good_reads:book,https://www.goodreads.com/author/show/3536.Ursula_Hegi,1994,/genres/historical-fiction|/genres/book-club|/genres/world-war-ii|/genres/holocaust|/genres/history|/genres/world-war-ii|/genres/cultural|/genres/germany|/genres/war|/genres/adult-fiction|/genres/literature,dir09/77163.Stones_from_the_River.html,59584,Stones from the River +4.17,4149,0373210132,good_reads:book,https://www.goodreads.com/author/show/2995873.Julie_Kagawa,2010,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/fairies|/genres/fairies|/genres/fae|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance|/genres/adventure,dir09/7747064-the-iron-daughter.html,65570,"The Iron Daughter (The Iron Fey, #2)" +4.16,1547,1400034205,good_reads:book,https://www.goodreads.com/author/show/4176632.W_Somerset_Maugham,1944,/genres/classics|/genres/literature|/genres/fiction|/genres/novels|/genres/philosophy|/genres/book-club|/genres/european-literature|/genres/british-literature|/genres/literary-fiction,dir09/31196.The_Razor_s_Edge.html,19928,The Razor's Edge +4.03,1832,0679776818,good_reads:book,https://www.goodreads.com/author/show/4229.Sebastian_Faulks,1993,/genres/historical-fiction|/genres/fiction|/genres/war|/genres/classics|/genres/romance|/genres/cultural|/genres/france,dir09/6259.Birdsong.html,38653,Birdsong +4.26,7232,0743455967,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1999,/genres/language|/genres/writing|/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/biography|/genres/reference|/genres/biography|/genres/autobiography|/genres/horror|/genres/biography-memoir|/genres/self-help|/genres/writing|/genres/books-about-books,dir09/10569.On_Writing.html,95286,On Writing +4.15,9926,0399162410,good_reads:book,https://www.goodreads.com/author/show/3377941.Rick_Yancey,2013,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/science-fiction|/genres/aliens|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fantasy|/genres/fiction|/genres/romance|/genres/young-adult|/genres/teen|/genres/adventure,dir09/16101128-the-5th-wave.html,66238,"The 5th Wave (The Fifth Wave, #1)" +3.70,1081,096319254X,good_reads:book,https://www.goodreads.com/author/show/7577.Anne_Rice,1995,/genres/horror|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/gothic|/genres/adult|/genres/science-fiction-fantasy,dir09/31338.Memnoch_the_Devil.html,53879,"Memnoch the Devil (The Vampire Chronicles, #5)" +3.95,1384,0553381660,good_reads:book,https://www.goodreads.com/author/show/861.Jean_M_Auel,1982,/genres/historical-fiction|/genres/fiction|/genres/fantasy|/genres/romance|/genres/adventure|/genres/historical-fiction|/genres/prehistoric|/genres/adult|/genres/adult-fiction|/genres/novels|/genres/romance|/genres/historical-romance,dir09/40493.The_Valley_of_Horses.html,44262,"The Valley of Horses (Earth's Children, #2)" +4.16,4040,,good_reads:book,https://www.goodreads.com/author/show/34049.John_Flanagan,2004,/genres/fantasy|/genres/young-adult|/genres/adventure|/genres/fiction|/genres/childrens|/genres/young-adult|/genres/teen|/genres/action|/genres/childrens|/genres/middle-grade|/genres/young-adult|/genres/young-adult-fantasy|/genres/historical-fiction|/genres/medieval,dir09/60400.The_Ruins_of_Gorlan.html,53534,"The Ruins of Gorlan (Ranger's Apprentice, #1)" +3.64,1882,0739418378,good_reads:book,https://www.goodreads.com/author/show/22485.Jacqueline_Susann,1966,/genres/fiction|/genres/classics|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/book-club|/genres/contemporary|/genres/novels,dir09/50833.Valley_of_the_Dolls.html,24860,Valley of the Dolls +4.17,1391,0385334141,good_reads:book,https://www.goodreads.com/author/show/2778055.Kurt_Vonnegut,1961,/genres/fiction|/genres/classics|/genres/literature|/genres/historical-fiction|/genres/war|/genres/humor|/genres/novels|/genres/science-fiction|/genres/literature|/genres/american,dir09/9592.Mother_Night.html,36160,Mother Night +4.57,431,1423113497,good_reads:book,https://www.goodreads.com/author/show/15872.Rick_Riordan,2008,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/mythology|/genres/fiction|/genres/mythology|/genres/greek-mythology|/genres/fantasy|/genres/magic|/genres/adventure|/genres/childrens|/genres/fantasy|/genres/urban-fantasy|/genres/action,dir09/3165162-percy-jackson-and-the-olympians-boxed-set.html,22937,"Percy Jackson and the Olympians Boxed Set (Percy Jackson and the Olympians, #1-3)" +4.46,4500,159514319X,good_reads:book,https://www.goodreads.com/author/show/137902.Richelle_Mead,2013,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/witches,dir09/8709526-the-indigo-spell.html,45076,"The Indigo Spell (Bloodlines, #3)" +3.92,6330,0545259088,good_reads:book,https://www.goodreads.com/author/show/1330292.Maggie_Stiefvater,2011,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/fantasy|/genres/supernatural,dir09/9409458-forever.html,64164,"Forever (The Wolves of Mercy Falls, #3)" +4.29,1948,0394709306,good_reads:book,https://www.goodreads.com/author/show/2938140.Jacob_Grimm,1812,/genres/classics|/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/fairy-tales|/genres/childrens|/genres/short-stories|/genres/literature,dir09/22917.The_Complete_Grimm_s_Fairy_Tales.html,110444,The Complete Grimm's Fairy Tales +4.11,1911,1842323008,good_reads:book,https://www.goodreads.com/author/show/21477.Nevil_Shute,1950,/genres/fiction|/genres/historical-fiction|/genres/classics|/genres/cultural|/genres/australia|/genres/romance|/genres/book-club|/genres/war|/genres/history|/genres/world-war-ii,dir09/107301.A_Town_Like_Alice.html,26173,A Town Like Alice +4.05,1000,0394800206,good_reads:book,https://www.goodreads.com/author/show/13898.P_D_Eastman,1961,/genres/childrens|/genres/childrens|/genres/picture-books|/genres/classics|/genres/animals,dir09/460548.Go_Dog_Go_.html,51658,"Go, Dog. Go!" +4.07,1894,0316002895,good_reads:book,https://www.goodreads.com/author/show/3780.James_Patterson,2009,/genres/young-adult|/genres/fantasy|/genres/science-fiction|/genres/adventure|/genres/fiction|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/action|/genres/young-adult|/genres/teen|/genres/paranormal|/genres/angels,dir09/3393124-max.html,44562,"Max (Maximum Ride, #5)" +4.19,930,1416974512,good_reads:book,https://www.goodreads.com/author/show/50873.L_J_Smith,2008,/genres/young-adult|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/witches|/genres/romance|/genres/paranormal-romance|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/magic|/genres/fiction,dir09/2985500-night-world-no-2.html,42956,"Night World, No. 2 (Night World, #4-6)" +4.27,2720,0006280560,good_reads:book,https://www.goodreads.com/author/show/1069006.C_S_Lewis,1945,/genres/christian|/genres/fiction|/genres/religion|/genres/religion|/genres/theology|/genres/religion|/genres/christianity|/genres/classics|/genres/fantasy|/genres/spirituality|/genres/christian-fiction|/genres/philosophy,dir09/17267.The_Great_Divorce.html,56523,The Great Divorce +4.25,297,0060957905,good_reads:book,https://www.goodreads.com/author/show/9494.H_P_Lovecraft,1935,/genres/horror|/genres/short-stories|/genres/classics|/genres/fantasy|/genres/science-fiction|/genres/gothic|/genres/literature|/genres/anthologies|/genres/speculative-fiction|/genres/horror|/genres/lovecraftian,dir09/36314.Tales_of_H_P_Lovecraft.html,5158,Tales of H.P. Lovecraft +4.31,7145,0399256768,good_reads:book,https://www.goodreads.com/author/show/4342215.Marie_Lu,2013,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/young-adult|/genres/teen|/genres/romance|/genres/science-fiction|/genres/war|/genres/action|/genres/love|/genres/fiction|/genres/adventure,dir09/13414446-prodigy.html,71232,"Prodigy (Legend, #2)" +4.26,9702,1476712980,good_reads:book,https://www.goodreads.com/author/show/4464118.Jamie_McGuire,2013,/genres/romance|/genres/new-adult|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/academic|/genres/college|/genres/womens-fiction|/genres/chick-lit|/genres/love|/genres/adult|/genres/realistic-fiction,dir09/15745950-walking-disaster.html,99239,"Walking Disaster (Beautiful, #2)" +3.68,475,014243714X,good_reads:book,https://www.goodreads.com/author/show/4739.Murasaki_Shikibu,1008,/genres/classics|/genres/fiction|/genres/cultural|/genres/japan|/genres/asian-literature|/genres/japanese-literature|/genres/literature|/genres/cultural|/genres/asia|/genres/novels|/genres/romance|/genres/literature|/genres/asian-literature|/genres/academic|/genres/school,dir09/7042.The_Tale_of_Genji.html,5485,The Tale of Genji +4.21,1225,1581345283,good_reads:book,https://www.goodreads.com/author/show/5544.Frank_E_Peretti,1986,/genres/christian-fiction|/genres/fiction|/genres/christian|/genres/fantasy|/genres/religion|/genres/thriller|/genres/spirituality|/genres/religion|/genres/christianity|/genres/fantasy|/genres/supernatural|/genres/novels,dir09/17309.This_Present_Darkness.html,51331,"This Present Darkness (Darkness, #1)" +4.18,9335,0425266745,good_reads:book,https://www.goodreads.com/author/show/4826501.Tammara_Webber,2012,/genres/romance|/genres/new-adult|/genres/young-adult|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/academic|/genres/college|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/realistic-fiction|/genres/love,dir09/16056408-easy.html,131368,"Easy (Contours of the Heart, #1)" +4.01,5918,0060887303,good_reads:book,https://www.goodreads.com/author/show/93970.Sara_Shepard,2006,/genres/young-adult|/genres/mystery|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/romance|/genres/young-adult|/genres/teen,dir09/162085.Pretty_Little_Liars.html,116589,"Pretty Little Liars (Pretty Little Liars, #1)" +4.27,2882,0061284203,good_reads:book,https://www.goodreads.com/author/show/27498.Erin_Hunter,2003,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/animals|/genres/animals|/genres/cats|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/animals|/genres/animal-fiction|/genres/childrens|/genres/juvenile,dir09/111332.Into_the_Wild.html,30260,"Into the Wild (Warriors, #1)" +3.67,1423,0553213296,good_reads:book,https://www.goodreads.com/author/show/9121.James_Fenimore_Cooper,1826,/genres/classics|/genres/literature|/genres/literature|/genres/american|/genres/novels|/genres/classics|/genres/classic-literature|/genres/fiction|/genres/historical-fiction|/genres/literature|/genres/19th-century|/genres/war|/genres/academic|/genres/school,dir09/38296.The_Last_of_the_Mohicans.html,54563,The Last of the Mohicans (The Leatherstocking Tales #2) +3.62,1465,1406914835,good_reads:book,https://www.goodreads.com/author/show/2730977.Henrik_Ibsen,1879,/genres/plays|/genres/classics|/genres/drama|/genres/academic|/genres/school|/genres/plays|/genres/theatre|/genres/feminism|/genres/literature|/genres/academic|/genres/read-for-school|/genres/literature|/genres/19th-century,dir09/37793.A_Doll_s_House.html,48079,A Doll's House +4.37,1898,0061583219,good_reads:book,https://www.goodreads.com/author/show/669810.Jeaniene_Frost,2009,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy|/genres/adult|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/paranormal|/genres/ghosts,dir09/5604848-destined-for-an-early-grave.html,48410,"Destined for an Early Grave (Night Huntress, #4)" +3.65,10056,031242227X,good_reads:book,https://www.goodreads.com/author/show/3058.Augusten_Burroughs,2002,/genres/autobiography|/genres/memoir|/genres/non-fiction|/genres/biography|/genres/humor|/genres/book-club|/genres/biography-memoir|/genres/biography|/genres/autobiography|/genres/psychology|/genres/glbt|/genres/adult,dir09/242006.Running_with_Scissors.html,232616,Running with Scissors +4.00,4512,0446579920,good_reads:book,https://www.goodreads.com/author/show/2345.Nicholas_Sparks,2007,/genres/romance|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/adult|/genres/adult-fiction|/genres/romance|/genres/contemporary-romance|/genres/love,dir09/531350.The_Choice.html,82326,The Choice +4.10,2051,0441016154,good_reads:book,https://www.goodreads.com/author/show/40563.Patricia_Briggs,2008,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/shapeshifters|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/adult,dir09/2355575.Cry_Wolf.html,52608,"Cry Wolf (Alpha & Omega, #1)" +3.75,1063,0340818670,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1999,/genres/horror|/genres/fiction|/genres/fantasy|/genres/short-stories|/genres/thriller|/genres/suspense|/genres/mystery|/genres/war|/genres/fantasy|/genres/supernatural|/genres/drama,dir09/11602.Hearts_in_Atlantis.html,52644,Hearts in Atlantis +4.33,3046,038533916X,good_reads:book,https://www.goodreads.com/author/show/48206.Karen_Marie_Moning,2007,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fairies|/genres/fae|/genres/adult|/genres/fiction|/genres/paranormal|/genres/fairies|/genres/fantasy|/genres/magic,dir09/344262.Bloodfever.html,54425,"Bloodfever (Fever, #2)" +3.79,3364,0553813951,good_reads:book,https://www.goodreads.com/author/show/2345.Nicholas_Sparks,2002,/genres/romance|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/adult|/genres/adult-fiction|/genres/love|/genres/romance|/genres/contemporary-romance|/genres/drama|/genres/media-tie-in|/genres/movies,dir09/15926.Nights_in_Rodanthe.html,104111,Nights in Rodanthe +4.31,727,0586217835,good_reads:book,https://www.goodreads.com/author/show/8588.Raymond_E_Feist,1982,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/epic|/genres/science-fiction|/genres/adventure|/genres/fantasy|/genres/dragons,dir09/43916.Magician.html,33264,"Magician (The Riftwar Saga, #1-2)" +3.96,1384,0671746723,good_reads:book,https://www.goodreads.com/author/show/4.Douglas_Adams,1987,/genres/science-fiction|/genres/science-fiction-fantasy|/genres/humor|/genres/funny|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/mystery|/genres/crime|/genres/speculative-fiction|/genres/humor|/genres/fantasy|/genres/urban-fantasy|/genres/mystery|/genres/detective,dir09/365.Dirk_Gently_s_Holistic_Detective_Agency.html,71320,Dirk Gently's Holistic Detective Agency (Dirk Gently #1) +3.95,1676,0393322238,good_reads:book,https://www.goodreads.com/author/show/28828.Vincent_Bugliosi,1974,/genres/non-fiction|/genres/crime|/genres/true-crime|/genres/mystery|/genres/crime|/genres/history|/genres/horror|/genres/biography|/genres/mystery|/genres/psychology|/genres/classics|/genres/history|/genres/american-history,dir09/105992.Helter_Skelter.html,66801,Helter Skelter +4.35,5948,,good_reads:book,https://www.goodreads.com/author/show/5430144.Colleen_Hoover,2012,/genres/romance|/genres/new-adult|/genres/young-adult|/genres/contemporary|/genres/romance|/genres/contemporary-romance,dir09/13496084-point-of-retreat.html,83535,"Point of Retreat (Slammed, #2)" +4.10,3975,0062011995,good_reads:book,https://www.goodreads.com/author/show/3406550.Josephine_Angelini,2011,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/mythology|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/mythology|/genres/greek-mythology|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/teen,dir09/9462795-starcrossed.html,39512,"Starcrossed (Starcrossed, #1)" +4.25,701,0811216543,good_reads:book,https://www.goodreads.com/author/show/7869.Louis_Ferdinand_C_line,1932,/genres/cultural|/genres/france|/genres/literature|/genres/european-literature|/genres/french-literature|/genres/novels|/genres/philosophy|/genres/literature|/genres/20th-century|/genres/classics,dir09/12395.Journey_to_the_End_of_the_Night.html,14200,Journey to the End of the Night +4.27,4991,0553804677,good_reads:book,https://www.goodreads.com/author/show/73149.Scott_Lynch,2006,/genres/fantasy|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/epic-fantasy|/genres/mystery|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/adult,dir09/127455.The_Lies_of_Locke_Lamora.html,63546,"The Lies of Locke Lamora (Gentleman Bastard, #1)" +4.09,4223,0060590270,good_reads:book,https://www.goodreads.com/author/show/16218.Christopher_Moore,2006,/genres/fiction|/genres/humor|/genres/fantasy|/genres/humor|/genres/comedy|/genres/humor|/genres/funny|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/horror|/genres/fantasy|/genres/supernatural|/genres/book-club,dir09/33456.A_Dirty_Job.html,60932,"A Dirty Job (Grim Reaper, #1)" +3.72,55,1846247195,good_reads:book,https://www.goodreads.com/author/show/4346642.R_D_Ronald,2012,/genres/thriller|/genres/contemporary|/genres/mystery|/genres/mystery|/genres/crime|/genres/fiction|/genres/adult-fiction|/genres/suspense|/genres/adult|/genres/novels|/genres/drama,dir09/13568322-the-zombie-room.html,7445,The Zombie Room +3.97,1418,0440416795,good_reads:book,https://www.goodreads.com/author/show/2560.Louise_Fitzhugh,1964,/genres/childrens|/genres/young-adult|/genres/classics|/genres/childrens|/genres/middle-grade|/genres/mystery|/genres/realistic-fiction,dir09/232576.Harriet_the_Spy.html,54595,Harriet the Spy (Harriet the Spy #1) +3.79,1710,0425190374,good_reads:book,https://www.goodreads.com/author/show/3502.Alice_Hoffman,1995,/genres/fiction|/genres/fantasy|/genres/magical-realism|/genres/fantasy|/genres/magic|/genres/romance|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/paranormal|/genres/womens-fiction|/genres/chick-lit|/genres/fantasy|/genres/supernatural|/genres/contemporary,dir09/22896.Practical_Magic.html,24697,Practical Magic +4.21,3525,1423140567,good_reads:book,https://www.goodreads.com/author/show/15872.Rick_Riordan,2011,/genres/fantasy|/genres/fantasy|/genres/mythology|/genres/young-adult|/genres/adventure|/genres/fantasy|/genres/magic|/genres/childrens|/genres/childrens|/genres/middle-grade,dir09/9067850-the-throne-of-fire.html,79741,"The Throne of Fire (Kane Chronicles, #2)" +4.10,3391,0553381520,good_reads:book,https://www.goodreads.com/author/show/6760.Laurie_R_King,1994,/genres/mystery|/genres/historical-fiction|/genres/book-club|/genres/mystery|/genres/crime|/genres/mystery|/genres/historical-mystery|/genres/thriller|/genres/mystery-thriller|/genres/adult|/genres/adult-fiction|/genres/mystery|/genres/detective|/genres/european-literature|/genres/british-literature,dir09/91661.The_Beekeeper_s_Apprentice.html,34210,"The Beekeeper's Apprentice (Mary Russell, #1)" +3.98,1363,0099470470,good_reads:book,https://www.goodreads.com/author/show/10039.John_Fowles,1963,/genres/fiction|/genres/horror|/genres/classics|/genres/thriller|/genres/mystery|/genres/crime|/genres/mystery|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/contemporary|/genres/novels,dir09/243705.The_Collector.html,22576,The Collector +3.79,159,1439198780,good_reads:book,https://www.goodreads.com/author/show/364872.Juan_Gomez_Jurado,2010,/genres/historical-fiction|/genres/mystery|/genres/fiction|/genres/cultural|/genres/germany|/genres/thriller|/genres/book-club|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/european-literature|/genres/spanish-literature|/genres/adventure,dir09/10204213-the-traitor-s-emblem.html,996,The Traitor's Emblem +4.10,63,0975925571,good_reads:book,https://www.goodreads.com/author/show/286014.Ki_Longfellow,1989,/genres/historical-fiction|/genres/mystery|/genres/literature|/genres/fiction|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery-thriller|/genres/adventure|/genres/book-club|/genres/mystery|/genres/historical-mystery|/genres/romance|/genres/historical-romance,dir09/13530588-china-blues.html,820,China Blues +4.19,2793,0451210859,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1987,/genres/fantasy|/genres/horror|/genres/science-fiction|/genres/science-fiction-fantasy|/genres/adventure|/genres/western|/genres/thriller,dir09/5094.The_Drawing_of_the_Three.html,99023,"The Drawing of the Three (The Dark Tower, #2)" +4.58,558,0140286802,good_reads:book,https://www.goodreads.com/author/show/500.Jorge_Luis_Borges,1998,/genres/short-stories|/genres/literature|/genres/classics|/genres/fantasy|/genres/magical-realism|/genres/cultural|/genres/latin-american|/genres/philosophy|/genres/european-literature|/genres/spanish-literature,dir09/17961.Collected_Fictions.html,12596,Collected Fictions +3.65,62,1848764561,good_reads:book,https://www.goodreads.com/author/show/4346642.R_D_Ronald,2010,/genres/thriller|/genres/contemporary|/genres/mystery|/genres/mystery|/genres/crime|/genres/adult-fiction|/genres/suspense|/genres/adult|/genres/novels|/genres/drama|/genres/realistic-fiction,dir09/9293020-the-elephant-tree.html,6280,The Elephant Tree +4.05,1585,0452287057,good_reads:book,https://www.goodreads.com/author/show/5599.Dorothy_Allison,1992,/genres/american|/genres/southern|/genres/classics|/genres/glbt|/genres/queer|/genres/novels|/genres/literature|/genres/young-adult|/genres/coming-of-age|/genres/contemporary|/genres/literary-fiction|/genres/adult-fiction,dir09/25354.Bastard_Out_of_Carolina.html,24466,Bastard Out of Carolina +4.03,1035,0679720227,good_reads:book,https://www.goodreads.com/author/show/957894.Albert_Camus,1956,/genres/philosophy|/genres/classics|/genres/cultural|/genres/france|/genres/literature|/genres/european-literature|/genres/french-literature|/genres/novels|/genres/literature|/genres/20th-century|/genres/literary-fiction|/genres/classics|/genres/modern-classics|/genres/roman,dir09/11991.The_Fall.html,32663,The Fall +4.08,1498,0451220897,good_reads:book,https://www.goodreads.com/author/show/15292.Rachel_Caine,2007,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fiction,dir09/261122.The_Dead_Girls_Dance.html,37778,"The Dead Girls' Dance (The Morganville Vampires, #2)" +3.86,3359,1453688935,good_reads:book,https://www.goodreads.com/author/show/3486415.Amanda_Hocking,2010,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/young-adult-fantasy,dir09/8564935-switched.html,37305,"Switched (Trylle Trilogy, #1)" +3.87,1211,0345452003,good_reads:book,https://www.goodreads.com/author/show/457.Anne_Tyler,1985,/genres/fiction|/genres/contemporary|/genres/literary-fiction|/genres/book-club|/genres/novels|/genres/romance|/genres/adult-fiction|/genres/literature|/genres/literature|/genres/american|/genres/classics,dir09/60792.The_Accidental_Tourist.html,61074,The Accidental Tourist +3.97,1638,0140185852,good_reads:book,https://www.goodreads.com/author/show/43298.Yevgeny_Zamyatin,1924,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/dystopia|/genres/classics|/genres/cultural|/genres/russia|/genres/literature|/genres/russian-literature|/genres/literature,dir09/76171.We.html,29698,We +4.08,1482,0671023462,good_reads:book,https://www.goodreads.com/author/show/53574.Elizabeth_Chandler,1995,/genres/young-adult|/genres/paranormal|/genres/angels|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/mystery|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/ghosts,dir09/321645.Kissed_by_an_Angel.html,20233,"Kissed by an Angel (Kissed by an Angel, #1-3)" +4.28,1680,0671741039,good_reads:book,https://www.goodreads.com/author/show/5244478.Robert_McCammon,1987,/genres/horror|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fiction|/genres/fantasy|/genres/science-fiction|/genres/science-fiction|/genres/apocalyptic|/genres/science-fiction|/genres/dystopia|/genres/thriller|/genres/epic|/genres/science-fiction-fantasy,dir09/11557.Swan_Song.html,27195,Swan Song +4.09,2259,0451196716,good_reads:book,https://www.goodreads.com/author/show/5858.Richard_Bachman,1979,/genres/horror|/genres/fiction|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/thriller|/genres/fantasy|/genres/suspense|/genres/adult|/genres/literature|/genres/american|/genres/novels,dir09/9014.The_Long_Walk.html,53089,The Long Walk +4.29,1032,0465026567,good_reads:book,https://www.goodreads.com/author/show/3034502.Douglas_R_Hofstadter,1979,/genres/science|/genres/non-fiction|/genres/philosophy|/genres/science|/genres/mathematics|/genres/music|/genres/art|/genres/psychology|/genres/science|/genres/computer-science|/genres/history|/genres/science|/genres/popular-science,dir09/24113.G_del_Escher_Bach.html,23119,"Gödel, Escher, Bach" +4.06,1915,0345347951,good_reads:book,https://www.goodreads.com/author/show/7779.Arthur_C_Clarke,1953,/genres/science-fiction|/genres/fiction|/genres/classics|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/aliens|/genres/fantasy|/genres/speculative-fiction|/genres/novels|/genres/space,dir09/414999.Childhood_s_End.html,58767,Childhood's End +4.06,3693,1847241697,good_reads:book,https://www.goodreads.com/author/show/479779.John_Ajvide_Lindqvist,2004,/genres/horror|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/thriller|/genres/mystery|/genres/european-literature|/genres/swedish-literature|/genres/cultural|/genres/sweden|/genres/adult,dir09/943402.Let_the_Right_One_In.html,41269,Let the Right One In +3.92,1426,0486426750,good_reads:book,https://www.goodreads.com/author/show/16244.John_Bunyan,1678,/genres/classics|/genres/fiction|/genres/christian|/genres/religion|/genres/christian-fiction|/genres/religion|/genres/christianity|/genres/religion|/genres/theology|/genres/literature|/genres/fantasy|/genres/spirituality,dir09/29797.The_Pilgrim_s_Progress.html,47761,The Pilgrim's Progress +4.02,5493,038073186X,good_reads:book,https://www.goodreads.com/author/show/10289.Dennis_Lehane,2003,/genres/mystery|/genres/thriller|/genres/suspense|/genres/horror|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery-thriller|/genres/book-club|/genres/adult|/genres/adult-fiction|/genres/psychology,dir09/21686.Shutter_Island.html,81966,Shutter Island +3.95,1429,0143039024,good_reads:book,https://www.goodreads.com/author/show/2533.Graham_Greene,1955,/genres/classics|/genres/historical-fiction|/genres/literature|/genres/war|/genres/european-literature|/genres/british-literature|/genres/cultural|/genres/asia|/genres/novels|/genres/book-club|/genres/literature|/genres/20th-century|/genres/literary-fiction,dir09/3698.The_Quiet_American.html,22645,The Quiet American +3.59,103,1606965506,good_reads:book,https://www.goodreads.com/author/show/2918488.Heath_Sommer,2009,/genres/mystery|/genres/psychology|/genres/fiction|/genres/book-club|/genres/thriller|/genres/mystery-thriller|/genres/contemporary|/genres/thriller|/genres/suspense|/genres/adult|/genres/novels,dir10/6507691-the-manufactured-identity.html,331,"The Manufactured Identity (Manufactured Identity, #1)" +4.16,1374,0345418905,good_reads:book,https://www.goodreads.com/author/show/4.Douglas_Adams,1982,/genres/science-fiction|/genres/fiction|/genres/humor|/genres/fantasy|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny|/genres/classics,dir10/8694.Life_the_Universe_and_Everything.html,90092,"Life, the Universe and Everything (Hitchhiker's Guide, #3)" +3.67,2502,006121468X,good_reads:book,https://www.goodreads.com/author/show/175855.Melissa_Marr,2008,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/fairies|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/fairies|/genres/fae|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/fantasy|/genres/supernatural,dir10/2321296.Ink_Exchange.html,41357,"Ink Exchange (Wicked Lovely, #2)" +3.98,415,0879516283,good_reads:book,https://www.goodreads.com/author/show/22018.Mervyn_Peake,1992,/genres/fantasy|/genres/classics|/genres/gothic|/genres/literature|/genres/novels|/genres/science-fiction-fantasy|/genres/literature|/genres/20th-century|/genres/science-fiction|/genres/european-literature|/genres/british-literature|/genres/epic,dir10/39058.The_Gormenghast_Novels.html,5416,"The Gormenghast Novels (Gormenghast, #1-3)" +4.22,2392,0340829788,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1997,/genres/fantasy|/genres/fiction|/genres/horror|/genres/science-fiction|/genres/science-fiction-fantasy|/genres/western|/genres/adventure|/genres/epic|/genres/novels|/genres/apocalyptic|/genres/post-apocalyptic,dir10/5096.Wizard_and_Glass.html,78028,"Wizard and Glass (The Dark Tower, #4)" +4.02,7922,0451457811,good_reads:book,https://www.goodreads.com/author/show/10746.Jim_Butcher,2000,/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/mystery|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/science-fiction-fantasy|/genres/paranormal|/genres/vampires,dir10/47212.Storm_Front.html,137761,Storm Front (The Dresden Files #1) +4.41,5605,1620610094,good_reads:book,https://www.goodreads.com/author/show/4476934.Jennifer_L_Armentrout,2012,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/aliens|/genres/romance|/genres/fantasy|/genres/science-fiction|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/young-adult-paranormal,dir10/13362536-opal.html,51046,"Opal (Lux, #3)" +3.45,2481,0140620613,good_reads:book,https://www.goodreads.com/author/show/159.Henry_James,1898,/genres/classics|/genres/gothic|/genres/mystery|/genres/literature|/genres/horror|/genres/literature|/genres/19th-century|/genres/paranormal|/genres/ghosts|/genres/academic|/genres/school|/genres/novels,dir10/12948.The_Turn_of_the_Screw.html,39641,The Turn of the Screw +4.15,938,0375760377,good_reads:book,https://www.goodreads.com/author/show/7995.James_A_Michener,1959,/genres/historical-fiction|/genres/fiction|/genres/classics|/genres/novels|/genres/travel|/genres/adult-fiction,dir10/12658.Hawaii.html,46604,Hawaii +3.48,1955,0802140181,good_reads:book,https://www.goodreads.com/author/show/4462369.William_S_Burroughs,1959,/genres/fiction|/genres/classics|/genres/literature|/genres/novels|/genres/literature|/genres/american|/genres/contemporary|/genres/literature|/genres/banned-books|/genres/literature|/genres/20th-century|/genres/science-fiction|/genres/literary-fiction,dir10/7437.Naked_Lunch.html,45635,Naked Lunch +3.59,1343,0812969901,good_reads:book,https://www.goodreads.com/author/show/285217.Johann_Wolfgang_von_Goethe,1774,/genres/fiction|/genres/european-literature|/genres/german-literature|/genres/literature|/genres/academic|/genres/school|/genres/romance|/genres/novels|/genres/cultural|/genres/germany|/genres/literature|/genres/18th-century|/genres/drama|/genres/academic|/genres/read-for-school,dir10/16640.The_Sorrows_of_Young_Werther.html,32459,The Sorrows of Young Werther +4.85,26,1491732954,good_reads:book,https://www.goodreads.com/author/show/8189303.Omar_Farhad,2014,/genres/fiction,dir10/22242097-honor-and-polygamy.html,97,Honor and Polygamy +4.32,1560,0060502932,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,2004,/genres/fantasy|/genres/fiction|/genres/humor|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny|/genres/science-fiction|/genres/novels|/genres/european-literature|/genres/british-literature|/genres/adult,dir10/64222.Going_Postal.html,55149,"Going Postal (Discworld, #33)" +3.85,543,0140449302,good_reads:book,https://www.goodreads.com/author/show/29227.Giovanni_Boccaccio,1348,/genres/classics|/genres/short-stories|/genres/literature|/genres/european-literature|/genres/italian-literature|/genres/historical-fiction|/genres/medieval|/genres/cultural|/genres/italy|/genres/academic|/genres/school|/genres/historical-fiction|/genres/literature|/genres/14th-century|/genres/poetry,dir10/51799.The_Decameron.html,18201,The Decameron +4.16,1552,0061020680,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,1987,/genres/fantasy|/genres/humor|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny,dir10/386372.Mort.html,81208,"Mort (Discworld, #4)" +3.55,2587,0446671002,good_reads:book,https://www.goodreads.com/author/show/8203.James_Redfield,1993,/genres/fiction|/genres/spirituality|/genres/spirituality|/genres/new-age|/genres/self-help|/genres/religion|/genres/fantasy|/genres/inspirational|/genres/adventure|/genres/novels|/genres/book-club,dir10/13103.The_Celestine_Prophecy.html,61801,"The Celestine Prophecy (Celestine Prophecy, #1)" +4.27,1925,156389341X,good_reads:book,https://www.goodreads.com/author/show/15085.Frank_Miller,1986,/genres/sequential-art|/genres/comics|/genres/sequential-art|/genres/graphic-novels|/genres/dc-comics|/genres/batman|/genres/fiction|/genres/graphic-novels-comics|/genres/comics|/genres/comic-book|/genres/comics|/genres/superheroes|/genres/superheroes|/genres/dc-comics|/genres/fantasy|/genres/mystery|/genres/crime,dir10/59960.Batman.html,91497,Batman +3.94,1932,3442723434,good_reads:book,https://www.goodreads.com/author/show/3472.Margaret_Atwood,1996,/genres/fiction|/genres/historical-fiction|/genres/cultural|/genres/canada|/genres/mystery|/genres/book-club|/genres/mystery|/genres/crime|/genres/literature|/genres/literary-fiction|/genres/novels|/genres/contemporary,dir10/58027.Alias_Grace.html,42180,Alias Grace +3.79,1738,0743482832,good_reads:book,https://www.goodreads.com/author/show/947.William_Shakespeare,1611,/genres/classics|/genres/plays|/genres/drama|/genres/fiction|/genres/fantasy|/genres/literature|/genres/academic|/genres/school|/genres/plays|/genres/theatre|/genres/poetry|/genres/european-literature|/genres/british-literature,dir10/12985.The_Tempest.html,95188,The Tempest +3.97,5266,0060515198,good_reads:book,https://www.goodreads.com/author/show/1221698.Neil_Gaiman,2005,/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/fantasy|/genres/mythology|/genres/science-fiction-fantasy|/genres/humor|/genres/adult|/genres/science-fiction,dir10/2744.Anansi_Boys.html,110286,Anansi Boys +4.33,859,0316952664,good_reads:book,https://www.goodreads.com/author/show/9020.Herman_Wouk,1971,/genres/historical-fiction|/genres/war|/genres/history|/genres/world-war-ii|/genres/classics|/genres/war|/genres/military|/genres/literature|/genres/adult-fiction|/genres/literature|/genres/american|/genres/adventure|/genres/novels,dir10/21484.The_Winds_of_War.html,31103,"The Winds of War (The Henry Family, #1)" +4.26,12759,0595440096,good_reads:book,https://www.goodreads.com/author/show/978484.Lisa_Genova,2007,/genres/book-club|/genres/contemporary|/genres/psychology|/genres/adult-fiction|/genres/adult,dir10/2153405.Still_Alice.html,116641,Still Alice +4.41,1217,055337849X,good_reads:book,https://www.goodreads.com/author/show/11700.David_James_Duncan,1992,/genres/fiction|/genres/sports|/genres/baseball|/genres/book-club|/genres/sports-and-games|/genres/sports|/genres/historical-fiction|/genres/novels|/genres/literature|/genres/literary-fiction|/genres/adult-fiction|/genres/family,dir10/19534.The_Brothers_K.html,8087,The Brothers K +3.68,3640,0312656262,good_reads:book,https://www.goodreads.com/author/show/696372.Alexandra_Adornetto,2010,/genres/paranormal|/genres/angels|/genres/young-adult|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/demons|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/urban-fantasy,dir10/7778981-halo.html,44590,"Halo (Halo, #1)" +4.03,508,0192838997,good_reads:book,https://www.goodreads.com/author/show/16070.Alexander_Pushkin,1825,/genres/classics|/genres/poetry|/genres/cultural|/genres/russia|/genres/fiction|/genres/literature|/genres/russian-literature|/genres/literature|/genres/literature|/genres/19th-century|/genres/romance|/genres/academic|/genres/school|/genres/novels,dir10/27822.Eugene_Onegin.html,23200,Eugene Onegin +4.21,9323,0007466714,good_reads:book,https://www.goodreads.com/author/show/2987125.Kiera_Cass,2014,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/romance|/genres/fantasy|/genres/fiction,dir10/20572939-the-one.html,64518,"The One (The Selection, #3)" +3.74,1644,0061140988,good_reads:book,https://www.goodreads.com/author/show/50873.L_J_Smith,1991,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/shapeshifters|/genres/werewolves,dir10/1895792.The_Fury_and_Dark_Reunion.html,45125,"The Fury and Dark Reunion (The Vampire Diaries, #3-4)" +4.00,9218,0307931889,good_reads:book,https://www.goodreads.com/author/show/11664.David_Levithan,2012,/genres/contemporary|/genres/romance|/genres/young-adult|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/fiction|/genres/book-club|/genres/science-fiction|/genres/glbt|/genres/magical-realism,dir10/13262783-every-day.html,64152,Every Day (Every Day #1) +4.12,2450,1423100050,good_reads:book,https://www.goodreads.com/author/show/56224.Ally_Carter,2007,/genres/young-adult|/genres/romance|/genres/mystery|/genres/spy-thriller|/genres/espionage|/genres/fiction|/genres/adventure|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/teen|/genres/contemporary|/genres/action,dir10/568645.Cross_My_Heart_and_Hope_to_Spy.html,56582,"Cross My Heart and Hope to Spy (Gallagher Girls, #2)" +3.99,6335,0142001430,good_reads:book,https://www.goodreads.com/author/show/211268.Geraldine_Brooks,2001,/genres/historical-fiction|/genres/fiction|/genres/book-club|/genres/european-literature|/genres/british-literature|/genres/adult-fiction|/genres/adult|/genres/literature|/genres/novels|/genres/literary-fiction|/genres/historical-fiction|/genres/medieval,dir10/4965.Year_of_Wonders.html,80174,Year of Wonders +3.97,1048,0143039482,good_reads:book,https://www.goodreads.com/author/show/585.John_Steinbeck,1961,/genres/classics|/genres/literature|/genres/literature|/genres/american|/genres/novels|/genres/book-club|/genres/literary-fiction,dir10/4796.The_Winter_of_Our_Discontent.html,23068,The Winter of Our Discontent +3.15,1985,1580495869,good_reads:book,https://www.goodreads.com/author/show/19879.Stephen_Crane,1895,/genres/classics|/genres/fiction|/genres/historical-fiction|/genres/war|/genres/literature|/genres/military-history|/genres/civil-war|/genres/academic|/genres/school|/genres/young-adult|/genres/war|/genres/military|/genres/literature|/genres/american,dir10/35220.The_Red_Badge_of_Courage.html,55953,The Red Badge of Courage +3.58,4211,1416951172,good_reads:book,https://www.goodreads.com/author/show/13957.Scott_Westerfeld,2007,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fantasy|/genres/young-adult|/genres/teen|/genres/romance|/genres/adventure|/genres/apocalyptic|/genres/post-apocalyptic|/genres/science-fiction-fantasy|/genres/action,dir10/493456.Extras.html,69407,"Extras (Uglies, #4)" +4.09,692,0517266555,good_reads:book,https://www.goodreads.com/author/show/6989.Rudyard_Kipling,1902,/genres/classics|/genres/childrens|/genres/fiction|/genres/short-stories|/genres/fantasy|/genres/animals|/genres/young-adult|/genres/literature|/genres/childrens|/genres/juvenile|/genres/humor,dir10/34053.Just_So_Stories.html,27615,Just So Stories +3.87,2470,014044906X,good_reads:book,https://www.goodreads.com/author/show/696805.Jules_Verne,1873,/genres/classics|/genres/fiction|/genres/adventure|/genres/science-fiction|/genres/literature|/genres/fantasy|/genres/cultural|/genres/france|/genres/travel|/genres/historical-fiction|/genres/novels,dir10/54479.Around_the_World_in_Eighty_Days.html,95836,Around the World in Eighty Days +4.64,148,1595142711,good_reads:book,https://www.goodreads.com/author/show/137902.Richelle_Mead,2009,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/fantasy|/genres/magic,dir10/6339989-vampire-academy-collection.html,21743,"Vampire Academy Collection (Vampire Academy, #1-3)" +4.07,4712,1862308160,good_reads:book,https://www.goodreads.com/author/show/599916.Tabitha_Suzuma,2010,/genres/romance|/genres/contemporary|/genres/realistic-fiction|/genres/young-adult|/genres/new-adult|/genres/drama|/genres/dark|/genres/family|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/teen,dir10/7600924-forbidden.html,23831,Forbidden +4.16,462,0375846158,good_reads:book,https://www.goodreads.com/author/show/8349.Christopher_Paolini,2008,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/dragons|/genres/fantasy|/genres/magic|/genres/adventure|/genres/science-fiction-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/young-adult-fantasy,dir10/2479827.Eragon_Eldest_Brisingr.html,18732,"Eragon, Eldest & Brisingr (Inheritance, #1-3)" +4.51,11011,1481426303,good_reads:book,https://www.goodreads.com/author/show/150038.Cassandra_Clare,2014,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/vampires|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/magic,dir10/8755785-city-of-heavenly-fire.html,69924,"City of Heavenly Fire (The Mortal Instruments, #6)" +4.33,31,,good_reads:book,https://www.goodreads.com/author/show/6590310.Simon_Okill,2012,/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/humor,dir10/16843726-nobody-loves-a-bigfoot-like-a-bigfoot-babe.html,109,Nobody Loves a Bigfoot Like a Bigfoot Babe +3.91,2230,1905294719,good_reads:book,https://www.goodreads.com/author/show/15873.Cornelia_Funke,2007,/genres/fantasy|/genres/fiction|/genres/young-adult|/genres/childrens|/genres/adventure|/genres/fantasy|/genres/magic|/genres/romance|/genres/childrens|/genres/middle-grade,dir10/2325825.Inkdeath.html,44521,"Inkdeath (Inkworld, #3)" +3.72,3199,1599903385,good_reads:book,https://www.goodreads.com/author/show/345630.Carrie_Jones,2008,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/fairies|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fairies|/genres/fae|/genres/fantasy|/genres/urban-fantasy,dir10/4070493-need.html,46167,"Need (Need, #1)" +4.38,1778,1450595987,good_reads:book,https://www.goodreads.com/author/show/3097905.Colleen_Houck,2011,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/adventure|/genres/fantasy|/genres/dragons|/genres/romance|/genres/paranormal-romance,dir10/7849341-tiger-s-voyage.html,18464,"Tiger's Voyage (The Tiger Saga, #3)" +4.35,2168,0441015662,good_reads:book,https://www.goodreads.com/author/show/40563.Patricia_Briggs,2008,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/shapeshifters|/genres/werewolves|/genres/paranormal|/genres/vampires|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/shapeshifters|/genres/fantasy|/genres/supernatural|/genres/fairies|/genres/fae,dir10/1412138.Iron_Kissed.html,62761,"Iron Kissed (Mercy Thompson, #3)" +4.41,3911,1476717486,good_reads:book,https://www.goodreads.com/author/show/4372391.S_C_Stephens,2011,/genres/romance|/genres/new-adult|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/young-adult|/genres/adult|/genres/music|/genres/academic|/genres/college|/genres/womens-fiction|/genres/chick-lit|/genres/adult-fiction|/genres/erotica,dir10/15842441-effortless.html,83410,"Effortless (Thoughtless, #2)" +3.86,1593,0140434747,good_reads:book,https://www.goodreads.com/author/show/8249.Anne_Bront_,1848,/genres/classics|/genres/romance|/genres/literature|/genres/19th-century|/genres/historical-fiction|/genres/literature|/genres/european-literature|/genres/british-literature,dir10/337113.The_Tenant_of_Wildfell_Hall.html,40271,The Tenant of Wildfell Hall +4.42,1302,0553609416,good_reads:book,https://www.goodreads.com/author/show/5350.L_M_Montgomery,1908,/genres/classics|/genres/young-adult|/genres/childrens|/genres/historical-fiction|/genres/romance|/genres/cultural|/genres/canada|/genres/literature|/genres/novels|/genres/young-adult|/genres/teen|/genres/childrens|/genres/juvenile,dir10/3579.The_Complete_Anne_of_Green_Gables_Boxed_Set.html,83388,"The Complete Anne of Green Gables Boxed Set (Anne of Green Gables, #1-8)" +3.63,6873,0689840926,good_reads:book,https://www.goodreads.com/author/show/18.Gary_Paulsen,1987,/genres/young-adult|/genres/fiction|/genres/adventure|/genres/childrens|/genres/classics|/genres/adventure|/genres/survival|/genres/realistic-fiction|/genres/academic|/genres/school|/genres/academic|/genres/read-for-school|/genres/childrens|/genres/middle-grade,dir10/50.Hatchet.html,149024,"Hatchet (Brian's Saga, #1)" +4.23,2524,1416903542,good_reads:book,https://www.goodreads.com/author/show/2821144.Ellen_Hopkins,2006,/genres/young-adult|/genres/poetry|/genres/realistic-fiction|/genres/romance|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/sociology|/genres/abuse|/genres/religion|/genres/drama|/genres/young-adult|/genres/coming-of-age,dir10/270807.Burned.html,35704,"Burned (Burned, #1)" +4.34,3006,0394541553,good_reads:book,https://www.goodreads.com/author/show/5117.Art_Spiegelman,1986,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/non-fiction|/genres/world-war-ii|/genres/holocaust|/genres/autobiography|/genres/memoir|/genres/biography|/genres/war|/genres/history|/genres/world-war-ii|/genres/graphic-novels-comics|/genres/classics,dir10/15196.Maus_I.html,122219,"Maus, I (Maus, #1)" +4.38,43022,0439554934,good_reads:book,https://www.goodreads.com/author/show/1077326.J_K_Rowling,1997,/genres/young-adult|/genres/fiction|/genres/childrens|/genres/fantasy|/genres/magic|/genres/adventure|/genres/fantasy|/genres/science-fiction-fantasy|/genres/classics|/genres/novels|/genres/fantasy|/genres/paranormal,dir10/3.Harry_Potter_and_the_Sorcerer_s_Stone.html,2816611,"Harry Potter and the Sorcerer's Stone (Harry Potter, #1)" +4.16,2321,0156904365,good_reads:book,https://www.goodreads.com/author/show/1069006.C_S_Lewis,1956,/genres/fiction|/genres/fantasy|/genres/classics|/genres/fantasy|/genres/mythology|/genres/christian|/genres/religion|/genres/literature|/genres/religion|/genres/christianity|/genres/book-club|/genres/christian-fiction,dir10/17343.Till_We_Have_Faces.html,27523,Till We Have Faces +4.29,2387,1416903569,good_reads:book,https://www.goodreads.com/author/show/2821144.Ellen_Hopkins,2007,/genres/young-adult|/genres/poetry|/genres/fiction|/genres/realistic-fiction|/genres/contemporary|/genres/mental-health|/genres/mental-illness|/genres/young-adult|/genres/teen|/genres/romance|/genres/sociology|/genres/abuse|/genres/health|/genres/mental-health,dir10/270805.Impulse.html,44981,"Impulse (Impulse, #1)" +4.56,27,1477276068,good_reads:book,https://www.goodreads.com/author/show/6621980.Yuehai_Xiao,2012,,dir10/16243767-crossing-the-seas.html,90,Crossing the Seas +4.27,257,0439224063,good_reads:book,https://www.goodreads.com/author/show/4624490.Edgar_Allan_Poe,1845,/genres/classics|/genres/poetry|/genres/fiction|/genres/gothic|/genres/literature|/genres/horror|/genres/fantasy|/genres/short-stories|/genres/literature|/genres/american|/genres/mystery,dir10/269322.The_Raven_and_Other_Poems.html,25201,The Raven and Other Poems +4.20,499,0440184622,good_reads:book,https://www.goodreads.com/author/show/6417.James_Clavell,1966,/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/china|/genres/adventure|/genres/cultural|/genres/asia|/genres/classics|/genres/literature|/genres/novels|/genres/literature|/genres/asian-literature|/genres/thriller,dir10/42933.Tai_Pan.html,25190,"Tai-Pan (Asian Saga, #2)" +4.14,1392,0689707495,good_reads:book,https://www.goodreads.com/author/show/5336.Judi_Barrett,1978,/genres/childrens|/genres/picture-books|/genres/childrens|/genres/fiction|/genres/fantasy|/genres/classics|/genres/humor|/genres/food-and-drink|/genres/food|/genres/kids|/genres/childrens|/genres/juvenile|/genres/academic|/genres/school,dir10/8073.Cloudy_With_a_Chance_of_Meatballs.html,80321,Cloudy With a Chance of Meatballs +3.71,1796,037575850X,good_reads:book,https://www.goodreads.com/author/show/1036615.Charlotte_Bront_,1853,/genres/classics|/genres/fiction|/genres/literature|/genres/19th-century|/genres/romance|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/historical-fiction|/genres/gothic|/genres/classics|/genres/classic-literature|/genres/novels,dir10/31173.Villette.html,31423,Villette +4.57,38199,0545010225,good_reads:book,https://www.goodreads.com/author/show/1077326.J_K_Rowling,2007,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/childrens|/genres/adventure|/genres/science-fiction-fantasy|/genres/classics|/genres/novels|/genres/young-adult|/genres/teen|/genres/paranormal|/genres/witches,dir10/136251.Harry_Potter_and_the_Deathly_Hallows.html,1245866,Harry Potter and the Deathly Hallows (Harry Potter #7) +4.41,4179,0765316897,good_reads:book,https://www.goodreads.com/author/show/38550.Brandon_Sanderson,2008,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/epic|/genres/adult|/genres/science-fiction|/genres/adventure,dir10/2767793-the-hero-of-ages.html,76154,"The Hero of Ages (Mistborn, #3)" +4.15,4630,078685197X,good_reads:book,https://www.goodreads.com/author/show/11672.Ned_Vizzini,2006,/genres/young-adult|/genres/fiction|/genres/contemporary|/genres/realistic-fiction|/genres/mental-health|/genres/mental-illness|/genres/romance|/genres/health|/genres/mental-health|/genres/young-adult|/genres/teen|/genres/humor|/genres/psychology,dir10/248704.It_s_Kind_of_a_Funny_Story.html,91313,It's Kind of a Funny Story +3.88,2935,0439554004,good_reads:book,https://www.goodreads.com/author/show/15873.Cornelia_Funke,2005,/genres/young-adult|/genres/fantasy|/genres/adventure|/genres/fantasy|/genres/magic|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/writing|/genres/books-about-books|/genres/romance|/genres/science-fiction-fantasy|/genres/european-literature|/genres/german-literature,dir10/28195.Inkspell.html,64184,"Inkspell (Inkworld, #2)" +4.13,4594,0805092528,good_reads:book,https://www.goodreads.com/author/show/298438.Kerstin_Gier,2009,/genres/young-adult|/genres/science-fiction|/genres/time-travel|/genres/fantasy|/genres/historical-fiction|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/fiction|/genres/romance|/genres/book-club|/genres/mystery,dir10/8835379-ruby-red.html,38181,"Ruby Red (Precious Stone Trilogy, #1)" +3.98,6178,067001110X,good_reads:book,https://www.goodreads.com/author/show/10003.Laurie_Halse_Anderson,2009,/genres/young-adult|/genres/fiction|/genres/realistic-fiction|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/mental-health|/genres/mental-illness,dir10/5152478-wintergirls.html,62975,Wintergirls +4.24,1790,0441068804,good_reads:book,https://www.goodreads.com/author/show/5339.Robin_McKinley,1982,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/adventure|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/young-adult|/genres/young-adult-fantasy|/genres/fantasy|/genres/high-fantasy,dir10/407813.The_Blue_Sword.html,35671,"The Blue Sword (Damar, #2)" +4.14,1592,0061054887,good_reads:book,https://www.goodreads.com/author/show/874602.Ursula_K_Le_Guin,1974,/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/science-fiction|/genres/dystopia|/genres/science-fiction-fantasy|/genres/speculative-fiction|/genres/philosophy|/genres/classics|/genres/politics|/genres/novels,dir10/13651.The_Dispossessed.html,31336,"The Dispossessed (Hainish Cycle, #5)" +4.08,2750,0143039970,good_reads:book,https://www.goodreads.com/author/show/13388.Shirley_Jackson,1962,/genres/horror|/genres/classics|/genres/gothic|/genres/mystery|/genres/fiction|/genres/book-club,dir10/89724.We_Have_Always_Lived_in_the_Castle.html,20372,We Have Always Lived in the Castle +4.41,6381,0399256776,good_reads:book,https://www.goodreads.com/author/show/4342215.Marie_Lu,2013,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/romance|/genres/science-fiction|/genres/fantasy|/genres/fiction|/genres/action|/genres/adventure|/genres/young-adult|/genres/teen|/genres/apocalyptic|/genres/post-apocalyptic,dir10/14290364-champion.html,45339,"Champion (Legend, #3)" +4.10,708,0312278497,good_reads:book,https://www.goodreads.com/author/show/1113469.Hermann_Hesse,1943,/genres/fiction|/genres/classics|/genres/literature|/genres/european-literature|/genres/german-literature|/genres/philosophy|/genres/novels|/genres/science-fiction|/genres/fantasy|/genres/cultural|/genres/germany|/genres/science-fiction|/genres/dystopia,dir10/16634.The_Glass_Bead_Game.html,14785,The Glass Bead Game +3.71,2358,006091307X,good_reads:book,https://www.goodreads.com/author/show/235.Thomas_Pynchon,1966,/genres/fiction|/genres/classics|/genres/literature|/genres/novels|/genres/literature|/genres/american|/genres/contemporary|/genres/mystery|/genres/literary-fiction|/genres/literature|/genres/20th-century|/genres/book-club,dir10/2794.The_Crying_of_Lot_49.html,37847,The Crying of Lot 49 +4.39,5810,1620610116,good_reads:book,https://www.goodreads.com/author/show/4476934.Jennifer_L_Armentrout,2012,/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/science-fiction|/genres/aliens|/genres/romance|/genres/fantasy|/genres/science-fiction|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural,dir10/13047090-onyx.html,64791,"Onyx (Lux, #2)" +4.15,11085,044654759X,good_reads:book,https://www.goodreads.com/author/show/2345.Nicholas_Sparks,2009,/genres/romance|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/adult|/genres/romance|/genres/contemporary-romance|/genres/book-club|/genres/adult-fiction|/genres/love|/genres/drama,dir10/7812659-safe-haven.html,171714,Safe Haven +3.93,3090,0375706771,good_reads:book,https://www.goodreads.com/author/show/3509.Chris_Bohjalian,1997,/genres/book-club|/genres/fiction|/genres/contemporary|/genres/adult-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/adult|/genres/novels|/genres/mystery|/genres/drama|/genres/literature,dir10/5166.Midwives.html,103865,Midwives +4.06,6391,0553805487,good_reads:book,https://www.goodreads.com/author/show/566874.Sarah_Addison_Allen,2007,/genres/fiction|/genres/fantasy|/genres/magical-realism|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/book-club|/genres/fantasy|/genres/magic|/genres/contemporary|/genres/adult|/genres/fantasy|/genres/paranormal,dir10/1158967.Garden_Spells.html,47915,Garden Spells +4.46,60,,good_reads:book,https://www.goodreads.com/author/show/6542656.Karen_Prince,2012,/genres/fantasy|/genres/young-adult|/genres/adventure|/genres/humor|/genres/fantasy|/genres/magic|/genres/childrens|/genres/middle-grade|/genres/fantasy|/genres/mythology|/genres/childrens|/genres/cultural|/genres/africa|/genres/young-adult|/genres/teen,dir10/18333130-switch-the-lost-kingdoms-of-karibu.html,309,Switch! The Lost Kingdoms of Karibu +4.16,929,0552154288,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,1996,/genres/fantasy|/genres/humor|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/holiday|/genres/christmas|/genres/humor|/genres/funny|/genres/science-fiction|/genres/fantasy|/genres/magic|/genres/novels|/genres/paranormal|/genres/wizards,dir10/34532.Hogfather.html,39511,"Hogfather (Discworld, #20)" +3.91,1397,0385339089,good_reads:book,https://www.goodreads.com/author/show/721.John_Grisham,1993,/genres/mystery|/genres/thriller|/genres/suspense|/genres/mystery|/genres/crime|/genres/thriller|/genres/legal-thriller|/genres/thriller|/genres/mystery-thriller|/genres/law|/genres/adult-fiction|/genres/novels|/genres/adult,dir10/5359.The_Client.html,230772,The Client +4.22,1639,0689711735,good_reads:book,https://www.goodreads.com/author/show/3080.Judith_Viorst,1972,/genres/childrens|/genres/picture-books|/genres/childrens|/genres/fiction|/genres/classics|/genres/humor,dir10/46677.Alexander_and_the_Terrible_Horrible_No_Good_Very_Bad_Day.html,110186,"Alexander and the Terrible, Horrible, No Good, Very Bad Day" +4.10,6337,0316057770,good_reads:book,https://www.goodreads.com/author/show/47672.Trenton_Lee_Stewart,2007,/genres/mystery|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/fantasy|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/science-fiction|/genres/realistic-fiction,dir10/83369.The_Mysterious_Benedict_Society.html,57142,"The Mysterious Benedict Society (The Mysterious Benedict Society, #1)" +4.08,2272,0316036196,good_reads:book,https://www.goodreads.com/author/show/3780.James_Patterson,2010,/genres/young-adult|/genres/fantasy|/genres/science-fiction|/genres/adventure|/genres/romance|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/action|/genres/young-adult|/genres/teen|/genres/paranormal|/genres/angels,dir10/6431790-fang.html,38894,"Fang (Maximum Ride, #6)" +3.84,1222,0812978188,good_reads:book,https://www.goodreads.com/author/show/12584.E_L_Doctorow,1974,/genres/fiction|/genres/historical-fiction|/genres/classics|/genres/literature|/genres/novels|/genres/literature|/genres/american|/genres/new-york|/genres/book-club|/genres/literature|/genres/20th-century|/genres/literary-fiction,dir10/175675.Ragtime.html,19668,Ragtime +3.74,1132,0141439785,good_reads:book,https://www.goodreads.com/author/show/15905.Thomas_Hardy,1886,/genres/fiction|/genres/classics|/genres/literature|/genres/literature|/genres/19th-century|/genres/novels|/genres/classics|/genres/classic-literature|/genres/historical-fiction|/genres/european-literature|/genres/british-literature|/genres/academic|/genres/school|/genres/literary-fiction,dir10/56759.The_Mayor_of_Casterbridge.html,29049,The Mayor of Casterbridge +3.97,1178,006008460X,good_reads:book,https://www.goodreads.com/author/show/3429453.Frank_B_Gilbreth_Jr_,1948,/genres/classics|/genres/non-fiction|/genres/biography|/genres/humor|/genres/autobiography|/genres/memoir|/genres/childrens|/genres/biography-memoir,dir10/764903.Cheaper_by_the_Dozen.html,19816,Cheaper by the Dozen +3.76,634,0141439777,good_reads:book,https://www.goodreads.com/author/show/22796.Laurence_Sterne,1767,/genres/classics|/genres/fiction|/genres/literature|/genres/literature|/genres/18th-century|/genres/novels|/genres/humor|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/english-literature|/genres/classics|/genres/classic-literature|/genres/humor|/genres/comedy,dir10/76527.The_Life_and_Opinions_of_Tristram_Shandy_Gentleman.html,10541,"The Life and Opinions of Tristram Shandy, Gentleman" +3.77,2781,0099244721,good_reads:book,https://www.goodreads.com/author/show/5194.Michael_Crichton,1999,/genres/fiction|/genres/science-fiction|/genres/thriller|/genres/science-fiction|/genres/time-travel|/genres/historical-fiction|/genres/fantasy|/genres/adventure|/genres/science-fiction-fantasy|/genres/suspense|/genres/mystery,dir10/7669.Timeline.html,114470,Timeline +4.08,325,0394900871,good_reads:book,https://www.goodreads.com/author/show/61105.Dr_Seuss,1958,/genres/childrens|/genres/childrens|/genres/picture-books|/genres/fiction|/genres/classics|/genres/poetry|/genres/humor|/genres/kids|/genres/animals|/genres/fantasy|/genres/childrens|/genres/juvenile,dir10/420404.Yertle_the_Turtle_and_Other_Stories.html,17470,Yertle the Turtle and Other Stories +3.81,9739,0385738773,good_reads:book,https://www.goodreads.com/author/show/348878.James_Dashner,2011,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/adventure|/genres/young-adult|/genres/teen|/genres/mystery|/genres/action|/genres/science-fiction|/genres/apocalyptic,dir10/7864437-the-death-cure.html,103671,"The Death Cure (Maze Runner, #3)" +3.63,6654,0307275558,good_reads:book,https://www.goodreads.com/author/show/3490.Lauren_Weisberger,2003,/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/contemporary|/genres/romance|/genres/humor|/genres/adult|/genres/adult-fiction|/genres/novels,dir10/5139.The_Devil_Wears_Prada.html,501549,"The Devil Wears Prada (The Devil Wears Prada, #1)" +4.26,1112,0151365040,good_reads:book,https://www.goodreads.com/author/show/22694.Flannery_O_Connor,1953,/genres/short-stories|/genres/fiction|/genres/classics|/genres/literature|/genres/american|/genres/southern|/genres/gothic|/genres/southern-gothic|/genres/book-club|/genres/literature|/genres/american|/genres/gothic,dir10/48464.A_Good_Man_is_Hard_to_Find_and_Other_Stories.html,20498,A Good Man is Hard to Find and Other Stories +4.02,1077,0060935472,good_reads:book,https://www.goodreads.com/author/show/75091.Fred_Gipson,1956,/genres/classics|/genres/young-adult|/genres/childrens|/genres/animals|/genres/historical-fiction|/genres/animals|/genres/dogs|/genres/academic|/genres/school|/genres/realistic-fiction|/genres/childrens|/genres/juvenile|/genres/literature,dir10/130580.Old_Yeller.html,52197,"Old Yeller (Old Yeller, #1)" +3.95,9857,0525421580,good_reads:book,https://www.goodreads.com/author/show/1406384.John_Green,2009,/genres/glbt|/genres/young-adult|/genres/young-adult|/genres/teen|/genres/glbt|/genres/gay,dir10/6567017-will-grayson-will-grayson.html,133518,"Will Grayson, Will Grayson" +4.05,523,0140447423,good_reads:book,https://www.goodreads.com/author/show/4750._mile_Zola,1885,/genres/classics|/genres/fiction|/genres/cultural|/genres/france|/genres/european-literature|/genres/french-literature|/genres/literature|/genres/literature|/genres/19th-century|/genres/historical-fiction|/genres/novels,dir10/28407.Germinal.html,13649,"Germinal (Les Rougon-Macquart, #13)" +4.08,2453,0330493744,good_reads:book,https://www.goodreads.com/author/show/9237.Jacqueline_Carey,2001,/genres/fantasy|/genres/romance|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/adult-fiction|/genres/erotica|/genres/adult|/genres/erotica|/genres/bdsm|/genres/fantasy|/genres/high-fantasy,dir10/153008.Kushiel_s_Dart.html,38308,"Kushiel's Dart (Phèdre's Trilogy, #1)" +3.72,1742,0802131786,good_reads:book,https://www.goodreads.com/author/show/147.Henry_Miller,1934,/genres/fiction|/genres/classics|/genres/literature|/genres/novels|/genres/literature|/genres/american|/genres/literature|/genres/banned-books|/genres/adult-fiction|/genres/erotica|/genres/cultural|/genres/france|/genres/literature|/genres/20th-century|/genres/literary-fiction,dir10/249.Tropic_of_Cancer.html,35751,Tropic of Cancer +4.12,2987,0399151575,good_reads:book,https://www.goodreads.com/author/show/17065.J_D_Robb,1995,/genres/mystery|/genres/romance|/genres/romance|/genres/romantic-suspense|/genres/mystery|/genres/crime|/genres/fiction|/genres/suspense|/genres/science-fiction|/genres/thriller|/genres/thriller|/genres/mystery-thriller|/genres/adult,dir10/268602.Naked_in_Death.html,79582,"Naked in Death (In Death, #1)" +4.20,1573,0765305119,good_reads:book,https://www.goodreads.com/author/show/6252.Robert_Jordan,1991,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/epic|/genres/adventure|/genres/fantasy|/genres/magic|/genres/adult|/genres/science-fiction,dir10/34897.The_Dragon_Reborn.html,118178,"The Dragon Reborn (Wheel of Time, #3)" +4.27,790,0394752848,good_reads:book,https://www.goodreads.com/author/show/25824.Julio_Cort_zar,1963,/genres/classics|/genres/cultural|/genres/latin-american|/genres/literature|/genres/novels|/genres/european-literature|/genres/spanish-literature|/genres/magical-realism|/genres/literature|/genres/latin-american-literature|/genres/literature|/genres/20th-century|/genres/literary-fiction|/genres/contemporary,dir10/53413.Hopscotch.html,12333,Hopscotch +4.21,2046,0060245867,good_reads:book,https://www.goodreads.com/author/show/87184.Laura_Joffe_Numeroff,1985,/genres/childrens|/genres/picture-books|/genres/childrens|/genres/fiction|/genres/animals,dir10/767680.If_You_Give_a_Mouse_a_Cookie.html,139907,If You Give a Mouse a Cookie +3.76,993,0060931736,good_reads:book,https://www.goodreads.com/author/show/13093.Muriel_Spark,1961,/genres/fiction|/genres/classics|/genres/historical-fiction|/genres/european-literature|/genres/british-literature|/genres/cultural|/genres/scotland|/genres/novels|/genres/literature|/genres/book-club,dir10/517188.The_Prime_of_Miss_Jean_Brodie.html,18937,The Prime of Miss Jean Brodie +3.95,872,0099483505,good_reads:book,https://www.goodreads.com/author/show/749461.G_nter_Grass,1959,/genres/classics|/genres/european-literature|/genres/german-literature|/genres/literature|/genres/historical-fiction|/genres/cultural|/genres/germany|/genres/magical-realism|/genres/fiction|/genres/novels|/genres/war|/genres/nobel-prize,dir10/35743.The_Tin_Drum.html,21240,"The Tin Drum (The Danzig Trilogy, #1)" +4.22,1882,1423116380,good_reads:book,https://www.goodreads.com/author/show/56224.Ally_Carter,2009,/genres/young-adult|/genres/romance|/genres/mystery|/genres/spy-thriller|/genres/espionage|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/adventure|/genres/young-adult|/genres/teen|/genres/contemporary|/genres/action,dir11/5267365-don-t-judge-a-girl-by-her-cover.html,40917,"Don't Judge a Girl by Her Cover (Gallagher Girls, #3)" +3.80,4901,031242440X,good_reads:book,https://www.goodreads.com/author/show/7491.Marilynne_Robinson,2004,/genres/fiction|/genres/book-club|/genres/historical-fiction|/genres/literature|/genres/novels|/genres/religion|/genres/literary-fiction|/genres/contemporary,dir11/68210.Gilead.html,34158,Gilead +3.74,53,0615484433,good_reads:book,https://www.goodreads.com/author/show/3275595.T_Rafael_Cimino,2011,/genres/fiction|/genres/mystery|/genres/mystery|/genres/crime|/genres/new-york|/genres/suspense|/genres/thriller|/genres/mystery-thriller,dir11/12240419-table-21.html,349,Table 21 +4.09,1400,0451208641,good_reads:book,https://www.goodreads.com/author/show/16652.John_Howard_Griffin,1960,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/history|/genres/classics|/genres/biography|/genres/cultural|/genres/african-american|/genres/race|/genres/sociology|/genres/biography-memoir|/genres/biography|/genres/autobiography,dir11/42603.Black_Like_Me.html,35679,Black Like Me +4.00,2205,1573229725,good_reads:book,https://www.goodreads.com/author/show/25334.Sarah_Waters,2002,/genres/historical-fiction|/genres/glbt|/genres/mystery|/genres/glbt|/genres/queer|/genres/romance|/genres/glbt|/genres/lesbian|/genres/fiction|/genres/european-literature|/genres/british-literature|/genres/gothic|/genres/book-club,dir11/45162.Fingersmith.html,31452,Fingersmith +4.20,908,0451225724,good_reads:book,https://www.goodreads.com/author/show/15292.Rachel_Caine,2008,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance,dir11/3558003-lord-of-misrule.html,32719,"Lord of Misrule (The Morganville Vampires, #5)" +4.28,6357,,good_reads:book,https://www.goodreads.com/author/show/4872191.Abbi_Glines,2012,/genres/new-adult|/genres/romance|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/adult|/genres/love|/genres/adult-fiction|/genres/erotica|/genres/drama,dir11/16070903-fallen-too-far.html,96425,"Fallen Too Far (Too Far, #1)" +4.29,6221,,good_reads:book,https://www.goodreads.com/author/show/4167378.Samantha_Young,2012,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/new-adult|/genres/contemporary|/genres/adult|/genres/adult-fiction|/genres/erotica|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/erotic-romance|/genres/fiction|/genres/adult-fiction,dir11/15760001-on-dublin-street.html,99108,"On Dublin Street (On Dublin Street, #1)" +3.94,777,080213422X,good_reads:book,https://www.goodreads.com/author/show/11121.Jerzy_Kosi_ski,1965,/genres/fiction|/genres/classics|/genres/historical-fiction|/genres/war|/genres/world-war-ii|/genres/holocaust|/genres/literature|/genres/horror|/genres/novels|/genres/history|/genres/world-war-ii|/genres/european-literature|/genres/polish-literature,dir11/18452.The_Painted_Bird.html,10857,The Painted Bird +4.11,3976,0689852231,good_reads:book,https://www.goodreads.com/author/show/8360.Nancy_Farmer,2002,/genres/young-adult|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/fiction|/genres/fantasy|/genres/young-adult|/genres/teen|/genres/adventure|/genres/academic|/genres/school,dir11/13376.The_House_of_the_Scorpion.html,44853,"The House of the Scorpion (Matteo Alacran, #1)" +3.83,2147,0679740678,good_reads:book,https://www.goodreads.com/author/show/4764.Philip_K_Dick,1962,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/alternate-history|/genres/science-fiction|/genres/dystopia|/genres/classics|/genres/science-fiction-fantasy|/genres/fantasy|/genres/historical-fiction|/genres/novels|/genres/speculative-fiction,dir11/216363.The_Man_in_the_High_Castle.html,41854,The Man in the High Castle +4.15,474,0061053716,good_reads:book,https://www.goodreads.com/author/show/10366.Clive_Barker,1991,/genres/fantasy|/genres/horror|/genres/fiction|/genres/fantasy|/genres/dark-fantasy|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/speculative-fiction|/genres/fantasy|/genres/supernatural,dir11/567704.Imajica.html,12469,Imajica +4.19,1387,0553213172,good_reads:book,https://www.goodreads.com/author/show/5350.L_M_Montgomery,1915,/genres/classics|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/historical-fiction|/genres/romance|/genres/cultural|/genres/canada,dir11/77392.Anne_of_the_Island.html,71938,"Anne of the Island (Anne of Green Gables, #3)" +4.01,1962,0060838744,good_reads:book,https://www.goodreads.com/author/show/5234.Sena_Jeter_Naslund,1999,/genres/historical-fiction|/genres/book-club|/genres/literature|/genres/novels|/genres/fiction|/genres/literary-fiction|/genres/contemporary|/genres/womens|/genres/adult|/genres/romance,dir11/7742.Ahab_s_Wife_or_The_Star_Gazer.html,26771,"Ahab's Wife, or The Star-Gazer" +4.23,483,0374529264,good_reads:book,https://www.goodreads.com/author/show/7732.Marguerite_Yourcenar,1951,/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/france|/genres/classics|/genres/literature|/genres/european-literature|/genres/french-literature|/genres/novels|/genres/philosophy,dir11/12172.Memoirs_of_Hadrian.html,6258,Memoirs of Hadrian +4.31,22402,0670026603,good_reads:book,https://www.goodreads.com/author/show/281810.Jojo_Moyes,2012,/genres/fiction|/genres/book-club|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/adult|/genres/contemporary|/genres/adult-fiction|/genres/romance|/genres/contemporary-romance|/genres/drama|/genres/realistic-fiction,dir11/15507958-me-before-you.html,143092,Me Before You +3.80,7432,1595143971,good_reads:book,https://www.goodreads.com/author/show/4018722.Beth_Revis,2011,/genres/young-adult|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/romance|/genres/fantasy|/genres/mystery|/genres/fiction|/genres/young-adult|/genres/teen|/genres/space|/genres/adventure,dir11/8235178-across-the-universe.html,68719,"Across the Universe (Across the Universe, #1)" +3.85,2171,0316002860,good_reads:book,https://www.goodreads.com/author/show/3780.James_Patterson,2007,/genres/young-adult|/genres/fantasy|/genres/science-fiction|/genres/adventure|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/young-adult|/genres/teen|/genres/action,dir11/1829709.The_Final_Warning.html,47199,"The Final Warning (Maximum Ride, #4)" +4.13,1170,0451222385,good_reads:book,https://www.goodreads.com/author/show/15292.Rachel_Caine,2007,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/young-adult|/genres/teen,dir11/544257.Midnight_Alley.html,42562,"Midnight Alley (The Morganville Vampires, #3)" +3.82,5504,0552562521,good_reads:book,https://www.goodreads.com/author/show/27100.Michael_Scott,2007,/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/mythology|/genres/adventure|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/young-adult-fantasy|/genres/fantasy|/genres/paranormal,dir11/17402605-the-alchemyst.html,83624,"The Alchemyst (The Secrets of the Immortal Nicholas Flamel, #1)" +4.30,2876,0375714839,good_reads:book,https://www.goodreads.com/author/show/6238.Marjane_Satrapi,2000,/genres/sequential-art|/genres/graphic-novels|/genres/non-fiction|/genres/sequential-art|/genres/comics|/genres/autobiography|/genres/memoir|/genres/biography|/genres/history|/genres/book-club|/genres/cultural|/genres/iran,dir11/991197.The_Complete_Persepolis.html,42504,"The Complete Persepolis (Persepolis, #1-4)" +3.70,3674,0375703861,good_reads:book,https://www.goodreads.com/author/show/2522.Zadie_Smith,1999,/genres/fiction|/genres/contemporary|/genres/novels|/genres/european-literature|/genres/british-literature|/genres/book-club|/genres/literature|/genres/literary-fiction|/genres/adult-fiction|/genres/adult|/genres/modern,dir11/3711.White_Teeth.html,62229,White Teeth +4.15,5941,1932416641,good_reads:book,https://www.goodreads.com/author/show/3371.Dave_Eggers,2006,/genres/fiction|/genres/cultural|/genres/africa|/genres/book-club|/genres/historical-fiction|/genres/war|/genres/contemporary|/genres/novels|/genres/literature|/genres/literature|/genres/american|/genres/literary-fiction,dir11/4952.What_is_the_What.html,50575,What is the What +3.94,4714,1906427135,good_reads:book,https://www.goodreads.com/author/show/2903247.Lucy_Christopher,2009,/genres/young-adult|/genres/contemporary|/genres/romance|/genres/fiction|/genres/realistic-fiction|/genres/mystery|/genres/young-adult|/genres/teen|/genres/thriller|/genres/cultural|/genres/australia|/genres/drama,dir11/6408862-stolen.html,34866,Stolen +4.18,1031,0451224639,good_reads:book,https://www.goodreads.com/author/show/15292.Rachel_Caine,2008,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/young-adult|/genres/teen,dir11/2295829.Feast_of_Fools.html,36653,"Feast of Fools (The Morganville Vampires, #4)" +4.15,2663,0316033677,good_reads:book,https://www.goodreads.com/author/show/1370283.Brent_Weeks,2008,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/science-fiction-fantasy|/genres/fantasy|/genres/dark-fantasy|/genres/adult,dir11/3227063-the-way-of-shadows.html,65913,"The Way of Shadows (Night Angel, #1)" +3.88,5654,0316077054,good_reads:book,https://www.goodreads.com/author/show/2895706.Kami_Garcia,2010,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/witches|/genres/fiction|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/teen,dir11/7842288-beautiful-darkness.html,79996,"Beautiful Darkness (Caster Chronicles, #2)" +3.92,1775,0786838930,good_reads:book,https://www.goodreads.com/author/show/21911.Melissa_de_la_Cruz,2007,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/angels|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/fiction,dir11/106085.Masquerade.html,65017,"Masquerade (Blue Bloods, #2)" +4.16,479,0449214192,good_reads:book,https://www.goodreads.com/author/show/7995.James_A_Michener,1974,/genres/historical-fiction|/genres/fiction|/genres/western|/genres/classics|/genres/adventure|/genres/novels|/genres/epic,dir11/133430.Centennial.html,21854,Centennial +4.49,1626,0441018521,good_reads:book,https://www.goodreads.com/author/show/21748.Ilona_Andrews,2010,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/magic|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/shapeshifters|/genres/adult|/genres/shapeshifters|/genres/werewolves,dir11/6479550-magic-bleeds.html,33044,"Magic Bleeds (Kate Daniels, #4)" +4.09,484,0752853716,good_reads:book,https://www.goodreads.com/author/show/1881.Dave_Pelzer,1995,/genres/non-fiction|/genres/biography|/genres/autobiography|/genres/memoir|/genres/true-story|/genres/psychology|/genres/biography|/genres/autobiography|/genres/sociology|/genres/abuse|/genres/biography-memoir|/genres/inspirational|/genres/family,dir11/822989.My_Story.html,6493,My Story +3.94,2788,0345459407,good_reads:book,https://www.goodreads.com/author/show/33918.China_Mi_ville,2000,/genres/fantasy|/genres/science-fiction|/genres/science-fiction|/genres/steampunk|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/horror|/genres/science-fiction-fantasy|/genres/weird-fiction|/genres/new-weird|/genres/speculative-fiction|/genres/fantasy|/genres/weird-fiction,dir11/68494.Perdido_Street_Station.html,31533,"Perdido Street Station (Bas-Lag, #1)" +3.79,2262,0385517874,good_reads:book,https://www.goodreads.com/author/show/2546.Chuck_Palahniuk,2007,/genres/fiction|/genres/science-fiction|/genres/contemporary|/genres/horror|/genres/novels|/genres/literature|/genres/literature|/genres/american|/genres/humor|/genres/science-fiction|/genres/time-travel|/genres/childrens|/genres/juvenile,dir11/22285.Rant.html,40620,Rant +4.56,1304,0007119550,good_reads:book,https://www.goodreads.com/author/show/346732.George_R_R_Martin,2000,/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy,dir11/147915.A_Storm_of_Swords.html,41161,"A Storm of Swords (A Song of Ice and Fire, #3-2)" +3.72,1345,1842430246,good_reads:book,https://www.goodreads.com/author/show/197.Tom_Robbins,1976,/genres/fiction|/genres/humor|/genres/literature|/genres/novels|/genres/contemporary|/genres/magical-realism|/genres/literature|/genres/american|/genres/adult-fiction|/genres/book-club|/genres/literary-fiction,dir11/7572.Even_Cowgirls_Get_the_Blues.html,35869,Even Cowgirls Get the Blues +3.79,10360,031232118X,good_reads:book,https://www.goodreads.com/author/show/13370.Emily_Giffin,2004,/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/contemporary|/genres/fiction|/genres/adult|/genres/adult-fiction|/genres/romance|/genres/contemporary-romance|/genres/book-club|/genres/realistic-fiction|/genres/media-tie-in|/genres/movies,dir11/42156.Something_Borrowed.html,326109,Something Borrowed +4.32,6212,0062085530,good_reads:book,https://www.goodreads.com/author/show/4637539.Tahereh_Mafi,2013,/genres/science-fiction|/genres/dystopia|/genres/romance|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/apocalyptic|/genres/post-apocalyptic|/genres/action,dir11/13104080-unravel-me.html,46826,"Unravel Me (Shatter Me, #2)" +3.72,2891,0613371658,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2000,/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/fiction|/genres/young-adult|/genres/teen|/genres/contemporary|/genres/childrens|/genres/humor|/genres/realistic-fiction|/genres/humor|/genres/funny,dir11/38980.The_Princess_Diaries.html,139663,"The Princess Diaries (The Princess Diaries, #1)" +4.03,4253,,good_reads:book,https://www.goodreads.com/author/show/2905297.Lauren_Kate,2012,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/romance,dir11/12716010-rapture.html,54334,"Rapture (Fallen, #4)" +4.07,1275,0060786523,good_reads:book,https://www.goodreads.com/author/show/28345.Vikram_Seth,1993,/genres/fiction|/genres/historical-fiction|/genres/asian-literature|/genres/indian-literature|/genres/classics|/genres/contemporary|/genres/literature|/genres/novels|/genres/cultural|/genres/india|/genres/romance|/genres/cultural|/genres/asia,dir11/50365.A_Suitable_Boy.html,26048,"A Suitable Boy (A Suitable Boy, #1)" +3.74,1725,1857231511,good_reads:book,https://www.goodreads.com/author/show/9629.Terry_Brooks,1977,/genres/fiction|/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction-fantasy|/genres/adventure|/genres/fantasy|/genres/magic|/genres/science-fiction|/genres/young-adult|/genres/epic,dir11/15575.The_Sword_of_Shannara.html,40966,The Sword of Shannara (The Original Shannara Trilogy #1) +3.92,2661,1903434777,good_reads:book,https://www.goodreads.com/author/show/15873.Cornelia_Funke,2000,/genres/fantasy|/genres/young-adult|/genres/childrens|/genres/adventure|/genres/mystery|/genres/childrens|/genres/middle-grade|/genres/historical-fiction|/genres/childrens|/genres/juvenile|/genres/cultural|/genres/italy|/genres/young-adult|/genres/teen,dir11/113304.The_Thief_Lord.html,50185,The Thief Lord +4.10,966,0060548258,good_reads:book,https://www.goodreads.com/author/show/15590.Mary_Stewart,1970,/genres/fantasy|/genres/fiction|/genres/historical-fiction|/genres/mythology|/genres/arthurian|/genres/science-fiction-fantasy|/genres/fantasy|/genres/mythology|/genres/classics|/genres/adventure|/genres/historical-fiction|/genres/medieval|/genres/fantasy|/genres/magic,dir11/82192.The_Crystal_Cave.html,27007,"The Crystal Cave (Arthurian Saga, #1)" +4.28,3007,1423140575,good_reads:book,https://www.goodreads.com/author/show/15872.Rick_Riordan,2012,/genres/fantasy|/genres/fantasy|/genres/mythology|/genres/young-adult|/genres/adventure|/genres/fiction|/genres/fantasy|/genres/magic|/genres/childrens|/genres/middle-grade,dir11/12893742-the-serpent-s-shadow.html,50860,"The Serpent's Shadow (Kane Chronicles, #3)" +3.96,6660,0763625299,good_reads:book,https://www.goodreads.com/author/show/13663.Kate_DiCamillo,2003,/genres/fantasy|/genres/childrens|/genres/fiction|/genres/young-adult|/genres/animals|/genres/childrens|/genres/middle-grade|/genres/adventure|/genres/childrens|/genres/juvenile,dir11/37190.The_Tale_of_Despereaux.html,81727,The Tale of Despereaux +3.88,1240,0679721037,good_reads:book,https://www.goodreads.com/author/show/15328.John_Hersey,1946,/genres/history|/genres/non-fiction|/genres/classics|/genres/war|/genres/cultural|/genres/japan|/genres/history|/genres/world-war-ii|/genres/academic|/genres/school|/genres/cultural|/genres/asia|/genres/academic|/genres/read-for-school,dir11/27323.Hiroshima.html,24665,Hiroshima +4.14,683,0060776099,good_reads:book,https://www.goodreads.com/author/show/3487.Aldous_Huxley,1932,/genres/classics|/genres/fiction|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/literature|/genres/philosophy|/genres/fantasy|/genres/science-fiction-fantasy|/genres/novels,dir11/5479.Brave_New_World_Brave_New_World_Revisited.html,71650,Brave New World/Brave New World Revisited +4.09,26946,0451524934,good_reads:book,https://www.goodreads.com/author/show/3706.George_Orwell,1949,/genres/classics|/genres/fiction|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/literature|/genres/novels|/genres/academic|/genres/school|/genres/politics,dir11/5470.1984.html,1342916,1984 +4.05,3345,0345416260,good_reads:book,https://www.goodreads.com/author/show/44605.Donna_Woolfolk_Cross,1996,/genres/historical-fiction|/genres/fiction|/genres/book-club|/genres/religion|/genres/historical-fiction|/genres/medieval|/genres/adult|/genres/adult-fiction,dir11/27252.Pope_Joan.html,40708,Pope Joan +3.96,1991,0099478447,good_reads:book,https://www.goodreads.com/author/show/2533.Graham_Greene,1951,/genres/fiction|/genres/classics|/genres/romance|/genres/literature|/genres/novels|/genres/european-literature|/genres/british-literature|/genres/literary-fiction|/genres/religion|/genres/book-club|/genres/historical-fiction,dir11/29641.The_End_of_the_Affair.html,21499,The End of the Affair +3.71,2181,0312270828,good_reads:book,https://www.goodreads.com/author/show/3299.Salman_Rushdie,1988,/genres/fiction|/genres/magical-realism|/genres/classics|/genres/literature|/genres/cultural|/genres/india|/genres/fantasy|/genres/religion|/genres/novels|/genres/contemporary|/genres/asian-literature|/genres/indian-literature,dir11/12781.The_Satanic_Verses.html,30536,The Satanic Verses +4.33,1755,1841496863,good_reads:book,https://www.goodreads.com/author/show/40563.Patricia_Briggs,2009,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/shapeshifters|/genres/fiction|/genres/fantasy|/genres/supernatural,dir11/3128411-bone-crossed.html,56704,"Bone Crossed (Mercy Thompson, #4)" +3.59,1686,0307348245,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1981,/genres/horror|/genres/fiction|/genres/thriller|/genres/suspense|/genres/animals|/genres/fantasy|/genres/animals|/genres/dogs,dir11/10603.Cujo.html,126297,Cujo +3.85,1321,0451155750,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1979,/genres/horror|/genres/fiction|/genres/thriller|/genres/fantasy|/genres/science-fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/mystery|/genres/suspense|/genres/novels,dir11/11573.The_Dead_Zone.html,102526,The Dead Zone +4.29,484,0312330863,good_reads:book,https://www.goodreads.com/author/show/18062.James_Herriot,1973,/genres/non-fiction|/genres/animals|/genres/autobiography|/genres/memoir|/genres/biography|/genres/classics|/genres/humor|/genres/biography|/genres/autobiography|/genres/biography-memoir|/genres/european-literature|/genres/british-literature|/genres/short-stories,dir11/38743.All_Things_Bright_and_Beautiful.html,47049,All Things Bright and Beautiful +4.00,1691,,good_reads:book,https://www.goodreads.com/author/show/1411964.John_le_Carr_,1963,/genres/fiction|/genres/thriller|/genres/spy-thriller|/genres/espionage|/genres/mystery|/genres/classics|/genres/mystery|/genres/crime|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/novels|/genres/thriller|/genres/spy-thriller,dir11/19494.The_Spy_Who_Came_In_from_the_Cold.html,25769,The Spy Who Came In from the Cold +4.23,806,0451227190,good_reads:book,https://www.goodreads.com/author/show/15292.Rachel_Caine,2009,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/young-adult|/genres/teen,dir11/5212771-carpe-corpus.html,35144,"Carpe Corpus (The Morganville Vampires, #6)" +3.82,1228,0061284408,good_reads:book,https://www.goodreads.com/author/show/1192311.Claudia_Gray,2008,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/ghosts|/genres/fantasy|/genres/urban-fantasy|/genres/fiction,dir11/3054684-stargazer.html,39753,"Stargazer (Evernight, #2)" +4.39,3608,0752898477,good_reads:book,https://www.goodreads.com/author/show/3617.Diana_Gabaldon,2009,/genres/historical-fiction|/genres/romance|/genres/science-fiction|/genres/time-travel|/genres/fiction|/genres/fantasy|/genres/romance|/genres/historical-romance|/genres/cultural|/genres/scotland|/genres/adult|/genres/adventure|/genres/science-fiction,dir11/2832909-an-echo-in-the-bone.html,46151,"An Echo in the Bone (Outlander, #7)" +3.56,1047,0375753737,good_reads:book,https://www.goodreads.com/author/show/17623.D_H_Lawrence,1913,/genres/classics|/genres/fiction|/genres/literature|/genres/novels|/genres/european-literature|/genres/british-literature|/genres/romance|/genres/literature|/genres/20th-century|/genres/literary-fiction|/genres/classics|/genres/classic-literature|/genres/family,dir11/32071.Sons_and_Lovers.html,25091,Sons and Lovers +3.90,6518,0152061548,good_reads:book,https://www.goodreads.com/author/show/1318.Susan_Beth_Pfeffer,2006,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/young-adult|/genres/teen|/genres/adventure|/genres/survival|/genres/science-fiction|/genres/apocalyptic|/genres/fantasy|/genres/book-club,dir11/213753.Life_As_We_Knew_It.html,70410,"Life As We Knew It (Last Survivors, #1)" +3.69,6589,1416562591,good_reads:book,https://www.goodreads.com/author/show/810254.Aravind_Adiga,2008,/genres/fiction|/genres/cultural|/genres/india|/genres/book-club|/genres/contemporary|/genres/asian-literature|/genres/indian-literature|/genres/novels|/genres/literature|/genres/literary-fiction|/genres/cultural|/genres/asia|/genres/mystery|/genres/crime,dir11/1768603.The_White_Tiger.html,88926,The White Tiger +4.32,1784,1423128206,good_reads:book,https://www.goodreads.com/author/show/56224.Ally_Carter,2010,/genres/young-adult|/genres/romance|/genres/mystery|/genres/spy-thriller|/genres/espionage|/genres/adventure|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/action,dir11/6950688-only-the-good-spy-young.html,37477,"Only the Good Spy Young (Gallagher Girls, #4)" +4.12,803,0156949601,good_reads:book,https://www.goodreads.com/author/show/6765.Virginia_Woolf,1931,/genres/classics|/genres/fiction|/genres/literature|/genres/novels|/genres/european-literature|/genres/british-literature|/genres/literary-fiction|/genres/literature|/genres/20th-century|/genres/literature|/genres/english-literature|/genres/classics|/genres/modern-classics|/genres/poetry,dir11/46114.The_Waves.html,11452,The Waves +3.97,2149,0758216416,good_reads:book,https://www.goodreads.com/author/show/137902.Richelle_Mead,2007,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/vampires|/genres/paranormal|/genres/demons|/genres/adult|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/supernatural,dir11/235718.Succubus_Blues.html,36000,"Succubus Blues (Georgina Kincaid, #1)" +4.13,2460,1579126278,good_reads:book,https://www.goodreads.com/author/show/123715.Agatha_Christie,1926,/genres/mystery|/genres/fiction|/genres/mystery|/genres/crime|/genres/classics|/genres/mystery|/genres/detective|/genres/thriller|/genres/mystery-thriller|/genres/european-literature|/genres/british-literature|/genres/thriller|/genres/novels|/genres/adult,dir11/16328.The_Murder_of_Roger_Ackroyd.html,45502,"The Murder of Roger Ackroyd (Hercule Poirot, #4)" +3.82,1584,045057458X,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1991,/genres/horror|/genres/fiction|/genres/thriller|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/paranormal|/genres/mystery|/genres/suspense|/genres/novels|/genres/adult,dir11/107291.Needful_Things.html,119786,Needful Things +3.89,1727,0385491026,good_reads:book,https://www.goodreads.com/author/show/3472.Margaret_Atwood,1988,/genres/fiction|/genres/cultural|/genres/canada|/genres/contemporary|/genres/literary-fiction|/genres/literature|/genres/novels|/genres/feminism,dir11/51019.Cat_s_Eye.html,33145,Cat's Eye +4.18,4456,0670070297,good_reads:book,https://www.goodreads.com/author/show/47104.Melina_Marchetta,2006,/genres/young-adult|/genres/contemporary|/genres/romance|/genres/fiction|/genres/mystery|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/coming-of-age|/genres/cultural|/genres/australia|/genres/young-adult|/genres/young-adult-contemporary,dir11/1162022.On_the_Jellicoe_Road.html,26211,On the Jellicoe Road +3.83,856,0099478331,good_reads:book,https://www.goodreads.com/author/show/10039.John_Fowles,1969,/genres/fiction|/genres/classics|/genres/historical-fiction|/genres/romance|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/novels|/genres/literary-fiction|/genres/literature|/genres/20th-century|/genres/contemporary,dir11/56034.The_French_Lieutenant_s_Woman.html,28001,The French Lieutenant's Woman +4.18,3406,0983157200,good_reads:book,https://www.goodreads.com/author/show/4476934.Jennifer_L_Armentrout,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/mythology|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/mythology|/genres/greek-mythology|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires,dir11/9680718-half-blood.html,37479,"Half-Blood (Covenant, #1)" +3.89,1475,0385339704,good_reads:book,https://www.goodreads.com/author/show/721.John_Grisham,1992,/genres/fiction|/genres/novels|/genres/mystery|/genres/contemporary|/genres/thriller|/genres/mystery|/genres/crime|/genres/media-tie-in|/genres/movies|/genres/modern|/genres/literature|/genres/suspense,dir11/32499.The_Pelican_Brief.html,221753,The Pelican Brief +4.18,47,,good_reads:book,https://www.goodreads.com/author/show/5050207.Andy_Szpuk,2011,/genres/history|/genres/non-fiction|/genres/war|/genres/cultural|/genres/ukraine|/genres/autobiography|/genres/memoir|/genres/biography,dir11/12853168-sliding-on-the-snow-stone.html,220,Sliding on the Snow Stone +3.90,685,0451527704,good_reads:book,https://www.goodreads.com/author/show/8987.Theodore_Dreiser,1925,/genres/classics|/genres/fiction|/genres/literature|/genres/american|/genres/novels|/genres/literature|/genres/banned-books|/genres/classics|/genres/classic-literature|/genres/mystery|/genres/adult-fiction|/genres/literary-fiction|/genres/literature,dir11/331319.An_American_Tragedy.html,19995,An American Tragedy +4.21,3521,0385480016,good_reads:book,https://www.goodreads.com/author/show/7113.Anne_Lamott,1994,/genres/language|/genres/writing|/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/reference|/genres/writing|/genres/essays|/genres/self-help,dir11/12543.Bird_by_Bird.html,38835,Bird by Bird +4.25,232,0684807319,good_reads:book,https://www.goodreads.com/author/show/29963.W_B_Yeats,1889,/genres/poetry|/genres/classics|/genres/european-literature|/genres/irish-literature|/genres/cultural|/genres/ireland|/genres/literature|/genres/fiction|/genres/literature|/genres/20th-century|/genres/literature|/genres/19th-century|/genres/european-literature|/genres/british-literature|/genres/academic|/genres/college,dir11/53022.The_Collected_Poems.html,21498,The Collected Poems +3.95,4900,0452287588,good_reads:book,https://www.goodreads.com/author/show/4493.Eckhart_Tolle,2005,/genres/non-fiction|/genres/spirituality|/genres/self-help|/genres/philosophy|/genres/psychology|/genres/inspirational|/genres/religion|/genres/self-help|/genres/personal-development|/genres/spirituality|/genres/new-age|/genres/book-club,dir11/76334.A_New_Earth.html,71683,A New Earth +4.17,799,0312954468,good_reads:book,https://www.goodreads.com/author/show/4043.Wilbur_Smith,1993,/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/egypt|/genres/fantasy|/genres/thriller|/genres/romance|/genres/mystery|/genres/action|/genres/novels|/genres/adult,dir11/429138.River_God.html,18943,"River God (Ancient Egypt, #1)" +3.86,773,0140447644,good_reads:book,https://www.goodreads.com/author/show/1481537.Stendhal,1830,/genres/classics|/genres/fiction|/genres/cultural|/genres/france|/genres/european-literature|/genres/french-literature|/genres/literature|/genres/literature|/genres/19th-century|/genres/novels|/genres/historical-fiction,dir11/14662.The_Red_and_the_Black.html,24975,The Red and the Black +3.80,2166,0553213970,good_reads:book,https://www.goodreads.com/author/show/696805.Jules_Verne,1864,/genres/classics|/genres/science-fiction|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/cultural|/genres/france|/genres/literature|/genres/novels|/genres/science-fiction-fantasy|/genres/classics|/genres/classic-literature,dir11/32829.Journey_to_the_Center_of_the_Earth.html,72529,"Journey to the Center of the Earth (Extraordinary Voyages, #3)" +3.83,8521,0316346624,good_reads:book,https://www.goodreads.com/author/show/1439.Malcolm_Gladwell,2000,/genres/business|/genres/psychology|/genres/sociology|/genres/science|/genres/economics|/genres/non-fiction|/genres/book-club|/genres/philosophy|/genres/self-help|/genres/social-science,dir11/2612.The_Tipping_Point.html,317153,The Tipping Point +4.28,3666,0373210361,good_reads:book,https://www.goodreads.com/author/show/2995873.Julie_Kagawa,2011,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/paranormal|/genres/fairies|/genres/fairies|/genres/fae|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance,dir11/9659607-the-iron-knight.html,42652,"The Iron Knight (The Iron Fey, #4)" +3.67,1171,0679723110,good_reads:book,https://www.goodreads.com/author/show/481146.John_Gardner,1970,/genres/fiction|/genres/fantasy|/genres/classics|/genres/literature|/genres/academic|/genres/school|/genres/fantasy|/genres/mythology|/genres/novels|/genres/literary-fiction|/genres/young-adult|/genres/high-school|/genres/philosophy,dir11/676737.Grendel.html,20352,Grendel +4.02,9234,0060852550,good_reads:book,https://www.goodreads.com/author/show/3541.Barbara_Kingsolver,2007,/genres/non-fiction|/genres/food-and-drink|/genres/food|/genres/autobiography|/genres/memoir|/genres/book-club|/genres/gardening|/genres/health|/genres/environment|/genres/food-and-drink|/genres/cooking|/genres/biography|/genres/food-and-drink|/genres/foodie,dir11/25460.Animal_Vegetable_Miracle.html,73669,"Animal, Vegetable, Miracle" +3.87,1931,0684853159,good_reads:book,https://www.goodreads.com/author/show/7628.Iain_Banks,1984,/genres/fiction|/genres/horror|/genres/thriller|/genres/contemporary|/genres/literature|/genres/dark|/genres/novels|/genres/cultural|/genres/scotland|/genres/mystery|/genres/classics,dir11/567678.The_Wasp_Factory.html,34698,The Wasp Factory +4.06,3179,0441014895,good_reads:book,https://www.goodreads.com/author/show/21748.Ilona_Andrews,2007,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/magic|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/shapeshifters|/genres/adult|/genres/fiction,dir11/38619.Magic_Bites.html,44632,"Magic Bites (Kate Daniels, #1)" +4.14,4364,0373210515,good_reads:book,https://www.goodreads.com/author/show/2995873.Julie_Kagawa,2012,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/romance|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural,dir11/10215349-the-immortal-rules.html,36165,"The Immortal Rules (Blood of Eden, #1)" +4.18,2112,0553380966,good_reads:book,https://www.goodreads.com/author/show/545.Neal_Stephenson,1995,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/cyberpunk|/genres/science-fiction|/genres/steampunk|/genres/fantasy|/genres/science-fiction-fantasy|/genres/speculative-fiction|/genres/science-fiction|/genres/dystopia|/genres/novels|/genres/book-club,dir11/827.The_Diamond_Age.html,46317,The Diamond Age +4.13,6909,0374105235,good_reads:book,https://www.goodreads.com/author/show/24189.Ishmael_Beah,2007,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/cultural|/genres/africa|/genres/biography|/genres/war|/genres/history|/genres/book-club|/genres/biography-memoir|/genres/biography|/genres/autobiography|/genres/academic|/genres/school,dir11/43015.A_Long_Way_Gone.html,78063,A Long Way Gone +3.98,613,0440539811,good_reads:book,https://www.goodreads.com/author/show/5752454.Robert_Shea,1975,/genres/fiction|/genres/science-fiction|/genres/fantasy|/genres/humor|/genres/philosophy|/genres/politics|/genres/novels|/genres/occult|/genres/science-fiction-fantasy|/genres/literature,dir11/57913.The_Illuminatus_Trilogy.html,10744,The Illuminatus! Trilogy +4.26,2429,0345503805,good_reads:book,https://www.goodreads.com/author/show/1405152.Peter_V_Brett,2008,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fiction|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/high-fantasy|/genres/paranormal|/genres/demons|/genres/science-fiction-fantasy|/genres/adventure|/genres/horror|/genres/fantasy|/genres/dark-fantasy,dir11/3428935-the-warded-man.html,41893,"The Warded Man (Demon Cycle, #1)" +4.12,1365,1573221112,good_reads:book,https://www.goodreads.com/author/show/570218.Dalai_Lama_XIV,1998,/genres/non-fiction|/genres/religion|/genres/psychology|/genres/self-help|/genres/inspirational|/genres/spirituality|/genres/self-help|/genres/personal-development|/genres/biography|/genres/book-club|/genres/health,dir11/38210.The_Art_of_Happiness.html,45887,The Art of Happiness +3.87,4951,0441018645,good_reads:book,https://www.goodreads.com/author/show/17061.Charlaine_Harris,2010,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/fiction|/genres/mystery|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural,dir11/7091488-dead-in-the-family.html,114775,"Dead in the Family (Sookie Stackhouse, #10)" +3.97,1075,0006479677,good_reads:book,https://www.goodreads.com/author/show/9068.Sidney_Sheldon,1985,/genres/fiction|/genres/thriller|/genres/mystery|/genres/suspense|/genres/romance|/genres/mystery|/genres/crime|/genres/contemporary|/genres/drama|/genres/thriller|/genres/mystery-thriller|/genres/novels,dir11/14554.If_Tomorrow_Comes.html,33007,If Tomorrow Comes +4.13,3926,1420925539,good_reads:book,https://www.goodreads.com/author/show/2448.Arthur_Conan_Doyle,1887,/genres/mystery|/genres/classics|/genres/fiction|/genres/mystery|/genres/crime|/genres/mystery|/genres/detective|/genres/literature|/genres/19th-century|/genres/historical-fiction,dir11/102868.A_Study_in_Scarlet.html,122014,"A Study in Scarlet (Sherlock Holmes, #1)" +4.06,14434,0316017922,good_reads:book,https://www.goodreads.com/author/show/1439.Malcolm_Gladwell,2008,/genres/non-fiction|/genres/business|/genres/sociology|/genres/book-club|/genres/self-help|/genres/economics|/genres/philosophy|/genres/social-science|/genres/education|/genres/adult,dir11/3228917-outliers.html,234674,Outliers +4.15,554,0060775823,good_reads:book,https://www.goodreads.com/author/show/18479.Margaret_Wise_Brown,1942,/genres/childrens|/genres/picture-books|/genres/childrens|/genres/fiction|/genres/classics|/genres/animals|/genres/family|/genres/kids|/genres/animals|/genres/rabbits|/genres/love|/genres/fantasy,dir11/58922.The_Runaway_Bunny.html,38752,The Runaway Bunny +4.18,1367,0812513738,good_reads:book,https://www.goodreads.com/author/show/6252.Robert_Jordan,1992,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/epic,dir11/9539.The_Shadow_Rising.html,87913,"The Shadow Rising (Wheel of Time, #4)" +3.97,1384,0812967127,good_reads:book,https://www.goodreads.com/author/show/36332.John_Wyndham,1951,/genres/science-fiction|/genres/fiction|/genres/classics|/genres/horror|/genres/apocalyptic|/genres/post-apocalyptic|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/apocalyptic|/genres/novels,dir11/530965.The_Day_of_the_Triffids.html,43694,The Day of the Triffids +4.30,2211,0441014739,good_reads:book,https://www.goodreads.com/author/show/40563.Patricia_Briggs,2007,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/shapeshifters|/genres/fiction|/genres/fantasy|/genres/supernatural,dir11/285205.Blood_Bound.html,62707,"Blood Bound (Mercy Thompson, #2)" +4.16,508,0451200810,good_reads:book,https://www.goodreads.com/author/show/5768.John_Jakes,1982,/genres/historical-fiction|/genres/fiction|/genres/military-history|/genres/civil-war|/genres/war|/genres/romance|/genres/classics,dir12/159178.North_and_South.html,37240,"North and South (North and South, #1)" +4.20,726,1416974520,good_reads:book,https://www.goodreads.com/author/show/50873.L_J_Smith,1997,/genres/young-adult|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/witches|/genres/romance|/genres/paranormal-romance|/genres/shapeshifters|/genres/werewolves,dir12/3575676-night-world-no-3.html,47999,"Night World, No. 3 (Night World, #7-9)" +4.18,279,0140153179,good_reads:book,https://www.goodreads.com/author/show/8166.Lawrence_Durrell,1961,/genres/fiction|/genres/classics|/genres/historical-fiction|/genres/cultural|/genres/egypt|/genres/literature|/genres/novels|/genres/literary-fiction|/genres/european-literature|/genres/british-literature|/genres/cultural|/genres/africa|/genres/classics|/genres/modern-classics,dir12/13033.The_Alexandria_Quartet.html,6901,The Alexandria Quartet (The Alexandria Quartet #1-4) +4.18,3611,0062085611,good_reads:book,https://www.goodreads.com/author/show/4279785.Wendy_Higgins,2012,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/angels|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/demons|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/young-adult-paranormal,dir12/11808950-sweet-evil.html,39050,"Sweet Evil (The Sweet Trilogy, #1)" +3.92,1828,0140621334,good_reads:book,https://www.goodreads.com/author/show/3352.Jerome_K_Jerome,1889,/genres/classics|/genres/humor|/genres/humor|/genres/comedy|/genres/european-literature|/genres/british-literature|/genres/travel|/genres/humor|/genres/funny|/genres/literature|/genres/literature|/genres/19th-century|/genres/adventure|/genres/book-club,dir12/4921.Three_Men_in_a_Boat.html,21936,Three Men in a Boat +4.12,1457,0345468643,good_reads:book,https://www.goodreads.com/author/show/8732.David_Eddings,1982,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/adventure|/genres/epic|/genres/science-fiction,dir12/44659.Pawn_of_Prophecy.html,43473,"Pawn of Prophecy (The Belgariad, #1)" +3.69,24834,0385537859,good_reads:book,https://www.goodreads.com/author/show/630.Dan_Brown,2013,/genres/fiction|/genres/mystery|/genres/thriller|/genres/adventure|/genres/suspense|/genres/historical-fiction|/genres/thriller|/genres/mystery-thriller|/genres/adult|/genres/book-club|/genres/mystery|/genres/crime,dir12/17212231-inferno.html,178261,"Inferno (Robert Langdon, #4)" +3.81,306,0394800028,good_reads:book,https://www.goodreads.com/author/show/61105.Dr_Seuss,1958,/genres/childrens|/genres/picture-books|/genres/childrens|/genres/fiction|/genres/classics|/genres/poetry|/genres/humor|/genres/fantasy|/genres/childrens|/genres/juvenile|/genres/kids|/genres/animals,dir12/667234.The_Cat_in_the_Hat_Comes_Back.html,19747,The Cat in the Hat Comes Back +4.24,3024,1936305550,good_reads:book,https://www.goodreads.com/author/show/4562483.Sylvain_Reynard,2012,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/adult-fiction|/genres/erotica|/genres/contemporary|/genres/adult|/genres/new-adult|/genres/romance|/genres/erotic-romance,dir12/13639050-gabriel-s-rapture.html,72690,"Gabriel's Rapture (Gabriel's Inferno, #2)" +4.70,23,,good_reads:book,https://www.goodreads.com/author/show/7488658.Roberta_Pearce,2013,/genres/romance,dir12/19181419-a-bird-without-wings.html,56,A Bird Without Wings +4.02,3633,0062004018,good_reads:book,https://www.goodreads.com/author/show/3353516.Amy_Plum,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/horror|/genres/zombies|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/young-adult|/genres/young-adult-paranormal,dir12/9462812-die-for-me.html,36342,"Die for Me (Revenants, #1)" +3.96,3708,1416924981,good_reads:book,https://www.goodreads.com/author/show/14617.Margaret_Peterson_Haddix,1998,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fiction|/genres/childrens|/genres/fantasy|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/young-adult|/genres/teen|/genres/academic|/genres/school,dir12/227651.Among_the_Hidden.html,71540,"Among the Hidden (Shadow Children, #1)" +4.09,415,0781805503,good_reads:book,https://www.goodreads.com/author/show/25619.Henryk_Sienkiewicz,1895,/genres/historical-fiction|/genres/classics|/genres/fiction|/genres/european-literature|/genres/polish-literature|/genres/literature|/genres/religion|/genres/christian|/genres/romance|/genres/novels|/genres/academic|/genres/school,dir12/538845.Quo_Vadis.html,12984,Quo Vadis +3.93,1332,1400064562,good_reads:book,https://www.goodreads.com/author/show/59542.Peter_Benchley,1973,/genres/horror|/genres/fiction|/genres/thriller|/genres/adventure|/genres/classics|/genres/suspense|/genres/animals|/genres/media-tie-in|/genres/movies|/genres/novels|/genres/adult,dir12/126232.Jaws.html,73605,Jaws +4.31,5037,0763625892,good_reads:book,https://www.goodreads.com/author/show/13663.Kate_DiCamillo,2006,/genres/fiction|/genres/childrens|/genres/fantasy|/genres/young-adult|/genres/childrens|/genres/middle-grade|/genres/adventure|/genres/childrens|/genres/juvenile|/genres/animals|/genres/childrens|/genres/chapter-books|/genres/kids,dir12/37186.The_Miraculous_Journey_of_Edward_Tulane.html,36429,The Miraculous Journey of Edward Tulane +4.48,5648,,good_reads:book,https://www.goodreads.com/author/show/4637539.Tahereh_Mafi,2014,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/science-fiction,dir12/13188676-ignite-me.html,30166,"Ignite Me (Shatter Me, #3)" +4.03,7454,0545424933,good_reads:book,https://www.goodreads.com/author/show/1330292.Maggie_Stiefvater,2012,/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/mystery|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/ghosts|/genres/young-adult|/genres/teen,dir12/17675462-the-raven-boys.html,50353,"The Raven Boys (The Raven Cycle, #1)" +4.11,3228,0575079797,good_reads:book,https://www.goodreads.com/author/show/276660.Joe_Abercrombie,2006,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/dark-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction-fantasy|/genres/adventure|/genres/fantasy|/genres/magic,dir12/944073.The_Blade_Itself.html,54535,"The Blade Itself (The First Law, #1)" +4.25,39,1616637609,good_reads:book,https://www.goodreads.com/author/show/2918488.Heath_Sommer,2010,/genres/mystery|/genres/psychology|/genres/contemporary|/genres/mystery|/genres/crime|/genres/book-club|/genres/adult|/genres/fiction,dir12/9849568-the-human-obsession.html,157,"The Human Obsession (Manufactured Identity, Book #3)" +3.53,11511,0142421715,good_reads:book,https://www.goodreads.com/author/show/1304470.Ally_Condie,2011,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/romance|/genres/fiction|/genres/science-fiction|/genres/fantasy,dir12/15812814-crossed.html,119731,"Crossed (Matched, #2)" +4.11,5979,0373210493,good_reads:book,https://www.goodreads.com/author/show/4575371.Katie_McGarry,2012,/genres/contemporary|/genres/young-adult|/genres/romance|/genres/contemporary-romance|/genres/realistic-fiction|/genres/romance|/genres/young-adult|/genres/high-school,dir12/10194514-pushing-the-limits.html,68706,"Pushing the Limits (Pushing the Limits, #1)" +4.00,2854,0375701214,good_reads:book,https://www.goodreads.com/author/show/75287.Jean_Dominique_Bauby,1997,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/biography|/genres/book-club|/genres/biography|/genres/autobiography|/genres/biography-memoir|/genres/cultural|/genres/france,dir12/193755.The_Diving_Bell_and_the_Butterfly.html,30525,The Diving Bell and the Butterfly +4.47,749,0811200124,good_reads:book,https://www.goodreads.com/author/show/500.Jorge_Luis_Borges,1962,/genres/fiction|/genres/short-stories|/genres/classics|/genres/literature|/genres/fantasy|/genres/magical-realism|/genres/philosophy|/genres/writing|/genres/essays|/genres/cultural|/genres/latin-american|/genres/literary-fiction,dir12/17717.Labyrinths.html,16455,Labyrinths +4.12,1525,0199291152,good_reads:book,https://www.goodreads.com/author/show/1194.Richard_Dawkins,1976,/genres/science|/genres/non-fiction|/genres/science|/genres/biology|/genres/biology|/genres/evolution|/genres/philosophy|/genres/science|/genres/popular-science|/genres/biology|/genres/genetics|/genres/psychology|/genres/religion|/genres/atheism|/genres/religion,dir12/61535.The_Selfish_Gene.html,54734,The Selfish Gene +3.82,1631,006121471X,good_reads:book,https://www.goodreads.com/author/show/175855.Melissa_Marr,2009,/genres/young-adult|/genres/paranormal|/genres/fairies|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/fairies|/genres/fae|/genres/fiction|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural,dir12/5152561-fragile-eternity.html,30844,"Fragile Eternity (Wicked Lovely, #3)" +4.50,4617,,good_reads:book,https://www.goodreads.com/author/show/5430144.Colleen_Hoover,2013,/genres/new-adult|/genres/romance|/genres/young-adult|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/sociology|/genres/abuse|/genres/young-adult|/genres/high-school|/genres/fiction|/genres/love|/genres/womens-fiction|/genres/chick-lit,dir12/17340050-losing-hope.html,37258,"Losing Hope (Hopeless, #2)" +3.68,1516,0099399016,good_reads:book,https://www.goodreads.com/author/show/463.Philip_Roth,1967,/genres/fiction|/genres/classics|/genres/literature|/genres/novels|/genres/literature|/genres/american|/genres/humor|/genres/literature|/genres/jewish|/genres/literary-fiction,dir12/43945.Portnoy_s_Complaint.html,29105,Portnoy's Complaint +4.52,644,0141183047,good_reads:book,https://www.goodreads.com/author/show/7816.Fernando_Pessoa,1982,/genres/poetry|/genres/fiction|/genres/philosophy|/genres/literature|/genres/cultural|/genres/portugal|/genres/european-literature|/genres/portuguese-literature,dir12/45974.The_Book_of_Disquiet.html,7463,The Book of Disquiet +4.18,1268,155652532X,good_reads:book,https://www.goodreads.com/author/show/18930.Anya_Seton,1953,/genres/romance|/genres/historical-fiction|/genres/classics|/genres/historical-fiction|/genres/medieval|/genres/romance|/genres/historical-romance|/genres/european-literature|/genres/british-literature|/genres/book-club,dir12/33609.Katherine.html,17303,Katherine +3.93,2099,140003471X,good_reads:book,https://www.goodreads.com/author/show/13450.Gabriel_Garc_a_M_rquez,1981,/genres/fiction|/genres/classics|/genres/magical-realism|/genres/literature|/genres/academic|/genres/school|/genres/european-literature|/genres/spanish-literature|/genres/novels|/genres/cultural|/genres/latin-american|/genres/literature|/genres/latin-american-literature|/genres/academic|/genres/read-for-school,dir12/23878.Chronicle_of_a_Death_Foretold.html,47085,Chronicle of a Death Foretold +3.86,2292,0679746048,good_reads:book,https://www.goodreads.com/author/show/4376.Susanna_Kaysen,1993,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/psychology|/genres/biography|/genres/mental-health|/genres/mental-illness|/genres/health|/genres/mental-health|/genres/biography-memoir|/genres/biography|/genres/autobiography|/genres/adult|/genres/contemporary,dir12/68783.Girl_Interrupted.html,106393,"Girl, Interrupted" +4.05,184,0451935608,good_reads:book,https://www.goodreads.com/author/show/432.Ayn_Rand,1995,/genres/fiction|/genres/classics|/genres/philosophy|/genres/novels|/genres/economics|/genres/politics|/genres/literature,dir12/2115.Atlas_Shrugged_The_Fountainhead.html,3181,Atlas Shrugged & The Fountainhead +3.99,1392,142312166X,good_reads:book,https://www.goodreads.com/author/show/15872.Rick_Riordan,2009,/genres/fantasy|/genres/fantasy|/genres/mythology|/genres/young-adult|/genres/fiction|/genres/adventure|/genres/short-stories|/genres/mythology|/genres/greek-mythology|/genres/childrens,dir12/3992598-the-demigod-files.html,35095,The Demigod Files +4.22,14,0393972852,good_reads:book,https://www.goodreads.com/author/show/4624490.Edgar_Allan_Poe,1967,/genres/fiction|/genres/classics|/genres/poetry|/genres/horror|/genres/short-stories|/genres/literature|/genres/american|/genres/gothic|/genres/writing|/genres/essays|/genres/literature|/genres/academic|/genres/college,dir12/49338.The_Selected_Writings_of_Edgar_Allan_Poe.html,954,The Selected Writings of Edgar Allan Poe +4.16,196,,good_reads:book,https://www.goodreads.com/author/show/6540025.Melodie_Ramone,2012,/genres/romance|/genres/contemporary|/genres/fantasy|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/young-adult|/genres/coming-of-age|/genres/literary-fiction|/genres/womens-fiction|/genres/young-adult|/genres/magical-realism,dir12/16046121-after-forever-ends.html,1011,After Forever Ends +4.08,591,0394298667,good_reads:book,https://www.goodreads.com/author/show/3892.Tom_Clancy,1986,/genres/fiction|/genres/thriller|/genres/war|/genres/military|/genres/war|/genres/action|/genres/suspense|/genres/adventure|/genres/spy-thriller|/genres/espionage|/genres/mystery|/genres/thriller|/genres/mystery-thriller,dir12/318525.Red_Storm_Rising.html,41831,Red Storm Rising +3.73,1004,2266047426,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1992,/genres/horror|/genres/fiction|/genres/thriller|/genres/mystery|/genres/suspense|/genres/mystery|/genres/crime|/genres/media-tie-in|/genres/movies|/genres/novels|/genres/drama|/genres/womens,dir12/10625.Dolores_Claiborne.html,70797,Dolores Claiborne +3.97,8122,067001821X,good_reads:book,https://www.goodreads.com/author/show/211268.Geraldine_Brooks,2008,/genres/book-club|/genres/writing|/genres/books-about-books|/genres/mystery|/genres/adult-fiction|/genres/historical-fiction|/genres/adult|/genres/literature|/genres/jewish|/genres/fiction|/genres/religion|/genres/novels,dir12/1379961.People_of_the_Book.html,73814,People of the Book +3.68,11268,0374158460,good_reads:book,https://www.goodreads.com/author/show/2578.Jonathan_Franzen,2010,/genres/fiction|/genres/book-club|/genres/contemporary|/genres/literature|/genres/novels|/genres/literary-fiction|/genres/literature|/genres/american|/genres/adult-fiction|/genres/family|/genres/adult,dir12/7905092-freedom.html,99431,Freedom +4.23,3368,1406310263,good_reads:book,https://www.goodreads.com/author/show/370361.Patrick_Ness,2009,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fantasy|/genres/fiction,dir12/6043849-the-ask-and-the-answer.html,30222,"The Ask and the Answer (Chaos Walking, #2)" +4.18,287,0440164842,good_reads:book,https://www.goodreads.com/author/show/6417.James_Clavell,1981,/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/asia|/genres/cultural|/genres/china|/genres/thriller|/genres/adventure|/genres/novels|/genres/literature|/genres/asian-literature|/genres/classics|/genres/cultural|/genres/japan,dir12/390711.Noble_House.html,22502,"Noble House (Asian Saga, #4)" +4.30,1995,0765302306,good_reads:book,https://www.goodreads.com/author/show/6252.Robert_Jordan,2009,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/epic|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/adventure|/genres/adult|/genres/science-fiction,dir12/1166599.The_Gathering_Storm.html,68581,"The Gathering Storm (Wheel of Time, #12)" +4.11,2164,0373772467,good_reads:book,https://www.goodreads.com/author/show/48192.Gena_Showalter,2008,/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/contemporary|/genres/mythology|/genres/greek-mythology,dir12/476543.The_Darkest_Night.html,47432,"The Darkest Night (Lords of the Underworld, #1)" +3.90,2015,0751504572,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1987,/genres/fantasy|/genres/horror|/genres/fiction|/genres/young-adult|/genres/science-fiction-fantasy|/genres/thriller|/genres/fantasy|/genres/dragons|/genres/adventure|/genres/novels|/genres/adult,dir12/10611.The_Eyes_of_the_Dragon.html,62698,The Eyes of the Dragon +3.82,833,074348486X,good_reads:book,https://www.goodreads.com/author/show/947.William_Shakespeare,1599,/genres/classics|/genres/plays|/genres/drama|/genres/fiction|/genres/literature|/genres/plays|/genres/theatre|/genres/romance|/genres/academic|/genres/school|/genres/poetry|/genres/european-literature|/genres/british-literature,dir12/42607.As_You_Like_It.html,46450,As You Like It +3.82,2220,0310276993,good_reads:book,https://www.goodreads.com/author/show/711.Rick_Warren,2002,/genres/non-fiction|/genres/religion|/genres/spirituality|/genres/self-help|/genres/religion|/genres/christianity|/genres/religion|/genres/faith|/genres/christian|/genres/religion|/genres/theology|/genres/inspirational|/genres/philosophy,dir12/56495.The_Purpose_Driven_Life.html,113619,The Purpose Driven Life +4.32,1371,0007118899,good_reads:book,https://www.goodreads.com/author/show/47499.Paullina_Simons,2003,/genres/historical-fiction|/genres/romance|/genres/romance|/genres/historical-romance|/genres/fiction|/genres/cultural|/genres/russia|/genres/war|/genres/adult|/genres/history|/genres/world-war-ii|/genres/drama|/genres/womens-fiction|/genres/chick-lit,dir12/83143.Tatiana_and_Alexander.html,15651,"Tatiana and Alexander (The Bronze Horseman, #2)" +4.21,2009,0061231150,good_reads:book,https://www.goodreads.com/author/show/165168.Derek_Landy,2007,/genres/fantasy|/genres/young-adult|/genres/mystery|/genres/adventure|/genres/fantasy|/genres/magic|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/humor|/genres/childrens|/genres/fantasy|/genres/paranormal,dir12/284440.Skulduggery_Pleasant.html,23941,"Skulduggery Pleasant (Skulduggery Pleasant, #1)" +3.57,1469,0061720771,good_reads:book,https://www.goodreads.com/author/show/50873.L_J_Smith,1991,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/witches,dir12/3934321-the-return.html,36663,"The Return (The Vampire Diaries, # 5)" +3.94,4953,1599900513,good_reads:book,https://www.goodreads.com/author/show/49177.Shannon_Hale,2007,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/fairy-tales|/genres/romance|/genres/fiction|/genres/historical-fiction|/genres/young-adult|/genres/teen|/genres/adventure|/genres/retellings|/genres/book-club,dir12/248484.Book_of_a_Thousand_Days.html,33461,Book of a Thousand Days +3.79,5411,0385528701,good_reads:book,https://www.goodreads.com/author/show/815.Carlos_Ruiz_Zaf_n,2008,/genres/mystery|/genres/historical-fiction|/genres/fantasy|/genres/cultural|/genres/spain|/genres/writing|/genres/books-about-books|/genres/gothic|/genres/magical-realism|/genres/thriller,dir12/4912857-the-angel-s-game.html,48818,"The Angel's Game (The Cemetery of Forgotten Books, #2)" +4.64,84,1491877928,good_reads:book,https://www.goodreads.com/author/show/7271860.Jana_Petken,2013,/genres/war|/genres/historical-fiction|/genres/drama|/genres/adventure|/genres/epic|/genres/fiction,dir12/18501652-the-guardian-of-secrets-and-her-deathly-pact.html,167,The Guardian of Secrets and Her Deathly Pact +4.29,3219,0763647519,good_reads:book,https://www.goodreads.com/author/show/370361.Patrick_Ness,2010,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fantasy|/genres/fiction|/genres/adventure|/genres/war|/genres/romance|/genres/young-adult|/genres/teen|/genres/science-fiction|/genres/aliens,dir12/7540092-monsters-of-men.html,27073,"Monsters of Men (Chaos Walking, #3)" +4.28,802,0375760385,good_reads:book,https://www.goodreads.com/author/show/7995.James_A_Michener,1965,/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/israel|/genres/religion|/genres/literature|/genres/jewish|/genres/novels|/genres/literature|/genres/religion|/genres/judaism|/genres/classics|/genres/adult-fiction,dir12/12657.The_Source.html,24015,The Source +3.55,3016,1400032822,good_reads:book,https://www.goodreads.com/author/show/2546.Chuck_Palahniuk,2005,/genres/fiction|/genres/horror|/genres/short-stories|/genres/contemporary|/genres/thriller|/genres/novels|/genres/literature|/genres/american|/genres/literature|/genres/adult-fiction|/genres/humor,dir12/22288.Haunted.html,54289,Haunted +4.16,5326,0345803574,good_reads:book,https://www.goodreads.com/author/show/4725841.E_L_James,2012,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/fiction|/genres/erotica|/genres/bdsm|/genres/adult|/genres/romance|/genres/erotic-romance|/genres/contemporary|/genres/book-club|/genres/romance|/genres/contemporary-romance|/genres/womens-fiction|/genres/chick-lit,dir12/13584236-fifty-shades-trilogy.html,63819,"Fifty Shades Trilogy (Fifty Shades, #1-3)" +3.74,1555,8497597729,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1994,/genres/fiction|/genres/fantasy|/genres/thriller|/genres/horror|/genres/fantasy|/genres/supernatural|/genres/mystery|/genres/suspense|/genres/fantasy|/genres/paranormal|/genres/science-fiction,dir12/10585.Insomnia.html,79818,Insomnia +3.66,2215,031259044X,good_reads:book,https://www.goodreads.com/author/show/200317.Alyson_Noel,2009,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/fantasy|/genres/urban-fantasy,dir12/6581511-shadowland.html,56944,"Shadowland (The Immortals, #3)" +3.94,5078,0061985848,good_reads:book,https://www.goodreads.com/author/show/3027554.Kiersten_White,2010,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/fairies,dir12/7719245-paranormalcy.html,62832,"Paranormalcy (Paranormalcy, #1)" +4.04,6385,1907411054,good_reads:book,https://www.goodreads.com/author/show/4637369.Veronica_Rossi,2011,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/science-fiction|/genres/apocalyptic|/genres/post-apocalyptic,dir12/11594257-under-the-never-sky.html,60775,"Under the Never Sky (Under the Never Sky, #1)" +4.45,1645,0441017029,good_reads:book,https://www.goodreads.com/author/show/21748.Ilona_Andrews,2009,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal|/genres/witches|/genres/adult|/genres/paranormal|/genres/shapeshifters,dir12/4345498-magic-strikes.html,33539,"Magic Strikes (Kate Daniels, #3)" +4.07,1877,0439829100,good_reads:book,https://www.goodreads.com/author/show/28756.John_Marsden,1993,/genres/fiction|/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/adventure|/genres/science-fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/young-adult|/genres/teen|/genres/adventure|/genres/survival|/genres/romance|/genres/action,dir12/71865.Tomorrow_When_the_War_Began.html,27151,"Tomorrow, When the War Began (Tomorrow, #1)" +4.06,873,0006472613,good_reads:book,https://www.goodreads.com/author/show/9068.Sidney_Sheldon,1977,/genres/fiction|/genres/thriller|/genres/mystery|/genres/suspense|/genres/romance|/genres/drama|/genres/novels|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/crime|/genres/contemporary,dir12/43330.Master_of_the_Game.html,29572,Master of the Game +4.47,20000,043965548X,good_reads:book,https://www.goodreads.com/author/show/1077326.J_K_Rowling,1999,/genres/fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/childrens|/genres/young-adult|/genres/classics|/genres/novels,dir12/5.Harry_Potter_and_the_Prisoner_of_Azkaban.html,1293634,"Harry Potter and the Prisoner of Azkaban (Harry Potter, #3)" +4.08,3793,0803734956,good_reads:book,https://www.goodreads.com/author/show/2982266.Jandy_Nelson,2010,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/realistic-fiction|/genres/fiction|/genres/music|/genres/death|/genres/young-adult|/genres/teen|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/young-adult-contemporary,dir12/6604794-the-sky-is-everywhere.html,35835,The Sky is Everywhere +3.85,6822,1442409053,good_reads:book,https://www.goodreads.com/author/show/4103366.Lauren_DeStefano,2011,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/romance|/genres/science-fiction|/genres/fantasy|/genres/fiction|/genres/young-adult|/genres/teen|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fantasy|/genres/paranormal|/genres/death,dir12/8525590-wither.html,65431,"Wither (The Chemical Garden, #1)" +3.87,1623,0007246226,good_reads:book,https://www.goodreads.com/author/show/656983.J_R_R_Tolkien,1988,/genres/fantasy|/genres/classics|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/adventure|/genres/epic|/genres/literature|/genres/science-fiction|/genres/fantasy|/genres/mythology,dir12/597790.The_Children_of_H_rin.html,30820,The Children of Húrin +4.25,854,3522168577,good_reads:book,https://www.goodreads.com/author/show/15619.Michael_Ende,1973,/genres/fantasy|/genres/fiction|/genres/childrens|/genres/european-literature|/genres/german-literature|/genres/classics|/genres/young-adult|/genres/novels|/genres/literature|/genres/adventure|/genres/childrens|/genres/middle-grade,dir12/68811.Momo.html,20258,Momo +3.80,1994,0375706852,good_reads:book,https://www.goodreads.com/author/show/1728.Orhan_Pamuk,1998,/genres/fiction|/genres/historical-fiction|/genres/mystery|/genres/literature|/genres/novels|/genres/asian-literature|/genres/turkish-literature|/genres/art|/genres/book-club|/genres/nobel-prize|/genres/contemporary,dir12/2517.My_Name_is_Red.html,21278,My Name is Red +4.16,1047,0140449337,good_reads:book,https://www.goodreads.com/author/show/17212.Marcus_Aurelius,174,/genres/philosophy|/genres/history|/genres/non-fiction|/genres/classics|/genres/spirituality|/genres/literature|/genres/literature|/genres/ancient|/genres/roman|/genres/leadership|/genres/self-help,dir12/30659.Meditations.html,23966,Meditations +3.74,1606,0312590970,good_reads:book,https://www.goodreads.com/author/show/200317.Alyson_Noel,2010,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/fiction,dir12/7198988-dark-flame.html,41790,"Dark Flame (The Immortals, #4)" +4.23,585,0679734511,good_reads:book,https://www.goodreads.com/author/show/3137322.Fyodor_Dostoyevsky,1870,/genres/cultural|/genres/russia|/genres/literature|/genres/russian-literature|/genres/novels|/genres/literature|/genres/19th-century|/genres/philosophy|/genres/politics|/genres/classics|/genres/classic-literature|/genres/literary-fiction|/genres/literature|/genres/religion,dir12/5695.Demons.html,16555,Demons +4.34,2267,1416950052,good_reads:book,https://www.goodreads.com/author/show/2821144.Ellen_Hopkins,2008,/genres/young-adult|/genres/poetry|/genres/fiction|/genres/realistic-fiction|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/mental-health|/genres/mental-illness|/genres/sociology|/genres/abuse|/genres/romance|/genres/drama,dir12/2241059.Identical.html,36522,Identical +4.45,895,0374515360,good_reads:book,https://www.goodreads.com/author/show/22694.Flannery_O_Connor,1971,/genres/literature|/genres/american|/genres/southern|/genres/literature|/genres/american|/genres/gothic|/genres/southern-gothic|/genres/classics|/genres/short-stories|/genres/literary-fiction|/genres/adult-fiction|/genres/gothic|/genres/anthologies|/genres/collections,dir12/284996.The_Complete_Stories.html,22281,The Complete Stories +4.15,2891,0312624670,good_reads:book,https://www.goodreads.com/author/show/4154802.C_C_Hunter,2011,/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/witches|/genres/paranormal|/genres/ghosts,dir12/8705784-born-at-midnight.html,48297,"Born at Midnight (Shadow Falls, #1)" +4.03,1386,057507681X,good_reads:book,https://www.goodreads.com/author/show/4764.Philip_K_Dick,1977,/genres/fiction|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/science-fiction-fantasy|/genres/novels|/genres/science-fiction|/genres/cyberpunk|/genres/speculative-fiction|/genres/fantasy|/genres/classics|/genres/thriller,dir12/14817.A_Scanner_Darkly.html,43304,A Scanner Darkly +4.01,4958,1416968237,good_reads:book,https://www.goodreads.com/author/show/151371.Jenny_Han,2009,/genres/young-adult|/genres/contemporary|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/fiction|/genres/young-adult|/genres/teen,dir12/5821978-the-summer-i-turned-pretty.html,64176,"The Summer I Turned Pretty (Summer, #1)" +4.25,5961,0670018708,good_reads:book,https://www.goodreads.com/author/show/120401.David_Benioff,2006,/genres/historical-fiction|/genres/fiction|/genres/book-club|/genres/cultural|/genres/russia|/genres/war|/genres/history|/genres/world-war-ii|/genres/adult-fiction|/genres/adventure|/genres/adult|/genres/literature,dir12/1971304.City_of_Thieves.html,47032,City of Thieves +3.98,1017,0446359408,good_reads:book,https://www.goodreads.com/author/show/38301.Flora_Rheta_Schreiber,1973,/genres/biography|/genres/non-fiction|/genres/mental-health|/genres/mental-illness|/genres/autobiography|/genres/memoir|/genres/health|/genres/mental-health|/genres/classics|/genres/biography-memoir|/genres/science|/genres/psychology|/genres/sociology|/genres/abuse,dir12/67920.Sybil.html,58550,Sybil +4.12,407,068485256X,good_reads:book,https://www.goodreads.com/author/show/5668.Nikos_Kazantzakis,1953,/genres/fiction|/genres/religion|/genres/classics|/genres/literature|/genres/historical-fiction|/genres/novels|/genres/cultural|/genres/greece,dir12/8737.The_Last_Temptation_of_Christ.html,6606,The Last Temptation of Christ +4.24,983,0552152951,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,1991,/genres/fantasy|/genres/fiction|/genres/humor|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny|/genres/death|/genres/fantasy|/genres/magic|/genres/novels|/genres/science-fiction,dir12/34517.Reaper_Man.html,41655,"Reaper Man (Discworld, #11)" +4.12,198,,good_reads:book,https://www.goodreads.com/author/show/6521036.J_K_Accinni,2012,/genres/science-fiction|/genres/horror|/genres/science-fiction|/genres/aliens|/genres/fantasy|/genres/thriller|/genres/dark|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/paranormal|/genres/wildlife,dir12/15992857-baby.html,551,"Baby (Species Intervention #6609, #1)" +4.14,783,1841493155,good_reads:book,https://www.goodreads.com/author/show/15890.Trudi_Canavan,2002,/genres/fantasy|/genres/fantasy|/genres/magic|/genres/fiction|/genres/young-adult|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/romance|/genres/science-fiction-fantasy|/genres/adventure|/genres/fantasy|/genres/paranormal,dir12/28251.The_High_Lord.html,24705,"The High Lord (The Black Magician Trilogy, #3)" +4.30,1111,0671743058,good_reads:book,https://www.goodreads.com/author/show/5244478.Robert_McCammon,1991,/genres/horror|/genres/fiction|/genres/fantasy|/genres/mystery|/genres/young-adult|/genres/coming-of-age|/genres/fantasy|/genres/magic|/genres/book-club|/genres/childrens|/genres/young-adult,dir12/11553.Boy_s_Life.html,11724,Boy's Life +3.86,769,0140435123,good_reads:book,https://www.goodreads.com/author/show/239579.Charles_Dickens,1839,/genres/classics|/genres/fiction|/genres/literature|/genres/literature|/genres/19th-century|/genres/european-literature|/genres/british-literature|/genres/historical-fiction|/genres/classics|/genres/classic-literature,dir12/325085.Nicholas_Nickleby.html,22772,Nicholas Nickleby +4.03,887,156478214X,good_reads:book,https://www.goodreads.com/author/show/15248.Flann_O_Brien,1967,/genres/fiction|/genres/european-literature|/genres/irish-literature|/genres/cultural|/genres/ireland|/genres/fantasy|/genres/literature|/genres/humor|/genres/novels|/genres/classics|/genres/mystery|/genres/humor|/genres/comedy,dir12/27208.The_Third_Policeman.html,8040,The Third Policeman +4.51,4853,1619630621,good_reads:book,https://www.goodreads.com/author/show/3433047.Sarah_J_Maas,2013,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/young-adult-fantasy|/genres/fiction|/genres/fairies|/genres/fae,dir12/17167166-crown-of-midnight.html,34142,"Crown of Midnight (Throne of Glass, #2)" +3.83,12779,0062060554,good_reads:book,https://www.goodreads.com/author/show/4470653.S_J_Watson,2005,/genres/fiction|/genres/mystery|/genres/thriller|/genres/book-club|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/contemporary|/genres/adult|/genres/mystery|/genres/crime|/genres/adult-fiction,dir12/9736930-before-i-go-to-sleep.html,106587,Before I Go To Sleep +3.92,3696,0061935085,good_reads:book,https://www.goodreads.com/author/show/89439.Sophie_Jordan,2010,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/dragons|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/shapeshifters|/genres/fantasy|/genres/magic,dir12/6448470-firelight.html,40874,"Firelight (Firelight, #1)" +3.91,2051,0099771810,good_reads:book,https://www.goodreads.com/author/show/463.Philip_Roth,1997,/genres/fiction|/genres/literature|/genres/novels|/genres/classics|/genres/literature|/genres/american|/genres/literary-fiction|/genres/contemporary|/genres/book-club|/genres/literature|/genres/20th-century|/genres/literature|/genres/jewish,dir12/11650.American_Pastoral.html,28543,American Pastoral (The American Trilogy #1) +4.05,33,,good_reads:book,https://www.goodreads.com/author/show/7255282.Perie_Wolford,2013,/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/adult|/genres/science-fiction|/genres/aliens,dir12/20359114-presence.html,100,"Presence (Presence, #1)" +4.15,5507,038560310X,good_reads:book,https://www.goodreads.com/author/show/13974.Mark_Z_Danielewski,2000,/genres/horror|/genres/fiction|/genres/fantasy|/genres/mystery|/genres/literature|/genres/thriller|/genres/contemporary|/genres/novels|/genres/science-fiction|/genres/adult,dir12/24800.House_of_Leaves.html,56467,House of Leaves +4.31,8511,0312642962,good_reads:book,https://www.goodreads.com/author/show/4684322.Marissa_Meyer,2013,/genres/young-adult|/genres/fantasy|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/romance|/genres/fantasy|/genres/fairy-tales|/genres/fiction,dir12/13206760-scarlet.html,64463,"Scarlet (The Lunar Chronicles, #2)" +3.86,2386,0061120251,good_reads:book,https://www.goodreads.com/author/show/2238.Isabel_Allende,1999,/genres/historical-fiction|/genres/fiction|/genres/book-club|/genres/romance|/genres/magical-realism|/genres/novels|/genres/literature|/genres/cultural|/genres/latin-american|/genres/adult-fiction|/genres/european-literature|/genres/spanish-literature,dir12/16527.Daughter_of_Fortune.html,76860,Daughter of Fortune +3.78,2097,,good_reads:book,https://www.goodreads.com/author/show/2929.Nick_Hornby,1998,/genres/fiction|/genres/contemporary|/genres/humor|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/humor|/genres/funny|/genres/adult|/genres/adult-fiction|/genres/literature|/genres/humor|/genres/comedy,dir12/4271.About_a_Boy.html,90312,About a Boy +4.21,849,0553266306,good_reads:book,https://www.goodreads.com/author/show/36714.Frederick_Forsyth,1971,/genres/fiction|/genres/thriller|/genres/mystery|/genres/mystery|/genres/crime|/genres/spy-thriller|/genres/espionage|/genres/suspense|/genres/historical-fiction|/genres/adventure|/genres/thriller|/genres/mystery-thriller|/genres/thriller|/genres/spy-thriller,dir12/540020.The_Day_of_the_Jackal.html,60812,The Day of the Jackal +4.14,690,0345349571,good_reads:book,https://www.goodreads.com/author/show/137261.Barbara_W_Tuchman,1978,/genres/history|/genres/non-fiction|/genres/historical-fiction|/genres/medieval|/genres/history|/genres/european-history|/genres/cultural|/genres/france|/genres/history|/genres/world-history|/genres/literature|/genres/14th-century|/genres/war|/genres/classics|/genres/biography,dir12/568236.A_Distant_Mirror.html,14555,A Distant Mirror +4.12,2667,0060510862,good_reads:book,https://www.goodreads.com/author/show/12476.Joe_Haldeman,1974,/genres/science-fiction|/genres/fiction|/genres/war|/genres/war|/genres/military|/genres/science-fiction-fantasy|/genres/classics|/genres/science-fiction|/genres/space-opera|/genres/science-fiction|/genres/time-travel|/genres/space,dir12/21611.The_Forever_War.html,63524,"The Forever War (The Forever War, #1)" +4.02,3365,1469984016,good_reads:book,https://www.goodreads.com/author/show/5434809.Kirsty_Moseley,2011,/genres/romance|/genres/young-adult|/genres/new-adult|/genres/contemporary|/genres/sociology|/genres/abuse|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/high-school|/genres/womens-fiction|/genres/chick-lit,dir12/13628209-the-boy-who-sneaks-in-my-bedroom-window.html,38519,The Boy Who Sneaks in My Bedroom Window +3.71,4408,0060838582,good_reads:book,https://www.goodreads.com/author/show/380.Eric_Schlosser,2001,/genres/food-and-drink|/genres/food|/genres/health|/genres/sociology|/genres/politics|/genres/history|/genres/science|/genres/culture|/genres/academic|/genres/school|/genres/economics|/genres/non-fiction,dir12/1097.Fast_Food_Nation.html,165166,Fast Food Nation +4.17,1939,0812517725,good_reads:book,https://www.goodreads.com/author/show/6252.Robert_Jordan,1990,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/epic|/genres/adventure,dir13/233649.The_Great_Hunt.html,123521,"The Great Hunt (Wheel of Time, #2)" +3.93,633,0553280589,good_reads:book,https://www.goodreads.com/author/show/2238.Isabel_Allende,1987,/genres/fiction|/genres/magical-realism|/genres/historical-fiction|/genres/cultural|/genres/latin-american|/genres/novels|/genres/literature|/genres/european-literature|/genres/spanish-literature|/genres/classics|/genres/romance|/genres/contemporary,dir13/149196.Eva_Luna.html,21129,Eva Luna +4.59,1260,0310902711,good_reads:book,https://www.goodreads.com/author/show/5158478.Anonymous,1972,/genres/religion|/genres/christian|/genres/non-fiction|/genres/classics|/genres/religion|/genres/christianity|/genres/reference|/genres/spirituality|/genres/religion|/genres/faith|/genres/religion|/genres/theology|/genres/history,dir13/280111.Holy_Bible.html,25584,Holy Bible +3.96,2039,0553589377,good_reads:book,https://www.goodreads.com/author/show/375626.Lara_Adrian,2007,/genres/paranormal|/genres/vampires|/genres/romance|/genres/paranormal-romance|/genres/adult|/genres/fantasy|/genres/supernatural|/genres/adult-fiction|/genres/erotica|/genres/contemporary|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/aliens|/genres/action|/genres/romance,dir13/704043.Kiss_of_Midnight.html,40756,"Kiss of Midnight (Midnight Breed, #1)" +3.90,706,0192839934,good_reads:book,https://www.goodreads.com/author/show/947.William_Shakespeare,1597,/genres/classics|/genres/plays|/genres/drama|/genres/fiction|/genres/plays|/genres/theatre|/genres/historical-fiction|/genres/literature|/genres/academic|/genres/school|/genres/poetry|/genres/european-literature|/genres/british-literature,dir13/42058.Richard_III.html,23976,Richard III +4.21,1629,0156453800,good_reads:book,https://www.goodreads.com/author/show/155517.Italo_Calvino,1972,/genres/fiction|/genres/fantasy|/genres/european-literature|/genres/italian-literature|/genres/literature|/genres/short-stories|/genres/classics|/genres/magical-realism|/genres/cultural|/genres/italy|/genres/novels|/genres/poetry,dir13/9809.Invisible_Cities.html,23281,Invisible Cities +3.86,1487,1573226521,good_reads:book,https://www.goodreads.com/author/show/5684.Alex_Garland,1996,/genres/fiction|/genres/travel|/genres/thriller|/genres/adventure|/genres/contemporary|/genres/cultural|/genres/asia|/genres/novels|/genres/literature|/genres/mystery|/genres/drama,dir13/607639.The_Beach.html,42450,The Beach +4.21,2794,1590387422,good_reads:book,https://www.goodreads.com/author/show/25052.Brandon_Mull,2006,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/fantasy|/genres/magic|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/young-adult|/genres/young-adult-fantasy|/genres/science-fiction-fantasy|/genres/young-adult|/genres/teen,dir13/784911.Rise_of_the_Evening_Star.html,43612,"Rise of the Evening Star (Fablehaven, #2)" +3.58,2244,0061122092,good_reads:book,https://www.goodreads.com/author/show/566.Paulo_Coelho,1975,/genres/fiction|/genres/romance|/genres/novels|/genres/philosophy|/genres/spirituality|/genres/contemporary|/genres/inspirational|/genres/literature|/genres/drama|/genres/mystery,dir13/1428.By_the_River_Piedra_I_Sat_Down_and_Wept.html,50309,By the River Piedra I Sat Down and Wept +4.31,2096,078670621X,good_reads:book,https://www.goodreads.com/author/show/29034.Alfred_Lansing,1959,/genres/non-fiction|/genres/history|/genres/adventure|/genres/biography|/genres/travel|/genres/adventure|/genres/survival|/genres/book-club|/genres/leadership,dir13/139069.Endurance.html,31680,Endurance +3.83,372,0451159535,good_reads:book,https://www.goodreads.com/author/show/19697.Robin_Cook,1977,/genres/fiction|/genres/thriller|/genres/mystery|/genres/horror|/genres/medical|/genres/suspense|/genres/science-fiction|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/crime|/genres/novels,dir13/85437.Coma.html,29980,Coma +4.32,3765,0765316889,good_reads:book,https://www.goodreads.com/author/show/38550.Brandon_Sanderson,2007,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/epic|/genres/adult|/genres/adventure|/genres/romance,dir13/68429.The_Well_of_Ascension.html,79896,"The Well of Ascension (Mistborn, #2)" +4.34,2664,1563892278,good_reads:book,https://www.goodreads.com/author/show/1221698.Neil_Gaiman,1991,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fantasy|/genres/fiction|/genres/horror|/genres/graphic-novels-comics|/genres/comics|/genres/comic-book|/genres/fantasy|/genres/mythology|/genres/science-fiction-fantasy|/genres/fantasy|/genres/urban-fantasy,dir13/23754.The_Sandman_Vol_1.html,94589,"The Sandman, Vol. 1 (The Sandman, #1)" +3.54,5303,081297106X,good_reads:book,https://www.goodreads.com/author/show/5151.Azar_Nafisi,2003,/genres/cultural|/genres/iran|/genres/fiction|/genres/writing|/genres/books-about-books|/genres/feminism|/genres/biography-memoir|/genres/book-club|/genres/womens|/genres/contemporary|/genres/literature,dir13/7603.Reading_Lolita_in_Tehran.html,83640,Reading Lolita in Tehran +4.42,4384,,good_reads:book,https://www.goodreads.com/author/show/4126827.Michelle_Hodkin,2012,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/mystery|/genres/fantasy|/genres/supernatural,dir13/13643567-the-evolution-of-mara-dyer.html,31654,"The Evolution of Mara Dyer (Mara Dyer, #2)" +4.08,625,0192838679,good_reads:book,https://www.goodreads.com/author/show/1288026.Pierre_Choderlos_de_Laclos,1782,/genres/classics|/genres/cultural|/genres/france|/genres/european-literature|/genres/french-literature|/genres/romance|/genres/literature|/genres/18th-century|/genres/novels,dir13/49540.Les_Liaisons_Dangereuses.html,22199,Les Liaisons Dangereuses +3.92,3126,0446579807,good_reads:book,https://www.goodreads.com/author/show/3956.Christopher_Hitchens,2007,/genres/non-fiction|/genres/religion|/genres/philosophy|/genres/religion|/genres/atheism|/genres/science|/genres/politics|/genres/history|/genres/religion|/genres/theology,dir13/43369.God_is_Not_Great.html,47021,God is Not Great +3.61,7194,0575090855,good_reads:book,https://www.goodreads.com/author/show/1443712.Carrie_Ryan,2009,/genres/young-adult|/genres/horror|/genres/zombies|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/horror|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fiction|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/science-fiction,dir13/3432478-the-forest-of-hands-and-teeth.html,57448,"The Forest of Hands and Teeth (The Forest of Hands and Teeth, #1)" +4.50,4366,1622660757,good_reads:book,https://www.goodreads.com/author/show/4476934.Jennifer_L_Armentrout,2013,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/aliens|/genres/romance|/genres/fantasy|/genres/science-fiction|/genres/romance|/genres/paranormal-romance,dir13/13644052-origin.html,32456,"Origin (Lux, #4)" +4.03,132,0486287599,good_reads:book,https://www.goodreads.com/author/show/1831.Jonathan_Swift,1729,/genres/classics|/genres/fiction|/genres/humor|/genres/literature|/genres/writing|/genres/essays|/genres/european-literature|/genres/irish-literature|/genres/politics|/genres/literature|/genres/18th-century|/genres/philosophy|/genres/cultural|/genres/ireland,dir13/2677.A_Modest_Proposal_and_Other_Satirical_Works.html,9985,A Modest Proposal and Other Satirical Works +4.30,622,0380809060,good_reads:book,https://www.goodreads.com/author/show/3619.Roger_Zelazny,1999,/genres/fantasy|/genres/fiction|/genres/science-fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/epic|/genres/speculative-fiction|/genres/fantasy|/genres/urban-fantasy|/genres/adventure,dir13/5367.The_Great_Book_of_Amber.html,15369,"The Great Book of Amber (The Chronicles of Amber, #1-10)" +4.39,478,0451529014,good_reads:book,https://www.goodreads.com/author/show/26897.Anne_Bishop,2003,/genres/fantasy|/genres/romance|/genres/fiction|/genres/fantasy|/genres/dark-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/paranormal|/genres/adult|/genres/fantasy|/genres/epic-fantasy,dir13/47953.The_Black_Jewels_Trilogy.html,8170,"The Black Jewels Trilogy (The Black Jewels, #1-3)" +3.71,2010,0099437961,good_reads:book,https://www.goodreads.com/author/show/2546.Chuck_Palahniuk,1999,/genres/fiction|/genres/horror|/genres/contemporary|/genres/fantasy|/genres/novels|/genres/thriller|/genres/literature|/genres/american|/genres/literature,dir13/22206.Lullaby.html,59519,Lullaby +3.88,2192,0375757856,good_reads:book,https://www.goodreads.com/author/show/4012.Wilkie_Collins,1868,/genres/classics|/genres/mystery|/genres/fiction|/genres/mystery|/genres/crime|/genres/literature|/genres/19th-century|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/historical-fiction|/genres/book-club|/genres/thriller|/genres/mystery-thriller,dir13/6138.The_Moonstone.html,36917,The Moonstone +4.05,473,0300093055,good_reads:book,https://www.goodreads.com/author/show/7680.Eugene_O_Neill,1941,/genres/plays|/genres/drama|/genres/classics|/genres/fiction|/genres/plays|/genres/theatre|/genres/literature|/genres/american|/genres/literature|/genres/academic|/genres/school|/genres/literature|/genres/20th-century|/genres/academic|/genres/read-for-school,dir13/12083.Long_Day_s_Journey_Into_Night.html,20776,Long Day's Journey Into Night +3.81,13,0557110297,good_reads:book,https://www.goodreads.com/author/show/3354538.Rom_LcO_Feer,2009,/genres/psychology,dir13/7673244-carnal.html,77,Carnal +3.46,2750,0060574216,good_reads:book,https://www.goodreads.com/author/show/848.John_Gray,1992,/genres/non-fiction|/genres/self-help|/genres/marriage|/genres/self-help|/genres/personal-development|/genres/romance|/genres/philosophy|/genres/reference|/genres/womens-fiction|/genres/chick-lit|/genres/sociology|/genres/love,dir13/1274.Men_Are_from_Mars_Women_Are_from_Venus.html,93369,"Men Are from Mars, Women Are from Venus" +4.26,3709,,good_reads:book,https://www.goodreads.com/author/show/5410816.Tarryn_Fisher,2011,/genres/new-adult|/genres/contemporary|/genres/adult|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/drama|/genres/academic|/genres/college|/genres/young-adult|/genres/fiction|/genres/realistic-fiction,dir13/13312527-the-opportunist.html,26023,"The Opportunist (Love Me with Lies, #1)" +3.96,890,0679600213,good_reads:book,https://www.goodreads.com/author/show/8147.Karen_Blixen,1937,/genres/classics|/genres/autobiography|/genres/memoir|/genres/biography|/genres/non-fiction|/genres/travel|/genres/history|/genres/biography|/genres/autobiography|/genres/biography-memoir|/genres/book-club|/genres/cultural|/genres/kenya,dir13/781787.Out_of_Africa.html,15871,Out of Africa +3.92,57,1479313262,good_reads:book,https://www.goodreads.com/author/show/6420295.Brae_Wyckoff,2012,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fiction|/genres/fantasy|/genres/high-fantasy|/genres/book-club|/genres/christian|/genres/young-adult,dir13/16155612-the-orb-of-truth.html,196,"The Orb of Truth (The Horn King, #1)" +4.18,755,0679736325,good_reads:book,https://www.goodreads.com/author/show/4178.Cormac_McCarthy,1979,/genres/fiction|/genres/literature|/genres/gothic|/genres/southern-gothic|/genres/novels|/genres/literature|/genres/american|/genres/classics|/genres/contemporary|/genres/american|/genres/southern|/genres/literary-fiction|/genres/gothic,dir13/394469.Suttree.html,9524,Suttree +3.81,6968,0440241901,good_reads:book,https://www.goodreads.com/author/show/6160.Sophie_Kinsella,1999,/genres/romance|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/humor|/genres/humor|/genres/funny|/genres/adult,dir13/33724.Can_You_Keep_a_Secret_.html,189221,Can You Keep a Secret? +4.18,1228,0006480101,good_reads:book,https://www.goodreads.com/author/show/25307.Robin_Hobb,1996,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic,dir13/68487.Royal_Assassin.html,59860,"Royal Assassin (Farseer Trilogy, #2)" +3.94,704,015602764X,good_reads:book,https://www.goodreads.com/author/show/1002.Sophocles,-400,/genres/classics|/genres/plays|/genres/drama|/genres/fiction|/genres/literature|/genres/academic|/genres/school|/genres/fantasy|/genres/mythology|/genres/plays|/genres/theatre|/genres/academic|/genres/read-for-school|/genres/poetry,dir13/1540.The_Oedipus_Cycle.html,36008,The Oedipus Cycle +3.98,1465,0684803860,good_reads:book,https://www.goodreads.com/author/show/44023.Josephine_Tey,1951,/genres/mystery|/genres/historical-fiction|/genres/fiction|/genres/mystery|/genres/crime|/genres/book-club|/genres/classics|/genres/european-literature|/genres/british-literature|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/historical-mystery|/genres/historical-fiction|/genres/medieval,dir13/77661.The_Daughter_of_Time.html,11692,The Daughter of Time (Inspector Alan Grant #5) +4.20,2115,0670032565,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1991,/genres/fantasy|/genres/fiction|/genres/horror|/genres/thriller|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/dark-fantasy|/genres/science-fiction-fantasy|/genres/literature|/genres/american|/genres/science-fiction|/genres/adult,dir13/34084.The_Waste_Lands.html,86877,"The Waste Lands (The Dark Tower, #3)" +4.04,2281,1250006325,good_reads:book,https://www.goodreads.com/author/show/3486415.Amanda_Hocking,2010,/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/teen,dir13/11966216-torn.html,43388,"Torn (Trylle, #2)" +3.67,1390,0618062416,good_reads:book,https://www.goodreads.com/author/show/29182.Patricia_MacLachlan,1985,/genres/historical-fiction|/genres/childrens|/genres/fiction|/genres/classics|/genres/young-adult|/genres/childrens|/genres/juvenile|/genres/academic|/genres/school,dir13/106264.Sarah_Plain_and_Tall.html,44827,"Sarah, Plain and Tall (Sarah, Plain and Tall, #1)" +3.88,3136,0385613466,good_reads:book,https://www.goodreads.com/author/show/628636.Jenny_Downham,2007,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/fiction|/genres/realistic-fiction|/genres/death|/genres/young-adult|/genres/teen|/genres/drama|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/young-adult-contemporary,dir13/1314332.Before_I_Die.html,32733,Before I Die +4.15,854,0374506841,good_reads:book,https://www.goodreads.com/author/show/1113469.Hermann_Hesse,1930,/genres/fiction|/genres/classics|/genres/literature|/genres/european-literature|/genres/german-literature|/genres/philosophy|/genres/novels|/genres/cultural|/genres/germany|/genres/historical-fiction|/genres/spirituality|/genres/literature|/genres/20th-century,dir13/5954.Narcissus_and_Goldmund.html,22327,Narcissus and Goldmund +3.84,3471,1592402038,good_reads:book,https://www.goodreads.com/author/show/5571.Lynne_Truss,2003,/genres/non-fiction|/genres/language|/genres/writing|/genres/humanities|/genres/language|/genres/reference|/genres/humor|/genres/education|/genres/humor|/genres/funny|/genres/adult|/genres/european-literature|/genres/british-literature|/genres/self-help,dir13/8600.Eats_Shoots_Leaves.html,64258,"Eats, Shoots & Leaves" +3.93,787,0671685635,good_reads:book,https://www.goodreads.com/author/show/6941.Peter_Straub,1979,/genres/horror|/genres/fiction|/genres/paranormal|/genres/ghosts|/genres/fantasy|/genres/paranormal|/genres/mystery|/genres/thriller|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/suspense|/genres/novels,dir13/19581.Ghost_Story.html,37663,Ghost Story +4.03,1651,0141183535,good_reads:book,https://www.goodreads.com/author/show/6765.Virginia_Woolf,1929,/genres/classics|/genres/non-fiction|/genres/feminism|/genres/writing|/genres/essays|/genres/literature|/genres/philosophy|/genres/language|/genres/writing|/genres/womens|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/20th-century,dir13/18521.A_Room_of_One_s_Own.html,41710,A Room of One's Own +4.15,1152,0451188454,good_reads:book,https://www.goodreads.com/author/show/1612.Jeffery_Deaver,1997,/genres/mystery|/genres/mystery|/genres/crime|/genres/thriller|/genres/fiction|/genres/thriller|/genres/mystery-thriller|/genres/suspense|/genres/mystery|/genres/detective|/genres/horror|/genres/mystery|/genres/murder-mystery|/genres/adult,dir13/2373.The_Bone_Collector.html,82770,"The Bone Collector (Lincoln Rhyme, #1)" +4.15,8641,0425263924,good_reads:book,https://www.goodreads.com/author/show/19823.Sylvia_Day,2013,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/adult|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/romance|/genres/erotic-romance|/genres/erotica|/genres/bdsm|/genres/fiction|/genres/new-adult|/genres/womens-fiction|/genres/chick-lit,dir13/15731779-entwined-with-you.html,102514,"Entwined with You (Crossfire, #3)" +4.26,563,0879234628,good_reads:book,https://www.goodreads.com/author/show/13847.Charles_Baudelaire,1857,/genres/poetry|/genres/classics|/genres/cultural|/genres/france|/genres/european-literature|/genres/french-literature|/genres/fiction|/genres/literature|/genres/literature|/genres/19th-century|/genres/academic|/genres/school|/genres/gothic|/genres/art,dir13/203220.Les_Fleurs_du_Mal.html,22520,Les Fleurs du Mal +4.11,11770,0316013684,good_reads:book,https://www.goodreads.com/author/show/4174.Sherman_Alexie,2007,/genres/young-adult|/genres/fiction|/genres/realistic-fiction|/genres/humor|/genres/young-adult|/genres/teen|/genres/book-club|/genres/contemporary|/genres/young-adult|/genres/coming-of-age|/genres/cultural,dir13/693208.The_Absolutely_True_Diary_of_a_Part_Time_Indian.html,97668,The Absolutely True Diary of a Part-Time Indian +4.10,1713,1585424331,good_reads:book,https://www.goodreads.com/author/show/399.Napoleon_Hill,1938,/genres/business|/genres/self-help|/genres/non-fiction|/genres/self-help|/genres/personal-development|/genres/psychology|/genres/philosophy|/genres/inspirational|/genres/leadership|/genres/classics|/genres/productivity,dir13/1005.Think_and_Grow_Rich.html,61775,Think and Grow Rich +4.18,38,1616635592,good_reads:book,https://www.goodreads.com/author/show/2918488.Heath_Sommer,2010,/genres/mystery|/genres/psychology|/genres/contemporary|/genres/fiction,dir13/9508678-the-grand-delusion.html,139,"The Grand Delusion (Manufactured Identity, Book #2)" +4.10,1115,0571203132,good_reads:book,https://www.goodreads.com/author/show/5668.Nikos_Kazantzakis,1946,/genres/fiction|/genres/classics|/genres/literature|/genres/philosophy|/genres/cultural|/genres/greece|/genres/novels|/genres/historical-fiction|/genres/literature|/genres/20th-century|/genres/classics|/genres/modern-classics|/genres/book-club,dir13/53639.Zorba_the_Greek.html,12706,Zorba the Greek +4.10,2498,0440236703,good_reads:book,https://www.goodreads.com/author/show/24689.Harlan_Coben,2000,/genres/mystery|/genres/thriller|/genres/fiction|/genres/suspense|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery-thriller|/genres/book-club,dir13/43933.Tell_No_One.html,54308,Tell No One +3.93,1630,0575077026,good_reads:book,https://www.goodreads.com/author/show/12534.Larry_Niven,1970,/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/classics|/genres/science-fiction|/genres/space-opera|/genres/space|/genres/adventure|/genres/speculative-fiction|/genres/novels,dir13/61179.Ringworld.html,54226,"Ringworld (Ringworld, #1)" +3.99,23192,0062255657,good_reads:book,https://www.goodreads.com/author/show/1221698.Neil_Gaiman,2013,/genres/book-club|/genres/adult|/genres/adult-fiction|/genres/magical-realism|/genres/science-fiction-fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal,dir13/15783514-the-ocean-at-the-end-of-the-lane.html,165468,The Ocean at the End of the Lane +4.17,2213,0802720870,good_reads:book,https://www.goodreads.com/author/show/274533.Simone_Elkeles,2011,/genres/romance|/genres/young-adult|/genres/contemporary|/genres/realistic-fiction|/genres/romance|/genres/contemporary-romance|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/high-school|/genres/young-adult|/genres/young-adult-romance|/genres/new-adult|/genres/young-adult|/genres/teen,dir13/8662836-chain-reaction.html,32280,"Chain Reaction (Perfect Chemistry, #3)" +3.73,80,184624417X,good_reads:book,https://www.goodreads.com/author/show/3433502.Lindsay_Anne_Kendal,2010,/genres/young-adult|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/horror|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/young-adult-paranormal,dir13/7897851-bloodlines.html,775,"Bloodlines (Bloodlines, #1)" +4.27,3233,0451233166,good_reads:book,https://www.goodreads.com/author/show/20248.J_R_Ward,2011,/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/vampires|/genres/romance|/genres/contemporary|/genres/romance|/genres/erotic-romance,dir13/8492319-lover-unleashed.html,55137,"Lover Unleashed (Black Dagger Brotherhood, #9)" +4.12,537,0007117140,good_reads:book,https://www.goodreads.com/author/show/10366.Clive_Barker,1987,/genres/fantasy|/genres/horror|/genres/fiction|/genres/fantasy|/genres/dark-fantasy|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/thriller|/genres/novels|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural,dir13/52640.Weaveworld.html,15263,Weaveworld +4.24,1573,0552555703,good_reads:book,https://www.goodreads.com/author/show/172977.Malorie_Blackman,2001,/genres/young-adult|/genres/romance|/genres/science-fiction|/genres/dystopia|/genres/fiction|/genres/fantasy|/genres/science-fiction|/genres/young-adult|/genres/teen|/genres/contemporary|/genres/drama|/genres/childrens,dir13/714902.Noughts_Crosses.html,21172,"Noughts & Crosses (Noughts & Crosses, #1)" +3.92,1736,0345366239,good_reads:book,https://www.goodreads.com/author/show/7172.Katherine_Neville,1988,/genres/fiction|/genres/mystery|/genres/historical-fiction|/genres/thriller|/genres/fantasy|/genres/adventure|/genres/thriller|/genres/mystery-thriller|/genres/suspense|/genres/book-club|/genres/romance,dir13/113310.The_Eight.html,20014,The Eight (The Eight #1) +4.08,4380,,good_reads:book,https://www.goodreads.com/author/show/5174152.C_J_Roberts,2011,/genres/adult-fiction|/genres/erotica|/genres/erotica|/genres/bdsm|/genres/dark|/genres/romance|/genres/adult|/genres/contemporary|/genres/sociology|/genres/abuse|/genres/romance|/genres/contemporary-romance|/genres/new-adult|/genres/romance|/genres/erotic-romance,dir13/12513614-captive-in-the-dark.html,41567,"Captive in the Dark (The Dark Duet, #1)" +4.60,1943,0842377506,good_reads:book,https://www.goodreads.com/author/show/6492.Francine_Rivers,1993,/genres/christian-fiction|/genres/historical-fiction|/genres/christian|/genres/fiction|/genres/romance|/genres/religion|/genres/book-club|/genres/romance|/genres/christian-romance|/genres/romance|/genres/historical-romance|/genres/inspirational,dir13/95617.A_Voice_in_the_Wind.html,37923,"A Voice in the Wind (Mark of the Lion, #1)" +4.02,1409,0670886580,good_reads:book,https://www.goodreads.com/author/show/3299.Salman_Rushdie,1990,/genres/fiction|/genres/fantasy|/genres/young-adult|/genres/childrens|/genres/cultural|/genres/india|/genres/literature|/genres/magical-realism|/genres/novels|/genres/adventure|/genres/asian-literature|/genres/indian-literature,dir13/4835.Haroun_and_the_Sea_of_Stories.html,16872,Haroun and the Sea of Stories +4.02,8693,0374533571,good_reads:book,https://www.goodreads.com/author/show/1251730.Matthew_Quick,2008,/genres/fiction|/genres/contemporary|/genres/romance|/genres/adult|/genres/book-club|/genres/adult-fiction|/genres/mental-health|/genres/mental-illness|/genres/health|/genres/mental-health,dir13/13539044-the-silver-linings-playbook.html,81533,The Silver Linings Playbook +4.24,6839,1406311529,good_reads:book,https://www.goodreads.com/author/show/370361.Patrick_Ness,2011,/genres/young-adult|/genres/fantasy|/genres/horror|/genres/fiction|/genres/childrens|/genres/middle-grade|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/death|/genres/childrens|/genres/fantasy|/genres/paranormal,dir13/8621462-a-monster-calls.html,37747,A Monster Calls +3.60,4988,0091883768,good_reads:book,https://www.goodreads.com/author/show/3340.Spencer_Johnson,1998,/genres/non-fiction|/genres/business|/genres/self-help|/genres/psychology|/genres/leadership|/genres/management|/genres/philosophy|/genres/self-help|/genres/personal-development|/genres/inspirational|/genres/adult,dir13/4894.Who_Moved_My_Cheese_.html,140624,Who Moved My Cheese? +3.97,1047,0060929782,good_reads:book,https://www.goodreads.com/author/show/9657.Richard_Wright,1945,/genres/classics|/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/biography|/genres/cultural|/genres/african-american|/genres/literature|/genres/academic|/genres/school|/genres/biography|/genres/autobiography|/genres/history|/genres/race,dir13/228630.Black_Boy.html,28635,Black Boy +4.02,1577,0060921145,good_reads:book,https://www.goodreads.com/author/show/3541.Barbara_Kingsolver,1990,/genres/fiction|/genres/novels|/genres/contemporary|/genres/adult-fiction|/genres/literature|/genres/book-club|/genres/adult|/genres/literary-fiction|/genres/realistic-fiction|/genres/literature|/genres/american,dir13/77262.Animal_Dreams.html,42451,Animal Dreams +4.18,827,1416989404,good_reads:book,https://www.goodreads.com/author/show/50873.L_J_Smith,1997,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/horror|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/fantasy|/genres/urban-fantasy,dir13/7100490-the-forbidden-game.html,15051,"The Forbidden Game (The Forbidden Game, #1-3)" +4.52,215,1557091528,good_reads:book,https://www.goodreads.com/author/show/63859.James_Madison,1787,/genres/history|/genres/non-fiction|/genres/politics|/genres/classics|/genres/philosophy|/genres/law|/genres/history|/genres/american-history|/genres/reference|/genres/politics|/genres/political-science|/genres/politics|/genres/government,dir13/89959.The_Constitution_of_the_United_States_of_America.html,12894,The Constitution of the United States of America +4.01,12480,0849946158,good_reads:book,https://www.goodreads.com/author/show/3446736.Todd_Burpo,2010,/genres/non-fiction|/genres/christian|/genres/religion|/genres/book-club|/genres/spirituality|/genres/inspirational|/genres/biography|/genres/autobiography|/genres/memoir|/genres/religion|/genres/christianity,dir13/7933292-heaven-is-for-real.html,163476,Heaven is for Real +3.96,8335,0099549344,good_reads:book,https://www.goodreads.com/author/show/1302285.Isaac_Marion,2010,/genres/horror|/genres/zombies|/genres/young-adult|/genres/romance|/genres/horror|/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/dystopia|/genres/science-fiction,dir13/7619057-warm-bodies.html,65221,"Warm Bodies (Warm Bodies, #1)" +3.97,3024,0385730306,good_reads:book,https://www.goodreads.com/author/show/2526.Libba_Bray,2007,/genres/fantasy|/genres/young-adult|/genres/historical-fiction|/genres/romance|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/supernatural,dir13/127459.The_Sweet_Far_Thing.html,43544,"The Sweet Far Thing (Gemma Doyle, #3)" +3.93,1752,0140042520,good_reads:book,https://www.goodreads.com/author/show/1742.Jack_Kerouac,1958,/genres/fiction|/genres/classics|/genres/literature|/genres/literature|/genres/american|/genres/novels|/genres/philosophy|/genres/travel|/genres/religion|/genres/buddhism,dir13/412732.The_Dharma_Bums.html,51539,The Dharma Bums +3.65,3299,0307265838,good_reads:book,https://www.goodreads.com/author/show/3354.Haruki_Murakami,2004,/genres/fiction|/genres/cultural|/genres/japan|/genres/asian-literature|/genres/japanese-literature|/genres/contemporary|/genres/magical-realism|/genres/literature|/genres/novels|/genres/fantasy|/genres/cultural|/genres/asia|/genres/literature|/genres/asian-literature,dir13/17803.After_Dark.html,47370,After Dark +4.30,363,0226020452,good_reads:book,https://www.goodreads.com/author/show/2147.Ivo_Andri_,1945,/genres/fiction|/genres/historical-fiction|/genres/classics|/genres/novels|/genres/nobel-prize|/genres/literature|/genres/20th-century|/genres/war|/genres/literary-fiction|/genres/european-literature|/genres/serbian-literature|/genres/academic|/genres/school,dir13/3140.The_Bridge_on_the_Drina.html,5683,The Bridge on the Drina +4.03,2592,0385733410,good_reads:book,https://www.goodreads.com/author/show/2526.Libba_Bray,2005,/genres/fantasy|/genres/young-adult|/genres/historical-fiction|/genres/fiction|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/young-adult-fantasy,dir13/51428.Rebel_Angels.html,55017,"Rebel Angels (Gemma Doyle, #2)" +4.41,3969,0393065782,good_reads:book,https://www.goodreads.com/author/show/20411.Lawrence_Hill,2007,/genres/historical-fiction|/genres/fiction|/genres/book-club|/genres/cultural|/genres/canada|/genres/cultural|/genres/africa|/genres/adult-fiction,dir13/875441.Someone_Knows_My_Name.html,32923,Someone Knows My Name +4.28,4289,,good_reads:book,https://www.goodreads.com/author/show/4907787.Rebecca_Donovan,2011,/genres/young-adult|/genres/romance|/genres/new-adult|/genres/contemporary|/genres/sociology|/genres/abuse|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/high-school|/genres/realistic-fiction|/genres/fiction,dir13/11561469-reason-to-breathe.html,56573,"Reason to Breathe (Breathing, #1)" +4.15,6426,1405910216,good_reads:book,https://www.goodreads.com/author/show/5193034.Tracey_Garvis_Graves,2011,/genres/romance|/genres/contemporary-romance|/genres/womens-fiction|/genres/chick-lit|/genres/new-adult|/genres/adult|/genres/book-club|/genres/adventure|/genres/young-adult|/genres/adult-fiction|/genres/drama|/genres/love,dir13/15505346-on-the-island.html,48992,"On the Island (On the Island, #1)" +3.82,1292,0192839772,good_reads:book,https://www.goodreads.com/author/show/45645.Sherwood_Anderson,1919,/genres/short-stories|/genres/literature|/genres/classics|/genres/literature|/genres/american|/genres/academic|/genres/school|/genres/literature|/genres/20th-century|/genres/novels,dir13/80176.Winesburg_Ohio.html,16611,"Winesburg, Ohio" +4.05,2223,0451226259,good_reads:book,https://www.goodreads.com/author/show/1857564.Chloe_Neill,2009,/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/adult|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic,dir13/4447622-some-girls-bite.html,34998,"Some Girls Bite (Chicagoland Vampires, #1)" +4.22,736,0451228669,good_reads:book,https://www.goodreads.com/author/show/15292.Rachel_Caine,2009,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/young-adult|/genres/teen,dir13/6289938-fade-out.html,27177,"Fade Out (The Morganville Vampires, #7)" +4.37,1942,044101819X,good_reads:book,https://www.goodreads.com/author/show/40563.Patricia_Briggs,2010,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/paranormal|/genres/vampires|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/shapeshifters|/genres/fiction|/genres/fairies|/genres/fae,dir13/6587387-silver-borne.html,54509,"Silver Borne (Mercy Thompson, #5)" +4.06,560,0679725164,good_reads:book,https://www.goodreads.com/author/show/1466.Jean_Paul_Sartre,1947,/genres/plays|/genres/philosophy|/genres/drama|/genres/fiction|/genres/classics|/genres/cultural|/genres/france|/genres/literature|/genres/plays|/genres/theatre|/genres/european-literature|/genres/french-literature|/genres/academic|/genres/school,dir13/10037.No_Exit_and_Three_Other_Plays.html,20567,No Exit and Three Other Plays +4.38,1416,1421501686,good_reads:book,https://www.goodreads.com/author/show/1978.Tsugumi_Ohba,2001,/genres/sequential-art|/genres/manga|/genres/sequential-art|/genres/graphic-novels|/genres/fantasy|/genres/sequential-art|/genres/comics|/genres/young-adult|/genres/fiction|/genres/horror|/genres/mystery|/genres/fantasy|/genres/supernatural|/genres/comics-manga,dir13/13615.Death_Note_Vol_1.html,85224,"Death Note, Vol. 1 (Death Note, #1)" +4.26,759,0060724692,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2004,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/paranormal|/genres/ghosts|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/mystery,dir13/93724.Twilight.html,27211,"Twilight (The Mediator, #6)" +3.58,4897,0805063897,good_reads:book,https://www.goodreads.com/author/show/1257.Barbara_Ehrenreich,2001,/genres/economics|/genres/book-club|/genres/academic|/genres/school|/genres/social-movements|/genres/social-justice|/genres/adult|/genres/politics|/genres/social-issues|/genres/social-issues|/genres/poverty|/genres/non-fiction|/genres/social-science,dir13/1869.Nickel_and_Dimed.html,142165,Nickel and Dimed +3.98,1026,0142437301,good_reads:book,https://www.goodreads.com/author/show/2533.Graham_Greene,1940,/genres/fiction|/genres/classics|/genres/literature|/genres/religion|/genres/historical-fiction|/genres/novels|/genres/european-literature|/genres/british-literature|/genres/book-club|/genres/literary-fiction|/genres/literature|/genres/20th-century,dir13/3690.The_Power_and_the_Glory.html,15431,The Power and the Glory +3.93,684,0143036254,good_reads:book,https://www.goodreads.com/author/show/57639.Thomas_Paine,1776,/genres/history|/genres/non-fiction|/genres/classics|/genres/philosophy|/genres/politics|/genres/history|/genres/american-history|/genres/writing|/genres/essays|/genres/politics|/genres/political-science|/genres/literature|/genres/american|/genres/politics|/genres/government,dir13/161744.Common_Sense.html,14138,Common Sense +4.05,2515,0553562738,good_reads:book,https://www.goodreads.com/author/show/14032.Connie_Willis,1992,/genres/science-fiction|/genres/science-fiction|/genres/time-travel|/genres/historical-fiction|/genres/fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/speculative-fiction|/genres/historical-fiction|/genres/medieval|/genres/book-club|/genres/european-literature|/genres/british-literature,dir13/24983.Doomsday_Book.html,22717,"Doomsday Book (Oxford Time Travel, #1)" +4.44,3677,1595143203,good_reads:book,https://www.goodreads.com/author/show/137902.Richelle_Mead,2013,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/witches,dir13/9833184-the-fiery-heart.html,27652,"The Fiery Heart (Bloodlines, #4)" +3.96,1355,1401359795,good_reads:book,https://www.goodreads.com/author/show/32637.Sergei_Lukyanenko,1998,/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/horror|/genres/fiction|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/cultural|/genres/russia|/genres/science-fiction|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic,dir13/359375.Night_Watch.html,21279,"Night Watch (Watch, #1)" +4.39,796,0345363132,good_reads:book,https://www.goodreads.com/author/show/24655.Sharon_Kay_Penman,1982,/genres/historical-fiction|/genres/fiction|/genres/historical-fiction|/genres/medieval|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/15th-century|/genres/romance|/genres/historical-romance|/genres/epic|/genres/fantasy|/genres/novels|/genres/war,dir13/119829.The_Sunne_in_Splendour.html,12886,The Sunne in Splendour +4.21,4084,0765348276,good_reads:book,https://www.goodreads.com/author/show/4763.John_Scalzi,2005,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/space-opera|/genres/war|/genres/military|/genres/science-fiction-fantasy|/genres/war|/genres/space|/genres/speculative-fiction|/genres/adventure|/genres/fantasy,dir13/51964.Old_Man_s_War.html,58328,"Old Man's War (Old Man's War, #1)" +4.38,1398,006083577X,good_reads:book,https://www.goodreads.com/author/show/22542.Megan_Whalen_Turner,2006,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/adventure|/genres/romance|/genres/historical-fiction|/genres/young-adult|/genres/young-adult-fantasy|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/mythology,dir13/40159.The_King_of_Attolia.html,15348,"The King of Attolia (The Queen's Thief, #3)" +4.05,1957,0374191484,good_reads:book,https://www.goodreads.com/author/show/72039.Roberto_Bola_o,1998,/genres/fiction|/genres/novels|/genres/literature|/genres/cultural|/genres/latin-american|/genres/european-literature|/genres/spanish-literature,dir13/63033.The_Savage_Detectives.html,15584,The Savage Detectives +4.26,75,0991709403,good_reads:book,https://www.goodreads.com/author/show/6552431.Najeev_Raj_Nadarajah,2012,/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/apocalyptic|/genres/post-apocalyptic|/genres/science-fiction|/genres/fantasy|/genres/paranormal|/genres/fiction,dir13/16077824-dream-caster.html,132,"Dream Caster (Dream Cycle, #1)" +3.72,569,0345434803,good_reads:book,https://www.goodreads.com/author/show/7577.Anne_Rice,1998,/genres/paranormal|/genres/vampires|/genres/horror|/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/gothic|/genres/adult|/genres/historical-fiction,dir13/31332.The_Vampire_Armand.html,46478,"The Vampire Armand (The Vampire Chronicles, #6)" +4.07,1391,0552998761,good_reads:book,https://www.goodreads.com/author/show/10022.Armistead_Maupin,1978,/genres/fiction|/genres/glbt|/genres/glbt|/genres/gay|/genres/glbt|/genres/queer|/genres/humor|/genres/contemporary|/genres/classics|/genres/literature|/genres/book-club|/genres/novels,dir13/16255.Tales_of_the_City.html,19708,"Tales of the City (Tales of the City, #1)" +3.90,6342,0316056634,good_reads:book,https://www.goodreads.com/author/show/2891665.Gail_Carriger,2009,/genres/science-fiction|/genres/steampunk|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/historical-fiction|/genres/shapeshifters|/genres/werewolves|/genres/mystery,dir13/6381205-soulless.html,52602,"Soulless (Parasol Protectorate, #1)" +4.61,24,1499227299,good_reads:book,https://www.goodreads.com/author/show/7414345.Jami_Brumfield,2014,/genres/paranormal|/genres/vampires|/genres/paranormal|/genres/angels|/genres/shapeshifters|/genres/werewolves|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/magic|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/shapeshifters,dir14/22090082-vampire-princess-rising.html,128,"Vampire Princess Rising (The Winters Family Saga, #2)" +4.09,1652,8498000831,good_reads:book,https://www.goodreads.com/author/show/4764.Philip_K_Dick,1969,/genres/science-fiction|/genres/fiction|/genres/mystery|/genres/novels|/genres/science-fiction-fantasy|/genres/classics|/genres/speculative-fiction,dir14/22590.Ubik.html,33245,Ubik +4.08,2665,1250006333,good_reads:book,https://www.goodreads.com/author/show/3486415.Amanda_Hocking,2011,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/teen,dir14/11947829-ascend.html,38691,"Ascend (Trylle, #3)" +3.97,4555,0743298853,good_reads:book,https://www.goodreads.com/author/show/38951.John_Connolly,2006,/genres/fantasy|/genres/fiction|/genres/young-adult|/genres/fantasy|/genres/fairy-tales|/genres/horror|/genres/book-club|/genres/adventure|/genres/writing|/genres/books-about-books|/genres/mystery,dir14/69136.The_Book_of_Lost_Things.html,33530,The Book of Lost Things +3.90,882,0451529693,good_reads:book,https://www.goodreads.com/author/show/410680.Ivan_Turgenev,1862,/genres/classics|/genres/fiction|/genres/cultural|/genres/russia|/genres/literature|/genres/russian-literature|/genres/literature|/genres/novels|/genres/literature|/genres/19th-century|/genres/historical-fiction|/genres/academic|/genres/school|/genres/literary-fiction,dir14/19117.Fathers_and_Sons.html,33129,Fathers and Sons +3.65,1291,2253147699,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1983,/genres/horror|/genres/fiction|/genres/thriller|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/paranormal|/genres/mystery|/genres/suspense|/genres/novels|/genres/adult,dir14/10629.Christine.html,115530,Christine +3.95,2768,0142401773,good_reads:book,https://www.goodreads.com/author/show/2987.Sarah_Dessen,1998,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/high-school|/genres/love|/genres/young-adult|/genres/young-adult-romance,dir14/816953.Someone_Like_You.html,66823,Someone Like You +4.03,655,0553265954,good_reads:book,https://www.goodreads.com/author/show/17219.Arthur_Koestler,1940,/genres/fiction|/genres/classics|/genres/historical-fiction|/genres/literature|/genres/cultural|/genres/russia|/genres/politics|/genres/novels|/genres/science-fiction|/genres/dystopia|/genres/philosophy|/genres/literature|/genres/20th-century,dir14/30672.Darkness_at_Noon.html,13404,Darkness at Noon +4.27,5884,1301347949,good_reads:book,https://www.goodreads.com/author/show/6997072.Katy_Evans,2013,/genres/romance|/genres/new-adult|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/adult-fiction|/genres/erotica|/genres/sports-and-games|/genres/sports|/genres/adult|/genres/romance|/genres/erotic-romance|/genres/contemporary-romance|/genres/sports-romance|/genres/fiction,dir14/17617277-real.html,54977,"Real (Real, #1)" +4.32,981,0684826801,good_reads:book,https://www.goodreads.com/author/show/4187.Primo_Levi,1947,/genres/non-fiction|/genres/history|/genres/biography|/genres/classics|/genres/history|/genres/world-war-ii|/genres/war|/genres/biography|/genres/autobiography|/genres/world-war-ii|/genres/holocaust|/genres/biography-memoir|/genres/autobiography|/genres/memoir,dir14/6174.Survival_in_Auschwitz.html,25850,Survival in Auschwitz +3.99,4748,1442429984,good_reads:book,https://www.goodreads.com/author/show/4487674.Moira_Young,2011,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/romance|/genres/apocalyptic|/genres/post-apocalyptic|/genres/science-fiction|/genres/adventure|/genres/fiction,dir14/9917938-blood-red-road.html,36595,"Blood Red Road (Dust Lands, #1)" +3.99,48,014023666X,good_reads:book,https://www.goodreads.com/author/show/150377.Ross_Lockridge,1948,/genres/fiction|/genres/historical-fiction|/genres/classics|/genres/novels|/genres/romance|/genres/military-history|/genres/civil-war|/genres/war|/genres/literature|/genres/american-history|/genres/american-civil-war,dir14/257233.Raintree_County.html,601,Raintree County +4.22,1942,0060012382,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,2003,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/humor|/genres/childrens|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/adventure|/genres/humor|/genres/comedy|/genres/humor|/genres/funny,dir14/34494.The_Wee_Free_Men_Discworld_30_.html,46596,"The Wee Free Men (Discworld, #30) (Discworld, #30) (Tiffany Aching, #1)" +3.86,2153,0446677388,good_reads:book,https://www.goodreads.com/author/show/3780.James_Patterson,1995,/genres/mystery|/genres/fiction|/genres/thriller|/genres/mystery|/genres/crime|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/adult|/genres/mystery|/genres/detective|/genres/mystery|/genres/murder-mystery|/genres/adult-fiction,dir14/13148.Kiss_the_Girls.html,226565,"Kiss the Girls (Alex Cross, #2)" +4.61,48,0991055446,good_reads:book,https://www.goodreads.com/author/show/7754966.Linda_Watkins,2014,/genres/horror|/genres/suspense|/genres/gothic|/genres/fantasy|/genres/paranormal,dir14/22293224-mateguas-island.html,136,Mateguas Island +4.30,1284,0060590165,good_reads:book,https://www.goodreads.com/author/show/8347.Garth_Nix,2001,/genres/young-adult|/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/magic|/genres/adventure|/genres/science-fiction-fantasy|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/young-adult-fantasy|/genres/fantasy|/genres/high-fantasy,dir14/47624.Lirael.html,58270,"Lirael (Abhorsen, #2)" +4.06,823,0374529531,good_reads:book,https://www.goodreads.com/author/show/13388.Shirley_Jackson,1948,/genres/short-stories|/genres/fiction|/genres/classics|/genres/horror|/genres/literature|/genres/science-fiction|/genres/dystopia|/genres/academic|/genres/school|/genres/gothic|/genres/adult-fiction|/genres/literature|/genres/american,dir14/89723.The_Lottery_and_Other_Stories.html,38605,The Lottery and Other Stories +3.92,198,0192835149,good_reads:book,https://www.goodreads.com/author/show/1240.Jack_London,1906,/genres/classics|/genres/fiction|/genres/literature|/genres/short-stories|/genres/adventure|/genres/young-adult|/genres/animals|/genres/literature|/genres/american|/genres/childrens|/genres/novels,dir14/43037.The_Call_of_the_Wild_White_Fang_and_Other_Stories.html,12230,"The Call of the Wild, White Fang and Other Stories" +4.13,549,014250047X,good_reads:book,https://www.goodreads.com/author/show/32665.David_Clement_Davies,2001,/genres/fantasy|/genres/young-adult|/genres/animals|/genres/fiction|/genres/animals|/genres/wolves|/genres/animals|/genres/animal-fiction|/genres/adventure|/genres/childrens,dir14/58085.The_Sight.html,7823,"The Sight (Sight, #1)" +4.27,6452,0316133973,good_reads:book,https://www.goodreads.com/author/show/324620.Laini_Taylor,2012,/genres/fantasy|/genres/young-adult|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/magic|/genres/fiction|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/supernatural,dir14/12812550-days-of-blood-starlight.html,44123,"Days of Blood & Starlight (Daughter of Smoke & Bone, #2)" +3.95,1756,0062002325,good_reads:book,https://www.goodreads.com/author/show/3220024.Courtney_Allison_Moulton,2011,/genres/paranormal|/genres/angels|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen|/genres/romance|/genres/paranormal-romance,dir14/7285498-angelfire.html,21829,"Angelfire (Angelfire, #1)" +4.06,3383,1577314808,good_reads:book,https://www.goodreads.com/author/show/4493.Eckhart_Tolle,1997,/genres/self-help|/genres/philosophy|/genres/non-fiction|/genres/spirituality|/genres/self-help|/genres/personal-development|/genres/religion|/genres/inspirational|/genres/spirituality|/genres/new-age|/genres/religion|/genres/buddhism|/genres/psychology,dir14/6708.The_Power_of_Now.html,62736,The Power of Now +3.90,4420,0375825444,good_reads:book,https://www.goodreads.com/author/show/12950.Wendelin_Van_Draanen,2001,/genres/young-adult|/genres/romance|/genres/realistic-fiction|/genres/fiction|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/childrens|/genres/middle-grade|/genres/womens-fiction|/genres/chick-lit|/genres/childrens,dir14/331920.Flipped.html,57406,Flipped +4.17,41,1456325639,good_reads:book,https://www.goodreads.com/author/show/4808225.Dennis_Sharpe,2011,/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/paranormal|/genres/ghosts|/genres/horror|/genres/horror|/genres/zombies|/genres/fiction,dir14/11187932-blood-spirits.html,107,"Blood & Spirits (The Coming Storm, #1)" +4.32,786,0765343266,good_reads:book,https://www.goodreads.com/author/show/8649.Juliet_Marillier,2000,/genres/fantasy|/genres/romance|/genres/historical-fiction|/genres/fiction|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/adult|/genres/young-adult|/genres/fantasy|/genres/fairy-tales|/genres/fantasy|/genres/mythology,dir14/13927.Son_of_the_Shadows.html,17047,"Son of the Shadows (Sevenwaters, #2)" +3.74,9663,0062014536,good_reads:book,https://www.goodreads.com/author/show/2936493.Lauren_Oliver,2013,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/science-fiction|/genres/fiction,dir14/9593913-requiem.html,69002,"Requiem (Delirium, #3)" +4.34,486,0316954993,good_reads:book,https://www.goodreads.com/author/show/9020.Herman_Wouk,1978,/genres/historical-fiction|/genres/fiction|/genres/history|/genres/world-war-ii|/genres/war|/genres/classics|/genres/world-war-ii|/genres/holocaust|/genres/war|/genres/military|/genres/literature|/genres/jewish|/genres/adult-fiction|/genres/literature,dir14/42986.War_and_Remembrance.html,18758,"War and Remembrance (The Henry Family, #2)" +4.70,348,0751507954,good_reads:book,https://www.goodreads.com/author/show/13778.Bill_Watterson,1990,/genres/sequential-art|/genres/comics|/genres/humor|/genres/fiction|/genres/sequential-art|/genres/graphic-novels|/genres/comics|/genres/comic-book|/genres/humor|/genres/comedy|/genres/childrens|/genres/graphic-novels-comics|/genres/sequential-art|/genres/comic-strips,dir14/59715.The_Authoritative_Calvin_And_Hobbes.html,13863,The Authoritative Calvin And Hobbes +4.13,3370,,good_reads:book,https://www.goodreads.com/author/show/1503841._,2008,/genres/fiction|/genres/historical-fiction|/genres/literature,dir14/3554772.html,28446,عزازيل +4.19,8886,1623420024,good_reads:book,https://www.goodreads.com/author/show/3379564.Alice_Clayton,2012,/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/humor|/genres/funny|/genres/adult|/genres/womens-fiction|/genres/chick-lit|/genres/new-adult|/genres/humor|/genres/adult-fiction|/genres/erotica,dir14/15858248-wallbanger.html,90040,"Wallbanger (Cocktail, #1)" +4.01,754,014044789X,good_reads:book,https://www.goodreads.com/author/show/1127.Ovid,8,/genres/poetry|/genres/fiction|/genres/literature|/genres/fantasy|/genres/academic|/genres/school|/genres/literature|/genres/ancient|/genres/classics|/genres/classic-literature|/genres/philosophy|/genres/roman|/genres/academic|/genres/read-for-school,dir14/1715.Metamorphoses.html,33404,Metamorphoses +4.18,2212,843396867X,good_reads:book,https://www.goodreads.com/author/show/72039.Roberto_Bola_o,2004,/genres/fiction|/genres/european-literature|/genres/spanish-literature|/genres/contemporary|/genres/literature|/genres/latin-american-literature|/genres/classics|/genres/science-fiction|/genres/epic|/genres/modern|/genres/adult-fiction|/genres/adult,dir14/63032.2666.html,14804,2666 +4.12,1016,0316766941,good_reads:book,https://www.goodreads.com/author/show/819789.J_D_Salinger,1955,/genres/fiction|/genres/classics|/genres/short-stories|/genres/literature|/genres/literature|/genres/american|/genres/novels|/genres/literary-fiction,dir14/5114.Raise_High_the_Roof_Beam_Carpenters_Seymour.html,31122,"Raise High the Roof Beam, Carpenters & Seymour" +4.18,4582,0061974552,good_reads:book,https://www.goodreads.com/author/show/3380908.Pittacus_Lore,2011,/genres/young-adult|/genres/fantasy|/genres/science-fiction|/genres/science-fiction|/genres/aliens|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/adventure,dir14/8659601-the-power-of-six.html,72090,"The Power of Six (Lorien Legacies, #2)" +4.48,765,0345368584,good_reads:book,https://www.goodreads.com/author/show/28709.Chuck_Dixon,1989,/genres/fantasy|/genres/classics|/genres/fiction|/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/adventure|/genres/young-adult|/genres/science-fiction-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/magic,dir14/659469.The_Hobbit.html,88584,The Hobbit +3.91,5052,1416971734,good_reads:book,https://www.goodreads.com/author/show/13957.Scott_Westerfeld,2009,/genres/science-fiction|/genres/steampunk|/genres/young-adult|/genres/fantasy|/genres/science-fiction|/genres/historical-fiction|/genres/fiction|/genres/adventure|/genres/science-fiction|/genres/alternate-history|/genres/young-adult|/genres/teen|/genres/war,dir14/6050678-leviathan.html,50228,"Leviathan (Leviathan, #1)" +4.15,2444,0425226921,good_reads:book,https://www.goodreads.com/author/show/71688.Nalini_Singh,2009,/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/angels|/genres/romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/adult|/genres/fantasy|/genres/supernatural|/genres/fiction,dir14/3819326-angels-blood.html,35392,"Angels' Blood (Guild Hunter, #1)" +3.80,1537,0679743626,good_reads:book,https://www.goodreads.com/author/show/881203.Willa_Cather,1913,/genres/fiction|/genres/historical-fiction|/genres/classics|/genres/literature|/genres/book-club|/genres/literature|/genres/american|/genres/novels|/genres/adult-fiction,dir14/140963.O_Pioneers_.html,22721,"O Pioneers! (Great Plains Trilogy, #1)" +4.27,387,0517092913,good_reads:book,https://www.goodreads.com/author/show/6378.Hans_Christian_Andersen,1874,/genres/classics|/genres/fantasy|/genres/childrens|/genres/fantasy|/genres/fairy-tales|/genres/fiction|/genres/short-stories|/genres/literature|/genres/folklore|/genres/european-literature|/genres/danish|/genres/young-adult,dir14/46306.The_Complete_Fairy_Tales.html,77005,The Complete Fairy Tales +4.27,1315,0061020648,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,1989,/genres/fiction|/genres/humor|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny|/genres/fantasy|/genres/dragons,dir14/64216.Guards_Guards_.html,74180,"Guards! Guards! (Discworld, #8)" +4.50,1087,0006479901,good_reads:book,https://www.goodreads.com/author/show/346732.George_R_R_Martin,2001,/genres/fiction|/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/adult|/genres/fantasy|/genres/dragons|/genres/epic|/genres/adventure|/genres/science-fiction-fantasy|/genres/war,dir14/768889.A_Storm_of_Swords.html,31914,"A Storm of Swords (A Song of Ice and Fire, #3-1)" +4.03,1293,0140047484,good_reads:book,https://www.goodreads.com/author/show/1938.Friedrich_Nietzsche,1883,/genres/philosophy|/genres/classics|/genres/non-fiction|/genres/european-literature|/genres/german-literature|/genres/literature|/genres/religion|/genres/poetry|/genres/literature|/genres/19th-century|/genres/cultural|/genres/germany|/genres/psychology,dir14/51893.Thus_Spoke_Zarathustra.html,50130,Thus Spoke Zarathustra +3.93,1586,0143039830,good_reads:book,https://www.goodreads.com/author/show/296961.Paul_Auster,1987,/genres/fiction|/genres/mystery|/genres/literature|/genres/literature|/genres/american|/genres/contemporary|/genres/novels|/genres/new-york|/genres/short-stories,dir14/431.The_New_York_Trilogy.html,28497,The New York Trilogy +3.24,22866,0316228532,good_reads:book,https://www.goodreads.com/author/show/1077326.J_K_Rowling,2012,/genres/fiction|/genres/contemporary|/genres/book-club|/genres/adult|/genres/mystery|/genres/adult-fiction|/genres/drama|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/realistic-fiction,dir14/13497818-the-casual-vacancy.html,156888,The Casual Vacancy +3.94,9383,0810993139,good_reads:book,https://www.goodreads.com/author/show/221559.Jeff_Kinney,2004,/genres/humor|/genres/childrens|/genres/fiction|/genres/young-adult|/genres/realistic-fiction|/genres/humor|/genres/funny|/genres/sequential-art|/genres/graphic-novels|/genres/childrens|/genres/middle-grade|/genres/humor|/genres/comedy|/genres/childrens|/genres/juvenile,dir14/389627.Diary_of_a_Wimpy_Kid.html,126319,"Diary of a Wimpy Kid (Diary of a Wimpy Kid, #1)" +3.94,1252,1841493139,good_reads:book,https://www.goodreads.com/author/show/15890.Trudi_Canavan,2001,/genres/fantasy|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/adventure|/genres/romance|/genres/fantasy|/genres/paranormal,dir14/28249.The_Magicians_Guild.html,32242,"The Magicians' Guild (The Black Magician Trilogy, #1)" +4.20,8493,0525951652,good_reads:book,https://www.goodreads.com/author/show/3447.Ken_Follett,2010,/genres/historical-fiction|/genres/fiction|/genres/war,dir14/7315573-fall-of-giants.html,102936,"Fall of Giants (The Century Trilogy, #1)" +4.29,5384,,good_reads:book,https://www.goodreads.com/author/show/4601855.Jessica_Sorensen,2012,/genres/new-adult|/genres/romance|/genres/contemporary|/genres/young-adult|/genres/romance|/genres/contemporary-romance|/genres/academic|/genres/college|/genres/sociology|/genres/abuse|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/fiction,dir14/16113791-the-coincidence-of-callie-kayden.html,73564,"The Coincidence of Callie & Kayden (The Coincidence, #1)" +4.24,774,0553271369,good_reads:book,https://www.goodreads.com/author/show/6942.Pat_Conroy,1980,/genres/fiction|/genres/war|/genres/military|/genres/american|/genres/southern|/genres/historical-fiction|/genres/literature|/genres/book-club|/genres/contemporary,dir14/85443.The_Lords_of_Discipline.html,15337,The Lords of Discipline +4.47,17579,0439139600,good_reads:book,https://www.goodreads.com/author/show/1077326.J_K_Rowling,2000,/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/fiction|/genres/action|/genres/fantasy|/genres/magic|/genres/adventure|/genres/childrens|/genres/young-adult|/genres/teen|/genres/classics,dir14/6.Harry_Potter_and_the_Goblet_of_Fire.html,1252219,"Harry Potter and the Goblet of Fire (Harry Potter, #4)" +3.99,3297,0061779814,good_reads:book,https://www.goodreads.com/author/show/2755160.Kimberly_Derting,2010,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/mystery|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/suspense,dir14/6261522-the-body-finder.html,35542,"The Body Finder (The Body Finder, #1)" +4.00,2162,0743457900,good_reads:book,https://www.goodreads.com/author/show/1411964.John_le_Carr_,1974,/genres/fiction|/genres/mystery|/genres/thriller|/genres/spy-thriller|/genres/espionage|/genres/classics|/genres/mystery|/genres/crime|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/thriller|/genres/spy-thriller|/genres/european-literature|/genres/british-literature,dir14/18989.Tinker_Tailor_Soldier_Spy.html,30195,"Tinker, Tailor, Soldier, Spy" +4.15,1082,0425201392,good_reads:book,https://www.goodreads.com/author/show/9550.Laurell_K_Hamilton,1995,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/horror|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/mystery,dir14/30274.Circus_of_the_Damned.html,67037,"Circus of the Damned (Anita Blake, Vampire Hunter, #3)" +3.78,6064,0385732562,good_reads:book,https://www.goodreads.com/author/show/2493.Lois_Lowry,2000,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/fiction|/genres/fantasy|/genres/science-fiction|/genres/childrens|/genres/classics|/genres/young-adult|/genres/teen|/genres/childrens|/genres/middle-grade|/genres/apocalyptic|/genres/post-apocalyptic,dir14/12936.Gathering_Blue.html,76501,"Gathering Blue (The Giver, #2)" +3.82,916,006172081X,good_reads:book,https://www.goodreads.com/author/show/50873.L_J_Smith,2010,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/witches,dir14/6441509-shadow-souls.html,29090,"Shadow Souls (The Vampire Diaries: The Return, #2)" +4.23,4384,006223742X,good_reads:book,https://www.goodreads.com/author/show/4039811.Veronica_Roth,2012,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/short-stories|/genres/science-fiction|/genres/fantasy|/genres/romance|/genres/fiction|/genres/young-adult|/genres/teen|/genres/apocalyptic|/genres/post-apocalyptic|/genres/adventure,dir14/13615258-free-four.html,69715,"Free Four (Divergent, #1.5)" +4.13,6069,0312304358,good_reads:book,https://www.goodreads.com/author/show/2226.Alan_Brennert,2003,/genres/historical-fiction|/genres/book-club|/genres/fiction|/genres/adult-fiction|/genres/adult|/genres/young-adult|/genres/coming-of-age|/genres/novels|/genres/literature|/genres/literature|/genres/19th-century|/genres/young-adult,dir14/3273.Moloka_i.html,54586,Moloka'i +4.36,5485,141697170X,good_reads:book,https://www.goodreads.com/author/show/51942.Sharon_M_Draper,2010,/genres/realistic-fiction|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/book-club|/genres/childrens|/genres/juvenile,dir14/6609765-out-of-my-mind.html,34643,Out of My Mind +4.16,3625,1423121317,good_reads:book,https://www.goodreads.com/author/show/2261547.Rachel_Hawkins,2011,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/vampires|/genres/romance|/genres/paranormal|/genres/witches|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy,dir14/8428064-demonglass.html,53531,"Demonglass (Hex Hall, #2)" +4.01,96,144014074X,good_reads:book,https://www.goodreads.com/author/show/363635.Linda_Masemore_Pirrung,2009,/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/adult|/genres/romance|/genres/contemporary-romance|/genres/fiction,dir14/6447501-explosion-in-paris.html,326,Explosion in Paris +3.72,1856,0345469011,good_reads:book,https://www.goodreads.com/author/show/3075.John_Irving,1998,/genres/fiction|/genres/contemporary|/genres/literature|/genres/novels|/genres/book-club|/genres/literary-fiction|/genres/literature|/genres/american|/genres/adult-fiction,dir14/4659.A_Widow_for_One_Year.html,39690,A Widow for One Year +4.03,736,0515134457,good_reads:book,https://www.goodreads.com/author/show/9550.Laurell_K_Hamilton,1998,/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/horror|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/shapeshifters|/genres/werewolves,dir14/30246.Blue_Moon.html,44713,"Blue Moon (Anita Blake, Vampire Hunter, #8)" +4.07,723,0375700811,good_reads:book,https://www.goodreads.com/author/show/7927.Norman_Mailer,1979,/genres/non-fiction|/genres/crime|/genres/true-crime|/genres/mystery|/genres/crime|/genres/biography|/genres/classics|/genres/history|/genres/literature,dir14/12468.The_Executioner_s_Song.html,10850,The Executioner's Song +3.80,2037,044669651X,good_reads:book,https://www.goodreads.com/author/show/2345.Nicholas_Sparks,2003,/genres/romance|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/adult|/genres/adult-fiction|/genres/love|/genres/romance|/genres/contemporary-romance|/genres/mystery|/genres/drama,dir14/3464.True_Believer.html,53770,"True Believer (Jeremy Marsh & Lexie Darnell, #1)" +3.96,1966,0525945563,good_reads:book,https://www.goodreads.com/author/show/12455.Thomas_Harris,1980,/genres/horror|/genres/fiction|/genres/thriller|/genres/mystery|/genres/mystery|/genres/crime|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/adult,dir14/28877.Red_Dragon.html,132581,"Red Dragon (Hannibal Lecter, #1)" +3.59,2106,0743289412,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,2006,/genres/horror|/genres/fiction|/genres/fantasy|/genres/thriller|/genres/mystery|/genres/fantasy|/genres/supernatural|/genres/suspense|/genres/romance|/genres/novels|/genres/fantasy|/genres/paranormal,dir14/10566.Lisey_s_Story.html,38885,Lisey's Story +3.77,181,0525949941,good_reads:book,https://www.goodreads.com/author/show/364872.Juan_Gomez_Jurado,1999,/genres/thriller|/genres/mystery|/genres/fiction|/genres/mystery|/genres/crime|/genres/religion|/genres/suspense|/genres/adventure|/genres/cultural|/genres/italy|/genres/action|/genres/mystery|/genres/detective,dir14/681552.God_s_Spy.html,1379,God's Spy +3.94,455,156478181X,good_reads:book,https://www.goodreads.com/author/show/15248.Flann_O_Brien,1939,/genres/fiction|/genres/european-literature|/genres/irish-literature|/genres/cultural|/genres/ireland|/genres/classics|/genres/novels|/genres/literature|/genres/humor|/genres/fantasy|/genres/literature|/genres/20th-century|/genres/literary-fiction,dir14/97333.At_Swim_Two_Birds.html,6384,At Swim-Two-Birds +4.05,1918,0738710180,good_reads:book,https://www.goodreads.com/author/show/274533.Simone_Elkeles,2007,/genres/young-adult|/genres/contemporary|/genres/romance|/genres/realistic-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/young-adult-romance|/genres/fiction|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/young-adult-contemporary,dir14/544424.Leaving_Paradise.html,30049,"Leaving Paradise (Leaving Paradise, #1)" +4.16,1212,0007162499,good_reads:book,https://www.goodreads.com/author/show/47499.Paullina_Simons,2006,/genres/historical-fiction|/genres/romance|/genres/romance|/genres/historical-romance|/genres/fiction|/genres/cultural|/genres/russia|/genres/war|/genres/adult,dir14/608216.The_Summer_Garden.html,11179,"The Summer Garden (The Bronze Horseman, #3)" +3.91,1838,0439321603,good_reads:book,https://www.goodreads.com/author/show/1077326.J_K_Rowling,2001,/genres/young-adult|/genres/fantasy|/genres/childrens|/genres/fantasy|/genres/magic,dir14/41899.Fantastic_Beasts_and_Where_to_Find_Them.html,125354,Fantastic Beasts and Where to Find Them +3.81,727,037575718X,good_reads:book,https://www.goodreads.com/author/show/15905.Thomas_Hardy,1878,/genres/classics|/genres/literature|/genres/literature|/genres/19th-century|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/classics|/genres/classic-literature|/genres/historical-fiction,dir14/32650.The_Return_of_the_Native.html,18258,The Return of the Native +3.80,2618,0446698466,good_reads:book,https://www.goodreads.com/author/show/2345.Nicholas_Sparks,2004,/genres/romance|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/adult|/genres/adult-fiction|/genres/love|/genres/romance|/genres/contemporary-romance|/genres/romantic|/genres/drama,dir14/15924.At_First_Sight.html,51970,"At First Sight (Jeremy Marsh & Lexie Darnell, #2)" +3.68,1935,0684843781,good_reads:book,https://www.goodreads.com/author/show/3190.F_Scott_Fitzgerald,1920,/genres/classics|/genres/fiction|/genres/literature|/genres/literature|/genres/american|/genres/novels|/genres/literature|/genres/20th-century|/genres/historical-fiction|/genres/classics|/genres/classic-literature|/genres/book-club|/genres/war,dir14/46165.This_Side_of_Paradise.html,31534,This Side of Paradise +4.20,4326,037571457X,good_reads:book,https://www.goodreads.com/author/show/6238.Marjane_Satrapi,2000,/genres/sequential-art|/genres/graphic-novels|/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/sequential-art|/genres/comics|/genres/biography|/genres/history|/genres/cultural|/genres/iran|/genres/book-club|/genres/biography|/genres/autobiography|/genres/graphic-novels-comics,dir14/9516.Persepolis.html,89077,"Persepolis (Persepolis, #1-2)" +4.50,61,,good_reads:book,https://www.goodreads.com/author/show/7817816.Jan_Raymond,2014,/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/science-fiction|/genres/aliens|/genres/adventure,dir14/20801439-circle-of-five.html,139,"Circle of Five (Pha Yul, #1)" +4.23,235,0140050930,good_reads:book,https://www.goodreads.com/author/show/874602.Ursula_K_Le_Guin,1975,/genres/fiction|/genres/fantasy|/genres/science-fiction|/genres/science-fiction-fantasy|/genres/classics|/genres/young-adult|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/magic|/genres/speculative-fiction,dir14/1170158.The_Earthsea_Trilogy.html,10893,The Earthsea Trilogy +4.45,6399,,good_reads:book,https://www.goodreads.com/author/show/5430144.Colleen_Hoover,2014,/genres/new-adult|/genres/romance|/genres/young-adult,dir14/17788403-maybe-someday.html,38808,Maybe Someday +4.05,1390,014043478X,good_reads:book,https://www.goodreads.com/author/show/1413437.Elizabeth_Gaskell,1865,/genres/fiction|/genres/classics|/genres/romance|/genres/historical-fiction|/genres/literature|/genres/19th-century|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/classics|/genres/classic-literature,dir14/383206.Wives_and_Daughters.html,23764,Wives and Daughters +3.58,850,0060512636,good_reads:book,https://www.goodreads.com/author/show/44061.Thornton_Wilder,1938,/genres/plays|/genres/classics|/genres/drama|/genres/fiction|/genres/academic|/genres/school|/genres/plays|/genres/theatre|/genres/young-adult|/genres/high-school|/genres/literature|/genres/academic|/genres/read-for-school|/genres/historical-fiction,dir14/205476.Our_Town.html,24663,Our Town +4.39,1266,0312984839,good_reads:book,https://www.goodreads.com/author/show/4430.Sherrilyn_Kenyon,2003,/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/romance|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/paranormal|/genres/shapeshifters,dir14/84145.Dance_with_the_Devil.html,43922,"Dance with the Devil (Dark-Hunter, #3)" +3.58,693,1551111721,good_reads:book,https://www.goodreads.com/author/show/3345.Joseph_Conrad,1900,/genres/classics|/genres/fiction|/genres/literature|/genres/adventure|/genres/historical-fiction|/genres/novels|/genres/european-literature|/genres/british-literature|/genres/literary-fiction|/genres/literature|/genres/english-literature|/genres/classics|/genres/classic-literature,dir14/12194.Lord_Jim.html,16154,Lord Jim +4.03,869,0671742515,good_reads:book,https://www.goodreads.com/author/show/4.Douglas_Adams,1988,/genres/fiction|/genres/fantasy|/genres/science-fiction|/genres/humor|/genres/mystery|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny|/genres/mystery|/genres/detective|/genres/novels,dir14/357.The_Long_Dark_Tea_Time_of_the_Soul.html,45974,"The Long Dark Tea-Time of the Soul (Dirk Gently, #2)" +4.19,1538,0345338545,good_reads:book,https://www.goodreads.com/author/show/29544.James_Alexander_Thom,1981,/genres/historical-fiction|/genres/fiction|/genres/book-club|/genres/adventure|/genres/adult|/genres/adventure|/genres/survival|/genres/western|/genres/history|/genres/american-history|/genres/adult-fiction|/genres/classics,dir14/138872.Follow_the_River.html,10071,Follow the River +3.95,3021,1582349061,good_reads:book,https://www.goodreads.com/author/show/49177.Shannon_Hale,2004,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/fairy-tales|/genres/romance|/genres/adventure|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/young-adult-fantasy|/genres/childrens,dir14/248482.Enna_Burning.html,26234,"Enna Burning (The Books of Bayern, #2)" +4.64,613,0609807250,good_reads:book,https://www.goodreads.com/author/show/313356.Gordon_B_Hinckley,2000,/genres/religion|/genres/non-fiction|/genres/christianity|/genres/lds|/genres/religion|/genres/church|/genres/inspirational|/genres/self-help|/genres/spirituality|/genres/lds|/genres/lds-non-fiction,dir14/596259.Standing_for_Something.html,11087,Standing for Something +3.95,1306,1423102266,good_reads:book,https://www.goodreads.com/author/show/21911.Melissa_de_la_Cruz,2009,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy,dir14/6267237-the-van-alen-legacy.html,49386,"The Van Alen Legacy (Blue Bloods, #4)" +3.48,628,0451526570,good_reads:book,https://www.goodreads.com/author/show/3345.Joseph_Conrad,1902,/genres/classics|/genres/fiction|/genres/literature|/genres/academic|/genres/school|/genres/cultural|/genres/africa|/genres/novels|/genres/academic|/genres/read-for-school|/genres/young-adult|/genres/high-school|/genres/historical-fiction|/genres/adventure,dir14/616828.Heart_of_Darkness_and_The_Secret_Sharer.html,12704,Heart of Darkness and The Secret Sharer +4.23,1697,0553280511,good_reads:book,https://www.goodreads.com/author/show/5350.L_M_Montgomery,1926,/genres/fiction|/genres/classics|/genres/romance|/genres/young-adult|/genres/historical-fiction|/genres/cultural|/genres/canada|/genres/book-club|/genres/romance|/genres/historical-romance|/genres/womens-fiction|/genres/chick-lit|/genres/childrens,dir14/95693.The_Blue_Castle.html,11733,The Blue Castle +4.29,1033,0679723056,good_reads:book,https://www.goodreads.com/author/show/7363.Raymond_Carver,1981,/genres/short-stories|/genres/fiction|/genres/literature|/genres/classics|/genres/literature|/genres/american|/genres/contemporary|/genres/literary-fiction|/genres/adult|/genres/book-club|/genres/literature|/genres/20th-century,dir14/11438.What_We_Talk_About_When_We_Talk_About_Love.html,20536,What We Talk About When We Talk About Love +4.41,1538,0743464117,good_reads:book,https://www.goodreads.com/author/show/5882.Stephen_E_Ambrose,1992,/genres/history|/genres/non-fiction|/genres/war|/genres/war|/genres/military|/genres/history|/genres/world-war-ii|/genres/military|/genres/military-history|/genres/biography|/genres/history|/genres/american-history,dir14/42389.Band_of_Brothers.html,43789,Band of Brothers +4.21,2432,1423118235,good_reads:book,https://www.goodreads.com/author/show/125308.Cinda_Williams_Chima,2009,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/high-fantasy|/genres/romance|/genres/fiction|/genres/young-adult|/genres/young-adult-fantasy|/genres/adventure|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/paranormal,dir14/6342491-the-demon-king.html,27461,"The Demon King (Seven Realms, #1)" +3.79,2222,0380714752,good_reads:book,https://www.goodreads.com/author/show/10105.Avi,1990,/genres/historical-fiction|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/adventure|/genres/classics|/genres/academic|/genres/school|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/academic|/genres/read-for-school,dir14/310146.The_True_Confessions_of_Charlotte_Doyle.html,58064,The True Confessions of Charlotte Doyle +3.82,1002,0192833723,good_reads:book,https://www.goodreads.com/author/show/6819578.Augustine_of_Hippo,397,/genres/christian|/genres/religion|/genres/christianity|/genres/non-fiction|/genres/history|/genres/autobiography|/genres/memoir|/genres/spirituality|/genres/classics|/genres/biography|/genres/autobiography|/genres/religion|/genres/religion|/genres/faith,dir14/27037.Confessions.html,21713,Confessions +4.04,1689,0446545244,good_reads:book,https://www.goodreads.com/author/show/3780.James_Patterson,2010,/genres/young-adult|/genres/fantasy|/genres/science-fiction|/genres/adventure|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/action|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/supernatural,dir14/7201913-angel.html,33182,"Angel (Maximum Ride, #7)" +3.66,4728,0743418174,good_reads:book,https://www.goodreads.com/author/show/9212.Jennifer_Weiner,2001,/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/book-club|/genres/contemporary|/genres/romance|/genres/adult-fiction|/genres/adult|/genres/humor,dir14/14748.Good_in_Bed.html,204008,"Good in Bed (Cannie Shapiro, #1)" +4.09,7627,0805094598,good_reads:book,https://www.goodreads.com/author/show/4575289.Leigh_Bardugo,2012,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/young-adult|/genres/young-adult-fantasy,dir14/10194157-shadow-and-bone.html,56203,"Shadow and Bone (The Grisha, #1)" +4.03,890,0192840509,good_reads:book,https://www.goodreads.com/author/show/12452.Aesop,-560,/genres/classics|/genres/childrens|/genres/literature|/genres/fantasy|/genres/fairy-tales|/genres/folk-tales|/genres/fables|/genres/folklore|/genres/philosophy|/genres/young-adult|/genres/fiction|/genres/literature|/genres/ancient,dir14/21348.Aesop_s_Fables.html,71259,Aesop's Fables +3.60,1644,0141026286,good_reads:book,https://www.goodreads.com/author/show/5158478.Anonymous,-1500,/genres/religion|/genres/literature|/genres/ancient|/genres/academic|/genres/read-for-school|/genres/academic|/genres/college|/genres/historical-fiction|/genres/philosophy|/genres/classics|/genres/classic-literature|/genres/novels|/genres/folklore|/genres/young-adult|/genres/high-school,dir14/19351.The_Epic_of_Gilgamesh.html,42026,The Epic of Gilgamesh +3.97,1663,0803733569,good_reads:book,https://www.goodreads.com/author/show/514824.Julia_Hoban,2009,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/realistic-fiction|/genres/fiction|/genres/mental-health|/genres/mental-illness|/genres/young-adult|/genres/teen|/genres/death|/genres/drama|/genres/health|/genres/mental-health,dir14/4570768-willow.html,23402,Willow +4.08,7098,054522490X,good_reads:book,https://www.goodreads.com/author/show/1330292.Maggie_Stiefvater,2011,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/mythology|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/young-adult-fantasy|/genres/adventure|/genres/animals|/genres/horses,dir15/10626594-the-scorpio-races.html,46539,The Scorpio Races +3.89,1391,1423102282,good_reads:book,https://www.goodreads.com/author/show/21911.Melissa_de_la_Cruz,2008,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/fantasy|/genres/urban-fantasy,dir15/2753843-revelations.html,53054,"Revelations (Blue Bloods, #3)" +4.04,1297,2266079999,good_reads:book,https://www.goodreads.com/author/show/10538.Carl_Sagan,1985,/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/space|/genres/novels|/genres/religion|/genres/classics|/genres/speculative-fiction|/genres/fantasy|/genres/science|/genres/astronomy,dir15/61666.Contact.html,64604,Contact +4.34,8304,0399254129,good_reads:book,https://www.goodreads.com/author/show/3407448.Ruta_Sepetys,2011,/genres/historical-fiction|/genres/young-adult|/genres/fiction|/genres/war|/genres/book-club|/genres/history|/genres/world-war-ii|/genres/young-adult|/genres/teen|/genres/world-war-ii|/genres/holocaust|/genres/romance|/genres/cultural|/genres/russia,dir15/7824322-between-shades-of-gray.html,47112,Between Shades of Gray +3.90,1218,0553380648,good_reads:book,https://www.goodreads.com/author/show/3083854.Tom_Wolfe,1968,/genres/non-fiction|/genres/history|/genres/classics|/genres/writing|/genres/journalism|/genres/biography|/genres/autobiography|/genres/memoir|/genres/literature|/genres/literature|/genres/american|/genres/culture|/genres/contemporary,dir15/7442.The_Electric_Kool_Aid_Acid_Test.html,44517,The Electric Kool-Aid Acid Test +4.02,1676,0553582917,good_reads:book,https://www.goodreads.com/author/show/9355.Dean_Koontz,1987,/genres/suspense|/genres/thriller|/genres/fiction|/genres/mystery|/genres/horror|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/crime|/genres/mystery|/genres/detective|/genres/adult|/genres/womens,dir15/32439.Intensity.html,47284,Intensity +3.81,1740,0060755865,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2005,/genres/young-adult|/genres/fantasy|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/mythology|/genres/arthurian,dir15/187812.Avalon_High.html,31772,Avalon High +4.39,491,0884944441,good_reads:book,https://www.goodreads.com/author/show/193170.Spencer_W_Kimball,1969,/genres/religion|/genres/christianity|/genres/lds|/genres/non-fiction|/genres/religion|/genres/church|/genres/spirituality|/genres/self-help|/genres/inspirational|/genres/religion|/genres/christianity|/genres/christian|/genres/lds|/genres/mormonism,dir15/1055617.The_Miracle_of_Forgiveness.html,11512,The Miracle of Forgiveness +3.87,14900,0307341542,good_reads:book,https://www.goodreads.com/author/show/2383.Gillian_Flynn,2006,/genres/mystery|/genres/fiction|/genres/thriller|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery-thriller|/genres/suspense|/genres/book-club|/genres/adult|/genres/horror|/genres/contemporary,dir15/66559.Sharp_Objects.html,125844,Sharp Objects +4.00,1605,1857231589,good_reads:book,https://www.goodreads.com/author/show/7779.Arthur_C_Clarke,1973,/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/classics|/genres/space|/genres/speculative-fiction|/genres/fantasy|/genres/novels|/genres/science-fiction|/genres/space-opera|/genres/science-fiction|/genres/aliens,dir15/112537.Rendezvous_with_Rama.html,65053,"Rendezvous with Rama (Rama, #1)" +4.00,5256,0515141429,good_reads:book,https://www.goodreads.com/author/show/5091.Lee_Child,1997,/genres/mystery|/genres/thriller|/genres/fiction|/genres/mystery|/genres/crime|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/action|/genres/mystery|/genres/detective|/genres/adventure|/genres/adult,dir15/78129.Killing_Floor.html,97418,"Killing Floor (Jack Reacher, #1)" +3.91,971,0618249060,good_reads:book,https://www.goodreads.com/author/show/15332.Rachel_Carson,1962,/genres/non-fiction|/genres/environment|/genres/classics|/genres/environment|/genres/nature|/genres/biology|/genres/ecology|/genres/politics|/genres/science|/genres/biology|/genres/environment|/genres/sustainability|/genres/science|/genres/academic|/genres/school,dir15/27333.Silent_Spring.html,18269,Silent Spring +3.98,1031,0140448071,good_reads:book,https://www.goodreads.com/author/show/232932.Nikolai_Gogol,1842,/genres/classics|/genres/fiction|/genres/cultural|/genres/russia|/genres/literature|/genres/russian-literature|/genres/literature|/genres/novels|/genres/literature|/genres/19th-century|/genres/historical-fiction|/genres/humor|/genres/literary-fiction,dir15/28381.Dead_Souls.html,30861,Dead Souls +4.12,284,0451526759,good_reads:book,https://www.goodreads.com/author/show/4624490.Edgar_Allan_Poe,1960,/genres/classics|/genres/horror|/genres/fiction|/genres/short-stories|/genres/gothic|/genres/literature|/genres/poetry|/genres/mystery|/genres/fantasy|/genres/literature|/genres/american,dir15/32559.The_Fall_of_the_House_of_Usher_and_Other_Tales.html,49072,The Fall of the House of Usher and Other Tales +4.02,8840,0312364083,good_reads:book,https://www.goodreads.com/author/show/54493.Kristin_Hannah,2008,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/book-club|/genres/romance|/genres/contemporary|/genres/adult-fiction|/genres/adult|/genres/drama|/genres/womens-fiction|/genres/novels,dir15/1472878.Firefly_Lane.html,94970,"Firefly Lane (Firefly Lane, #1)" +4.28,1047,0060278250,good_reads:book,https://www.goodreads.com/author/show/8347.Garth_Nix,2003,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/adventure|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/high-fantasy|/genres/young-adult|/genres/young-adult-fantasy|/genres/fantasy|/genres/epic-fantasy,dir15/334643.Abhorsen.html,64831,"Abhorsen (Abhorsen, #3)" +4.28,1200,0345409469,good_reads:book,https://www.goodreads.com/author/show/10538.Carl_Sagan,1995,/genres/science|/genres/non-fiction|/genres/philosophy|/genres/religion|/genres/philosophy|/genres/skepticism|/genres/religion|/genres/atheism|/genres/history|/genres/science|/genres/physics|/genres/science|/genres/popular-science|/genres/writing|/genres/essays,dir15/17349.The_Demon_Haunted_World.html,28585,The Demon-Haunted World +3.85,933,0553381644,good_reads:book,https://www.goodreads.com/author/show/861.Jean_M_Auel,1985,/genres/historical-fiction|/genres/fiction|/genres/fantasy|/genres/romance|/genres/historical-fiction|/genres/prehistoric|/genres/adventure|/genres/adult|/genres/novels|/genres/adult-fiction|/genres/romance|/genres/historical-romance,dir15/49824.The_Mammoth_Hunters.html,38782,"The Mammoth Hunters (Earth's Children, #3)" +4.29,1841,0061783188,good_reads:book,https://www.goodreads.com/author/show/669810.Jeaniene_Frost,2011,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy|/genres/adult|/genres/paranormal|/genres/ghosts,dir15/6871617-this-side-of-the-grave.html,34510,"This Side of the Grave (Night Huntress, #5)" +3.90,2172,1442402008,good_reads:book,https://www.goodreads.com/author/show/3165706.Kelly_Creagh,2010,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/horror|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/ghosts|/genres/fiction,dir15/7129598-nevermore.html,19925,"Nevermore (Nevermore, #1)" +3.77,4448,1416953574,good_reads:book,https://www.goodreads.com/author/show/767547.Lisa_McMann,2008,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/mystery|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance,dir15/1661957.Wake.html,58747,"Wake (Dream Catcher, #1)" +3.72,2423,0312861877,good_reads:book,https://www.goodreads.com/author/show/589.Orson_Scott_Card,1991,/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/young-adult|/genres/space|/genres/science-fiction|/genres/aliens|/genres/speculative-fiction|/genres/adult|/genres/novels,dir15/8648.Xenocide.html,81112,"Xenocide (The Ender Quintet, #3)" +3.86,1510,0385333870,good_reads:book,https://www.goodreads.com/author/show/2778055.Kurt_Vonnegut,1985,/genres/science-fiction|/genres/literature|/genres/humor|/genres/novels|/genres/fiction|/genres/literature|/genres/american,dir15/9593.Gal_pagos.html,39566,Galápagos +3.46,1716,0140447571,good_reads:book,https://www.goodreads.com/author/show/7084.Karl_Marx,1848,/genres/philosophy|/genres/non-fiction|/genres/politics|/genres/classics|/genres/history|/genres/economics|/genres/sociology|/genres/politics|/genres/political-science|/genres/academic|/genres/school|/genres/european-literature|/genres/german-literature,dir15/30474.The_Communist_Manifesto.html,44797,The Communist Manifesto +4.24,876,0552152676,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,2005,/genres/fantasy|/genres/fiction|/genres/humor|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny|/genres/mystery|/genres/science-fiction|/genres/european-literature|/genres/british-literature|/genres/novels,dir15/62530.Thud_.html,34233,"Thud! (Discworld, #34)" +4.33,1639,0441015832,good_reads:book,https://www.goodreads.com/author/show/21748.Ilona_Andrews,2008,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/magic|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/shapeshifters|/genres/adult|/genres/shapeshifters|/genres/werewolves,dir15/1811543.Magic_Burns.html,32960,"Magic Burns (Kate Daniels, #2)" +3.83,3369,0743272498,good_reads:book,https://www.goodreads.com/author/show/9987.Philippa_Gregory,2005,/genres/historical-fiction|/genres/fiction|/genres/romance|/genres/european-literature|/genres/british-literature|/genres/adult|/genres/romance|/genres/historical-romance|/genres/adult-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/book-club|/genres/cultural|/genres/spain,dir15/16181.The_Constant_Princess.html,90460,"The Constant Princess (The Tudor Court, #1)" +3.86,5403,0312199430,good_reads:book,https://www.goodreads.com/author/show/18854.Jim_Fergus,1998,/genres/historical-fiction|/genres/book-club|/genres/fiction|/genres/adult|/genres/western|/genres/adult-fiction|/genres/adventure|/genres/womens|/genres/novels|/genres/literature|/genres/american,dir15/33512.One_Thousand_White_Women.html,61273,One Thousand White Women +3.80,539,0486275485,good_reads:book,https://www.goodreads.com/author/show/973.Euripides,-431,/genres/classics|/genres/plays|/genres/drama|/genres/fiction|/genres/fantasy|/genres/mythology|/genres/academic|/genres/school|/genres/plays|/genres/theatre|/genres/literature|/genres/tragedy|/genres/academic|/genres/read-for-school,dir15/752900.Medea.html,29858,Medea +4.18,1932,1481200577,good_reads:book,https://www.goodreads.com/author/show/4951964.Shelly_Crane,2011,/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/new-adult|/genres/contemporary|/genres/young-adult|/genres/young-adult-paranormal,dir15/16282066-significance.html,26015,"Significance (Significance, #1)" +4.24,5506,,good_reads:book,https://www.goodreads.com/author/show/699143.J_Lynn,2013,/genres/sociology|/genres/abuse|/genres/womens-fiction|/genres/chick-lit|/genres/adult|/genres/young-adult|/genres/fiction|/genres/realistic-fiction|/genres/love|/genres/humor|/genres/funny|/genres/young-adult|/genres/young-adult-romance|/genres/new-adult,dir15/17314430-wait-for-you.html,69815,"Wait for You (Wait for You, #1)" +4.06,1579,0060725117,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2000,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/paranormal|/genres/ghosts|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/teen|/genres/mystery,dir15/187811.Shadowland.html,39862,"Shadowland (The Mediator, #1)" +4.09,1047,0679744479,good_reads:book,https://www.goodreads.com/author/show/9399.Jeanette_Winterson,1992,/genres/fiction|/genres/glbt|/genres/queer|/genres/glbt|/genres/contemporary|/genres/literature|/genres/novels|/genres/romance|/genres/glbt|/genres/lesbian|/genres/literary-fiction|/genres/european-literature|/genres/british-literature,dir15/15054.Written_on_the_Body.html,14496,Written on the Body +4.04,82,193938365X,good_reads:book,https://www.goodreads.com/author/show/7722020.Simon_W_Clark,2013,/genres/horror|/genres/thriller|/genres/mystery,dir15/20388847-the-book-of-occult.html,119,The Book of Occult +3.77,1408,0439321611,good_reads:book,https://www.goodreads.com/author/show/1077326.J_K_Rowling,2000,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/european-literature|/genres/british-literature|/genres/humor|/genres/childrens|/genres/middle-grade|/genres/short-stories,dir15/111450.Quidditch_Through_the_Ages.html,64078,Quidditch Through the Ages +4.36,1040,0312992424,good_reads:book,https://www.goodreads.com/author/show/4430.Sherrilyn_Kenyon,2004,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/shapeshifters|/genres/adult|/genres/fantasy|/genres/mythology|/genres/fiction,dir15/84151.Night_Play.html,34134,"Night Play (Were-Hunter, #1)" +3.88,5184,0743496744,good_reads:book,https://www.goodreads.com/author/show/7128.Jodi_Picoult,2007,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/drama|/genres/adult-fiction|/genres/book-club|/genres/adult|/genres/realistic-fiction|/genres/novels|/genres/religion,dir15/1609451.Change_of_Heart.html,70348,Change of Heart +3.94,1211,0156027607,good_reads:book,https://www.goodreads.com/author/show/10991.Stanis_aw_Lem,1961,/genres/science-fiction|/genres/science-fiction-fantasy|/genres/literature|/genres/fiction|/genres/novels|/genres/speculative-fiction|/genres/classics|/genres/mystery|/genres/space|/genres/european-literature|/genres/polish-literature,dir15/95558.Solaris.html,29113,Solaris +4.15,826,0861661419,good_reads:book,https://www.goodreads.com/author/show/3961.Alan_Moore,1994,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/horror|/genres/fiction|/genres/historical-fiction|/genres/graphic-novels-comics|/genres/mystery|/genres/crime|/genres/comics|/genres/comic-book|/genres/mystery|/genres/sequential-art|/genres/comix,dir15/23529.From_Hell.html,19779,From Hell +3.99,1710,0061668060,good_reads:book,https://www.goodreads.com/author/show/2096360.Aprilynne_Pike,2009,/genres/fantasy|/genres/young-adult|/genres/paranormal|/genres/fairies|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/fairies|/genres/fae|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/fantasy|/genres/urban-fantasy,dir15/6801582-spells.html,27913,"Spells (Wings, #2)" +3.85,1116,0385339607,good_reads:book,https://www.goodreads.com/author/show/721.John_Grisham,1995,/genres/fiction|/genres/mystery|/genres/thriller|/genres/suspense|/genres/thriller|/genres/legal-thriller|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery-thriller|/genres/law|/genres/adult-fiction|/genres/drama,dir15/5349.The_Rainmaker.html,106078,The Rainmaker +4.08,1600,015626224X,good_reads:book,https://www.goodreads.com/author/show/3706.George_Orwell,1933,/genres/fiction|/genres/classics|/genres/travel|/genres/literature|/genres/cultural|/genres/france|/genres/politics|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/literature|/genres/20th-century|/genres/biography-memoir,dir15/393199.Down_and_Out_in_Paris_and_London.html,25179,Down and Out in Paris and London +4.30,605,0007158505,good_reads:book,https://www.goodreads.com/author/show/61105.Dr_Seuss,1961,/genres/childrens|/genres/childrens|/genres/picture-books|/genres/fiction|/genres/classics|/genres/poetry,dir15/105549.The_Sneetches_and_Other_Stories.html,42075,The Sneetches and Other Stories +4.34,2279,1606410423,good_reads:book,https://www.goodreads.com/author/show/25052.Brandon_Mull,2009,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/dragons|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/science-fiction-fantasy|/genres/young-adult|/genres/young-adult-fantasy,dir15/5217282-secrets-of-the-dragon-sanctuary.html,44651,"Secrets of the Dragon Sanctuary (Fablehaven, #4)" +4.27,1906,1416940901,good_reads:book,https://www.goodreads.com/author/show/2821144.Ellen_Hopkins,2007,/genres/young-adult|/genres/poetry|/genres/fiction|/genres/realistic-fiction|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/romance|/genres/sociology|/genres/abuse|/genres/drama|/genres/young-adult|/genres/high-school,dir15/270804.Glass.html,38879,"Glass (Crank, #2)" +3.85,910,0451187849,good_reads:book,https://www.goodreads.com/author/show/432.Ayn_Rand,1936,/genres/fiction|/genres/classics|/genres/philosophy|/genres/literature|/genres/historical-fiction|/genres/politics|/genres/cultural|/genres/russia|/genres/novels|/genres/science-fiction|/genres/dystopia|/genres/adult,dir15/668.We_the_Living.html,17542,We the Living +3.78,833,0553382616,good_reads:book,https://www.goodreads.com/author/show/861.Jean_M_Auel,2002,/genres/historical-fiction|/genres/fiction|/genres/fantasy|/genres/romance|/genres/historical-fiction|/genres/prehistoric|/genres/adventure|/genres/adult|/genres/adult-fiction|/genres/romance|/genres/historical-romance|/genres/novels,dir15/46544.The_Shelters_of_Stone.html,27301,"The Shelters of Stone (Earth's Children, #5)" +3.95,64,,good_reads:book,https://www.goodreads.com/author/show/6533979.Riley_Banks,2013,/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/fantasy|/genres/supernatural|/genres/horror|/genres/fantasy|/genres/magic|/genres/romance|/genres/gothic,dir15/17673620-vampire-origins---project-ichorous.html,128,Vampire Origins - Project Ichorous (The Strigoi #1) +3.81,2336,0099448475,good_reads:book,https://www.goodreads.com/author/show/3354.Haruki_Murakami,1999,/genres/cultural|/genres/japan|/genres/asian-literature|/genres/japanese-literature|/genres/magical-realism|/genres/contemporary|/genres/romance|/genres/fiction|/genres/literature|/genres/novels|/genres/mystery|/genres/cultural|/genres/asia,dir15/9557.Sputnik_Sweetheart.html,45244,Sputnik Sweetheart +3.76,5515,0060393491,good_reads:book,https://www.goodreads.com/author/show/3505.Wally_Lamb,2007,/genres/fiction|/genres/book-club|/genres/historical-fiction|/genres/contemporary|/genres/adult-fiction|/genres/adult|/genres/drama|/genres/novels|/genres/literary-fiction|/genres/literature,dir15/3086160-the-hour-i-first-believed.html,39889,The Hour I First Believed +3.87,4228,0385732538,good_reads:book,https://www.goodreads.com/author/show/2493.Lois_Lowry,2004,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/fiction|/genres/fantasy|/genres/science-fiction|/genres/childrens,dir15/12930.Messenger.html,50899,"Messenger (The Giver, #3)" +4.20,313,0571139612,good_reads:book,https://www.goodreads.com/author/show/22515.Mario_Vargas_Llosa,1981,/genres/fiction|/genres/historical-fiction|/genres/literature|/genres/novels|/genres/war|/genres/cultural|/genres/latin-american|/genres/cultural|/genres/brazil|/genres/literature|/genres/latin-american-literature|/genres/nobel-prize|/genres/classics,dir15/53925.The_War_of_the_End_of_the_World.html,3754,The War of the End of the World +3.99,1185,0671250671,good_reads:book,https://www.goodreads.com/author/show/3061.M_Scott_Peck,1978,/genres/psychology|/genres/non-fiction|/genres/spirituality|/genres/philosophy|/genres/self-help|/genres/inspirational|/genres/religion,dir15/347852.The_Road_Less_Traveled.html,43693,The Road Less Traveled +4.12,781,0679800034,good_reads:book,https://www.goodreads.com/author/show/61105.Dr_Seuss,1954,/genres/childrens|/genres/childrens|/genres/picture-books|/genres/fiction|/genres/classics|/genres/poetry|/genres/fantasy|/genres/kids|/genres/animals|/genres/humor|/genres/childrens|/genres/juvenile,dir15/7779.Horton_Hears_a_Who_.html,58455,Horton Hears a Who! +4.30,2019,0393316041,good_reads:book,https://www.goodreads.com/author/show/1429989.Richard_P_Feynman,1985,/genres/science|/genres/non-fiction|/genres/biography|/genres/science|/genres/physics|/genres/autobiography|/genres/memoir|/genres/humor|/genres/biography|/genres/autobiography|/genres/history|/genres/biography-memoir|/genres/science|/genres/popular-science,dir15/5544.Surely_You_re_Joking_Mr_Feynman_.html,56631,"Surely You're Joking, Mr. Feynman!" +4.03,21807,1400052173,good_reads:book,https://www.goodreads.com/author/show/2940640.Rebecca_Skloot,2010,/genres/non-fiction|/genres/book-club|/genres/science|/genres/biography|/genres/history|/genres/health|/genres/medicine|/genres/medical,dir15/6493208-the-immortal-life-of-henrietta-lacks.html,223881,The Immortal Life of Henrietta Lacks +3.67,885,0393960420,good_reads:book,https://www.goodreads.com/author/show/8987.Theodore_Dreiser,1900,/genres/classics|/genres/fiction|/genres/literature|/genres/literature|/genres/american|/genres/historical-fiction|/genres/novels,dir15/126609.Sister_Carrie.html,21129,Sister Carrie +4.23,3305,0061974587,good_reads:book,https://www.goodreads.com/author/show/3380908.Pittacus_Lore,2012,/genres/young-adult|/genres/fantasy|/genres/science-fiction|/genres/science-fiction|/genres/aliens|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/paranormal|/genres/action|/genres/romance|/genres/young-adult|/genres/teen,dir15/12971616-the-rise-of-nine.html,41120,"The Rise of Nine (Lorien Legacies, #3)" +3.95,836,0141439963,good_reads:book,https://www.goodreads.com/author/show/239579.Charles_Dickens,1857,/genres/fiction|/genres/classics|/genres/literature|/genres/literature|/genres/19th-century|/genres/historical-fiction|/genres/european-literature|/genres/british-literature,dir15/31250.Little_Dorrit.html,23749,Little Dorrit +4.13,1956,0425212866,good_reads:book,https://www.goodreads.com/author/show/71688.Nalini_Singh,2006,/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/shapeshifters|/genres/adult|/genres/fantasy|/genres/science-fiction|/genres/fiction,dir15/178476.Slave_to_Sensation.html,30254,"Slave to Sensation (Psy-Changeling, #1)" +4.18,5016,0670021458,good_reads:book,https://www.goodreads.com/author/show/6542440.Elif_Shafak,2009,/genres/fiction|/genres/novels|/genres/asian-literature|/genres/turkish-literature|/genres/historical-fiction|/genres/cultural|/genres/turkish|/genres/romance,dir15/6642715-the-forty-rules-of-love.html,29859,The Forty Rules of Love +4.13,3506,0765350378,good_reads:book,https://www.goodreads.com/author/show/38550.Brandon_Sanderson,2005,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/science-fiction|/genres/romance|/genres/adult|/genres/epic,dir15/68427.Elantris.html,48593,"Elantris (Elantris, #1)" +3.90,2907,0142401757,good_reads:book,https://www.goodreads.com/author/show/2987.Sarah_Dessen,2000,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/realistic-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/young-adult|/genres/teen|/genres/sociology|/genres/abuse,dir15/4325.Dreamland.html,50612,Dreamland +4.34,760,9799731232,good_reads:book,https://www.goodreads.com/author/show/101823.Pramoedya_Ananta_Toer,1975,/genres/fiction|/genres/asian-literature|/genres/indonesian-literature|/genres/historical-fiction|/genres/literature|/genres/classics|/genres/cultural|/genres/asia|/genres/romance|/genres/novels|/genres/adult|/genres/roman,dir15/1398034.Bumi_Manusia.html,6537,"Bumi Manusia (Tetralogi Buru, #1)" +3.84,1320,0064400565,good_reads:book,https://www.goodreads.com/author/show/988142.E_B_White,1945,/genres/childrens|/genres/fiction|/genres/classics|/genres/fantasy|/genres/young-adult|/genres/animals|/genres/childrens|/genres/juvenile|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/chapter-books,dir15/138959.Stuart_Little.html,63652,Stuart Little +4.31,374,0140187723,good_reads:book,https://www.goodreads.com/author/show/1240.Jack_London,1909,/genres/classics|/genres/fiction|/genres/literature|/genres/american|/genres/literature|/genres/novels|/genres/literature|/genres/20th-century|/genres/adventure|/genres/historical-fiction|/genres/roman|/genres/adult,dir15/929782.Martin_Eden.html,7638,Martin Eden +3.93,3944,1423116399,good_reads:book,https://www.goodreads.com/author/show/56224.Ally_Carter,2010,/genres/young-adult|/genres/mystery|/genres/contemporary|/genres/romance|/genres/adventure|/genres/fiction|/genres/young-adult|/genres/teen|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/mystery|/genres/crime,dir15/6574102-heist-society.html,58089,"Heist Society (Heist Society, #1)" +4.13,636,0060264802,good_reads:book,https://www.goodreads.com/author/show/5300.Laura_Ingalls_Wilder,1943,/genres/historical-fiction|/genres/classics|/genres/childrens|/genres/fiction|/genres/young-adult|/genres/romance|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/chapter-books|/genres/family|/genres/kids,dir15/77770.These_Happy_Golden_Years.html,33545,These Happy Golden Years (Little House #8) +3.80,1821,,good_reads:book,https://www.goodreads.com/author/show/3408349.Lili_St_Crow,2009,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/urban-fantasy|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/paranormal|/genres/horror|/genres/zombies|/genres/romance|/genres/paranormal|/genres/angels,dir15/6006518-strange-angels.html,28611,"Strange Angels (Strange Angels, #1)" +4.06,1063,0515134503,good_reads:book,https://www.goodreads.com/author/show/9550.Laurell_K_Hamilton,2000,/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/horror|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/shapeshifters|/genres/werewolves,dir15/190361.Obsidian_Butterfly.html,43864,"Obsidian Butterfly (Anita Blake, Vampire Hunter, #9)" +4.02,207,082221900X,good_reads:book,https://www.goodreads.com/author/show/877884.David_Fishelson,2003,/genres/fiction|/genres/classics|/genres/literature|/genres/philosophy|/genres/european-literature|/genres/german-literature|/genres/novels|/genres/european-literature|/genres/czech-literature|/genres/classics|/genres/classic-literature|/genres/literary-fiction|/genres/horror,dir15/17689.Franz_Kafka_s_The_Castle.html,16000,Franz Kafka's The Castle +4.15,11103,1439153663,good_reads:book,https://www.goodreads.com/author/show/3067074.Kathleen_Grissom,2010,/genres/historical-fiction|/genres/book-club|/genres/fiction|/genres/adult-fiction|/genres/adult|/genres/american|/genres/southern|/genres/novels|/genres/drama|/genres/cultural|/genres/african-american|/genres/literary-fiction,dir15/6837103-the-kitchen-house.html,102625,The Kitchen House +4.22,2431,1590388984,good_reads:book,https://www.goodreads.com/author/show/25052.Brandon_Mull,2008,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/magic|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/science-fiction-fantasy|/genres/young-adult|/genres/young-adult-fantasy,dir15/2146957.Grip_of_the_Shadow_Plague.html,52069,"Grip of the Shadow Plague (Fablehaven, #3)" +3.94,592,0765308703,good_reads:book,https://www.goodreads.com/author/show/8726.Richard_Matheson,1977,/genres/fiction|/genres/fantasy|/genres/romance|/genres/horror|/genres/death|/genres/science-fiction|/genres/fantasy|/genres/paranormal|/genres/literature|/genres/american|/genres/contemporary|/genres/spirituality,dir15/33555.What_Dreams_May_Come.html,6323,What Dreams May Come +4.11,788,081257639X,good_reads:book,https://www.goodreads.com/author/show/3441.Terry_Goodkind,2000,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/epic|/genres/romance|/genres/adventure|/genres/adult,dir15/121127.Faith_of_the_Fallen.html,40597,"Faith of the Fallen (Sword of Truth, #6)" +3.87,623,0006178731,good_reads:book,https://www.goodreads.com/author/show/9068.Sidney_Sheldon,1980,/genres/fiction|/genres/thriller|/genres/mystery|/genres/romance|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/crime|/genres/novels|/genres/drama|/genres/contemporary,dir15/43328.Rage_of_Angels.html,21239,Rage of Angels +4.07,2606,0385495226,good_reads:book,https://www.goodreads.com/author/show/9996.Richard_Preston,1993,/genres/non-fiction|/genres/science|/genres/history|/genres/medical|/genres/health|/genres/medicine|/genres/thriller|/genres/horror|/genres/health|/genres/cultural|/genres/africa|/genres/science|/genres/biology,dir15/16213.The_Hot_Zone.html,50358,The Hot Zone +4.01,7121,0525423281,good_reads:book,https://www.goodreads.com/author/show/3095893.Stephanie_Perkins,2011,/genres/realistic-fiction|/genres/fiction|/genres/young-adult|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/high-school|/genres/humor|/genres/funny|/genres/family,dir15/9961796-lola-and-the-boy-next-door.html,64404,"Lola and the Boy Next Door (Anna and the French Kiss, #2)" +3.96,3139,014240165X,good_reads:book,https://www.goodreads.com/author/show/32590.Anthony_Horowitz,2000,/genres/young-adult|/genres/adventure|/genres/mystery|/genres/fiction|/genres/action|/genres/spy-thriller|/genres/espionage|/genres/thriller|/genres/young-adult|/genres/teen|/genres/childrens|/genres/realistic-fiction,dir15/136782.Stormbreaker.html,51285,"Stormbreaker (Alex Rider, #1)" +3.92,389,000726349X,good_reads:book,https://www.goodreads.com/author/show/426944.T_H_White,1938,/genres/fantasy|/genres/classics|/genres/fiction|/genres/young-adult|/genres/mythology|/genres/arthurian|/genres/historical-fiction|/genres/childrens|/genres/fantasy|/genres/mythology|/genres/adventure|/genres/historical-fiction|/genres/medieval,dir15/3866788-sword-in-the-stone.html,12357,Sword in the Stone +4.24,1662,0312593554,good_reads:book,https://www.goodreads.com/author/show/4430.Sherrilyn_Kenyon,2002,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/supernatural|/genres/fiction,dir15/6944032-night-pleasures.html,46444,"Night Pleasures (Dark-Hunter, #1)" +4.29,2927,9770907375,good_reads:book,https://www.goodreads.com/author/show/1446194._,1994,/genres/novels|/genres/historical-fiction,dir15/3438000.html,14789,ثلاثية غرناطة +4.16,1583,006117758X,good_reads:book,https://www.goodreads.com/author/show/13275.Charles_Bukowski,1982,/genres/fiction|/genres/classics|/genres/literature|/genres/novels|/genres/literature|/genres/american|/genres/contemporary|/genres/young-adult|/genres/coming-of-age,dir15/38501.Ham_on_Rye.html,40074,Ham on Rye +4.07,2144,055381706X,good_reads:book,https://www.goodreads.com/author/show/18149.Tess_Gerritsen,2001,/genres/mystery|/genres/mystery|/genres/crime|/genres/thriller|/genres/fiction|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/detective|/genres/adult|/genres/mystery|/genres/murder-mystery|/genres/medical,dir15/32263.The_Surgeon.html,60129,The Surgeon (Rizzoli & Isles #1) +4.63,194,0439249546,good_reads:book,https://www.goodreads.com/author/show/1077326.J_K_Rowling,1999,/genres/fantasy|/genres/fiction|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/childrens|/genres/adventure|/genres/science-fiction-fantasy|/genres/classics|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/witches,dir15/99298.The_Harry_Potter_Collection.html,26005,"The Harry Potter Collection (Harry Potter, #1-4)" +4.02,1155,0064408671,good_reads:book,https://www.goodreads.com/author/show/988142.E_B_White,1970,/genres/childrens|/genres/classics|/genres/fiction|/genres/young-adult|/genres/fantasy|/genres/animals|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/chapter-books|/genres/academic|/genres/school,dir15/24335.The_Trumpet_of_the_Swan.html,38424,The Trumpet of the Swan +4.31,885,0060513098,good_reads:book,https://www.goodreads.com/author/show/435477.Shel_Silverstein,1996,/genres/poetry|/genres/childrens|/genres/humor|/genres/fiction|/genres/classics|/genres/young-adult|/genres/childrens|/genres/picture-books|/genres/childrens|/genres/juvenile|/genres/kids|/genres/humor|/genres/comedy,dir15/30120.Falling_Up.html,84662,Falling Up +4.01,28,1937085732,good_reads:book,https://www.goodreads.com/author/show/3433502.Lindsay_Anne_Kendal,2011,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/horror|/genres/fantasy|/genres/romance|/genres/paranormal|/genres/witches|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/demons,dir15/11733898-torment.html,284,"Torment (Bloodlines, #2)" +4.05,10,,good_reads:book,https://www.goodreads.com/author/show/3433502.Lindsay_Anne_Kendal,2013,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/horror|/genres/fantasy|/genres/romance|/genres/paranormal|/genres/angels|/genres/romance|/genres/paranormal-romance,dir15/11733930-revelations.html,227,"Revelations (Bloodlines, #3)" +3.82,1914,1841954314,good_reads:book,https://www.goodreads.com/author/show/16272.Michel_Faber,2002,/genres/historical-fiction|/genres/fiction|/genres/romance|/genres/european-literature|/genres/british-literature|/genres/adult|/genres/book-club|/genres/novels|/genres/literary-fiction|/genres/literature|/genres/19th-century|/genres/literature,dir15/40200.The_Crimson_Petal_and_the_White.html,21374,The Crimson Petal and the White +3.46,1936,9504915248,good_reads:book,https://www.goodreads.com/author/show/566.Paulo_Coelho,1990,/genres/fiction|/genres/novels|/genres/philosophy|/genres/spirituality|/genres/fantasy|/genres/romance|/genres/inspirational,dir15/68591.Brida.html,37418,Brida +4.23,1368,0743457269,good_reads:book,https://www.goodreads.com/author/show/28574.Jude_Deveraux,1989,/genres/romance|/genres/romance|/genres/historical-romance|/genres/science-fiction|/genres/time-travel|/genres/historical-fiction|/genres/fiction|/genres/fantasy|/genres/historical-fiction|/genres/medieval|/genres/romance|/genres/time-travel-romance|/genres/fantasy|/genres/paranormal|/genres/contemporary,dir15/73385.A_Knight_in_Shining_Armor.html,21960,A Knight in Shining Armor +3.97,2622,,good_reads:book,https://www.goodreads.com/author/show/4872191.Abbi_Glines,2011,/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/ghosts|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/angels|/genres/death,dir15/13223520-existence.html,38616,"Existence (Existence Trilogy, #1)" +3.95,1104,0007157169,good_reads:book,https://www.goodreads.com/author/show/1069006.C_S_Lewis,1944,/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/christian|/genres/classics|/genres/christian-fiction|/genres/science-fiction-fantasy|/genres/religion|/genres/religion|/genres/christianity|/genres/adventure,dir15/100924.Perelandra.html,22507,"Perelandra (Space Trilogy, #2)" +4.23,961,0394757688,good_reads:book,https://www.goodreads.com/author/show/1377.Raymond_Chandler,1953,/genres/mystery|/genres/fiction|/genres/mystery|/genres/crime|/genres/mystery|/genres/noir|/genres/classics|/genres/mystery|/genres/detective|/genres/novels|/genres/mystery|/genres/hard-boiled|/genres/thriller|/genres/thriller|/genres/mystery-thriller,dir15/2054.The_Long_Goodbye.html,16460,The Long Goodbye +3.50,3897,0679734775,good_reads:book,https://www.goodreads.com/author/show/13234.Sandra_Cisneros,1984,/genres/young-adult|/genres/classics|/genres/academic|/genres/school|/genres/short-stories|/genres/literature|/genres/academic|/genres/read-for-school|/genres/realistic-fiction|/genres/poetry|/genres/young-adult|/genres/coming-of-age|/genres/novels,dir15/139253.The_House_on_Mango_Street.html,57592,The House on Mango Street +4.16,4061,,good_reads:book,https://www.goodreads.com/author/show/6576110.Jodi_Ellen_Malpas,2012,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/adult|/genres/erotica|/genres/bdsm|/genres/romance|/genres/erotic-romance|/genres/new-adult|/genres/fiction|/genres/love,dir15/16140036-this-man.html,57946,"This Man (This Man, #1)" +4.33,796,0751503894,good_reads:book,https://www.goodreads.com/author/show/2934.Noah_Gordon,1986,/genres/historical-fiction|/genres/fiction|/genres/historical-fiction|/genres/medieval|/genres/adventure|/genres/novels|/genres/health|/genres/medicine|/genres/medical|/genres/romance|/genres/fantasy|/genres/european-literature|/genres/german-literature,dir15/4692.The_Physician.html,14403,"The Physician (Cole Family Trilogy, #1)" +4.05,1794,0060741872,good_reads:book,https://www.goodreads.com/author/show/21475.Pat_Frank,1959,/genres/fiction|/genres/science-fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/classics|/genres/science-fiction|/genres/apocalyptic|/genres/science-fiction|/genres/dystopia|/genres/adventure|/genres/survival|/genres/literature|/genres/science-fiction-fantasy|/genres/academic|/genres/school,dir15/38169.Alas_Babylon.html,21048,"Alas, Babylon" +4.13,664,0374266514,good_reads:book,https://www.goodreads.com/author/show/1388082.Jostein_Gaarder,1990,/genres/fiction|/genres/philosophy|/genres/fantasy|/genres/novels|/genres/young-adult|/genres/mystery|/genres/contemporary|/genres/european-literature|/genres/scandinavian-literature|/genres/literature|/genres/childrens,dir15/48318.The_Solitaire_Mystery.html,11397,The Solitaire Mystery +4.63,276,0836204387,good_reads:book,https://www.goodreads.com/author/show/13778.Bill_Watterson,1995,/genres/sequential-art|/genres/comics|/genres/humor|/genres/fiction|/genres/sequential-art|/genres/graphic-novels|/genres/comics|/genres/comic-book|/genres/humor|/genres/comedy|/genres/sequential-art|/genres/comic-strips|/genres/graphic-novels-comics|/genres/humor|/genres/funny|/genres/childrens,dir16/24813.The_Calvin_and_Hobbes_Tenth_Anniversary_Book.html,42833,The Calvin and Hobbes Tenth Anniversary Book +4.17,1114,0141186356,good_reads:book,https://www.goodreads.com/author/show/10427.James_Baldwin,1956,/genres/fiction|/genres/classics|/genres/glbt|/genres/glbt|/genres/queer|/genres/glbt|/genres/gay|/genres/literature|/genres/novels|/genres/cultural|/genres/african-american|/genres/literature|/genres/american|/genres/romance,dir16/38462.Giovanni_s_Room.html,15715,Giovanni's Room +4.05,2310,0316905712,good_reads:book,https://www.goodreads.com/author/show/5816.Darren_Shan,2000,/genres/fantasy|/genres/young-adult|/genres/paranormal|/genres/vampires|/genres/horror|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/adventure|/genres/young-adult|/genres/teen,dir16/8962.A_Living_Nightmare.html,31233,"A Living Nightmare (Cirque Du Freak, #1)" +3.76,2456,0812968972,good_reads:book,https://www.goodreads.com/author/show/15830.Sarah_Dunant,2003,/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/italy|/genres/book-club|/genres/art|/genres/romance|/genres/adult-fiction|/genres/adult,dir16/28078.The_Birth_of_Venus.html,61301,The Birth of Venus +4.21,820,0151010269,good_reads:book,https://www.goodreads.com/author/show/3706.George_Orwell,1945,/genres/classics|/genres/fiction|/genres/science-fiction|/genres/literature|/genres/science-fiction|/genres/dystopia|/genres/politics|/genres/fantasy|/genres/novels|/genres/academic|/genres/school|/genres/philosophy,dir16/5472.Animal_Farm_1984.html,66847,Animal Farm / 1984 +4.71,62,,good_reads:book,https://www.goodreads.com/author/show/6521036.J_K_Accinni,2013,/genres/horror|/genres/science-fiction|/genres/aliens|/genres/fantasy|/genres/science-fiction|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/dystopia,dir16/17936909-evil-among-us.html,190,"Evil Among Us (Species Intervention #6609, #5)" +3.79,1872,048627263X,good_reads:book,https://www.goodreads.com/author/show/3093075.Edwin_A_Abbott,1884,/genres/science-fiction|/genres/science|/genres/mathematics|/genres/classics|/genres/literature|/genres/fiction|/genres/novels|/genres/science|/genres/physics,dir16/433567.Flatland.html,25302,Flatland +4.12,2837,0807083690,good_reads:book,https://www.goodreads.com/author/show/29535.Octavia_E_Butler,1979,/genres/fiction|/genres/historical-fiction|/genres/fantasy|/genres/book-club|/genres/cultural|/genres/african-american|/genres/science-fiction|/genres/science-fiction-fantasy|/genres/speculative-fiction|/genres/adult,dir16/60931.Kindred.html,24313,Kindred +4.06,12927,034552554X,good_reads:book,https://www.goodreads.com/author/show/4537214.Vanessa_Diffenbaugh,2011,/genres/fiction|/genres/book-club|/genres/romance|/genres/contemporary|/genres/adult-fiction|/genres/adult|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/young-adult|/genres/novels,dir16/10032672-the-language-of-flowers.html,92089,The Language of Flowers +4.05,1207,0330491237,good_reads:book,https://www.goodreads.com/author/show/4.Douglas_Adams,1984,/genres/science-fiction|/genres/fiction|/genres/humor|/genres/fantasy|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny|/genres/classics|/genres/adventure|/genres/novels,dir16/8698.So_Long_and_Thanks_for_All_the_Fish.html,73279,"So Long, and Thanks for All the Fish (Hitchhiker's Guide, #4)" +4.23,1130,1591826039,good_reads:book,https://www.goodreads.com/author/show/26306.Natsuki_Takaya,1999,/genres/sequential-art|/genres/manga|/genres/fantasy|/genres/sequential-art|/genres/graphic-novels|/genres/romance|/genres/young-adult|/genres/sequential-art|/genres/comics|/genres/media-tie-in|/genres/anime|/genres/fiction|/genres/manga|/genres/shojo,dir16/271199.Fruits_Basket_Volume_01.html,78092,"Fruits Basket, Volume 01" +4.12,1358,0451457765,good_reads:book,https://www.goodreads.com/author/show/60177.Guy_Gavriel_Kay,1990,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/historical-fiction|/genres/cultural|/genres/canada|/genres/fantasy|/genres/magic,dir16/104089.Tigana.html,23174,Tigana +4.31,79046,0439023491,good_reads:book,https://www.goodreads.com/author/show/153394.Suzanne_Collins,2009,/genres/young-adult|/genres/fiction|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/science-fiction|/genres/romance,dir16/6148028-catching-fire.html,1443600,"Catching Fire (The Hunger Games, #2)" +3.51,2110,1416524290,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1999,/genres/horror|/genres/fiction|/genres/thriller|/genres/suspense|/genres/fantasy|/genres/mystery|/genres/sports|/genres/baseball|/genres/adventure|/genres/adult-fiction|/genres/fantasy|/genres/supernatural,dir16/11564.The_Girl_Who_Loved_Tom_Gordon.html,74795,The Girl Who Loved Tom Gordon +3.72,520,0140436227,good_reads:book,https://www.goodreads.com/author/show/17501.Henry_Fielding,1749,/genres/classics|/genres/fiction|/genres/literature|/genres/literature|/genres/18th-century|/genres/historical-fiction|/genres/european-literature|/genres/british-literature|/genres/humor|/genres/novels|/genres/romance,dir16/99329.The_History_of_Tom_Jones_a_Foundling.html,18304,"The History of Tom Jones, a Foundling" +4.56,8,,good_reads:book,https://www.goodreads.com/author/show/394525.Terry_Reid,2013,,dir16/18136407-crashing-down-to-earth.html,75,Crashing Down to Earth +4.08,773,0375761144,good_reads:book,https://www.goodreads.com/author/show/239579.Charles_Dickens,1864,/genres/fiction|/genres/classics|/genres/literature|/genres/literature|/genres/19th-century|/genres/european-literature|/genres/british-literature|/genres/historical-fiction|/genres/novels|/genres/literary-fiction|/genres/love|/genres/romance,dir16/31244.Our_Mutual_Friend.html,13003,Our Mutual Friend +4.01,9350,0670023485,good_reads:book,https://www.goodreads.com/author/show/3849415.Deborah_Harkness,2012,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/historical-fiction|/genres/romance|/genres/paranormal|/genres/vampires|/genres/paranormal|/genres/witches|/genres/science-fiction|/genres/time-travel|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic,dir16/11559200-shadow-of-night.html,68026,"Shadow of Night (All Souls Trilogy, #2)" +3.93,2238,0525478116,good_reads:book,https://www.goodreads.com/author/show/293603.Heather_Brewer,2007,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/young-adult|/genres/teen|/genres/horror|/genres/fantasy|/genres/urban-fantasy|/genres/mystery,dir16/530848.Eighth_Grade_Bites.html,23856,"Eighth Grade Bites (The Chronicles of Vladimir Tod, #1)" +3.93,509,0743297318,good_reads:book,https://www.goodreads.com/author/show/7921.Thomas_Wolfe,1920,/genres/fiction|/genres/classics|/genres/literature|/genres/novels|/genres/american|/genres/southern|/genres/literature|/genres/american|/genres/literary-fiction|/genres/literature|/genres/20th-century|/genres/young-adult|/genres/coming-of-age|/genres/plays,dir16/12448.Look_Homeward_Angel.html,7398,"Look Homeward, Angel" +3.82,2415,0152053107,good_reads:book,https://www.goodreads.com/author/show/36346.Jennifer_Donnelly,2003,/genres/historical-fiction|/genres/young-adult|/genres/mystery|/genres/fiction|/genres/realistic-fiction|/genres/young-adult|/genres/young-adult-historical-fiction,dir16/64481.A_Northern_Light.html,24455,A Northern Light +4.15,1222,0679767800,good_reads:book,https://www.goodreads.com/author/show/10992.Alfred_Bester,1955,/genres/science-fiction|/genres/fiction|/genres/classics|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/cyberpunk|/genres/science-fiction|/genres/space-opera,dir16/333867.The_Stars_My_Destination.html,21028,The Stars My Destination +4.37,2101,0983157227,good_reads:book,https://www.goodreads.com/author/show/4476934.Jennifer_L_Armentrout,2012,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/mythology|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/mythology|/genres/greek-mythology|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/magic,dir16/9761771-pure.html,27932,"Pure (Covenant, #2)" +3.73,953,0141439629,good_reads:book,https://www.goodreads.com/author/show/173.George_Eliot,1860,/genres/classics|/genres/fiction|/genres/literature|/genres/19th-century|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/historical-fiction|/genres/novels|/genres/literature|/genres/english-literature|/genres/classics|/genres/classic-literature|/genres/romance,dir16/20564.The_Mill_on_the_Floss.html,24228,The Mill on the Floss +4.76,20,,good_reads:book,https://www.goodreads.com/author/show/7381751.Karen_Brueggeman,2013,/genres/fantasy|/genres/childrens|/genres/picture-books|/genres/childrens|/genres/education|/genres/fantasy|/genres/magic|/genres/family|/genres/adventure,dir16/18930938-fruzzle-s-mystery-talent.html,54,Fruzzle's Mystery Talent +3.90,10514,,good_reads:book,https://www.goodreads.com/author/show/173491.E_Lockhart,2014,/genres/young-adult|/genres/contemporary|/genres/mystery|/genres/fiction|/genres/romance|/genres/realistic-fiction,dir16/16143347-we-were-liars.html,54977,We Were Liars +3.79,1680,0440234743,good_reads:book,https://www.goodreads.com/author/show/721.John_Grisham,1999,/genres/fiction|/genres/novels|/genres/mystery|/genres/drama|/genres/adventure|/genres/thriller,dir16/5348.The_Testament.html,69454,The Testament +3.78,2262,0375913750,good_reads:book,https://www.goodreads.com/author/show/12696.Jerry_Spinelli,2007,/genres/young-adult|/genres/fiction|/genres/realistic-fiction|/genres/romance|/genres/young-adult|/genres/teen|/genres/contemporary|/genres/childrens|/genres/young-adult|/genres/coming-of-age|/genres/childrens|/genres/middle-grade|/genres/womens-fiction|/genres/chick-lit,dir16/846984.Love_Stargirl.html,23891,"Love, Stargirl (Stargirl, #2)" +3.94,371,0811202151,good_reads:book,https://www.goodreads.com/author/show/65685.Nathanael_West,1939,/genres/fiction|/genres/classics|/genres/literature|/genres/novels|/genres/short-stories|/genres/literature|/genres/american|/genres/literature|/genres/20th-century|/genres/literary-fiction|/genres/book-club|/genres/academic|/genres/college,dir16/294459.Miss_Lonelyhearts_The_Day_of_the_Locust.html,6107,Miss Lonelyhearts/The Day of the Locust +3.81,2104,042519485X,good_reads:book,https://www.goodreads.com/author/show/1429808.MaryJanice_Davidson,2004,/genres/paranormal|/genres/vampires|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/womens-fiction|/genres/chick-lit|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/humor|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural,dir16/421129.Undead_and_Unwed.html,38586,"Undead and Unwed (Undead, #1)" +4.21,642,0553381350,good_reads:book,https://www.goodreads.com/author/show/3083854.Tom_Wolfe,1979,/genres/non-fiction|/genres/history|/genres/science|/genres/space|/genres/biography|/genres/adventure|/genres/writing|/genres/journalism|/genres/history|/genres/american-history|/genres/classics|/genres/science|/genres/technology,dir16/586472.The_Right_Stuff.html,24185,The Right Stuff +4.16,3184,0061474096,good_reads:book,https://www.goodreads.com/author/show/545.Neal_Stephenson,2008,/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/philosophy|/genres/speculative-fiction|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/cyberpunk|/genres/science|/genres/mathematics|/genres/novels|/genres/literature,dir16/2845024-anathem.html,32399,Anathem +3.97,1576,0743477154,good_reads:book,https://www.goodreads.com/author/show/1025097.Patricia_Cornwell,1990,/genres/mystery|/genres/mystery|/genres/crime|/genres/fiction|/genres/thriller|/genres/thriller|/genres/mystery-thriller|/genres/suspense|/genres/mystery|/genres/murder-mystery|/genres/mystery|/genres/detective|/genres/adult|/genres/adult-fiction,dir16/6534.Postmortem.html,118068,"Postmortem (Kay Scarpetta, #1)" +4.28,794,0061043494,good_reads:book,https://www.goodreads.com/author/show/8734.Dorothy_L_Sayers,1935,/genres/mystery|/genres/fiction|/genres/mystery|/genres/crime|/genres/romance|/genres/classics|/genres/european-literature|/genres/british-literature|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/detective|/genres/historical-fiction|/genres/literature|/genres/20th-century,dir16/93575.Gaudy_Night.html,10193,"Gaudy Night (Lord Peter Wimsey Mysteries, #12)" +4.30,997,1416903437,good_reads:book,https://www.goodreads.com/author/show/8596.Tamora_Pierce,1992,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/fiction|/genres/young-adult|/genres/young-adult-fantasy|/genres/adventure|/genres/young-adult|/genres/teen|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/childrens,dir16/13836.Wild_Magic.html,39239,"Wild Magic (Immortals, #1)" +4.43,53,1490303340,good_reads:book,https://www.goodreads.com/author/show/7150857.Angel_Sefer,2013,/genres/mystery|/genres/romance|/genres/romance|/genres/romantic-suspense|/genres/thriller|/genres/mystery-thriller|/genres/suspense|/genres/romance|/genres/contemporary-romance|/genres/adventure|/genres/thriller|/genres/novels|/genres/action,dir16/18132276-spellbound-in-his-arms.html,205,"Spellbound in His Arms (The Greek Isles Series, #1)" +3.79,652,009947137X,good_reads:book,https://www.goodreads.com/author/show/7577.Anne_Rice,1989,/genres/horror|/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/historical-fiction|/genres/romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/urban-fantasy|/genres/science-fiction-fantasy,dir16/43782.The_Mummy.html,31603,The Mummy +4.22,1324,0786818611,good_reads:book,https://www.goodreads.com/author/show/33467.Jonathan_Stroud,2005,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/magic|/genres/adventure|/genres/young-adult|/genres/young-adult-fantasy|/genres/childrens|/genres/science-fiction-fantasy|/genres/young-adult|/genres/teen|/genres/paranormal|/genres/demons,dir16/59264.Ptolemy_s_Gate.html,47717,"Ptolemy's Gate (Bartimaeus, #3)" +4.24,339,0553241605,good_reads:book,https://www.goodreads.com/author/show/19708.Leon_Uris,1961,/genres/historical-fiction|/genres/fiction|/genres/world-war-ii|/genres/holocaust|/genres/history|/genres/world-war-ii|/genres/war|/genres/literature|/genres/jewish|/genres/literature|/genres/classics|/genres/cultural|/genres/poland|/genres/novels,dir16/42692.Mila_18.html,13775,Mila 18 +3.64,4420,0340893605,good_reads:book,https://www.goodreads.com/author/show/190887.Catherine_Fisher,2007,/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/science-fiction|/genres/steampunk|/genres/fiction|/genres/adventure|/genres/young-adult|/genres/teen|/genres/mystery|/genres/young-adult|/genres/young-adult-fantasy,dir16/332775.Incarceron.html,40074,"Incarceron (Incarceron, #1)" +4.58,235,0307290468,good_reads:book,https://www.goodreads.com/author/show/24846.Shelby_Foote,1963,/genres/history|/genres/military-history|/genres/civil-war|/genres/non-fiction|/genres/history|/genres/american-history|/genres/military|/genres/military-history|/genres/american-history|/genres/american-civil-war|/genres/war|/genres/war|/genres/military|/genres/literature|/genres/american|/genres/politics,dir16/44234.The_Civil_War.html,4086,The Civil War +3.63,737,0451528719,good_reads:book,https://www.goodreads.com/author/show/159.Henry_James,1880,/genres/classics|/genres/fiction|/genres/literature|/genres/literature|/genres/american|/genres/literature|/genres/19th-century|/genres/historical-fiction|/genres/romance|/genres/novels|/genres/new-york|/genres/literary-fiction,dir16/133954.Washington_Square.html,10074,Washington Square +4.01,1505,0446678457,good_reads:book,https://www.goodreads.com/author/show/3499.Lalita_Tademy,2001,/genres/historical-fiction|/genres/fiction|/genres/book-club|/genres/cultural|/genres/african-american|/genres/american|/genres/southern|/genres/adult|/genres/adult-fiction|/genres/novels|/genres/literature|/genres/family,dir16/5167.Cane_River.html,29250,Cane River +4.14,2110,0553575384,good_reads:book,https://www.goodreads.com/author/show/14032.Connie_Willis,1998,/genres/science-fiction|/genres/science-fiction|/genres/time-travel|/genres/fiction|/genres/fantasy|/genres/historical-fiction|/genres/humor|/genres/science-fiction-fantasy|/genres/mystery|/genres/book-club,dir16/77773.To_Say_Nothing_of_the_Dog.html,17271,"To Say Nothing of the Dog (Oxford Time Travel, #2)" +4.00,692,014044923X,good_reads:book,https://www.goodreads.com/author/show/1938.Friedrich_Nietzsche,1886,/genres/non-fiction|/genres/classics|/genres/european-literature|/genres/german-literature|/genres/philosophy|/genres/religion|/genres/philosophy|/genres/theory|/genres/history|/genres/literature|/genres/19th-century,dir16/12321.Beyond_Good_and_Evil.html,28136,Beyond Good and Evil +4.04,2693,0670072818,good_reads:book,https://www.goodreads.com/author/show/47104.Melina_Marchetta,2008,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/adventure|/genres/fiction|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/young-adult-fantasy|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/epic-fantasy,dir16/4932435-finnikin-of-the-rock.html,19013,"Finnikin of the Rock (Lumatere Chronicles, #1)" +3.82,2106,067102423X,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1999,/genres/horror|/genres/fiction|/genres/thriller|/genres/mystery|/genres/fantasy|/genres/suspense|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/ghosts,dir16/10589.Bag_of_Bones.html,95507,Bag of Bones +4.10,1880,,good_reads:book,https://www.goodreads.com/author/show/5014564.Quinn_Loftis,2011,/genres/shapeshifters|/genres/werewolves|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/shapeshifters|/genres/fantasy|/genres/supernatural|/genres/animals|/genres/wolves|/genres/fantasy|/genres/urban-fantasy,dir16/11947156-prince-of-wolves.html,20900,"Prince of Wolves (The Grey Wolves, #1)" +4.26,1634,0399244557,good_reads:book,https://www.goodreads.com/author/show/34049.John_Flanagan,2005,/genres/fantasy|/genres/young-adult|/genres/adventure|/genres/fiction|/genres/young-adult|/genres/teen|/genres/childrens|/genres/action|/genres/historical-fiction|/genres/medieval|/genres/young-adult|/genres/young-adult-fantasy|/genres/childrens|/genres/middle-grade,dir16/144349.The_Burning_Bridge.html,50576,"The Burning Bridge (Ranger's Apprentice, #2)" +3.74,771,0553381652,good_reads:book,https://www.goodreads.com/author/show/861.Jean_M_Auel,1990,/genres/historical-fiction|/genres/fiction|/genres/fantasy|/genres/romance|/genres/historical-fiction|/genres/prehistoric|/genres/adventure|/genres/adult|/genres/adult-fiction|/genres/novels|/genres/epic,dir16/74389.The_Plains_of_Passage.html,32232,"The Plains of Passage (Earth's Children, #4)" +4.35,558,0525444440,good_reads:book,https://www.goodreads.com/author/show/81466.A_A_Milne,1928,/genres/childrens|/genres/fiction|/genres/classics|/genres/fantasy|/genres/animals,dir16/776407.The_House_at_Pooh_Corner.html,55766,The House at Pooh Corner +4.73,5294,0545044251,good_reads:book,https://www.goodreads.com/author/show/1077326.J_K_Rowling,1998,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/adventure|/genres/classics|/genres/science-fiction-fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/witches|/genres/novels,dir16/862041.Harry_Potter_Boxset.html,141954,"Harry Potter Boxset (Harry Potter, #1-7)" +4.15,546,0099416425,good_reads:book,https://www.goodreads.com/author/show/12833.Irving_Stone,1934,/genres/historical-fiction|/genres/fiction|/genres/art|/genres/biography-memoir|/genres/cultural|/genres/france|/genres/art|/genres/art-history|/genres/novels|/genres/literature|/genres/book-club|/genres/classics,dir16/79834.Lust_for_Life.html,10318,Lust for Life +4.03,863,0345455681,good_reads:book,https://www.goodreads.com/author/show/16204.Edward_Rutherfurd,1997,/genres/historical-fiction|/genres/fiction|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/epic|/genres/adult|/genres/literature|/genres/travel|/genres/adult-fiction|/genres/contemporary,dir16/92160.London.html,14333,London +3.99,3668,0316123528,good_reads:book,https://www.goodreads.com/author/show/2895706.Kami_Garcia,2011,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/witches|/genres/fiction|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy,dir16/10757833-beautiful-chaos.html,60491,"Beautiful Chaos (Caster Chronicles, #3)" +3.67,892,0345419634,good_reads:book,https://www.goodreads.com/author/show/7577.Anne_Rice,1992,/genres/horror|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/gothic|/genres/adult,dir16/31336.The_Tale_of_the_Body_Thief.html,58530,"The Tale of the Body Thief (The Vampire Chronicles, #4)" +3.46,1410,0321107217,good_reads:book,https://www.goodreads.com/author/show/239579.Charles_Dickens,1854,/genres/fiction|/genres/classics|/genres/literature|/genres/literature|/genres/19th-century|/genres/european-literature|/genres/british-literature|/genres/historical-fiction|/genres/academic|/genres/school|/genres/classics|/genres/classic-literature|/genres/academic|/genres/read-for-school|/genres/academic|/genres/college,dir16/5344.Hard_Times.html,28762,Hard Times +4.21,1038,1416530711,good_reads:book,https://www.goodreads.com/author/show/9885.Judith_McNaught,1985,/genres/romance|/genres/historical-romance|/genres/romance|/genres/historical-fiction|/genres/regency|/genres/fiction|/genres/adult|/genres/historical-romance|/genres/regency-romance|/genres/womens-fiction|/genres/chick-lit|/genres/european-literature|/genres/british-literature|/genres/love,dir16/350684.Whitney_My_Love.html,17348,"Whitney, My Love (Westmoreland Saga, #2)" +3.90,1678,0141318309,good_reads:book,https://www.goodreads.com/author/show/4273.Roald_Dahl,1980,/genres/childrens|/genres/fiction|/genres/fantasy|/genres/classics|/genres/young-adult|/genres/humor|/genres/childrens|/genres/middle-grade|/genres/humor|/genres/funny|/genres/european-literature|/genres/british-literature|/genres/childrens|/genres/juvenile,dir16/31456.The_Twits.html,61237,The Twits +4.16,1705,0061583227,good_reads:book,https://www.goodreads.com/author/show/669810.Jeaniene_Frost,2010,/genres/paranormal|/genres/vampires|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/adult|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/supernatural|/genres/fiction,dir16/6547187-first-drop-of-crimson.html,34744,"First Drop of Crimson (Night Huntress World, #1)" +4.07,1200,0786836547,good_reads:book,https://www.goodreads.com/author/show/33467.Jonathan_Stroud,2004,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/magic|/genres/adventure|/genres/childrens|/genres/young-adult|/genres/young-adult-fantasy|/genres/science-fiction-fantasy|/genres/paranormal|/genres/demons|/genres/young-adult|/genres/teen,dir16/59263.The_Golem_s_Eye.html,58438,"The Golem's Eye (Bartimaeus, #2)" +4.84,15,,good_reads:book,https://www.goodreads.com/author/show/7043626.Ian_Hutson,2013,/genres/science-fiction|/genres/short-stories|/genres/humor|/genres/european-literature|/genres/british-literature|/genres/humor|/genres/funny|/genres/humor|/genres/comedy,dir16/18713658-nglnd-xpx.html,105,NGLND XPX +4.42,2534,1606412388,good_reads:book,https://www.goodreads.com/author/show/25052.Brandon_Mull,2010,/genres/fiction|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/young-adult|/genres/young-adult-fantasy|/genres/fantasy|/genres/dragons|/genres/childrens|/genres/juvenile,dir16/7243142-keys-to-the-demon-prison.html,41209,"Keys to the Demon Prison (Fablehaven, #5)" +4.05,283,0375708731,good_reads:book,https://www.goodreads.com/author/show/5657.Gore_Vidal,1973,/genres/historical-fiction|/genres/fiction|/genres/politics|/genres/literature|/genres/american|/genres/history|/genres/american-history|/genres/novels|/genres/literature|/genres/classics|/genres/literary-fiction|/genres/book-club,dir16/8722.Burr.html,4422,Burr +3.83,2879,0515138819,good_reads:book,https://www.goodreads.com/author/show/5339.Robin_McKinley,2003,/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/horror|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/adult,dir16/8088.Sunshine.html,23397,Sunshine +3.83,462,0099446723,good_reads:book,https://www.goodreads.com/author/show/7577.Anne_Rice,2002,/genres/paranormal|/genres/vampires|/genres/horror|/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/urban-fantasy|/genres/occult|/genres/family,dir16/31337.Blackwood_Farm.html,21742,"Blackwood Farm (The Vampire Chronicles, #9)" +4.29,1742,0316548189,good_reads:book,https://www.goodreads.com/author/show/367338.Nelson_Mandela,1990,/genres/biography|/genres/non-fiction|/genres/history|/genres/cultural|/genres/africa|/genres/biography|/genres/autobiography|/genres/politics|/genres/autobiography|/genres/memoir|/genres/biography-memoir|/genres/book-club|/genres/leadership,dir16/318431.Long_Walk_to_Freedom.html,33204,Long Walk to Freedom +3.95,1110,080411109X,good_reads:book,https://www.goodreads.com/author/show/5246.Amy_Tan,1995,/genres/fiction|/genres/historical-fiction|/genres/cultural|/genres/china|/genres/cultural|/genres/asia|/genres/contemporary|/genres/literature|/genres/asian-literature|/genres/novels|/genres/literature|/genres/adult-fiction|/genres/adult,dir16/690866.The_Hundred_Secret_Senses.html,26231,The Hundred Secret Senses +3.97,2773,1416954171,good_reads:book,https://www.goodreads.com/author/show/14617.Margaret_Peterson_Haddix,2008,/genres/science-fiction|/genres/young-adult|/genres/mystery|/genres/fantasy|/genres/science-fiction|/genres/time-travel|/genres/fiction|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/historical-fiction,dir16/1675216.Found.html,24613,"Found (The Missing, #1)" +4.03,2441,0316113662,good_reads:book,https://www.goodreads.com/author/show/543080.Pseudonymous_Bosch,2007,/genres/mystery|/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/adventure|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/humor|/genres/childrens|/genres/juvenile|/genres/fantasy|/genres/magic,dir16/1099301.The_Name_of_This_Book_Is_Secret.html,27983,"The Name of This Book Is Secret (Secret, #1)" +4.08,1404,,good_reads:book,https://www.goodreads.com/author/show/106.Madeleine_L_Engle,1973,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/science-fiction|/genres/childrens|/genres/classics|/genres/science-fiction-fantasy,dir16/18130.A_Wind_in_the_Door.html,75684,"A Wind in the Door (Time, #2)" +4.12,789,,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,2003,/genres/fantasy|/genres/humor|/genres/fiction|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/war|/genres/humor|/genres/funny|/genres/feminism|/genres/science-fiction|/genres/adventure,dir16/34511.Monstrous_Regiment.html,34293,"Monstrous Regiment (Discworld, #31)" +4.24,1610,0061783196,good_reads:book,https://www.goodreads.com/author/show/669810.Jeaniene_Frost,2011,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy|/genres/adult|/genres/paranormal|/genres/ghosts,dir16/7954556-one-grave-at-a-time.html,26280,One Grave at a Time (Night Huntress #6) +3.95,716,1842431293,good_reads:book,https://www.goodreads.com/author/show/197.Tom_Robbins,1971,/genres/fiction|/genres/humor|/genres/literature|/genres/novels|/genres/contemporary|/genres/philosophy|/genres/literature|/genres/american|/genres/humor|/genres/comedy|/genres/religion|/genres/book-club,dir16/9570.Another_Roadside_Attraction.html,22277,Another Roadside Attraction +4.20,922,1847386823,good_reads:book,https://www.goodreads.com/author/show/50873.L_J_Smith,1991,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/vampires|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy,dir16/6780439-dark-visions.html,27206,"Dark Visions (Dark Visions, #1-3)" +3.96,17082,1451681739,good_reads:book,https://www.goodreads.com/author/show/5755257.M_L_Stedman,2012,/genres/book-club|/genres/fiction|/genres/historical-fiction|/genres/cultural|/genres/australia|/genres/adult-fiction|/genres/adult|/genres/romance|/genres/contemporary|/genres/literary-fiction|/genres/drama,dir16/13158800-the-light-between-oceans.html,120461,The Light Between Oceans +3.98,8317,0743296435,good_reads:book,https://www.goodreads.com/author/show/7128.Jodi_Picoult,2010,/genres/fiction|/genres/book-club|/genres/mystery|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/adult-fiction|/genres/adult|/genres/drama|/genres/realistic-fiction|/genres/family,dir16/6614960-house-rules.html,87070,House Rules +4.11,866,0425209067,good_reads:book,https://www.goodreads.com/author/show/9550.Laurell_K_Hamilton,1997,/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/horror|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/shapeshifters|/genres/werewolves,dir16/30244.The_Killing_Dance.html,47337,"The Killing Dance (Anita Blake, Vampire Hunter, #6)" +3.73,3258,033041836X,good_reads:book,https://www.goodreads.com/author/show/316.Alice_Sebold,1999,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/biography|/genres/biography-memoir|/genres/adult|/genres/biography|/genres/autobiography|/genres/mystery|/genres/crime,dir16/82970.Lucky.html,65291,Lucky +4.04,1232,1573223328,good_reads:book,https://www.goodreads.com/author/show/43784.Lian_Hearn,2002,/genres/fantasy|/genres/fiction|/genres/historical-fiction|/genres/cultural|/genres/japan|/genres/young-adult|/genres/romance|/genres/adventure|/genres/cultural|/genres/asia|/genres/literature|/genres/asian-literature|/genres/asian-literature|/genres/japanese-literature,dir16/77160.Across_the_Nightingale_Floor.html,19808,"Across the Nightingale Floor (Tales of the Otori, #1)" +4.21,518,0571169341,good_reads:book,https://www.goodreads.com/author/show/293.Tom_Stoppard,1993,/genres/plays|/genres/drama|/genres/fiction|/genres/plays|/genres/theatre|/genres/historical-fiction|/genres/classics|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/academic|/genres/school|/genres/academic|/genres/college,dir16/384597.Arcadia.html,11460,Arcadia +3.95,3260,0060824972,good_reads:book,https://www.goodreads.com/author/show/22542.Megan_Whalen_Turner,1996,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/adventure|/genres/historical-fiction|/genres/young-adult|/genres/young-adult-fantasy|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/high-fantasy,dir16/448873.The_Thief.html,24181,"The Thief (The Queen's Thief, #1)" +3.83,1490,0684856476,good_reads:book,https://www.goodreads.com/author/show/5237.Hunter_S_Thompson,1998,/genres/fiction|/genres/classics|/genres/novels|/genres/literature|/genres/literature|/genres/american|/genres/contemporary|/genres/writing|/genres/journalism|/genres/adventure,dir16/18864.The_Rum_Diary.html,32306,The Rum Diary +3.72,183,1416590641,good_reads:book,https://www.goodreads.com/author/show/364872.Juan_Gomez_Jurado,2007,/genres/thriller|/genres/fiction|/genres/mystery|/genres/suspense|/genres/adventure|/genres/religion|/genres/historical-fiction|/genres/thriller|/genres/mystery-thriller|/genres/contemporary|/genres/book-club,dir16/6715394-the-moses-expedition.html,1266,The Moses Expedition +4.09,1126,0394574753,good_reads:book,https://www.goodreads.com/author/show/4178.Cormac_McCarthy,1994,/genres/fiction|/genres/western|/genres/literature|/genres/novels|/genres/contemporary|/genres/literature|/genres/american|/genres/historical-fiction|/genres/literary-fiction|/genres/classics|/genres/modern,dir16/365990.The_Crossing.html,16834,"The Crossing (The Border Trilogy, #2)" +3.92,1181,1420100963,good_reads:book,https://www.goodreads.com/author/show/137902.Richelle_Mead,2008,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/fairies|/genres/fae|/genres/adult|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/fairies|/genres/fiction|/genres/paranormal|/genres/demons,dir16/2754510-storm-born.html,20627,Storm Born (Dark Swan #1) +3.56,2001,0060832819,good_reads:book,https://www.goodreads.com/author/show/566.Paulo_Coelho,2005,/genres/fiction|/genres/novels|/genres/philosophy|/genres/spirituality|/genres/contemporary|/genres/inspirational|/genres/literature|/genres/romance|/genres/adult|/genres/book-club,dir16/1427.The_Zahir.html,39934,The Zahir +3.83,3240,0060734086,good_reads:book,https://www.goodreads.com/author/show/13677.Gail_Carson_Levine,2006,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/fairy-tales|/genres/romance|/genres/fiction|/genres/fantasy|/genres/magic|/genres/childrens|/genres/retellings|/genres/young-adult|/genres/teen|/genres/childrens|/genres/middle-grade,dir16/183660.Fairest.html,38980,Fairest +4.30,86,,good_reads:book,https://www.goodreads.com/author/show/7374777.James_Chalk,2013,/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/pulp|/genres/science-fiction|/genres/cyberpunk|/genres/science-fiction|/genres/space-opera|/genres/mystery|/genres/adult-fiction|/genres/erotica|/genres/adventure,dir16/18754855-the-meat-market.html,213,The Meat Market (Jonathan Harkon Adventures #1) +4.25,1247,0060572973,good_reads:book,https://www.goodreads.com/author/show/17054.Kim_Harrison,2005,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/paranormal|/genres/witches|/genres/fiction|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/supernatural|/genres/romance,dir16/30262.The_Good_the_Bad_and_the_Undead.html,39140,"The Good, the Bad, and the Undead (The Hollows, #2)" +3.92,1317,0061177598,good_reads:book,https://www.goodreads.com/author/show/13275.Charles_Bukowski,1978,/genres/fiction|/genres/novels|/genres/literature|/genres/classics|/genres/literature|/genres/american|/genres/poetry|/genres/humor|/genres/contemporary|/genres/literature|/genres/20th-century|/genres/classics|/genres/modern-classics,dir16/38500.Women.html,28621,Women +3.65,535,8466302948,good_reads:book,https://www.goodreads.com/author/show/7577.Anne_Rice,1998,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/horror|/genres/fantasy|/genres/urban-fantasy|/genres/historical-fiction|/genres/gothic|/genres/adult|/genres/romance,dir16/31343.Pandora.html,27403,"Pandora (New Tales of the Vampires, #1)" +3.95,3258,0786891084,good_reads:book,https://www.goodreads.com/author/show/7116.Cecelia_Ahern,2004,/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/adult|/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary,dir16/147865.Love_Rosie.html,32525,"Love, Rosie" +4.07,1607,0345484266,good_reads:book,https://www.goodreads.com/author/show/26.Anne_McCaffrey,1968,/genres/fantasy|/genres/science-fiction|/genres/fantasy|/genres/dragons|/genres/fiction|/genres/science-fiction-fantasy|/genres/young-adult|/genres/fantasy|/genres/high-fantasy|/genres/romance|/genres/adult|/genres/fantasy|/genres/epic-fantasy,dir16/61975.Dragonflight.html,68498,"Dragonflight (Pern, #1)" +4.11,1549,000712774X,good_reads:book,https://www.goodreads.com/author/show/1630.Ray_Bradbury,1951,/genres/science-fiction|/genres/fiction|/genres/short-stories|/genres/fantasy|/genres/classics|/genres/science-fiction-fantasy|/genres/horror|/genres/literature|/genres/american|/genres/literature|/genres/speculative-fiction,dir16/24830.The_Illustrated_Man.html,37228,The Illustrated Man +4.76,3361,0765326361,good_reads:book,https://www.goodreads.com/author/show/38550.Brandon_Sanderson,2014,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fiction|/genres/fantasy|/genres/high-fantasy|/genres/epic|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/adventure|/genres/adult|/genres/science-fiction,dir16/17332218-words-of-radiance.html,32304,"Words of Radiance (The Stormlight Archive, #2)" +4.09,1141,0312857063,good_reads:book,https://www.goodreads.com/author/show/3441.Terry_Goodkind,1995,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/adventure|/genres/romance|/genres/epic|/genres/adult,dir16/234184.Stone_of_Tears.html,65929,"Stone of Tears (Sword of Truth, #2)" +3.57,1928,0679781498,good_reads:book,https://www.goodreads.com/author/show/2751.Bret_Easton_Ellis,1985,/genres/fiction|/genres/contemporary|/genres/novels|/genres/literature|/genres/american|/genres/literature|/genres/modern|/genres/literary-fiction|/genres/adult-fiction|/genres/literature|/genres/20th-century|/genres/psychology,dir16/9915.Less_Than_Zero.html,36057,Less Than Zero +4.29,1141,0316033669,good_reads:book,https://www.goodreads.com/author/show/1370283.Brent_Weeks,2008,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/adventure|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/dark-fantasy|/genres/epic|/genres/action,dir16/3754026-beyond-the-shadows.html,41567,"Beyond the Shadows (Night Angel, #3)" +3.80,718,0060955228,good_reads:book,https://www.goodreads.com/author/show/17439.Malcolm_Lowry,1947,/genres/fiction|/genres/classics|/genres/literature|/genres/novels|/genres/historical-fiction|/genres/european-literature|/genres/british-literature|/genres/literary-fiction|/genres/literature|/genres/20th-century|/genres/book-club|/genres/literature|/genres/english-literature,dir16/31072.Under_the_Volcano.html,12812,Under the Volcano +4.25,901,006440174X,good_reads:book,https://www.goodreads.com/author/show/93351.Michelle_Magorian,1981,/genres/historical-fiction|/genres/classics|/genres/young-adult|/genres/childrens|/genres/war|/genres/academic|/genres/school|/genres/history|/genres/world-war-ii|/genres/academic|/genres/read-for-school|/genres/novels|/genres/european-literature|/genres/british-literature,dir17/161099.Good_Night_Mr_Tom.html,19979,"Good Night, Mr. Tom" +4.19,717,0060827882,good_reads:book,https://www.goodreads.com/author/show/19708.Leon_Uris,1976,/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/ireland|/genres/european-literature|/genres/irish-literature|/genres/classics|/genres/literature|/genres/novels|/genres/book-club|/genres/war|/genres/adult-fiction,dir17/42696.Trinity.html,12279,Trinity +3.96,2314,0778325342,good_reads:book,https://www.goodreads.com/author/show/445303.Maria_V_Snyder,2008,/genres/fantasy|/genres/fantasy|/genres/magic|/genres/romance|/genres/young-adult|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/high-fantasy|/genres/adult|/genres/science-fiction-fantasy,dir17/1966969.Fire_Study.html,29335,Fire Study (Study #3) +4.45,4894,,good_reads:book,https://www.goodreads.com/author/show/4372391.S_C_Stephens,2013,/genres/romance|/genres/new-adult|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/adult|/genres/music|/genres/adult-fiction|/genres/erotica|/genres/womens-fiction|/genres/chick-lit|/genres/love|/genres/young-adult,dir17/13600318-reckless.html,51301,"Reckless (Thoughtless, #3)" +4.26,616,0679777431,good_reads:book,https://www.goodreads.com/author/show/8361.Dorothy_Dunnett,1961,/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/scotland|/genres/adventure|/genres/romance|/genres/fantasy|/genres/literature|/genres/16th-century|/genres/romance|/genres/historical-romance|/genres/classics|/genres/novels,dir17/112077.The_Game_of_Kings.html,4023,"The Game of Kings (The Lymond Chronicles, #1)" +4.26,583,0375828788,good_reads:book,https://www.goodreads.com/author/show/8596.Tamora_Pierce,2004,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/young-adult|/genres/young-adult-fantasy|/genres/fantasy|/genres/magic|/genres/romance|/genres/young-adult|/genres/teen|/genres/adventure|/genres/science-fiction-fantasy,dir17/153780.Trickster_s_Queen.html,36003,"Trickster's Queen (Daughter of the Lioness, #2)" +3.90,6987,1400063736,good_reads:book,https://www.goodreads.com/author/show/14080.Colum_McCann,2009,/genres/fiction|/genres/book-club|/genres/historical-fiction|/genres/new-york|/genres/novels|/genres/contemporary|/genres/literature|/genres/adult-fiction|/genres/literary-fiction|/genres/adult,dir17/5941033-let-the-great-world-spin.html,59374,Let the Great World Spin +3.58,8059,0525423664,good_reads:book,https://www.goodreads.com/author/show/1304470.Ally_Condie,2012,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/romance|/genres/fiction|/genres/science-fiction|/genres/fantasy|/genres/young-adult|/genres/teen|/genres/adventure|/genres/apocalyptic|/genres/post-apocalyptic|/genres/science-fiction-fantasy,dir17/13125947-reached.html,74818,"Reached (Matched, #3)" +4.08,2610,0373802498,good_reads:book,https://www.goodreads.com/author/show/445303.Maria_V_Snyder,2006,/genres/fantasy|/genres/fantasy|/genres/magic|/genres/romance|/genres/young-adult|/genres/fantasy|/genres/high-fantasy|/genres/adult|/genres/science-fiction-fantasy|/genres/young-adult|/genres/young-adult-fantasy,dir17/46202.Magic_Study.html,36353,Magic Study (Study #2) +4.22,35,1937819906,good_reads:book,https://www.goodreads.com/author/show/286014.Ki_Longfellow,2013,/genres/adventure|/genres/survival|/genres/adventure|/genres/literature|/genres/fiction|/genres/humor|/genres/funny|/genres/thriller,dir17/19405702-walks-away-woman.html,315,Walks Away Woman +4.11,11779,1451648537,good_reads:book,https://www.goodreads.com/author/show/7111.Walter_Isaacson,2011,/genres/biography|/genres/business|/genres/non-fiction|/genres/science|/genres/technology|/genres/history|/genres/biography-memoir,dir17/11084145-steve-jobs.html,219928,Steve Jobs +4.29,495,0684843323,good_reads:book,https://www.goodreads.com/author/show/1455.Ernest_Hemingway,1987,/genres/short-stories|/genres/fiction|/genres/classics|/genres/literature|/genres/american,dir17/4625.The_Complete_Short_Stories.html,23313,The Complete Short Stories +4.32,115,0848809971,good_reads:book,https://www.goodreads.com/author/show/18540.T_S_Eliot,1915,/genres/poetry|/genres/classics|/genres/literature|/genres/academic|/genres/school|/genres/fiction|/genres/literature|/genres/american|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/20th-century,dir17/118389.The_Love_Song_of_J_Alfred_Prufrock_and_Other_Poems.html,10699,The Love Song of J. Alfred Prufrock and Other Poems +3.91,499,0451528166,good_reads:book,https://www.goodreads.com/author/show/53519.Thomas_Malory,1485,/genres/classics|/genres/fantasy|/genres/fiction|/genres/mythology|/genres/arthurian|/genres/fantasy|/genres/mythology|/genres/historical-fiction|/genres/historical-fiction|/genres/medieval|/genres/literature|/genres/poetry|/genres/adventure,dir17/672875.Le_Morte_d_Arthur.html,22287,Le Morte d'Arthur +4.03,1220,0425192032,good_reads:book,https://www.goodreads.com/author/show/9355.Dean_Koontz,1988,/genres/horror|/genres/fiction|/genres/thriller|/genres/science-fiction|/genres/science-fiction|/genres/time-travel|/genres/suspense|/genres/mystery|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/thriller|/genres/mystery-thriller,dir17/32424.Lightning.html,36533,Lightning +4.02,1895,0061433012,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,2008,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/adventure|/genres/humor|/genres/historical-fiction|/genres/young-adult|/genres/teen|/genres/science-fiction|/genres/alternate-history|/genres/adventure|/genres/survival|/genres/book-club,dir17/2855034-nation.html,18965,Nation +4.07,1062,0061020664,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,1988,/genres/fantasy|/genres/humor|/genres/fiction|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/paranormal|/genres/witches|/genres/humor|/genres/funny|/genres/fantasy|/genres/magic|/genres/science-fiction|/genres/european-literature|/genres/british-literature,dir17/34504.Wyrd_Sisters.html,44580,"Wyrd Sisters (Discworld, #6)" +4.39,2202,140278404X,good_reads:book,https://www.goodreads.com/author/show/3097905.Colleen_Houck,2011,/genres/romance|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/magic|/genres/adventure|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/fantasy,dir17/9662386-tiger-s-quest.html,20836,"Tiger's Quest (The Tiger Saga, #2)" +4.25,651,0141182342,good_reads:book,https://www.goodreads.com/author/show/9494.H_P_Lovecraft,1972,/genres/fantasy|/genres/short-stories|/genres/horror|/genres/science-fiction|/genres/classics|/genres/fiction|/genres/gothic|/genres/literature|/genres/science-fiction-fantasy|/genres/horror|/genres/lovecraftian,dir17/160149.The_Call_of_Cthulhu_and_Other_Weird_Stories.html,18717,The Call of Cthulhu and Other Weird Stories +4.32,578,0553582461,good_reads:book,https://www.goodreads.com/author/show/25307.Robin_Hobb,2003,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/dragons|/genres/fantasy|/genres/high-fantasy|/genres/epic|/genres/adventure|/genres/fantasy|/genres/magic|/genres/adult,dir17/45108.Fool_s_Fate.html,28379,"Fool's Fate (Tawny Man, #3)" +4.06,1055,0140089225,good_reads:book,https://www.goodreads.com/author/show/7451.Keri_Hulme,1984,/genres/fiction|/genres/book-club|/genres/literary-fiction|/genres/literature|/genres/magical-realism|/genres/novels,dir17/460635.The_Bone_People.html,12068,The Bone People +3.84,1294,0007148984,good_reads:book,https://www.goodreads.com/author/show/72237.Lynne_Reid_Banks,1920,/genres/fantasy|/genres/childrens|/genres/fiction|/genres/young-adult|/genres/classics|/genres/childrens|/genres/juvenile|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/chapter-books|/genres/academic|/genres/school,dir17/125404.The_Indian_in_the_Cupboard.html,59959,"The Indian in the Cupboard (The Indian in the Cupboard, #1)" +3.75,646,0684804522,good_reads:book,https://www.goodreads.com/author/show/1455.Ernest_Hemingway,200,/genres/classics|/genres/literature|/genres/american|/genres/novels|/genres/literary-fiction|/genres/cultural|/genres/france|/genres/classics|/genres/classic-literature|/genres/adult-fiction|/genres/travel|/genres/love|/genres/classics|/genres/modern-classics,dir17/10775.The_Garden_of_Eden.html,9775,The Garden of Eden +4.34,984,076360013X,good_reads:book,https://www.goodreads.com/author/show/25838.Sam_McBratney,1994,/genres/childrens|/genres/childrens|/genres/picture-books|/genres/fiction|/genres/animals|/genres/classics|/genres/family|/genres/love|/genres/kids|/genres/animals|/genres/rabbits|/genres/young-adult,dir17/301736.Guess_How_Much_I_Love_You.html,81395,Guess How Much I Love You +4.09,1688,0375833641,good_reads:book,https://www.goodreads.com/author/show/8649.Juliet_Marillier,2007,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/fairy-tales|/genres/romance|/genres/fiction|/genres/historical-fiction|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/teen,dir17/13929.Wildwood_Dancing.html,16560,"Wildwood Dancing (Wildwood, #1)" +3.91,100,098534346X,good_reads:book,https://www.goodreads.com/author/show/5184237.Veronica_Blade,2013,/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/shapeshifters|/genres/animals|/genres/wolves|/genres/fiction|/genres/fantasy|/genres/supernatural,dir17/17236613-my-wolf-s-bane.html,506,"My Wolf's Bane (Shapes of Autumn, #1)" +4.47,23,0988936445,good_reads:book,https://www.goodreads.com/author/show/6893006.Roy_Huff,2014,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/science-fiction,dir17/18404957-the-rise-of-mallory.html,76,"The Rise of Mallory (Everville, #3)" +4.39,246,1893007170,good_reads:book,https://www.goodreads.com/author/show/2914435.Alcoholics_Anonymous,1972,/genres/non-fiction|/genres/self-help|/genres/psychology|/genres/spirituality|/genres/reference|/genres/health|/genres/religion|/genres/inspirational|/genres/classics|/genres/christian,dir17/158420.Alcoholics_Anonymous_Big_Book.html,3823,Alcoholics Anonymous - Big Book +3.77,1770,0440226686,good_reads:book,https://www.goodreads.com/author/show/5833.Annette_Curtis_Klause,1997,/genres/young-adult|/genres/fantasy|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/romance|/genres/paranormal-romance|/genres/young-adult|/genres/teen,dir17/30324.Blood_and_Chocolate.html,28940,Blood and Chocolate +3.98,1103,0763631620,good_reads:book,https://www.goodreads.com/author/show/32401.Alison_Croggon,2002,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/young-adult-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/fantasy|/genres/epic-fantasy|/genres/young-adult|/genres/teen|/genres/science-fiction-fantasy,dir17/393146.The_Naming.html,15492,"The Naming (The Books of Pellinor, #1)" +4.48,2028,1937053148,good_reads:book,https://www.goodreads.com/author/show/4476934.Jennifer_L_Armentrout,2012,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/mythology|/genres/greek-mythology|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/magic,dir17/9761778-deity.html,21938,"Deity (Covenant, #3)" +3.95,1817,0064410161,good_reads:book,https://www.goodreads.com/author/show/36746.Lemony_Snicket,2006,/genres/young-adult|/genres/fiction|/genres/childrens|/genres/fantasy|/genres/mystery|/genres/adventure|/genres/humor|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/realistic-fiction,dir17/65112.The_End.html,46469,"The End (A Series of Unfortunate Events, #13)" +4.10,1593,0061449091,good_reads:book,https://www.goodreads.com/author/show/1599723.Michael_Grant,2010,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/paranormal,dir17/6686092-lies.html,35717,"Lies (Gone, #3)" +4.20,27196,0618260307,good_reads:book,https://www.goodreads.com/author/show/656983.J_R_R_Tolkien,1937,/genres/fantasy|/genres/classics|/genres/fiction|/genres/adventure|/genres/young-adult|/genres/science-fiction-fantasy|/genres/childrens|/genres/fantasy|/genres/epic-fantasy|/genres/literature|/genres/fantasy|/genres/high-fantasy,dir17/5907.The_Hobbit.html,1583523,The Hobbit +3.82,1249,0061284475,good_reads:book,https://www.goodreads.com/author/show/1192311.Claudia_Gray,2010,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/ghosts|/genres/fantasy|/genres/supernatural,dir17/6421588-hourglass.html,32991,"Hourglass (Evernight, #3)" +4.26,1063,0316033650,good_reads:book,https://www.goodreads.com/author/show/1370283.Brent_Weeks,2008,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/adventure|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/dark-fantasy|/genres/epic|/genres/action,dir17/3754016-shadow-s-edge.html,41562,"Shadow's Edge (Night Angel, #2)" +4.38,1147,055338368X,good_reads:book,https://www.goodreads.com/author/show/867.Steven_Pressfield,1998,/genres/fiction|/genres/historical-fiction|/genres/war|/genres/military|/genres/war|/genres/cultural|/genres/greece|/genres/fantasy|/genres/novels|/genres/literature|/genres/literature|/genres/ancient|/genres/classics,dir17/1305.Gates_of_Fire.html,13923,Gates of Fire +3.70,3997,067003777X,good_reads:book,https://www.goodreads.com/author/show/2362.Marisha_Pessl,2006,/genres/fiction|/genres/mystery|/genres/book-club|/genres/contemporary|/genres/novels|/genres/young-adult|/genres/literature,dir17/3483.Special_Topics_in_Calamity_Physics.html,26919,Special Topics in Calamity Physics +4.00,1635,0805080481,good_reads:book,https://www.goodreads.com/author/show/8924.Lloyd_Alexander,1964,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/adventure|/genres/classics|/genres/science-fiction-fantasy|/genres/childrens|/genres/middle-grade|/genres/fantasy|/genres/high-fantasy|/genres/childrens|/genres/juvenile,dir17/24780.The_Book_of_Three.html,41424,The Book of Three (The Chronicles of Prydain #1) +4.16,919,0060822554,good_reads:book,https://www.goodreads.com/author/show/25864.John_Fante,1939,/genres/fiction|/genres/classics|/genres/novels|/genres/literature|/genres/literature|/genres/american|/genres/literature|/genres/20th-century|/genres/romance|/genres/american|/genres/americana|/genres/book-club|/genres/literary-fiction,dir17/46227.Ask_the_Dust.html,13143,Ask the Dust +3.99,939,055337933X,good_reads:book,https://www.goodreads.com/author/show/197.Tom_Robbins,2000,/genres/fiction|/genres/humor|/genres/literature|/genres/novels|/genres/contemporary|/genres/humor|/genres/comedy|/genres/literature|/genres/american|/genres/modern,dir17/8680.Fierce_Invalids_Home_from_Hot_Climates.html,19344,Fierce Invalids Home from Hot Climates +4.13,729,0802135226,good_reads:book,https://www.goodreads.com/author/show/9399.Jeanette_Winterson,1987,/genres/fiction|/genres/historical-fiction|/genres/glbt|/genres/glbt|/genres/queer|/genres/magical-realism|/genres/literature|/genres/fantasy|/genres/novels|/genres/cultural|/genres/italy|/genres/contemporary,dir17/15047.The_Passion.html,10809,The Passion +3.89,2435,0439206480,good_reads:book,https://www.goodreads.com/author/show/36746.Lemony_Snicket,1999,/genres/fiction|/genres/young-adult|/genres/childrens|/genres/fantasy|/genres/mystery|/genres/adventure|/genres/humor,dir17/78418.The_Reptile_Room.html,88702,"The Reptile Room (A Series of Unfortunate Events, #2)" +3.80,701,0061720852,good_reads:book,https://www.goodreads.com/author/show/50873.L_J_Smith,2010,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy,dir17/6934395-midnight.html,17166,"Midnight (The Vampire Diaries: The Return, #3)" +4.07,3735,1416990658,good_reads:book,https://www.goodreads.com/author/show/3351454.Morgan_Matson,2010,/genres/young-adult|/genres/contemporary|/genres/romance|/genres/travel|/genres/road-trip|/genres/realistic-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/travel|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/young-adult-contemporary,dir17/7664334-amy-and-roger-s-epic-detour.html,39038,Amy and Roger's Epic Detour +4.29,943,006057299X,good_reads:book,https://www.goodreads.com/author/show/17054.Kim_Harrison,2005,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/paranormal|/genres/witches|/genres/fiction|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/demons|/genres/romance|/genres/fantasy|/genres/supernatural,dir17/30263.Every_Which_Way_But_Dead.html,47903,"Every Which Way But Dead (The Hollows, #3)" +3.92,2185,0373210035,good_reads:book,https://www.goodreads.com/author/show/415967.Rachel_Vincent,2009,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/mystery|/genres/paranormal|/genres/ghosts,dir17/6315602-my-soul-to-take.html,29645,"My Soul to Take (Soul Screamers, #1)" +4.07,769,000649885X,good_reads:book,https://www.goodreads.com/author/show/25307.Robin_Hobb,1998,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/dragons|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/epic|/genres/adventure|/genres/adventure|/genres/pirates,dir17/45100.Ship_of_Magic.html,24477,"Ship of Magic (Liveship Traders, #1)" +3.79,781,0140436111,good_reads:book,https://www.goodreads.com/author/show/239579.Charles_Dickens,1837,/genres/classics|/genres/fiction|/genres/literature|/genres/19th-century|/genres/humor|/genres/european-literature|/genres/british-literature|/genres/historical-fiction|/genres/classics|/genres/classic-literature|/genres/novels|/genres/literature|/genres/english-literature|/genres/humor|/genres/comedy,dir17/229432.The_Pickwick_Papers.html,12520,The Pickwick Papers +3.69,1573,0345418972,good_reads:book,https://www.goodreads.com/author/show/5194.Michael_Crichton,1987,/genres/science-fiction|/genres/fiction|/genres/thriller|/genres/science-fiction-fantasy|/genres/horror|/genres/suspense|/genres/mystery|/genres/fantasy,dir17/455373.Sphere.html,93524,Sphere +4.13,1255,0553288202,good_reads:book,https://www.goodreads.com/author/show/2687.Dan_Simmons,1990,/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/science-fiction|/genres/space-opera|/genres/science-fiction-fantasy,dir17/77565.The_Fall_of_Hyperion.html,42860,"The Fall of Hyperion (Hyperion Cantos, #2)" +4.05,1146,0812513754,good_reads:book,https://www.goodreads.com/author/show/6252.Robert_Jordan,1994,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/epic|/genres/adventure|/genres/fantasy|/genres/magic|/genres/adult|/genres/novels,dir17/35231.Lord_of_Chaos.html,63953,"Lord of Chaos (Wheel of Time, #6)" +3.78,1366,1416983082,good_reads:book,https://www.goodreads.com/author/show/19954.Christopher_Pike,2009,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/fiction|/genres/horror|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance,dir17/5941233-thirst-no-1.html,24348,"Thirst No. 1 (Thirst, #1)" +4.22,611,1905432453,good_reads:book,https://www.goodreads.com/author/show/2742325.Omar_Khayyam,1100,/genres/poetry|/genres/classics|/genres/philosophy|/genres/fiction|/genres/literature|/genres/cultural|/genres/iran,dir17/86560.Rubaiyat_of_Omar_Khayyam.html,8111,Rubaiyat of Omar Khayyam +4.21,2860,1400044162,good_reads:book,https://www.goodreads.com/author/show/11291.Chimamanda_Ngozi_Adichie,2006,/genres/fiction|/genres/cultural|/genres/africa|/genres/historical-fiction|/genres/book-club|/genres/war|/genres/literature|/genres/african-literature|/genres/novels|/genres/contemporary,dir17/18749.Half_of_a_Yellow_Sun.html,25556,Half of a Yellow Sun +3.48,1285,2226131906,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,2001,/genres/horror|/genres/fiction|/genres/science-fiction|/genres/thriller|/genres/fantasy|/genres/science-fiction|/genres/aliens|/genres/fantasy|/genres/supernatural|/genres/mystery|/genres/fantasy|/genres/paranormal,dir17/11570.Dreamcatcher.html,81833,Dreamcatcher +4.06,865,0807059099,good_reads:book,https://www.goodreads.com/author/show/5810891.Mahatma_Gandhi,1925,/genres/biography|/genres/non-fiction|/genres/biography|/genres/autobiography|/genres/history|/genres/philosophy|/genres/cultural|/genres/india|/genres/autobiography|/genres/memoir|/genres/politics|/genres/spirituality|/genres/classics,dir17/112803.The_Story_of_My_Experiments_With_Truth.html,20736,The Story of My Experiments With Truth +3.92,3632,0312367465,good_reads:book,https://www.goodreads.com/author/show/40593.Gabrielle_Zevin,2005,/genres/young-adult|/genres/fantasy|/genres/fiction|/genres/romance|/genres/young-adult|/genres/teen|/genres/death|/genres/fantasy|/genres/paranormal|/genres/contemporary|/genres/fantasy|/genres/supernatural|/genres/adult,dir17/359410.Elsewhere.html,31597,Elsewhere +3.93,1928,1409521966,good_reads:book,https://www.goodreads.com/author/show/3465557.L_A_Weatherly,2010,/genres/paranormal|/genres/angels|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/young-adult|/genres/teen,dir17/7991200-angel.html,22190,"Angel (Angel, #1)" +4.53,724,1570089264,good_reads:book,https://www.goodreads.com/author/show/168218.Stephen_E_Robinson,1992,/genres/religion|/genres/christianity|/genres/lds|/genres/non-fiction|/genres/religion|/genres/church|/genres/spirituality|/genres/inspirational|/genres/christian|/genres/lds|/genres/lds-non-fiction|/genres/religion|/genres/faith|/genres/self-help,dir17/434764.Believing_Christ.html,10477,Believing Christ +4.30,1081,0399244573,good_reads:book,https://www.goodreads.com/author/show/34049.John_Flanagan,2006,/genres/fantasy|/genres/young-adult|/genres/adventure|/genres/fiction|/genres/action|/genres/young-adult|/genres/teen|/genres/historical-fiction|/genres/medieval|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/young-adult|/genres/young-adult-fantasy,dir17/144350.The_Battle_for_Skandia.html,47023,"The Battle for Skandia (Ranger's Apprentice, #4)" +4.20,5322,0849900417,good_reads:book,https://www.goodreads.com/author/show/60229.Ron_Hall,2005,/genres/non-fiction|/genres/book-club|/genres/autobiography|/genres/memoir|/genres/christian|/genres/biography|/genres/inspirational|/genres/religion|/genres/religion|/genres/faith|/genres/religion|/genres/christianity|/genres/spirituality,dir17/104189.Same_Kind_of_Different_as_Me.html,40299,Same Kind of Different as Me +4.05,417,2253140872,good_reads:book,https://www.goodreads.com/author/show/15959.Boris_Vian,1947,/genres/fiction|/genres/classics|/genres/european-literature|/genres/french-literature|/genres/cultural|/genres/france|/genres/romance|/genres/literature|/genres/novels|/genres/literature|/genres/20th-century,dir17/141828.L_cume_des_jours.html,10387,L'Écume des jours +4.16,291,0140272380,good_reads:book,https://www.goodreads.com/author/show/44694.Harry_Mulisch,1992,/genres/fiction|/genres/european-literature|/genres/dutch-literature|/genres/literature|/genres/classics|/genres/philosophy|/genres/roman|/genres/novels,dir17/88389.De_ontdekking_van_de_hemel.html,5966,De ontdekking van de hemel +3.49,2795,0060987529,good_reads:book,https://www.goodreads.com/author/show/7025.Gregory_Maguire,1999,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/fairy-tales|/genres/historical-fiction|/genres/book-club|/genres/adult-fiction|/genres/retellings|/genres/science-fiction-fantasy|/genres/adult|/genres/young-adult,dir17/18943.Confessions_of_an_Ugly_Stepsister.html,43764,Confessions of an Ugly Stepsister +4.30,980,1585425648,good_reads:book,https://www.goodreads.com/author/show/8446.James_Allen,1902,/genres/self-help|/genres/non-fiction|/genres/philosophy|/genres/self-help|/genres/personal-development|/genres/classics|/genres/inspirational|/genres/psychology|/genres/spirituality|/genres/business|/genres/religion,dir17/81959.As_a_Man_Thinketh.html,17597,As a Man Thinketh +3.79,4869,0385342020,good_reads:book,https://www.goodreads.com/author/show/6160.Sophie_Kinsella,2009,/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/romance|/genres/contemporary|/genres/humor|/genres/adult|/genres/romance|/genres/contemporary-romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/ghosts|/genres/adult-fiction,dir17/6063187-twenties-girl.html,89639,Twenties Girl +4.17,920,0553589385,good_reads:book,https://www.goodreads.com/author/show/375626.Lara_Adrian,2007,/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult,dir17/715791.Kiss_of_Crimson.html,25178,"Kiss of Crimson (Midnight Breed, #2)" +4.02,10815,0307352145,good_reads:book,https://www.goodreads.com/author/show/4101935.Susan_Cain,2011,/genres/non-fiction|/genres/psychology|/genres/self-help|/genres/science|/genres/book-club|/genres/sociology|/genres/business,dir17/8520610-quiet.html,102912,Quiet +3.96,1540,1416571736,good_reads:book,https://www.goodreads.com/author/show/203238.Jennifer_Echols,2009,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/new-adult|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/romance|/genres/contemporary-romance|/genres/fiction|/genres/young-adult|/genres/young-adult-romance|/genres/young-adult|/genres/young-adult-contemporary,dir17/4570679-going-too-far.html,28113,Going Too Far +4.22,913,1741661285,good_reads:book,https://www.goodreads.com/author/show/34049.John_Flanagan,2006,/genres/fantasy|/genres/young-adult|/genres/adventure|/genres/fiction|/genres/action|/genres/young-adult|/genres/teen|/genres/historical-fiction|/genres/medieval|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/young-adult|/genres/young-adult-fantasy,dir17/1524173.The_Sorcerer_in_the_North.html,27501,"The Sorcerer in the North (Ranger's Apprentice, #6)" +3.92,1730,0143039598,good_reads:book,https://www.goodreads.com/author/show/53259.Stella_Gibbons,1932,/genres/fiction|/genres/classics|/genres/humor|/genres/book-club|/genres/european-literature|/genres/british-literature|/genres/historical-fiction|/genres/literature|/genres/humor|/genres/comedy|/genres/humor|/genres/funny|/genres/novels,dir17/92780.Cold_Comfort_Farm.html,20913,Cold Comfort Farm +3.92,26908,1609419693,good_reads:book,https://www.goodreads.com/author/show/4385839.Tina_Fey,2011,/genres/non-fiction|/genres/humor|/genres/autobiography|/genres/memoir|/genres/biography|/genres/humor|/genres/comedy|/genres/book-club,dir17/9418327-bossypants.html,371889,Bossypants +3.95,2251,0312987854,good_reads:book,https://www.goodreads.com/author/show/19005.Jennifer_Crusie,2004,/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/fiction|/genres/humor|/genres/funny|/genres/humor|/genres/adult|/genres/adult-fiction|/genres/humor|/genres/comedy,dir17/854757.Bet_Me.html,52216,Bet Me +4.16,529,0765317508,good_reads:book,https://www.goodreads.com/author/show/37766.Gary_Jennings,1980,/genres/historical-fiction|/genres/fiction|/genres/adventure|/genres/thriller|/genres/fantasy|/genres/fantasy|/genres/mythology|/genres/romance|/genres/literature|/genres/novels|/genres/cultural,dir17/550454.Aztec.html,9790,"Aztec (Aztec, #1)" +4.24,861,0439968089,good_reads:book,https://www.goodreads.com/author/show/8596.Tamora_Pierce,2003,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/young-adult-fantasy|/genres/adventure|/genres/romance|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction-fantasy,dir17/24431.Trickster_s_Choice.html,31261,"Trickster's Choice (Daughter of the Lioness, #1)" +3.97,1190,0061659223,good_reads:book,https://www.goodreads.com/author/show/175855.Melissa_Marr,2010,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fairies|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/fairies|/genres/fae|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/fantasy|/genres/supernatural,dir17/6368610-radiant-shadows.html,27071,"Radiant Shadows (Wicked Lovely, #4)" +3.76,713,0575075066,good_reads:book,https://www.goodreads.com/author/show/58.Frank_Herbert,1981,/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/classics|/genres/science-fiction|/genres/space-opera|/genres/speculative-fiction|/genres/philosophy|/genres/novels|/genres/criticism,dir17/42432.God_Emperor_of_Dune.html,37179,"God Emperor of Dune (Dune Chronicles, #4)" +4.12,1218,0072434171,good_reads:book,https://www.goodreads.com/author/show/5209.Annie_Dillard,1974,/genres/non-fiction|/genres/environment|/genres/nature|/genres/autobiography|/genres/memoir|/genres/writing|/genres/essays|/genres/philosophy|/genres/classics|/genres/science|/genres/environment|/genres/book-club|/genres/spirituality,dir17/12527.Pilgrim_at_Tinker_Creek.html,11912,Pilgrim at Tinker Creek +4.25,1,1559352752,good_reads:book,https://www.goodreads.com/author/show/81466.A_A_Milne,1997,/genres/classics|/genres/childrens|/genres/poetry|/genres/childrens|/genres/juvenile|/genres/fiction|/genres/animals,dir17/1370123.The_House_at_Pooh_Corner_and_Now_We_Are_Six.html,544,The House at Pooh Corner and Now We Are Six +4.13,1327,006074815X,good_reads:book,https://www.goodreads.com/author/show/3447.Ken_Follett,1978,/genres/fiction|/genres/thriller|/genres/historical-fiction|/genres/mystery|/genres/suspense|/genres/spy-thriller|/genres/espionage|/genres/war|/genres/thriller|/genres/mystery-thriller|/genres/history|/genres/world-war-ii|/genres/mystery|/genres/crime,dir17/92364.Eye_of_the_Needle.html,67438,Eye of the Needle +4.15,3200,,good_reads:book,https://www.goodreads.com/author/show/1633682._,2010,/genres/novels|/genres/suspense|/genres/mystery|/genres/crime|/genres/mystery|/genres/fiction|/genres/thriller|/genres/literature,dir17/7704143.html,32823,تراب الماس +4.05,2368,0061449067,good_reads:book,https://www.goodreads.com/author/show/1599723.Michael_Grant,2009,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/paranormal,dir17/5047880-hunger.html,42955,"Hunger (Gone, #2)" +4.28,193,1559360615,good_reads:book,https://www.goodreads.com/author/show/35822.Tony_Kushner,1992,/genres/plays|/genres/drama|/genres/fiction|/genres/plays|/genres/theatre|/genres/glbt|/genres/glbt|/genres/queer|/genres/literature|/genres/american|/genres/classics|/genres/glbt|/genres/gay|/genres/academic|/genres/school,dir17/92250.Angels_in_America_Part_One.html,12036,"Angels in America, Part One" +3.96,826,0449208133,good_reads:book,https://www.goodreads.com/author/show/12534.Larry_Niven,1977,/genres/science-fiction|/genres/fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/science-fiction|/genres/apocalyptic|/genres/science-fiction-fantasy|/genres/speculative-fiction|/genres/science-fiction|/genres/dystopia|/genres/classics|/genres/fantasy|/genres/adventure|/genres/survival,dir17/218467.Lucifer_s_Hammer.html,25488,Lucifer's Hammer +4.31,543,0020425651,good_reads:book,https://www.goodreads.com/author/show/7308.Susan_Cooper,1984,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/classics|/genres/mythology|/genres/arthurian|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/adventure|/genres/fantasy|/genres/mythology,dir17/11306.The_Dark_is_Rising_Sequence.html,9502,"The Dark is Rising Sequence (The Dark is Rising, #1-5)" +3.86,943,0974607800,good_reads:book,https://www.goodreads.com/author/show/1624.Herman_Melville,1853,/genres/classics|/genres/fiction|/genres/short-stories|/genres/literature|/genres/literature|/genres/american|/genres/academic|/genres/school|/genres/literature|/genres/19th-century,dir17/114230.Bartleby_the_Scrivener.html,19181,"Bartleby, the Scrivener" +4.31,342,0786915889,good_reads:book,https://www.goodreads.com/author/show/1023510.R_A_Salvatore,2000,/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/adventure|/genres/role-playing-games|/genres/dungeons-and-dragons|/genres/science-fiction|/genres/dungeons-and-dragons|/genres/forgotten-realms,dir17/68418.The_Dark_Elf_Trilogy_Collector_s_Edition.html,16503,"The Dark Elf Trilogy Collector's Edition (Forgotten Realms: Dark Elf Trilogy, #1-3; Legend of Drizzt, #1-3)" +4.04,1029,0786915749,good_reads:book,https://www.goodreads.com/author/show/869.Margaret_Weis,1984,/genres/dungeons-and-dragons|/genres/dragonlance|/genres/fiction|/genres/fantasy|/genres/dragons|/genres/science-fiction-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/novels,dir17/259836.Dragons_of_Autumn_Twilight.html,48892,"Dragons of Autumn Twilight (Dragonlance: Chronicles, #1)" +4.28,41,,good_reads:book,https://www.goodreads.com/author/show/6697472.Aporva_Kala,2011,/genres/love|/genres/romance|/genres/philosophy|/genres/cultural|/genres/india|/genres/fantasy|/genres/mythology|/genres/humor|/genres/literature|/genres/spirituality|/genres/contemporary|/genres/inspirational,dir17/14058818-life-love-kumbh.html,101,Life... Love... Kumbh... +4.48,16342,0439785960,good_reads:book,https://www.goodreads.com/author/show/1077326.J_K_Rowling,2005,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/magic|/genres/childrens|/genres/adventure|/genres/science-fiction-fantasy,dir17/1.Harry_Potter_and_the_Half_Blood_Prince.html,1203747,"Harry Potter and the Half-Blood Prince (Harry Potter, #6)" +3.85,1425,0440235596,good_reads:book,https://www.goodreads.com/author/show/3532.Maeve_Binchy,1998,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/cultural|/genres/ireland|/genres/book-club|/genres/contemporary|/genres/european-literature|/genres/irish-literature|/genres/adult-fiction|/genres/novels|/genres/adult,dir17/5196.Tara_Road.html,46152,Tara Road +3.46,1155,0140449108,good_reads:book,https://www.goodreads.com/author/show/3063220.Thomas_More,1516,/genres/fiction|/genres/politics|/genres/classics|/genres/literature|/genres/philosophy|/genres/science-fiction|/genres/dystopia|/genres/academic|/genres/school|/genres/science-fiction|/genres/science-fiction|/genres/utopia|/genres/fantasy,dir17/18414.Utopia.html,28433,Utopia +4.21,7,,good_reads:book,https://www.goodreads.com/author/show/3110785._,2009,,dir17/7425765.html,67,Слънце недосегаемо +3.92,1827,0786851473,good_reads:book,https://www.goodreads.com/author/show/10896.Eoin_Colfer,2001,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/science-fiction|/genres/childrens|/genres/adventure|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy,dir17/114955.The_Arctic_Incident.html,88589,"The Arctic Incident (Artemis Fowl, #2)" +3.70,1575,044022912X,good_reads:book,https://www.goodreads.com/author/show/11164.Theodore_Taylor,1969,/genres/young-adult|/genres/historical-fiction|/genres/childrens|/genres/classics|/genres/academic|/genres/school|/genres/adventure|/genres/academic|/genres/read-for-school|/genres/adventure|/genres/survival|/genres/realistic-fiction|/genres/childrens|/genres/juvenile,dir17/18553.The_Cay.html,19771,"The Cay (The Cay, #1)" +3.90,1148,0330369954,good_reads:book,https://www.goodreads.com/author/show/233.Don_DeLillo,1997,/genres/fiction|/genres/literature|/genres/novels|/genres/literature|/genres/american|/genres/contemporary|/genres/literary-fiction|/genres/historical-fiction|/genres/classics|/genres/american|/genres/americana|/genres/literature|/genres/20th-century,dir17/11761.Underworld.html,16142,Underworld +3.55,221,,good_reads:book,https://www.goodreads.com/author/show/7358908.Zack_Love,2013,/genres/romance|/genres/humor|/genres/humor|/genres/funny|/genres/fiction|/genres/romance|/genres/contemporary-romance|/genres/humor|/genres/comedy|/genres/contemporary|/genres/book-club,dir17/18710853-sex-in-the-title.html,543,Sex in the Title +4.19,932,0553803735,good_reads:book,https://www.goodreads.com/author/show/16667.Isaac_Asimov,1952,/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/classics|/genres/science-fiction|/genres/space-opera|/genres/fantasy|/genres/novels|/genres/speculative-fiction|/genres/space|/genres/literature,dir17/29580.Second_Foundation.html,71884,"Second Foundation (Foundation, #3)" +4.07,1731,140007780X,good_reads:book,https://www.goodreads.com/author/show/8933.Alan_Lightman,1992,/genres/fiction|/genres/philosophy|/genres/short-stories|/genres/science-fiction|/genres/fantasy|/genres/historical-fiction|/genres/literature|/genres/science|/genres/physics|/genres/science-fiction|/genres/time-travel|/genres/novels,dir17/14376.Einstein_s_Dreams.html,17106,Einstein's Dreams +3.91,712,0756402697,good_reads:book,https://www.goodreads.com/author/show/6587.Tad_Williams,1988,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/epic|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/dragons|/genres/adventure|/genres/young-adult,dir18/91981.The_Dragonbone_Chair.html,34341,"The Dragonbone Chair (Memory, Sorrow, and Thorn, #1)" +3.91,5388,0330448447,good_reads:book,https://www.goodreads.com/author/show/615274.Kate_Morton,2006,/genres/historical-fiction|/genres/fiction|/genres/mystery|/genres/book-club|/genres/romance|/genres/gothic|/genres/european-literature|/genres/british-literature|/genres/adult-fiction|/genres/adult|/genres/contemporary,dir18/1278752.The_House_at_Riverton.html,53678,The House at Riverton +4.80,23,,good_reads:book,https://www.goodreads.com/author/show/7777382.Jim_Goforth,2014,/genres/horror,dir18/20573324-plebs.html,82,Plebs +3.83,1275,0679728899,good_reads:book,https://www.goodreads.com/author/show/881203.Willa_Cather,1927,/genres/classics|/genres/fiction|/genres/historical-fiction|/genres/literature|/genres/book-club|/genres/novels|/genres/literature|/genres/american|/genres/religion|/genres/literary-fiction|/genres/literature|/genres/20th-century,dir18/545951.Death_Comes_for_the_Archbishop.html,15784,Death Comes for the Archbishop +4.16,2859,037575931X,good_reads:book,https://www.goodreads.com/author/show/157779.Wallace_Stegner,1987,/genres/fiction|/genres/classics|/genres/novels|/genres/literature|/genres/book-club|/genres/historical-fiction|/genres/literary-fiction|/genres/adult-fiction|/genres/adult|/genres/contemporary,dir18/9820.Crossing_to_Safety.html,19134,Crossing to Safety +3.94,1754,0684818868,good_reads:book,https://www.goodreads.com/author/show/8458.James_W_Loewen,1995,/genres/non-fiction|/genres/education|/genres/politics|/genres/history|/genres/american-history|/genres/teaching|/genres/reference|/genres/sociology|/genres/literature|/genres/american|/genres/academic|/genres/school|/genres/social-movements|/genres/social-justice,dir18/296662.Lies_My_Teacher_Told_Me.html,34954,Lies My Teacher Told Me +3.94,4087,0316084239,good_reads:book,https://www.goodreads.com/author/show/3095919.Kody_Keplinger,2010,/genres/young-adult|/genres/contemporary|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/young-adult|/genres/high-school|/genres/fiction|/genres/young-adult|/genres/teen,dir18/6931356-the-duff.html,43064,The DUFF +3.89,1767,1580495761,good_reads:book,https://www.goodreads.com/author/show/18943.Frederick_Douglass,1845,/genres/non-fiction|/genres/history|/genres/classics|/genres/biography|/genres/autobiography|/genres/memoir|/genres/academic|/genres/school|/genres/biography|/genres/autobiography|/genres/cultural|/genres/african-american|/genres/history|/genres/american-history|/genres/academic|/genres/read-for-school,dir18/36529.Narrative_of_the_Life_of_Frederick_Douglass.html,37779,Narrative of the Life of Frederick Douglass +3.92,7684,0385342063,good_reads:book,https://www.goodreads.com/author/show/6160.Sophie_Kinsella,2011,/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/fiction|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/humor|/genres/adult|/genres/humor|/genres/funny|/genres/adult-fiction|/genres/humor|/genres/comedy,dir18/12033455-i-ve-got-your-number.html,94674,I've Got Your Number +4.26,836,0553589393,good_reads:book,https://www.goodreads.com/author/show/375626.Lara_Adrian,2001,/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/contemporary,dir18/1388813.Midnight_Awakening.html,30439,"Midnight Awakening (Midnight Breed, #3)" +3.98,541,034546639X,good_reads:book,https://www.goodreads.com/author/show/19630.Robert_Fulghum,1986,/genres/non-fiction|/genres/humor|/genres/self-help|/genres/philosophy|/genres/writing|/genres/essays|/genres/inspirational|/genres/short-stories|/genres/classics|/genres/psychology|/genres/adult,dir18/34760.All_I_Really_Need_to_Know_I_Learned_in_Kindergarten.html,11374,All I Really Need to Know I Learned in Kindergarten +4.25,556,0143039164,good_reads:book,https://www.goodreads.com/author/show/4203.Sigrid_Undset,1920,/genres/historical-fiction|/genres/fiction|/genres/classics|/genres/european-literature|/genres/scandinavian-literature|/genres/novels|/genres/literature|/genres/historical-fiction|/genres/medieval,dir18/6217.Kristin_Lavransdatter.html,3747,"Kristin Lavransdatter (Kristin Lavransdatter, #1-3)" +4.01,1538,0099448769,good_reads:book,https://www.goodreads.com/author/show/3354.Haruki_Murakami,1988,/genres/fiction|/genres/cultural|/genres/japan|/genres/asian-literature|/genres/japanese-literature|/genres/magical-realism|/genres/literature|/genres/contemporary|/genres/fantasy|/genres/novels|/genres/mystery|/genres/cultural|/genres/asia,dir18/17800.Dance_Dance_Dance.html,32163,"Dance Dance Dance (The Rat, #4)" +4.15,1698,068816112X,good_reads:book,https://www.goodreads.com/author/show/19651.Ken_Grimwood,1986,/genres/fiction|/genres/science-fiction|/genres/science-fiction|/genres/time-travel|/genres/fantasy|/genres/book-club|/genres/science-fiction-fantasy|/genres/adult|/genres/speculative-fiction|/genres/romance|/genres/novels,dir18/341735.Replay.html,12358,Replay +4.09,4107,0312662750,good_reads:book,https://www.goodreads.com/author/show/4175419.Darynda_Jones,2011,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/humor|/genres/romance|/genres/fantasy|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/paranormal-romance|/genres/mystery|/genres/adult-fiction|/genres/adult,dir18/8788554-first-grave-on-the-right.html,34608,"First Grave on the Right (Charley Davidson, #1)" +4.01,661,0425170349,good_reads:book,https://www.goodreads.com/author/show/3892.Tom_Clancy,1998,/genres/fiction|/genres/thriller|/genres/war|/genres/military|/genres/action|/genres/adventure|/genres/spy-thriller|/genres/espionage|/genres/suspense|/genres/war|/genres/terrorism|/genres/thriller|/genres/mystery-thriller|/genres/war,dir18/5720.Rainbow_Six.html,27289,"Rainbow Six (John Clark, #2)" +4.10,1975,0689862202,good_reads:book,https://www.goodreads.com/author/show/6412.Robert_C_O_Brien,1971,/genres/fantasy|/genres/childrens|/genres/fiction|/genres/young-adult|/genres/classics|/genres/animals|/genres/adventure|/genres/science-fiction|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/middle-grade,dir18/9822.Mrs_Frisby_and_the_Rats_of_NIMH.html,108629,Mrs. Frisby and the Rats of NIMH +4.46,660,1591169208,good_reads:book,https://www.goodreads.com/author/show/4698899.Hiromu_Arakawa,2002,/genres/sequential-art|/genres/manga|/genres/fantasy|/genres/sequential-art|/genres/graphic-novels|/genres/science-fiction|/genres/steampunk|/genres/fiction|/genres/young-adult|/genres/science-fiction|/genres/media-tie-in|/genres/anime|/genres/action|/genres/adventure,dir18/870.Fullmetal_Alchemist_Vol_01.html,67953,"Fullmetal Alchemist, Vol. 01 (Fullmetal Alchemist, #1)" +5.00,28,,good_reads:book,https://www.goodreads.com/author/show/6467808.Othen_Donald_Dale_Cummings,2014,/genres/poetry|/genres/childrens,dir18/22204746-an-elephant-is-on-my-house.html,64,An Elephant Is On My House +4.29,17803,0439064864,good_reads:book,https://www.goodreads.com/author/show/1077326.J_K_Rowling,1998,/genres/fantasy|/genres/magic|/genres/adventure|/genres/science-fiction-fantasy|/genres/childrens|/genres/novels|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/childrens|/genres/middle-grade|/genres/paranormal|/genres/witches|/genres/mystery,dir18/15881.Harry_Potter_and_the_Chamber_of_Secrets.html,1246115,Harry Potter and the Chamber of Secrets (Harry Potter #2) +4.42,98,,good_reads:book,https://www.goodreads.com/author/show/6521036.J_K_Accinni,2012,/genres/fantasy|/genres/wildlife|/genres/dark|/genres/horror|/genres/science-fiction|/genres/aliens|/genres/science-fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/historical-fiction|/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/young-adult-science-fiction,dir18/15992880-echo.html,280,"Echo (Species Intervention #6609, #2)" +3.98,750,0141009829,good_reads:book,https://www.goodreads.com/author/show/3620.Kathleen_Winsor,1944,/genres/historical-fiction|/genres/fiction|/genres/romance|/genres/classics|/genres/romance|/genres/historical-romance|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/17th-century|/genres/womens-fiction|/genres/chick-lit|/genres/adult-fiction|/genres/literature|/genres/banned-books,dir18/5368.Forever_Amber.html,11426,Forever Amber +3.98,1675,0967673747,good_reads:book,https://www.goodreads.com/author/show/5448929.Jean_Sasson,1992,/genres/non-fiction|/genres/biography|/genres/autobiography|/genres/memoir|/genres/book-club|/genres/biography-memoir|/genres/womens|/genres/religion|/genres/islam|/genres/religion|/genres/history|/genres/biography|/genres/autobiography,dir18/613283.Princess.html,16030,Princess +4.01,1672,0060575808,good_reads:book,https://www.goodreads.com/author/show/13677.Gail_Carson_Levine,2001,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/fairy-tales|/genres/fiction|/genres/romance|/genres/childrens|/genres/adventure|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/dragons|/genres/childrens|/genres/middle-grade,dir18/183656.The_Two_Princesses_of_Bamarre.html,42137,The Two Princesses of Bamarre +4.11,1033,0486431681,good_reads:book,https://www.goodreads.com/author/show/18317.Knut_Hamsun,1890,/genres/fiction|/genres/classics|/genres/literature|/genres/novels|/genres/european-literature|/genres/scandinavian-literature|/genres/literature|/genres/19th-century,dir18/32585.Hunger.html,16235,Hunger +4.43,17,,good_reads:book,https://www.goodreads.com/author/show/6941668.Danielle_DeVor,2013,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/thriller|/genres/fantasy|/genres/supernatural|/genres/adventure|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/teen|/genres/horror|/genres/fantasy|/genres/paranormal,dir18/17383481-tail-of-the-devil.html,137,Tail of the Devil +4.23,846,0451229738,good_reads:book,https://www.goodreads.com/author/show/15292.Rachel_Caine,2010,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/young-adult|/genres/teen,dir18/7091713-kiss-of-death.html,29249,"Kiss of Death (The Morganville Vampires, #8)" +4.07,1222,0786849568,good_reads:book,https://www.goodreads.com/author/show/10896.Eoin_Colfer,2006,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/science-fiction|/genres/adventure|/genres/fantasy|/genres/magic|/genres/childrens|/genres/fantasy|/genres/urban-fantasy,dir18/37586.The_Lost_Colony.html,55624,"The Lost Colony (Artemis Fowl, #5)" +3.74,2088,0316159417,good_reads:book,https://www.goodreads.com/author/show/769979._sne_Seierstad,2002,/genres/non-fiction|/genres/book-club|/genres/autobiography|/genres/memoir|/genres/history|/genres/travel|/genres/biography|/genres/cultural|/genres/asia|/genres/writing|/genres/books-about-books|/genres/biography-memoir,dir18/9838.The_Bookseller_of_Kabul.html,24993,The Bookseller of Kabul +4.09,1359,0425204669,good_reads:book,https://www.goodreads.com/author/show/9550.Laurell_K_Hamilton,1994,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/paranormal|/genres/shapeshifters|/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/horror|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural,dir18/15309.The_Laughing_Corpse.html,54095,"The Laughing Corpse (Anita Blake, Vampire Hunter, #2)" +4.00,639,1423321677,good_reads:book,https://www.goodreads.com/author/show/3441.Terry_Goodkind,1997,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/high-fantasy|/genres/epic|/genres/romance|/genres/adventure|/genres/adult,dir18/253058.Temple_of_the_Winds.html,44146,"Temple of the Winds (Sword of Truth, #4)" +3.64,2105,014023828X,good_reads:book,https://www.goodreads.com/author/show/1064072.T_C_Boyle,1995,/genres/fiction|/genres/book-club|/genres/contemporary|/genres/academic|/genres/school|/genres/literature|/genres/adult-fiction|/genres/novels|/genres/literary-fiction|/genres/adult|/genres/literature|/genres/american,dir18/24731.The_Tortilla_Curtain.html,16685,The Tortilla Curtain +3.77,3643,0751532711,good_reads:book,https://www.goodreads.com/author/show/600.Robert_T_Kiyosaki,1997,/genres/non-fiction|/genres/economics|/genres/self-help|/genres/self-help|/genres/personal-development,dir18/69571.Rich_Dad_Poor_Dad.html,75190,"Rich Dad, Poor Dad" +3.87,3821,0373210264,good_reads:book,https://www.goodreads.com/author/show/767317.Aimee_Carter,2011,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/mythology|/genres/greek-mythology|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/urban-fantasy|/genres/mythology|/genres/gods|/genres/young-adult|/genres/young-adult-paranormal|/genres/fantasy|/genres/supernatural,dir18/9681214-the-goddess-test.html,32885,"The Goddess Test (Goddess Test, #1)" +4.02,869,0802133908,good_reads:book,https://www.goodreads.com/author/show/21778.Juan_Rulfo,1955,/genres/fiction|/genres/magical-realism|/genres/classics|/genres/european-literature|/genres/spanish-literature|/genres/novels|/genres/cultural|/genres/latin-american|/genres/literature|/genres/literature|/genres/latin-american-literature|/genres/academic|/genres/school,dir18/38787.Pedro_P_ramo.html,14976,Pedro Páramo +4.24,2213,3401063480,good_reads:book,https://www.goodreads.com/author/show/298438.Kerstin_Gier,2010,/genres/historical-fiction|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/time-travel|/genres/paranormal|/genres/ghosts|/genres/adventure|/genres/european-literature|/genres/german-literature|/genres/young-adult|/genres/teen,dir18/7544603-smaragdgr-n.html,19018,"Smaragdgrün (Edelstein Trilogie, #3)" +3.83,1468,0778324214,good_reads:book,https://www.goodreads.com/author/show/415967.Rachel_Vincent,2007,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/paranormal|/genres/shapeshifters|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/adult|/genres/fantasy|/genres/supernatural|/genres/shapeshifters|/genres/werewolves|/genres/fiction,dir18/793399.Stray.html,23354,"Stray (Shifters, #1)" +4.15,755,0449016196,good_reads:book,https://www.goodreads.com/author/show/16667.Isaac_Asimov,1955,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/time-travel|/genres/classics|/genres/fantasy|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/dystopia|/genres/speculative-fiction|/genres/literature|/genres/american|/genres/novels,dir18/509784.The_End_of_Eternity.html,18848,The End of Eternity +3.92,993,0141023422,good_reads:book,https://www.goodreads.com/author/show/7659.Paul_Bowles,1949,/genres/fiction|/genres/classics|/genres/cultural|/genres/africa|/genres/literature|/genres/travel|/genres/novels|/genres/book-club|/genres/historical-fiction|/genres/literary-fiction|/genres/literature|/genres/american,dir18/243598.The_Sheltering_Sky.html,13550,The Sheltering Sky +3.96,1405,1606840592,good_reads:book,https://www.goodreads.com/author/show/164187.Jennifer_Lynn_Barnes,2010,/genres/young-adult|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/animals|/genres/wolves|/genres/paranormal|/genres/shapeshifters,dir18/6905534-raised-by-wolves.html,20298,"Raised by Wolves (Raised by Wolves, #1)" +3.35,4639,0312291639,good_reads:book,https://www.goodreads.com/author/show/9222.Emma_McLaughlin,2002,/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/humor|/genres/contemporary|/genres/adult-fiction|/genres/adult|/genres/romance|/genres/book-club|/genres/novels|/genres/realistic-fiction,dir18/228333.The_Nanny_Diaries.html,272383,"The Nanny Diaries (Nanny, #1)" +4.50,6332,0312642970,good_reads:book,https://www.goodreads.com/author/show/4684322.Marissa_Meyer,2014,/genres/young-adult|/genres/fantasy|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/romance|/genres/fantasy|/genres/fairy-tales|/genres/retellings|/genres/fiction|/genres/adventure|/genres/young-adult|/genres/teen,dir18/13206828-cress.html,36838,"Cress (The Lunar Chronicles, #3)" +4.01,1539,,good_reads:book,https://www.goodreads.com/author/show/4134859.Jessica_Shirvington,2010,/genres/paranormal|/genres/angels|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy,dir18/8635145-embrace.html,15316,"Embrace (The Violet Eden Chapters, #1)" +4.17,327,0375708766,good_reads:book,https://www.goodreads.com/author/show/5657.Gore_Vidal,1984,/genres/historical-fiction|/genres/fiction|/genres/military-history|/genres/civil-war|/genres/literature|/genres/history|/genres/american-history|/genres/politics|/genres/literature|/genres/american|/genres/politics|/genres/presidents|/genres/war|/genres/novels,dir18/8716.Lincoln.html,5355,Lincoln +4.21,1968,1416509879,good_reads:book,https://www.goodreads.com/author/show/4428.Kresley_Cole,2006,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/shapeshifters|/genres/werewolves|/genres/adult|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/shapeshifters|/genres/fantasy|/genres/supernatural,dir18/14384.A_Hunger_Like_No_Other.html,35777,"A Hunger Like No Other (Immortals After Dark, #2)" +3.81,1215,0582461502,good_reads:book,https://www.goodreads.com/author/show/585.John_Steinbeck,1935,/genres/fiction|/genres/classics|/genres/literature|/genres/novels|/genres/literature|/genres/american|/genres/historical-fiction,dir18/163977.Tortilla_Flat.html,24602,Tortilla Flat +3.85,626,0060085495,good_reads:book,https://www.goodreads.com/author/show/3487.Aldous_Huxley,1962,/genres/fiction|/genres/classics|/genres/science-fiction|/genres/philosophy|/genres/science-fiction|/genres/dystopia|/genres/literature|/genres/novels|/genres/science-fiction|/genres/utopia|/genres/fantasy|/genres/european-literature|/genres/british-literature,dir18/5130.Island.html,10628,Island +4.36,383,0140150749,good_reads:book,https://www.goodreads.com/author/show/24956.Dorothy_Parker,1944,/genres/poetry|/genres/fiction|/genres/short-stories|/genres/classics|/genres/humor|/genres/writing|/genres/essays|/genres/literature,dir18/46231.The_Portable_Dorothy_Parker.html,7544,The Portable Dorothy Parker +4.12,453,061861916X,good_reads:book,https://www.goodreads.com/author/show/1194.Richard_Dawkins,2004,/genres/science|/genres/non-fiction|/genres/biology|/genres/evolution|/genres/science|/genres/biology|/genres/history|/genres/science|/genres/popular-science|/genres/anthropology|/genres/religion|/genres/atheism|/genres/science|/genres/natural-history,dir18/17977.The_Ancestor_s_Tale.html,12591,The Ancestor's Tale +3.77,1001,0060088877,good_reads:book,https://www.goodreads.com/author/show/44061.Thornton_Wilder,1927,/genres/fiction|/genres/classics|/genres/historical-fiction|/genres/literature|/genres/novels|/genres/book-club|/genres/literature|/genres/american|/genres/literary-fiction|/genres/classics|/genres/classic-literature|/genres/literature|/genres/20th-century,dir18/92508.The_Bridge_of_San_Luis_Rey.html,15441,The Bridge of San Luis Rey +4.24,4962,1301627445,good_reads:book,https://www.goodreads.com/author/show/4872191.Abbi_Glines,2013,/genres/new-adult|/genres/romance|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/adult-fiction|/genres/erotica|/genres/adult|/genres/love|/genres/drama,dir18/17029526-never-too-far.html,72538,"Never Too Far (Too Far, #2)" +3.86,1845,0099448572,good_reads:book,https://www.goodreads.com/author/show/3354.Haruki_Murakami,1992,/genres/fiction|/genres/cultural|/genres/japan|/genres/asian-literature|/genres/japanese-literature|/genres/contemporary|/genres/literature|/genres/romance|/genres/novels|/genres/magical-realism,dir18/17799.South_of_the_Border_West_of_the_Sun.html,35613,"South of the Border, West of the Sun" +3.85,41,140921818X,good_reads:book,https://www.goodreads.com/author/show/7337562.Kirk_St_Moritz,13,,dir18/5548850-the-day-jesus-rode-into-croydon.html,94,The Day Jesus Rode Into Croydon +4.24,1070,,good_reads:book,https://www.goodreads.com/author/show/4430.Sherrilyn_Kenyon,2002,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/fantasy|/genres/mythology|/genres/fiction|/genres/fantasy|/genres/supernatural,dir18/6567284-night-embrace.html,36599,"Night Embrace (Dark-Hunter, #2)" +4.14,748,0061020613,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,1991,/genres/fantasy|/genres/humor|/genres/fiction|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/paranormal|/genres/witches|/genres/humor|/genres/funny,dir18/2442.Witches_Abroad.html,35383,"Witches Abroad (Discworld, #12)" +4.21,1663,0316058254,good_reads:book,https://www.goodreads.com/author/show/99650.Wendy_Mass,2005,/genres/young-adult|/genres/realistic-fiction|/genres/fiction|/genres/contemporary|/genres/childrens|/genres/middle-grade|/genres/young-adult|/genres/teen|/genres/childrens|/genres/academic|/genres/school|/genres/animals|/genres/young-adult|/genres/coming-of-age,dir18/171020.A_Mango_Shaped_Space.html,13363,A Mango-Shaped Space +3.88,1208,0061020702,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,1986,/genres/humor|/genres/fiction|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny|/genres/fantasy|/genres/magic|/genres/science-fiction|/genres/adventure|/genres/novels|/genres/european-literature|/genres/british-literature,dir18/34506.The_Light_Fantastic.html,55954,"The Light Fantastic (Discworld, #2)" +3.73,2515,0689867042,good_reads:book,https://www.goodreads.com/author/show/25422.Holly_Black,2002,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/fairies|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fiction|/genres/fairies|/genres/fae|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/teen,dir18/46777.Tithe.html,46850,"Tithe (Modern Faerie Tales, #1)" +3.82,363,0141181737,good_reads:book,https://www.goodreads.com/author/show/19405.Thomas_Mann,1912,/genres/fiction|/genres/classics|/genres/short-stories|/genres/european-literature|/genres/german-literature|/genres/literature|/genres/cultural|/genres/germany|/genres/literature|/genres/20th-century|/genres/novels|/genres/cultural|/genres/italy|/genres/glbt,dir18/53064.Death_in_Venice_and_Other_Tales.html,9645,Death in Venice and Other Tales +3.77,4639,1400096278,good_reads:book,https://www.goodreads.com/author/show/22493.Ir_ne_N_mirovsky,2004,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/cultural|/genres/france|/genres/history|/genres/world-war-ii|/genres/war|/genres/world-war-ii|/genres/holocaust|/genres/novels|/genres/classics,dir18/43944.Suite_Fran_aise.html,36449,Suite Française +4.16,454,0553575651,good_reads:book,https://www.goodreads.com/author/show/25307.Robin_Hobb,2000,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/dragons|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/epic|/genres/fantasy|/genres/magic|/genres/adventure|/genres/adventure|/genres/pirates,dir18/45102.Ship_of_Destiny.html,19916,"Ship of Destiny (Liveship Traders, #3)" +3.83,2613,0312424094,good_reads:book,https://www.goodreads.com/author/show/7491.Marilynne_Robinson,1980,/genres/fiction|/genres/book-club|/genres/novels|/genres/literature|/genres/literary-fiction|/genres/contemporary|/genres/literature|/genres/american|/genres/classics|/genres/adult-fiction|/genres/young-adult|/genres/coming-of-age,dir18/11741.Housekeeping.html,19076,Housekeeping +3.68,34,1434432084,good_reads:book,https://www.goodreads.com/author/show/4011131.G_D_Falksen,2011,/genres/science-fiction|/genres/steampunk|/genres/fantasy|/genres/science-fiction|/genres/adventure|/genres/fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/young-adult|/genres/science-fiction-fantasy|/genres/speculative-fiction,dir18/12020927-blood-in-the-skies.html,164,"Blood in the Skies (The Hellfire Chronicles, #1)" +3.75,4741,0061558230,good_reads:book,https://www.goodreads.com/author/show/167605.Guillermo_del_Toro,2009,/genres/horror|/genres/paranormal|/genres/vampires|/genres/fiction|/genres/fantasy|/genres/thriller|/genres/science-fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/suspense|/genres/apocalyptic|/genres/post-apocalyptic,dir18/6065215-the-strain.html,45350,"The Strain (The Strain Trilogy, #1)" +3.83,9394,0316010669,good_reads:book,https://www.goodreads.com/author/show/1439.Malcolm_Gladwell,2001,/genres/non-fiction|/genres/psychology|/genres/business|/genres/science|/genres/self-help|/genres/sociology|/genres/book-club|/genres/philosophy|/genres/economics|/genres/social-science,dir18/40102.Blink.html,220488,Blink +3.81,990,0451528352,good_reads:book,https://www.goodreads.com/author/show/1244.Mark_Twain,1881,/genres/classics|/genres/fiction|/genres/historical-fiction|/genres/literature|/genres/childrens|/genres/young-adult|/genres/adventure|/genres/literature|/genres/american,dir18/62446.The_Prince_and_the_Pauper.html,66372,The Prince and the Pauper +4.29,123,0151189781,good_reads:book,https://www.goodreads.com/author/show/18540.T_S_Eliot,1963,/genres/poetry|/genres/classics|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/fiction|/genres/literature|/genres/20th-century|/genres/literature|/genres/american|/genres/classics|/genres/classic-literature|/genres/spirituality|/genres/academic|/genres/college,dir18/142080.Collected_Poems_1909_1962.html,13920,"Collected Poems, 1909-1962" +4.13,1220,0671728687,good_reads:book,https://www.goodreads.com/author/show/13360.William_L_Shirer,1959,/genres/history|/genres/non-fiction|/genres/history|/genres/world-war-ii|/genres/war|/genres/cultural|/genres/germany|/genres/politics|/genres/war|/genres/military|/genres/world-war-ii|/genres/holocaust|/genres/military|/genres/military-history|/genres/history|/genres/european-history,dir18/767171.The_Rise_and_Fall_of_the_Third_Reich.html,36028,The Rise and Fall of the Third Reich +4.12,1484,0385735294,good_reads:book,https://www.goodreads.com/author/show/27100.Michael_Scott,2009,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/mythology|/genres/adventure|/genres/young-adult|/genres/young-adult-fantasy,dir18/4588949-the-sorceress.html,38105,"The Sorceress (The Secrets of the Immortal Nicholas Flamel, #3)" +4.06,662,1841493147,good_reads:book,https://www.goodreads.com/author/show/15890.Trudi_Canavan,2002,/genres/fantasy|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/adventure|/genres/romance|/genres/adult,dir18/28250.The_Novice.html,23696,"The Novice (The Black Magician Trilogy, #2)" +3.88,911,0812967259,good_reads:book,https://www.goodreads.com/author/show/2448.Arthur_Conan_Doyle,1912,/genres/classics|/genres/science-fiction|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/mystery|/genres/literature|/genres/novels|/genres/science-fiction-fantasy|/genres/animals|/genres/dinosaurs,dir18/10155.The_Lost_World.html,29993,"The Lost World (Professor Challenger, #1)" +3.97,1188,0060566213,good_reads:book,https://www.goodreads.com/author/show/36746.Lemony_Snicket,2001,/genres/fiction|/genres/young-adult|/genres/childrens|/genres/fantasy|/genres/mystery|/genres/adventure|/genres/humor|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/realistic-fiction,dir18/172327.The_Ersatz_Elevator.html,63496,"The Ersatz Elevator (A Series of Unfortunate Events, #6)" +4.43,32,,good_reads:book,https://www.goodreads.com/author/show/6697472.Aporva_Kala,2012,/genres/war|/genres/cultural|/genres/iran|/genres/cultural|/genres/india|/genres/cultural|/genres/pakistan|/genres/romance|/genres/love|/genres/fantasy|/genres/mythology|/genres/historical-fiction|/genres/politics|/genres/young-adult,dir18/16457950-the-chronicle-of-sapta-sindhu.html,65,The Chronicle of Sapta Sindhu +3.87,818,0515133876,good_reads:book,https://www.goodreads.com/author/show/9550.Laurell_K_Hamilton,2001,/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/horror|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/shapeshifters|/genres/werewolves,dir18/30248.Narcissus_in_Chains.html,40160,"Narcissus in Chains (Anita Blake, Vampire Hunter, #10)" +3.91,920,0061120057,good_reads:book,https://www.goodreads.com/author/show/52074.John_Crowley,1981,/genres/fantasy|/genres/fiction|/genres/magical-realism|/genres/science-fiction-fantasy|/genres/literature|/genres/fantasy|/genres/magic|/genres/speculative-fiction|/genres/science-fiction,dir18/90619.Little_Big.html,6049,"Little, Big" +3.98,627,057506689X,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,1994,/genres/fantasy|/genres/humor|/genres/fiction|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny|/genres/music|/genres/death|/genres/novels|/genres/science-fiction,dir18/34502.Soul_Music.html,35598,"Soul Music (Discworld, #16)" +4.12,366,0679417370,good_reads:book,https://www.goodreads.com/author/show/19405.Thomas_Mann,1901,/genres/european-literature|/genres/german-literature|/genres/cultural|/genres/germany|/genres/literature|/genres/historical-fiction|/genres/novels|/genres/literature|/genres/20th-century|/genres/classics,dir18/80890.Buddenbrooks.html,8824,Buddenbrooks +4.39,3420,,good_reads:book,https://www.goodreads.com/author/show/5174152.C_J_Roberts,2012,/genres/dark|/genres/adult-fiction|/genres/erotica|/genres/erotica|/genres/bdsm|/genres/romance|/genres/adult|/genres/sociology|/genres/abuse|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/romance|/genres/erotic-romance|/genres/new-adult,dir18/13612739-seduced-in-the-dark.html,32030,"Seduced in the Dark (The Dark Duet, #2)" +3.89,3552,1416552510,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,2008,/genres/horror|/genres/fiction|/genres/thriller|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/mystery|/genres/suspense|/genres/fantasy|/genres/paranormal,dir18/472343.Duma_Key.html,54970,Duma Key +4.12,1363,0425183238,good_reads:book,https://www.goodreads.com/author/show/85288.Benedict_Freedman,1947,/genres/historical-fiction|/genres/fiction|/genres/romance|/genres/book-club|/genres/classics|/genres/cultural|/genres/canada|/genres/young-adult|/genres/adventure|/genres/adult-fiction|/genres/adult,dir18/155712.Mrs_Mike.html,9785,Mrs. Mike +3.89,1430,0060593083,good_reads:book,https://www.goodreads.com/author/show/545.Neal_Stephenson,2003,/genres/fiction|/genres/historical-fiction|/genres/science-fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/alternate-history|/genres/science-fiction|/genres/steampunk|/genres/speculative-fiction|/genres/adventure|/genres/literature,dir18/823.Quicksilver.html,22967,"Quicksilver (The Baroque Cycle, #1)" +4.69,194,0451947630,good_reads:book,https://www.goodreads.com/author/show/20248.J_R_Ward,2009,/genres/paranormal|/genres/vampires|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/adult|/genres/fantasy|/genres/urban-fantasy|/genres/adult-fiction|/genres/erotica|/genres/fantasy|/genres/supernatural|/genres/fiction,dir18/6606305-black-dagger-brotherhood.html,5985,Black Dagger Brotherhood +4.02,2031,1582349010,good_reads:book,https://www.goodreads.com/author/show/49177.Shannon_Hale,2006,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/fairy-tales|/genres/romance|/genres/adventure|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/young-adult-fantasy|/genres/childrens,dir18/248470.River_Secrets.html,21659,"River Secrets (The Books of Bayern, #3)" +3.99,3524,078684907X,good_reads:book,https://www.goodreads.com/author/show/6245.Dave_Barry,2004,/genres/young-adult|/genres/fiction|/genres/childrens|/genres/adventure|/genres/fantasy|/genres/childrens|/genres/middle-grade|/genres/fantasy|/genres/magic|/genres/adventure|/genres/pirates|/genres/childrens|/genres/juvenile|/genres/fantasy|/genres/fairy-tales,dir18/34262.Peter_and_the_Starcatchers.html,42116,"Peter and the Starcatchers (Peter and the Starcatchers, #1)" +4.13,1458,0061668095,good_reads:book,https://www.goodreads.com/author/show/2096360.Aprilynne_Pike,2011,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/paranormal|/genres/fairies|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/fairies|/genres/fae|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/fiction,dir18/6918909-illusions.html,20775,"Illusions (Wings, #3)" +4.08,5186,1476730105,good_reads:book,https://www.goodreads.com/author/show/6556689.Christina_Lauren,2013,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/adult|/genres/new-adult|/genres/romance|/genres/erotic-romance|/genres/humor|/genres/funny|/genres/womens-fiction|/genres/chick-lit|/genres/fiction,dir18/16102004-beautiful-bastard.html,67159,"Beautiful Bastard (Beautiful Bastard, #1)" +4.33,1415,0061449156,good_reads:book,https://www.goodreads.com/author/show/1599723.Michael_Grant,2012,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/horror|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/young-adult|/genres/teen,dir18/8811134-fear.html,19739,"Fear (Gone, #5)" +3.69,5113,031601477X,good_reads:book,https://www.goodreads.com/author/show/3780.James_Patterson,2007,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/fantasy|/genres/contemporary|/genres/book-club|/genres/adult-fiction|/genres/mystery|/genres/adult|/genres/romance|/genres/contemporary-romance,dir18/2029177.Sundays_at_Tiffany_s.html,46199,Sundays at Tiffany's +4.17,1870,0007208006,good_reads:book,https://www.goodreads.com/author/show/36346.Jennifer_Donnelly,2002,/genres/historical-fiction|/genres/romance|/genres/fiction|/genres/romance|/genres/historical-romance|/genres/book-club|/genres/adult|/genres/mystery|/genres/womens-fiction|/genres/chick-lit|/genres/european-literature|/genres/british-literature,dir18/261331.The_Tea_Rose.html,16453,"The Tea Rose (The Tea Rose, #1)" +4.20,687,0061031321,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,2001,/genres/fantasy|/genres/fiction|/genres/humor|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny|/genres/science-fiction|/genres/novels|/genres/european-literature|/genres/british-literature|/genres/fantasy|/genres/high-fantasy,dir18/48002.Thief_of_Time.html,32838,"Thief of Time (Discworld, #26)" +4.09,839,0425205673,good_reads:book,https://www.goodreads.com/author/show/9550.Laurell_K_Hamilton,1996,/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/horror|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/mystery,dir18/30241.Bloody_Bones.html,49087,"Bloody Bones (Anita Blake, Vampire Hunter #5)" +3.98,355,,good_reads:book,https://www.goodreads.com/author/show/33472.Mika_Waltari,1945,/genres/historical-fiction|/genres/fiction|/genres/classics|/genres/european-literature|/genres/finnish-literature|/genres/cultural|/genres/egypt|/genres/novels|/genres/literature|/genres/adventure,dir18/364826.The_Egyptian.html,8108,The Egyptian +4.18,582,0552154229,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,1999,/genres/fantasy|/genres/literature|/genres/american|/genres/science-fiction-fantasy|/genres/young-adult|/genres/fiction,dir18/63720.The_Fifth_Elephant.html,31756,"The Fifth Elephant (Discworld, #24)" +4.57,3681,,good_reads:book,https://www.goodreads.com/author/show/6994378.Mia_Sheridan,2014,/genres/romance|/genres/new-adult|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/sociology|/genres/abuse|/genres/adult|/genres/adult-fiction|/genres/erotica|/genres/love|/genres/disability|/genres/drama,dir18/20639274-archer-s-voice.html,21742,Archer's Voice +3.89,24481,0316055433,good_reads:book,https://www.goodreads.com/author/show/8719.Donna_Tartt,2013,/genres/book-club|/genres/contemporary|/genres/literary-fiction|/genres/mystery|/genres/art|/genres/adult-fiction,dir18/17333223-the-goldfinch.html,166201,The Goldfinch +4.15,654,0679733736,good_reads:book,https://www.goodreads.com/author/show/957894.Albert_Camus,1942,/genres/non-fiction|/genres/writing|/genres/essays|/genres/classics|/genres/cultural|/genres/france|/genres/literature|/genres/literature|/genres/20th-century|/genres/fantasy|/genres/mythology,dir18/11987.The_Myth_of_Sisyphus_and_Other_Essays.html,25849,The Myth of Sisyphus and Other Essays +3.70,3810,1594487588,good_reads:book,https://www.goodreads.com/author/show/3681.Ann_Brashares,2010,/genres/fiction|/genres/fantasy|/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/fantasy|/genres/paranormal|/genres/historical-fiction|/genres/book-club|/genres/science-fiction|/genres/time-travel|/genres/adult|/genres/adult-fiction,dir18/7135858-my-name-is-memory.html,19934,My Name Is Memory +4.32,694,0099490579,good_reads:book,https://www.goodreads.com/author/show/34878.Walter_Moers,2004,/genres/fantasy|/genres/fiction|/genres/writing|/genres/books-about-books|/genres/european-literature|/genres/german-literature|/genres/humor|/genres/young-adult|/genres/adventure,dir18/62031.The_City_of_Dreaming_Books.html,7539,"The City of Dreaming Books (Zamonia, #4)" +4.25,4231,,good_reads:book,https://www.goodreads.com/author/show/5430144.Colleen_Hoover,2013,/genres/new-adult|/genres/romance|/genres/contemporary|/genres/young-adult|/genres/romance|/genres/contemporary-romance|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/love|/genres/realistic-fiction|/genres/young-adult|/genres/young-adult-romance,dir18/15784909-this-girl.html,36156,"This Girl (Slammed, #3)" +4.00,222,9725681363,good_reads:book,https://www.goodreads.com/author/show/6913270.E_a_de_Queir_s,1888,/genres/classics|/genres/european-literature|/genres/portuguese-literature|/genres/romance|/genres/fiction|/genres/cultural|/genres/portugal|/genres/historical-fiction|/genres/literature|/genres/academic|/genres/school,dir18/1249630.Os_Maias.html,8265,Os Maias +3.77,3413,0060577312,good_reads:book,https://www.goodreads.com/author/show/157663.Angie_Sage,2005,/genres/young-adult|/genres/fiction|/genres/childrens|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/fantasy|/genres/childrens|/genres/juvenile|/genres/science-fiction-fantasy,dir19/769483.Magyk.html,64330,"Magyk (Septimus Heap, #1)" +4.59,949,0842313079,good_reads:book,https://www.goodreads.com/author/show/6492.Francine_Rivers,1995,/genres/christian-fiction|/genres/historical-fiction|/genres/christian|/genres/fiction|/genres/romance|/genres/romance|/genres/christian-romance|/genres/religion|/genres/adult|/genres/inspirational|/genres/romance|/genres/historical-romance,dir19/46601.An_Echo_in_the_Darkness.html,23328,"An Echo in the Darkness (Mark of the Lion, #2)" +4.00,18028,159463176X,good_reads:book,https://www.goodreads.com/author/show/569.Khaled_Hosseini,2013,/genres/book-club|/genres/historical-fiction|/genres/contemporary|/genres/adult-fiction|/genres/adult|/genres/novels|/genres/literary-fiction|/genres/literature|/genres/drama|/genres/fiction,dir19/16115612-and-the-mountains-echoed.html,126697,And the Mountains Echoed +4.43,1860,1423147947,good_reads:book,https://www.goodreads.com/author/show/56224.Ally_Carter,2012,/genres/young-adult|/genres/mystery|/genres/romance|/genres/spy-thriller|/genres/espionage|/genres/adventure|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/action|/genres/young-adult|/genres/teen,dir19/10560331-out-of-sight-out-of-time.html,25012,"Out of Sight, Out of Time (Gallagher Girls, #5)" +4.41,534,4770019572,good_reads:book,https://www.goodreads.com/author/show/58917.Eiji_Yoshikawa,1935,/genres/fiction|/genres/historical-fiction|/genres/cultural|/genres/japan|/genres/asian-literature|/genres/japanese-literature|/genres/novels|/genres/classics|/genres/literature|/genres/philosophy,dir19/102030.Musashi.html,7202,Musashi +3.87,1303,1841959111,good_reads:book,https://www.goodreads.com/author/show/83727.Steven_Hall,2007,/genres/fiction|/genres/fantasy|/genres/science-fiction|/genres/mystery|/genres/thriller|/genres/novels|/genres/literature|/genres/book-club|/genres/european-literature|/genres/british-literature|/genres/science-fiction-fantasy,dir19/144800.The_Raw_Shark_Texts.html,10172,The Raw Shark Texts +4.21,4194,0545284139,good_reads:book,https://www.goodreads.com/author/show/3267859.Jennifer_A_Nielsen,2012,/genres/fantasy|/genres/young-adult|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/fiction|/genres/historical-fiction|/genres/young-adult|/genres/young-adult-fantasy|/genres/mystery,dir19/12432220-the-false-prince.html,26865,"The False Prince (The Ascendance Trilogy, #1)" +4.15,752,1585678759,good_reads:book,https://www.goodreads.com/author/show/7963.P_G_Wodehouse,1919,/genres/fiction|/genres/humor|/genres/classics|/genres/short-stories|/genres/humor|/genres/comedy|/genres/european-literature|/genres/british-literature|/genres/humor|/genres/funny|/genres/literature|/genres/historical-fiction|/genres/novels,dir19/200572.My_Man_Jeeves.html,15702,"My Man Jeeves (Jeeves, #1)" +4.10,948,0758216424,good_reads:book,https://www.goodreads.com/author/show/137902.Richelle_Mead,2008,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/paranormal|/genres/vampires|/genres/paranormal|/genres/demons|/genres/adult|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/supernatural,dir19/1316617.Succubus_on_Top.html,20549,"Succubus on Top (Georgina Kincaid, #2)" +4.39,1836,0765325942,good_reads:book,https://www.goodreads.com/author/show/6252.Robert_Jordan,2009,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/epic,dir19/8253920-towers-of-midnight.html,65952,Towers of Midnight (Wheel of Time #13) +3.90,872,0689849109,good_reads:book,https://www.goodreads.com/author/show/10673.Eleanor_H_Porter,1913,/genres/classics|/genres/childrens|/genres/fiction|/genres/young-adult|/genres/historical-fiction|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/childrens-classics|/genres/literature|/genres/american|/genres/literature|/genres/novels,dir19/1000751.Pollyanna.html,43909,"Pollyanna (Pollyanna, #1)" +4.24,1070,0061053562,good_reads:book,https://www.goodreads.com/author/show/5807106.Iain_M_Banks,1988,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/space-opera|/genres/culture|/genres/science-fiction-fantasy|/genres/fantasy|/genres/space|/genres/sports-and-games|/genres/games|/genres/adventure|/genres/speculative-fiction,dir19/18630.The_Player_of_Games.html,26871,"The Player of Games (Culture, #2)" +4.14,765,1419701223,good_reads:book,https://www.goodreads.com/author/show/257093.Antonia_Michaelis,2011,/genres/young-adult|/genres/mystery|/genres/contemporary|/genres/romance|/genres/fantasy|/genres/realistic-fiction|/genres/sociology|/genres/abuse,dir19/11284898-the-storyteller.html,3391,The Storyteller +3.97,593,0451529456,good_reads:book,https://www.goodreads.com/author/show/10264.Henry_David_Thoreau,1854,/genres/classics|/genres/philosophy|/genres/non-fiction|/genres/literature|/genres/writing|/genres/essays|/genres/environment|/genres/nature|/genres/politics|/genres/history|/genres/autobiography|/genres/memoir|/genres/literature|/genres/american,dir19/116020.Walden_Civil_Disobedience.html,20800,Walden & Civil Disobedience +4.23,2311,3401063472,good_reads:book,https://www.goodreads.com/author/show/298438.Kerstin_Gier,2009,/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/time-travel|/genres/romance|/genres/historical-fiction|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/fiction|/genres/mystery|/genres/adventure,dir19/6919272-saphirblau.html,22461,"Saphirblau (Edelstein Trilogie, #2)" +3.96,493,0140443339,good_reads:book,https://www.goodreads.com/author/show/990.Aeschylus,-458,/genres/classics|/genres/plays|/genres/drama|/genres/fiction|/genres/fantasy|/genres/mythology|/genres/literature|/genres/plays|/genres/theatre|/genres/poetry|/genres/academic|/genres/school|/genres/tragedy,dir19/1519.The_Oresteia.html,18729,The Oresteia +3.70,4260,0143036661,good_reads:book,https://www.goodreads.com/author/show/211268.Geraldine_Brooks,2005,/genres/historical-fiction|/genres/fiction|/genres/book-club|/genres/military-history|/genres/civil-war|/genres/war|/genres/adult-fiction,dir19/13529.March.html,33104,March +4.14,1683,141651693X,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,2003,/genres/fantasy|/genres/fiction|/genres/horror|/genres/science-fiction|/genres/science-fiction-fantasy|/genres/western|/genres/adventure,dir19/4978.Wolves_of_the_Calla.html,68271,"Wolves of the Calla (The Dark Tower, #5)" +4.18,4524,0743289684,good_reads:book,https://www.goodreads.com/author/show/46245.Ayaan_Hirsi_Ali,2006,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/biography|/genres/book-club|/genres/religion|/genres/cultural|/genres/africa|/genres/politics|/genres/religion|/genres/islam|/genres/biography|/genres/autobiography|/genres/biography-memoir,dir19/81227.Infidel.html,41991,Infidel +4.27,3062,1590171993,good_reads:book,https://www.goodreads.com/author/show/51229.John_Edward_Williams,1965,/genres/fiction|/genres/literature|/genres/novels|/genres/book-club|/genres/literature|/genres/american|/genres/historical-fiction,dir19/166997.Stoner.html,18675,Stoner +4.01,4696,0385528779,good_reads:book,https://www.goodreads.com/author/show/3472.Margaret_Atwood,2009,/genres/fiction|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/apocalyptic|/genres/post-apocalyptic|/genres/cultural|/genres/canada|/genres/fantasy|/genres/speculative-fiction,dir19/6080337-the-year-of-the-flood.html,46171,"The Year of the Flood (MaddAddam Trilogy, #2)" +4.06,1096,0826328091,good_reads:book,https://www.goodreads.com/author/show/67388.Forrest_Carter,1976,/genres/fiction|/genres/historical-fiction|/genres/young-adult|/genres/classics|/genres/book-club|/genres/childrens|/genres/literature|/genres/american|/genres/education|/genres/adult|/genres/young-adult|/genres/coming-of-age,dir19/116236.The_Education_of_Little_Tree.html,8863,The Education of Little Tree +4.25,1205,0451230647,good_reads:book,https://www.goodreads.com/author/show/1857564.Chloe_Neill,2010,/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/adult|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/shapeshifters,dir19/7060582-twice-bitten.html,29869,"Twice Bitten (Chicagoland Vampires, #3)" +4.19,863,0876120834,good_reads:book,https://www.goodreads.com/author/show/14650.Paramahansa_Yogananda,1946,/genres/spirituality|/genres/non-fiction|/genres/biography|/genres/religion|/genres/philosophy|/genres/biography|/genres/autobiography|/genres/cultural|/genres/india|/genres/autobiography|/genres/memoir|/genres/religion|/genres/hinduism|/genres/classics,dir19/639864.Autobiography_of_a_Yogi.html,19482,Autobiography of a Yogi +4.70,6,1481003925,good_reads:book,https://www.goodreads.com/author/show/6522690.Tina_Traverse,2012,/genres/non-fiction,dir19/16691600-forever-christian.html,50,"Forever, Christian" +3.84,2762,0590452037,good_reads:book,https://www.goodreads.com/author/show/12696.Jerry_Spinelli,1990,/genres/young-adult|/genres/fiction|/genres/childrens|/genres/realistic-fiction|/genres/academic|/genres/school|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/classics|/genres/academic|/genres/read-for-school|/genres/adventure,dir19/139463.Maniac_Magee.html,86428,Maniac Magee +3.87,568,0140065172,good_reads:book,https://www.goodreads.com/author/show/30830.Judith_Guest,1976,/genres/fiction|/genres/classics|/genres/literature|/genres/contemporary|/genres/novels|/genres/psychology|/genres/academic|/genres/school|/genres/young-adult|/genres/young-adult|/genres/high-school|/genres/drama,dir19/160251.Ordinary_People.html,11867,Ordinary People +3.65,3009,0385733976,good_reads:book,https://www.goodreads.com/author/show/2526.Libba_Bray,2009,/genres/young-adult|/genres/fantasy|/genres/fiction|/genres/humor|/genres/young-adult|/genres/teen|/genres/contemporary|/genres/adventure,dir19/6512140-going-bovine.html,20013,Going Bovine +3.93,3176,0385742371,good_reads:book,https://www.goodreads.com/author/show/4902564.Lissa_Price,2012,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fantasy|/genres/romance|/genres/fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/young-adult|/genres/teen|/genres/mystery|/genres/thriller,dir19/11861062-starters.html,22470,"Starters (Starters, #1)" +4.06,4635,0743226720,good_reads:book,https://www.goodreads.com/author/show/6281688.David_McCullough,2004,/genres/history|/genres/non-fiction|/genres/history|/genres/american-history|/genres/war|/genres/war|/genres/military|/genres/book-club|/genres/biography|/genres/politics|/genres/literature|/genres/american|/genres/military|/genres/military-history,dir19/1067.1776.html,78462,1776 +4.23,487,0345379063,good_reads:book,https://www.goodreads.com/author/show/11586.David_Gemmell,1984,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/heroic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction-fantasy|/genres/heroic-fantasy|/genres/sword-and-sorcery|/genres/adventure|/genres/war|/genres/epic,dir19/618177.Legend.html,12065,"Legend (Drenai Saga, #1)" +3.86,1484,0557364639,good_reads:book,https://www.goodreads.com/author/show/3486415.Amanda_Hocking,2010,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/romance|/genres/paranormal-romance,dir19/8046350-my-blood-approves.html,20819,"My Blood Approves (My Blood Approves, #1)" +4.04,3055,0446402397,good_reads:book,https://www.goodreads.com/author/show/981834.Tom_Rob_Smith,2008,/genres/fiction|/genres/historical-fiction|/genres/mystery|/genres/thriller|/genres/mystery|/genres/crime|/genres/cultural|/genres/russia|/genres/thriller|/genres/mystery-thriller|/genres/suspense|/genres/book-club|/genres/adventure,dir19/2161733.Child_44.html,29248,"Child 44 (Leo Demidov, #1)" +4.17,690,0965476022,good_reads:book,https://www.goodreads.com/author/show/16628.Walter_Farley,1941,/genres/classics|/genres/fiction|/genres/childrens|/genres/young-adult|/genres/animals|/genres/horses|/genres/animals|/genres/adventure|/genres/childrens|/genres/juvenile|/genres/realistic-fiction|/genres/historical-fiction,dir19/272895.The_Black_Stallion.html,49723,"The Black Stallion (The Black Stallion, #1)" +4.24,4411,0446546933,good_reads:book,https://www.goodreads.com/author/show/1116816.Dave_Cullen,2009,/genres/non-fiction|/genres/crime|/genres/true-crime|/genres/history|/genres/mystery|/genres/crime|/genres/psychology|/genres/adult|/genres/sociology|/genres/writing|/genres/journalism|/genres/book-club|/genres/biography,dir19/5632446-columbine.html,30800,Columbine +4.02,2448,0446692638,good_reads:book,https://www.goodreads.com/author/show/3780.James_Patterson,1992,/genres/mystery|/genres/fiction|/genres/thriller|/genres/mystery|/genres/crime|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/detective|/genres/adult|/genres/mystery|/genres/murder-mystery|/genres/action,dir19/13145.Along_Came_a_Spider.html,205069,"Along Came a Spider (Alex Cross, #1)" +4.46,3136,,good_reads:book,https://www.goodreads.com/author/show/6576110.Jodi_Ellen_Malpas,2013,/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/erotica|/genres/bdsm|/genres/romance|/genres/erotic-romance|/genres/adult|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/new-adult|/genres/love|/genres/drama,dir19/17255265-this-man-confessed.html,39106,"This Man Confessed (This Man, #3)" +4.14,3445,0786868724,good_reads:book,https://www.goodreads.com/author/show/2331.Mitch_Albom,1904,/genres/non-fiction|/genres/inspirational|/genres/religion|/genres/autobiography|/genres/memoir|/genres/book-club|/genres/spirituality|/genres/biography|/genres/christian,dir19/1255781.Have_a_Little_Faith.html,46722,Have a Little Faith +3.87,729,0060594527,good_reads:book,https://www.goodreads.com/author/show/2031.James_Hilton,1933,/genres/fantasy|/genres/adventure|/genres/classics|/genres/literature|/genres/novels|/genres/travel|/genres/science-fiction|/genres/historical-fiction|/genres/book-club|/genres/cultural|/genres/asia,dir19/2978.Lost_Horizon.html,8664,Lost Horizon +3.93,339,1933480092,good_reads:book,https://www.goodreads.com/author/show/5326370.Ivan_Goncharov,1859,/genres/classics|/genres/cultural|/genres/russia|/genres/fiction|/genres/literature|/genres/russian-literature|/genres/literature|/genres/literature|/genres/19th-century|/genres/novels,dir19/254308.Oblomov.html,12461,Oblomov +3.97,4441,031612611X,good_reads:book,https://www.goodreads.com/author/show/2526.Libba_Bray,2012,/genres/young-adult|/genres/fantasy|/genres/historical-fiction|/genres/fantasy|/genres/paranormal|/genres/mystery|/genres/horror|/genres/fiction|/genres/fantasy|/genres/supernatural,dir19/7728889-the-diviners.html,25766,"The Diviners (The Diviners, #1)" +4.03,83643,0439023513,good_reads:book,https://www.goodreads.com/author/show/153394.Suzanne_Collins,2010,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/fiction|/genres/fantasy|/genres/science-fiction|/genres/romance|/genres/adventure|/genres/young-adult|/genres/teen|/genres/apocalyptic|/genres/post-apocalyptic|/genres/science-fiction-fantasy,dir19/7260188-mockingjay.html,1316704,"Mockingjay (The Hunger Games, #3)" +4.52,179,087747897X,good_reads:book,https://www.goodreads.com/author/show/3009967.Joseph_Smith_Jr_,1835,/genres/religion|/genres/christianity|/genres/lds|/genres/non-fiction|/genres/religion|/genres/church|/genres/spirituality|/genres/lds|/genres/lds-non-fiction|/genres/inspirational|/genres/lds|/genres/mormonism|/genres/religion|/genres/faith|/genres/religion|/genres/theology,dir19/596304.Lectures_on_Faith.html,3647,Lectures on Faith +3.93,1095,0345418778,good_reads:book,https://www.goodreads.com/author/show/4.Douglas_Adams,1992,/genres/science-fiction|/genres/fiction|/genres/humor|/genres/fantasy|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny,dir19/360.Mostly_Harmless.html,56390,"Mostly Harmless (Hitchhiker's Guide, #5)" +4.29,994,0451231619,good_reads:book,https://www.goodreads.com/author/show/15292.Rachel_Caine,2010,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/young-adult|/genres/teen,dir19/7600922-ghost-town.html,26758,"Ghost Town (The Morganville Vampires, #9)" +4.17,591,0060748125,good_reads:book,https://www.goodreads.com/author/show/909675.Irvin_D_Yalom,1992,/genres/psychology|/genres/fiction|/genres/philosophy|/genres/historical-fiction|/genres/novels|/genres/literature|/genres/literature|/genres/american|/genres/roman|/genres/drama|/genres/romance,dir19/21031.When_Nietzsche_Wept.html,12950,When Nietzsche Wept +3.68,9709,0224094157,good_reads:book,https://www.goodreads.com/author/show/1462.Julian_Barnes,2011,/genres/fiction|/genres/book-club|/genres/contemporary|/genres/literary-fiction|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/adult-fiction|/genres/mystery|/genres/adult,dir19/10746542-the-sense-of-an-ending.html,77492,The Sense of an Ending +3.81,1646,0060541814,good_reads:book,https://www.goodreads.com/author/show/5194.Michael_Crichton,1969,/genres/science-fiction|/genres/thriller|/genres/science-fiction-fantasy|/genres/suspense|/genres/mystery|/genres/horror|/genres/fiction|/genres/medical,dir19/7670.The_Andromeda_Strain.html,124607,The Andromeda Strain +4.34,362,0805210555,good_reads:book,https://www.goodreads.com/author/show/5223.Franz_Kafka,1946,/genres/fiction|/genres/short-stories|/genres/classics|/genres/literature|/genres/european-literature|/genres/german-literature|/genres/philosophy|/genres/literature|/genres/20th-century|/genres/horror|/genres/european-literature|/genres/czech-literature|/genres/fantasy,dir19/22904.The_Complete_Stories.html,15580,The Complete Stories +3.94,1940,037571894X,good_reads:book,https://www.goodreads.com/author/show/3354.Haruki_Murakami,1982,/genres/fiction|/genres/cultural|/genres/japan|/genres/asian-literature|/genres/japanese-literature|/genres/magical-realism|/genres/fantasy|/genres/literature|/genres/contemporary|/genres/novels|/genres/mystery|/genres/cultural|/genres/asia,dir19/11298.A_Wild_Sheep_Chase.html,39580,"A Wild Sheep Chase (The Rat, #3)" +4.13,911,0060728272,good_reads:book,https://www.goodreads.com/author/show/119755.Michelle_Paver,2004,/genres/fantasy|/genres/young-adult|/genres/adventure|/genres/historical-fiction|/genres/fiction|/genres/childrens|/genres/animals|/genres/fantasy|/genres/magic|/genres/childrens|/genres/middle-grade|/genres/animals|/genres/wolves,dir19/295305.Wolf_Brother.html,11839,"Wolf Brother (Chronicles of Ancient Darkness, #1)" +3.57,2073,0451528522,good_reads:book,https://www.goodreads.com/author/show/880695.H_G_Wells,1897,/genres/classics|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/horror|/genres/literature|/genres/science-fiction-fantasy|/genres/novels|/genres/literature|/genres/19th-century|/genres/european-literature|/genres/british-literature,dir19/17184.The_Invisible_Man.html,53991,The Invisible Man +4.00,54,,good_reads:book,https://www.goodreads.com/author/show/4078538.Tatyana_K_Varenko,2010,/genres/paranormal|/genres/vampires|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy,dir19/8434205-ordeal.html,110,Ordeal +4.76,223,1433502410,good_reads:book,https://www.goodreads.com/author/show/5158478.Anonymous,2007,/genres/religion|/genres/non-fiction|/genres/history|/genres/classics|/genres/christian|/genres/poetry|/genres/philosophy|/genres/parenting|/genres/religion|/genres/faith|/genres/religion|/genres/church,dir19/5031805-esv-study-bible.html,7343,ESV Study Bible +4.70,66,,good_reads:book,https://www.goodreads.com/author/show/7363789.Eran_Gadot,2013,/genres/childrens,dir19/18720887-supernatural-hero.html,114,Supernatural Hero +3.85,2478,0316101842,good_reads:book,https://www.goodreads.com/author/show/3780.James_Patterson,2012,/genres/young-adult|/genres/fantasy|/genres/science-fiction|/genres/romance|/genres/adventure|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/dystopia|/genres/paranormal|/genres/angels|/genres/young-adult|/genres/teen,dir19/11946245-nevermore.html,19525,"Nevermore (Maximum Ride, #8)" +4.20,745,0679889175,good_reads:book,https://www.goodreads.com/author/show/8596.Tamora_Pierce,1999,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/young-adult-fantasy|/genres/adventure|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction-fantasy|/genres/childrens,dir19/153784.First_Test.html,30617,"First Test (Protector of the Small, #1)" +4.04,179,,good_reads:book,https://www.goodreads.com/author/show/6940334.Avery_Aster,2014,/genres/new-adult|/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/adult-fiction|/genres/erotica|/genres/erotica|/genres/menage|/genres/romance|/genres/erotic-romance|/genres/humor|/genres/funny|/genres/adult|/genres/fiction,dir19/20567969-yours-truly-taddy.html,309,"Yours Truly, Taddy (The Undergrad Years, #2)" +4.04,3141,0385737637,good_reads:book,https://www.goodreads.com/author/show/36346.Jennifer_Donnelly,2010,/genres/historical-fiction|/genres/young-adult|/genres/fiction|/genres/science-fiction|/genres/time-travel|/genres/fantasy|/genres/young-adult|/genres/teen|/genres/contemporary|/genres/romance|/genres/mystery|/genres/cultural|/genres/france,dir19/7558747-revolution.html,17876,Revolution +4.03,1408,0141321318,good_reads:book,https://www.goodreads.com/author/show/10896.Eoin_Colfer,2003,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/science-fiction|/genres/adventure|/genres/childrens|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/fairies|/genres/science-fiction-fantasy,dir19/227865.The_Eternity_Code.html,65449,"The Eternity Code (Artemis Fowl, #3)" +4.45,285,1585161780,good_reads:book,https://www.goodreads.com/author/show/5158478.Anonymous,130,/genres/christian|/genres/religion|/genres/non-fiction|/genres/reference|/genres/classics|/genres/religion|/genres/christianity|/genres/history|/genres/religion|/genres/theology|/genres/spirituality|/genres/christianity|/genres/lds,dir19/539387.Holy_Bible.html,3959,Holy Bible +4.00,2881,0670062278,good_reads:book,https://www.goodreads.com/author/show/88685.Alison_Goodman,2008,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/dragons|/genres/fantasy|/genres/magic|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/high-fantasy|/genres/young-adult|/genres/young-adult-fantasy|/genres/fantasy|/genres/mythology|/genres/young-adult|/genres/teen,dir19/2986865-eon.html,31921,"Eon (Eon, #1)" +3.66,17103,1416589643,good_reads:book,https://www.goodreads.com/author/show/374590.Chris_Cleave,2008,/genres/fiction|/genres/book-club|/genres/cultural|/genres/africa|/genres/historical-fiction|/genres/contemporary|/genres/adult-fiction|/genres/adult|/genres/novels|/genres/literary-fiction|/genres/european-literature|/genres/british-literature,dir19/6948436-little-bee.html,148159,Little Bee +3.82,1692,7800605195,good_reads:book,https://www.goodreads.com/author/show/13957.Scott_Westerfeld,2004,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/magic,dir19/24766.The_Secret_Hour.html,21386,"The Secret Hour (Midnighters, #1)" +4.05,689,0515134473,good_reads:book,https://www.goodreads.com/author/show/9550.Laurell_K_Hamilton,1998,/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/horror|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/shapeshifters|/genres/werewolves,dir19/30242.Burnt_Offerings.html,44769,"Burnt Offerings (Anita Blake, Vampire Hunter, #7)" +4.32,810,0451225007,good_reads:book,https://www.goodreads.com/author/show/20248.J_R_Ward,2006,/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/short-stories,dir19/2880715-the-black-dagger-brotherhood.html,20269,The Black Dagger Brotherhood +3.75,1206,,good_reads:book,https://www.goodreads.com/author/show/9399.Jeanette_Winterson,1985,/genres/fiction|/genres/glbt|/genres/glbt|/genres/queer|/genres/glbt|/genres/lesbian|/genres/contemporary|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/classics|/genres/novels|/genres/religion,dir19/15055.Oranges_Are_Not_the_Only_Fruit.html,26317,Oranges Are Not the Only Fruit +4.04,575,045122681X,good_reads:book,https://www.goodreads.com/author/show/2747995.Mahbod_Seraji,2009,/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/iran|/genres/book-club|/genres/romance|/genres/cultural|/genres/cultural|/genres/asia,dir19/6001011-rooftops-of-tehran.html,3894,Rooftops of Tehran +4.33,336,1930900244,good_reads:book,https://www.goodreads.com/author/show/410653.Astrid_Lindgren,1973,/genres/fantasy|/genres/childrens|/genres/classics|/genres/fiction|/genres/european-literature|/genres/swedish-literature|/genres/european-literature|/genres/scandinavian-literature|/genres/adventure|/genres/young-adult|/genres/novels|/genres/cultural|/genres/sweden,dir19/19312.The_Brothers_Lionheart.html,11613,The Brothers Lionheart +3.95,1113,0345487133,good_reads:book,https://www.goodreads.com/author/show/53501.George_R_Stewart,1949,/genres/science-fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fiction|/genres/science-fiction|/genres/apocalyptic|/genres/science-fiction|/genres/dystopia|/genres/classics|/genres/science-fiction-fantasy|/genres/speculative-fiction|/genres/novels|/genres/adventure|/genres/survival,dir19/93269.Earth_Abides.html,12993,Earth Abides +3.84,686,038531387X,good_reads:book,https://www.goodreads.com/author/show/31457.James_Dickey,1970,/genres/fiction|/genres/classics|/genres/thriller|/genres/adventure|/genres/horror|/genres/literature|/genres/novels|/genres/american|/genres/southern|/genres/suspense|/genres/literary-fiction,dir19/592657.Deliverance.html,19727,Deliverance +4.19,1223,0399244565,good_reads:book,https://www.goodreads.com/author/show/34049.John_Flanagan,2007,/genres/adventure|/genres/fiction|/genres/young-adult|/genres/fantasy|/genres/young-adult|/genres/teen|/genres/action|/genres/childrens|/genres/historical-fiction|/genres/medieval|/genres/young-adult|/genres/young-adult-fantasy|/genres/historical-fiction,dir19/127823.The_Icebound_Land.html,33384,"The Icebound Land (Ranger's Apprentice, #3)" +3.83,847,0140382623,good_reads:book,https://www.goodreads.com/author/show/15123.Carlo_Collodi,1880,/genres/classics|/genres/fantasy|/genres/childrens|/genres/fiction|/genres/european-literature|/genres/italian-literature|/genres/fantasy|/genres/fairy-tales|/genres/adventure|/genres/cultural|/genres/italy|/genres/young-adult|/genres/literature,dir19/180617.Pinocchio.html,37711,Pinocchio +4.35,1678,0930289455,good_reads:book,https://www.goodreads.com/author/show/3961.Alan_Moore,1988,/genres/sequential-art|/genres/comics|/genres/sequential-art|/genres/graphic-novels|/genres/dc-comics|/genres/batman|/genres/fiction|/genres/graphic-novels-comics|/genres/comics|/genres/comic-book|/genres/comics|/genres/superheroes|/genres/superheroes|/genres/dc-comics|/genres/mystery|/genres/crime|/genres/fantasy,dir19/96358.Batman.html,74517,Batman +4.00,2102,1405204265,good_reads:book,https://www.goodreads.com/author/show/27397.Benjamin_Hoff,1982,/genres/philosophy|/genres/non-fiction|/genres/religion|/genres/spirituality|/genres/self-help|/genres/religion|/genres/taoism|/genres/humor|/genres/classics|/genres/inspirational|/genres/religion|/genres/buddhism,dir19/48757.The_Tao_of_Pooh.html,55954,The Tao of Pooh +4.20,1483,0061449121,good_reads:book,https://www.goodreads.com/author/show/1599723.Michael_Grant,2010,/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/horror|/genres/fantasy|/genres/supernatural|/genres/adventure|/genres/romance,dir19/6686101-plague.html,28280,"Plague (Gone, #4)" +4.19,152,1567313450,good_reads:book,https://www.goodreads.com/author/show/18062.James_Herriot,1972,/genres/non-fiction|/genres/animals|/genres/classics|/genres/biography|/genres/autobiography|/genres/memoir|/genres/humor|/genres/short-stories|/genres/adult|/genres/biography-memoir|/genres/childrens,dir19/32087.All_Creatures_Great_and_Small_All_Things_Bright_and_Beautiful.html,7739,All Creatures Great and Small & All Things Bright and Beautiful +4.10,73,,good_reads:book,https://www.goodreads.com/author/show/6534462.Christopher_Shields,2012,/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/fairies|/genres/fae|/genres/fantasy|/genres/magic|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/fairies|/genres/fantasy|/genres/mythology,dir19/16031258-the-steward.html,324,"The Steward (Weald Fae Journals, #1)" +3.49,2523,0007251866,good_reads:book,https://www.goodreads.com/author/show/566.Paulo_Coelho,1386,/genres/fiction|/genres/philosophy|/genres/novels|/genres/spirituality|/genres/book-club|/genres/inspirational|/genres/fantasy|/genres/literature|/genres/religion|/genres/mystery,dir19/816720.The_Witch_Of_Portobello.html,41915,The Witch Of Portobello +4.32,3035,,good_reads:book,https://www.goodreads.com/author/show/6576110.Jodi_Ellen_Malpas,2013,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/contemporary-romance|/genres/erotica|/genres/bdsm|/genres/contemporary|/genres/adult|/genres/romance|/genres/erotic-romance|/genres/new-adult|/genres/love|/genres/fiction,dir19/18149927-beneath-this-man.html,49394,"Beneath This Man (This Man, #2)" +4.07,3735,1878424505,good_reads:book,https://www.goodreads.com/author/show/4402.Miguel_Ruiz,1997,/genres/spirituality|/genres/philosophy|/genres/inspirational|/genres/religion|/genres/book-club|/genres/non-fiction|/genres/self-help|/genres/adult|/genres/leadership|/genres/philosophy|/genres/metaphysics,dir19/6596.The_Four_Agreements.html,69588,The Four Agreements +3.82,6801,0316122386,good_reads:book,https://www.goodreads.com/author/show/805184.Jennifer_E_Smith,2011,/genres/contemporary|/genres/young-adult|/genres/romance|/genres/young-adult|/genres/teen|/genres/family|/genres/drama|/genres/realistic-fiction|/genres/young-adult|/genres/high-school|/genres/young-adult|/genres/young-adult-romance|/genres/young-adult|/genres/coming-of-age,dir19/10798416-the-statistical-probability-of-love-at-first-sight.html,65347,The Statistical Probability of Love at First Sight +4.02,377,0872205541,good_reads:book,https://www.goodreads.com/author/show/879.Plato,-400,/genres/philosophy|/genres/classics|/genres/non-fiction|/genres/history|/genres/literature|/genres/ancient|/genres/academic|/genres/college|/genres/politics|/genres/cultural|/genres/greece|/genres/academic|/genres/read-for-school|/genres/classics|/genres/classic-literature,dir19/22632.The_Trial_and_Death_of_Socrates.html,18712,The Trial and Death of Socrates +3.80,2302,0061159174,good_reads:book,https://www.goodreads.com/author/show/33.Edward_P_Jones,2003,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/cultural|/genres/african-american|/genres/literature|/genres/literary-fiction|/genres/novels|/genres/american|/genres/southern|/genres/contemporary|/genres/literature|/genres/american,dir19/67.The_Known_World.html,22519,The Known World +3.97,123,0925776254,good_reads:book,https://www.goodreads.com/author/show/7036526.Jessica_O_Gorek,2013,/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/romance|/genres/paranormal-romance|/genres/science-fiction|/genres/romance|/genres/paranormal|/genres/demons|/genres/fiction,dir19/17977415-ethereal-fury.html,200,"Ethereal Fury (Gemini Rising, #1)" +4.22,51,0517072459,good_reads:book,https://www.goodreads.com/author/show/7715.Robert_Frost,1937,/genres/poetry|/genres/classics|/genres/literature|/genres/american|/genres/fiction|/genres/literature|/genres/academic|/genres/school|/genres/anthologies|/genres/collections|/genres/academic|/genres/college|/genres/reference|/genres/young-adult|/genres/high-school,dir19/316943.Selected_Poems.html,2757,Selected Poems +4.11,1997,044101268X,good_reads:book,https://www.goodreads.com/author/show/10746.Jim_Butcher,2004,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/adventure,dir19/29396.Furies_of_Calderon.html,44851,"Furies of Calderon (Codex Alera, #1)" +4.33,192,1934169579,good_reads:book,https://www.goodreads.com/author/show/3565.Oscar_Wilde,1888,/genres/classics|/genres/fantasy|/genres/fantasy|/genres/fairy-tales|/genres/fiction|/genres/short-stories|/genres/childrens|/genres/literature|/genres/literature|/genres/19th-century|/genres/european-literature|/genres/irish-literature|/genres/young-adult,dir19/163716.The_Complete_Fairy_Tales.html,7629,The Complete Fairy Tales +3.80,8963,1843913720,good_reads:book,https://www.goodreads.com/author/show/3222554.Jonas_Jonasson,2009,/genres/book-club|/genres/humor|/genres/contemporary|/genres/historical-fiction|/genres/fiction|/genres/adventure,dir19/13486632-the-hundred-year-old-man-who-climbed-out-of-the-window-and-disappeared.html,59798,The Hundred-Year-Old Man Who Climbed Out of the Window and Disappeared +4.47,943,1439123128,good_reads:book,https://www.goodreads.com/author/show/4428.Kresley_Cole,2010,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/vampires|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/paranormal|/genres/witches|/genres/adult|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/magic,dir19/7098304-demon-from-the-dark.html,25044,"Demon from the Dark (Immortals After Dark, #10)" +3.79,3381,0545060397,good_reads:book,https://www.goodreads.com/author/show/15872.Rick_Riordan,2008,/genres/mystery|/genres/adventure|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/fantasy|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/action|/genres/realistic-fiction,dir19/2921082-the-maze-of-bones.html,42730,"The Maze of Bones (The 39 Clues, #1)" +4.15,501,0192838628,good_reads:book,https://www.goodreads.com/author/show/7419.John_Galsworthy,1920,/genres/classics|/genres/fiction|/genres/historical-fiction|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/romance|/genres/classics|/genres/classic-literature|/genres/literature|/genres/20th-century|/genres/novels|/genres/literary-fiction,dir19/103159.The_Forsyte_Saga.html,10150,"The Forsyte Saga (The Forsyte Chronicles, #1-3)" +4.16,1430,0446520594,good_reads:book,https://www.goodreads.com/author/show/72099.Brian_L_Weiss,1988,/genres/non-fiction|/genres/spirituality|/genres/psychology|/genres/spirituality|/genres/new-age|/genres/self-help|/genres/book-club|/genres/philosophy|/genres/philosophy|/genres/metaphysics|/genres/autobiography|/genres/memoir|/genres/biography,dir19/34452.Many_Lives_Many_Masters.html,15554,"Many Lives, Many Masters" +4.04,520,0552154164,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,1997,/genres/humor|/genres/comedy|/genres/fantasy|/genres/humor|/genres/funny|/genres/science-fiction-fantasy|/genres/novels|/genres/science-fiction|/genres/fantasy|/genres/magic|/genres/humor|/genres/european-literature|/genres/british-literature|/genres/mystery,dir19/47990.Jingo.html,28340,"Jingo (Discworld, #21)" +3.85,421,0099271494,good_reads:book,https://www.goodreads.com/author/show/7577.Anne_Rice,2001,/genres/paranormal|/genres/vampires|/genres/horror|/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/occult|/genres/adult|/genres/literature|/genres/american,dir19/31341.Blood_And_Gold.html,22895,"Blood And Gold (The Vampire Chronicles, #8)" +4.00,1086,1842430343,good_reads:book,https://www.goodreads.com/author/show/197.Tom_Robbins,1990,/genres/fiction|/genres/humor|/genres/literature|/genres/novels|/genres/contemporary|/genres/fantasy|/genres/book-club|/genres/literature|/genres/american|/genres/humor|/genres/comedy,dir19/9370.Skinny_Legs_and_All.html,29724,Skinny Legs and All +4.12,1136,0553578529,good_reads:book,https://www.goodreads.com/author/show/41193.Sara_Donati,1998,/genres/historical-fiction|/genres/romance|/genres/fiction|/genres/romance|/genres/historical-romance|/genres/adventure|/genres/adult|/genres/literature|/genres/18th-century|/genres/adult-fiction|/genres/western|/genres/outdoors|/genres/wilderness,dir19/72854.Into_the_Wilderness.html,16707,"Into the Wilderness (Wilderness, #1)" +4.26,993,0786939532,good_reads:book,https://www.goodreads.com/author/show/1023510.R_A_Salvatore,1990,/genres/dungeons-and-dragons|/genres/forgotten-realms|/genres/fiction|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/adventure|/genres/fantasy|/genres/magic|/genres/fantasy,dir19/50027.Homeland.html,32023,"Homeland (Forgotten Realms: The Dark Elf Trilogy, #1; Legend of Drizzt, #1)" +4.23,1313,0441328091,good_reads:book,https://www.goodreads.com/author/show/5339.Robin_McKinley,1984,/genres/fantasy|/genres/childrens|/genres/young-adult|/genres/science-fiction-fantasy|/genres/speculative-fiction|/genres/young-adult|/genres/coming-of-age|/genres/action|/genres/childrens|/genres/middle-grade|/genres/epic|/genres/fiction,dir19/77366.The_Hero_and_the_Crown.html,32139,"The Hero and the Crown (Damar, #1)" +3.79,10194,0385342306,good_reads:book,https://www.goodreads.com/author/show/1074866.Alan_Bradley,2009,/genres/mystery|/genres/book-club|/genres/historical-fiction|/genres/young-adult|/genres/mystery|/genres/crime|/genres/adult|/genres/thriller|/genres/mystery-thriller,dir19/6218281-the-sweetness-at-the-bottom-of-the-pie.html,73970,"The Sweetness at the Bottom of the Pie (Flavia de Luce, #1)" +4.00,701,0425201449,good_reads:book,https://www.goodreads.com/author/show/1025097.Patricia_Cornwell,1994,/genres/mystery|/genres/mystery|/genres/crime|/genres/fiction|/genres/thriller|/genres/thriller|/genres/mystery-thriller|/genres/suspense|/genres/mystery|/genres/murder-mystery|/genres/mystery|/genres/detective|/genres/adult|/genres/adult-fiction,dir20/6539.The_Body_Farm.html,40528,"The Body Farm (Kay Scarpetta, #5)" +4.04,4101,0749080973,good_reads:book,https://www.goodreads.com/author/show/486812.Susanna_Kearsley,2008,/genres/historical-fiction|/genres/romance|/genres/fiction|/genres/science-fiction|/genres/time-travel|/genres/cultural|/genres/scotland|/genres/fantasy|/genres/romance|/genres/historical-romance|/genres/book-club|/genres/contemporary|/genres/adult-fiction,dir20/3392089-the-winter-sea.html,31367,"The Winter Sea (Slains, #1)" +4.13,5859,006621131X,good_reads:book,https://www.goodreads.com/author/show/196092.Patti_Smith,2010,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/biography|/genres/music|/genres/art|/genres/book-club|/genres/biography-memoir|/genres/new-york|/genres/poetry|/genres/biography|/genres/autobiography,dir20/341879.Just_Kids.html,62586,Just Kids +3.86,1566,0375757910,good_reads:book,https://www.goodreads.com/author/show/7014283.G_K_Chesterton,1908,/genres/fiction|/genres/classics|/genres/mystery|/genres/fantasy|/genres/literature|/genres/philosophy|/genres/novels|/genres/european-literature|/genres/british-literature|/genres/mystery|/genres/crime,dir20/184419.The_Man_Who_Was_Thursday.html,15433,The Man Who Was Thursday +4.23,705,0440244447,good_reads:book,https://www.goodreads.com/author/show/375626.Lara_Adrian,2008,/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/contemporary,dir20/1928873.Midnight_Rising.html,21979,"Midnight Rising (Midnight Breed, #4)" +3.57,2329,0670021482,good_reads:book,https://www.goodreads.com/author/show/493232.Paolo_Giordano,2008,/genres/fiction|/genres/contemporary|/genres/european-literature|/genres/italian-literature|/genres/romance|/genres/cultural|/genres/italy|/genres/novels|/genres/book-club|/genres/literature|/genres/drama|/genres/roman,dir20/6613956-the-solitude-of-prime-numbers.html,20819,The Solitude of Prime Numbers +3.71,3639,0385742886,good_reads:book,https://www.goodreads.com/author/show/348878.James_Dashner,2012,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/apocalyptic|/genres/post-apocalyptic|/genres/adventure|/genres/young-adult|/genres/teen|/genres/science-fiction|/genres/apocalyptic|/genres/action,dir20/13089710-the-kill-order.html,41848,"The Kill Order (Maze Runner, #0.5)" +4.65,349,1401210821,good_reads:book,https://www.goodreads.com/author/show/1221698.Neil_Gaiman,2006,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fantasy|/genres/fiction|/genres/horror|/genres/graphic-novels-comics|/genres/comics|/genres/comic-book|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/urban-fantasy|/genres/science-fiction-fantasy,dir20/23753.The_Absolute_Sandman_Vol_1.html,9222,"The Absolute Sandman, Vol. 1" +3.88,1044,0486282228,good_reads:book,https://www.goodreads.com/author/show/5217.George_Bernard_Shaw,1912,/genres/classics|/genres/plays|/genres/fiction|/genres/drama|/genres/academic|/genres/school|/genres/literature|/genres/plays|/genres/theatre|/genres/european-literature|/genres/british-literature|/genres/romance|/genres/humor,dir20/7714.Pygmalion.html,54480,Pygmalion +3.91,1751,0375724834,good_reads:book,https://www.goodreads.com/author/show/6404.Jonathan_Lethem,1999,/genres/fiction|/genres/mystery|/genres/novels|/genres/mystery|/genres/crime|/genres/book-club|/genres/new-york|/genres/contemporary|/genres/literature|/genres/literature|/genres/american,dir20/328854.Motherless_Brooklyn.html,19970,Motherless Brooklyn +4.32,854,0060525592,good_reads:book,https://www.goodreads.com/author/show/27498.Erin_Hunter,2003,/genres/fantasy|/genres/animals|/genres/young-adult|/genres/fiction|/genres/animals|/genres/cats|/genres/adventure|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/animals|/genres/animal-fiction|/genres/action,dir20/275000.Fire_and_Ice.html,20384,"Fire and Ice (Warriors, #2)" +4.03,2025,0312599072,good_reads:book,https://www.goodreads.com/author/show/4430.Sherrilyn_Kenyon,2010,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/horror|/genres/zombies|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/supernatural|/genres/romance,dir20/6696602-infinity.html,24393,"Infinity (Chronicles of Nick, #1)" +3.80,9560,0007230206,good_reads:book,https://www.goodreads.com/author/show/58851.Hilary_Mantel,2009,/genres/historical-fiction|/genres/fiction|/genres/book-club|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/literary-fiction|/genres/novels|/genres/adult-fiction|/genres/adult|/genres/contemporary,dir20/6101138-wolf-hall.html,73729,"Wolf Hall (Thomas Cromwell, #1)" +3.66,3526,0060541431,good_reads:book,https://www.goodreads.com/author/show/10317.Maureen_Johnson,2005,/genres/young-adult|/genres/romance|/genres/fiction|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/travel|/genres/young-adult|/genres/teen|/genres/adventure,dir20/17020.13_Little_Blue_Envelopes.html,55705,"13 Little Blue Envelopes (Little Blue Envelope, #1)" +4.21,1394,0061783161,good_reads:book,https://www.goodreads.com/author/show/669810.Jeaniene_Frost,2010,/genres/paranormal|/genres/vampires|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/adult|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic,dir20/6871616-eternal-kiss-of-darkness.html,25475,"Eternal Kiss of Darkness (Night Huntress World, #2)" +4.31,91,0449912442,good_reads:book,https://www.goodreads.com/author/show/4116.Erich_Maria_Remarque,1956,/genres/classics|/genres/fiction|/genres/european-literature|/genres/german-literature|/genres/war|/genres/historical-fiction|/genres/novels|/genres/cultural|/genres/germany|/genres/literature|/genres/20th-century,dir20/1297123.The_Black_Obelisk.html,4145,The Black Obelisk +3.52,2306,0393308804,good_reads:book,https://www.goodreads.com/author/show/25022.Jean_Rhys,1966,/genres/fiction|/genres/classics|/genres/historical-fiction|/genres/literature|/genres/novels|/genres/academic|/genres/school|/genres/literature|/genres/20th-century|/genres/literary-fiction|/genres/feminism|/genres/gothic,dir20/481558.Wide_Sargasso_Sea.html,28686,Wide Sargasso Sea +3.92,1305,0060855908,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,1987,/genres/humor|/genres/fiction|/genres/fantasy|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/humor|/genres/funny|/genres/paranormal|/genres/witches|/genres/science-fiction|/genres/novels,dir20/34507.Equal_Rites.html,62814,"Equal Rites (Discworld, #3)" +4.16,1670,0316057800,good_reads:book,https://www.goodreads.com/author/show/47672.Trenton_Lee_Stewart,2008,/genres/mystery|/genres/fiction|/genres/young-adult|/genres/adventure|/genres/childrens|/genres/fantasy|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/science-fiction|/genres/realistic-fiction,dir20/2159225.The_Mysterious_Benedict_Society_and_the_Perilous_Journey.html,21017,"The Mysterious Benedict Society and the Perilous Journey (The Mysterious Benedict Society, #2)" +3.92,1842,0316025054,good_reads:book,https://www.goodreads.com/author/show/190922.Justina_Chen,2009,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/realistic-fiction|/genres/fiction|/genres/young-adult|/genres/teen|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/high-school|/genres/family|/genres/travel,dir20/3238153-north-of-beautiful.html,25253,North of Beautiful +3.75,1497,1400033837,good_reads:book,https://www.goodreads.com/author/show/1339.Jane_Smiley,2003,/genres/fiction|/genres/literary-fiction|/genres/contemporary|/genres/book-club|/genres/literature|/genres/novels|/genres/adult-fiction|/genres/family|/genres/academic|/genres/school|/genres/adult,dir20/41193.A_Thousand_Acres.html,35269,A Thousand Acres +4.37,1300,1423118243,good_reads:book,https://www.goodreads.com/author/show/125308.Cinda_Williams_Chima,2010,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/romance|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/young-adult|/genres/young-adult-fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/young-adult|/genres/teen,dir20/7801229-the-exiled-queen.html,20335,"The Exiled Queen (Seven Realms, #2)" +4.07,4165,0810994739,good_reads:book,https://www.goodreads.com/author/show/221559.Jeff_Kinney,2007,/genres/realistic-fiction|/genres/fiction|/genres/childrens|/genres/young-adult|/genres/humor|/genres/funny|/genres/sequential-art|/genres/graphic-novels|/genres/childrens|/genres/middle-grade,dir20/1809465.Rodrick_Rules.html,61801,"Rodrick Rules (Diary of a Wimpy Kid, #2)" +3.85,882,0441104029,good_reads:book,https://www.goodreads.com/author/show/58.Frank_Herbert,1976,/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/classics|/genres/science-fiction|/genres/space-opera|/genres/speculative-fiction|/genres/novels|/genres/epic|/genres/religion,dir20/112.Children_of_Dune.html,54344,"Children of Dune (Dune Chronicles, #3)" +4.46,1615,0441020429,good_reads:book,https://www.goodreads.com/author/show/21748.Ilona_Andrews,2011,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/magic|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/shapeshifters|/genres/shapeshifters|/genres/werewolves|/genres/adult,dir20/8559047-magic-slays.html,28451,"Magic Slays (Kate Daniels, #5)" +4.03,3210,0767903862,good_reads:book,https://www.goodreads.com/author/show/7.Bill_Bryson,2000,/genres/non-fiction|/genres/humor|/genres/history|/genres/autobiography|/genres/memoir|/genres/humor|/genres/funny|/genres/cultural|/genres/australia|/genres/book-club|/genres/travel|/genres/travelogue|/genres/biography|/genres/travel,dir20/24.In_a_Sunburned_Country.html,47411,In a Sunburned Country +4.23,1831,0062012010,good_reads:book,https://www.goodreads.com/author/show/3406550.Josephine_Angelini,2012,/genres/fantasy|/genres/mythology|/genres/young-adult|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/mythology|/genres/greek-mythology|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural,dir20/12995284-dreamless.html,22201,"Dreamless (Starcrossed, #2)" +3.91,2032,1595143424,good_reads:book,https://www.goodreads.com/author/show/26372.Kathy_Reichs,2010,/genres/young-adult|/genres/mystery|/genres/science-fiction|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/mystery|/genres/crime|/genres/fantasy|/genres/paranormal|/genres/action|/genres/young-adult|/genres/teen,dir20/7800188-virals.html,23356,"Virals (Virals, #1)" +3.93,4496,,good_reads:book,https://www.goodreads.com/author/show/6436698.Molly_McAdams,2012,/genres/new-adult|/genres/romance|/genres/young-adult|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/academic|/genres/college|/genres/womens-fiction|/genres/chick-lit|/genres/drama|/genres/love|/genres/fiction,dir20/15739018-taking-chances.html,32384,"Taking Chances (Taking Chances, #1)" +3.86,1787,0142401765,good_reads:book,https://www.goodreads.com/author/show/2987.Sarah_Dessen,1999,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/fiction|/genres/young-adult|/genres/teen,dir20/104378.Keeping_the_Moon.html,40205,Keeping the Moon +4.43,678,0553212419,good_reads:book,https://www.goodreads.com/author/show/2448.Arthur_Conan_Doyle,1927,/genres/classics|/genres/mystery|/genres/fiction|/genres/short-stories|/genres/mystery|/genres/crime|/genres/mystery|/genres/detective|/genres/literature|/genres/historical-fiction,dir20/3581.Sherlock_Holmes.html,11133,Sherlock Holmes +3.46,10129,0670020559,good_reads:book,https://www.goodreads.com/author/show/142270.Lev_Grossman,2009,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/science-fiction-fantasy|/genres/book-club|/genres/young-adult|/genres/adult,dir20/6101718-the-magicians.html,87274,"The Magicians (The Magicians, #1)" +4.03,1737,0876850867,good_reads:book,https://www.goodreads.com/author/show/13275.Charles_Bukowski,1971,/genres/fiction|/genres/classics|/genres/literature|/genres/novels|/genres/literature|/genres/american|/genres/contemporary|/genres/humor|/genres/literature|/genres/20th-century|/genres/poetry|/genres/dark,dir20/51504.Post_Office.html,43917,Post Office +3.91,1403,0743437314,good_reads:book,https://www.goodreads.com/author/show/74046.D_J_MacHale,2002,/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/adventure|/genres/fiction|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/young-adult-fantasy|/genres/childrens|/genres/fantasy|/genres/magic|/genres/childrens|/genres/middle-grade,dir20/833710.The_Merchant_of_Death.html,27265,"The Merchant of Death (Pendragon, #1)" +4.27,3895,1442408928,good_reads:book,https://www.goodreads.com/author/show/4841310.Benjamin_Alire_S_enz,2012,/genres/young-adult|/genres/contemporary|/genres/glbt|/genres/fiction|/genres/realistic-fiction|/genres/romance,dir20/12000020-aristotle-and-dante-discover-the-secrets-of-the-universe.html,20914,Aristotle and Dante Discover the Secrets of the Universe +4.08,665,057114456X,good_reads:book,https://www.goodreads.com/author/show/6343.Milan_Kundera,1990,/genres/fiction|/genres/literature|/genres/european-literature|/genres/czech-literature|/genres/novels|/genres/philosophy|/genres/contemporary|/genres/classics|/genres/cultural|/genres/france|/genres/literature|/genres/20th-century|/genres/book-club,dir20/28634.Immortality.html,15958,Immortality +4.26,1031,0307582396,good_reads:book,https://www.goodreads.com/author/show/47672.Trenton_Lee_Stewart,2009,/genres/mystery|/genres/fiction|/genres/young-adult|/genres/adventure|/genres/childrens|/genres/fantasy|/genres/childrens|/genres/middle-grade,dir20/6164358-the-mysterious-benedict-society-and-the-prisoner-s-dilemma.html,16521,"The Mysterious Benedict Society and the Prisoner's Dilemma (The Mysterious Benedict Society, #3)" +4.01,531,0345298349,good_reads:book,https://www.goodreads.com/author/show/8258.Martin_Cruz_Smith,1980,/genres/mystery|/genres/fiction|/genres/thriller|/genres/mystery|/genres/crime|/genres/cultural|/genres/russia|/genres/thriller|/genres/mystery-thriller|/genres/spy-thriller|/genres/espionage|/genres/suspense|/genres/mystery|/genres/detective,dir20/762806.Gorky_Park.html,33680,"Gorky Park (Arkady Renko, #1)" +3.83,2303,1606840576,good_reads:book,https://www.goodreads.com/author/show/2891503.Bree_Despain,2009,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/teen,dir20/6380822-the-dark-divine.html,28577,"The Dark Divine (The Dark Divine, #1)" +3.95,124,1480236292,good_reads:book,https://www.goodreads.com/author/show/6583811.Cristiane_Serruya,2012,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/contemporary|/genres/dark|/genres/romance|/genres/contemporary-romance|/genres/romance|/genres/erotic-romance|/genres/new-adult|/genres/adult|/genres/suspense|/genres/adult-fiction,dir20/16160314-trust.html,361,"Trust (Trust Trilogy, #1)" +4.17,8,1937053539,good_reads:book,https://www.goodreads.com/author/show/6925438.Timothy_Miller,2013,/genres/fantasy|/genres/young-adult,dir20/16064647-awoken.html,41,Awoken +4.77,17,,good_reads:book,https://www.goodreads.com/author/show/7223069.Deepak_Chaswal,2013,/genres/poetry,dir20/18334644-meeting-with-christ-and-other-poems.html,56,Meeting With Christ and Other Poems +4.66,8,0992382009,good_reads:book,https://www.goodreads.com/author/show/7574275.Victor_Noble,2014,,dir20/19532388-letters-from-your-soul.html,29,Letters from your soul +4.27,907,0060788194,good_reads:book,https://www.goodreads.com/author/show/17054.Kim_Harrison,2006,/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/paranormal|/genres/witches|/genres/fiction|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/romance,dir20/30260.A_Fistful_of_Charms.html,33594,"A Fistful of Charms (The Hollows, #4)" +4.00,6178,0765328658,good_reads:book,https://www.goodreads.com/author/show/4086715.Kendare_Blake,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/horror|/genres/paranormal|/genres/ghosts|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/fiction,dir20/9378297-anna-dressed-in-blood.html,47759,"Anna Dressed in Blood (Anna, #1)" +4.11,409,0060007761,good_reads:book,https://www.goodreads.com/author/show/10420.Aleksandr_Solzhenitsyn,1973,/genres/history|/genres/non-fiction|/genres/classics|/genres/cultural|/genres/russia|/genres/biography|/genres/politics|/genres/literature|/genres/russian-literature|/genres/literature|/genres/autobiography|/genres/memoir|/genres/literature|/genres/20th-century,dir20/70561.The_Gulag_Archipelago_1918_1956.html,9396,The Gulag Archipelago 1918-1956 +4.13,47,1453885935,good_reads:book,https://www.goodreads.com/author/show/4492558.M_G_Wells,2010,/genres/fantasy|/genres/adventure|/genres/mystery|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/drama|/genres/action|/genres/thriller,dir20/11805486-lightmasters.html,114,Lightmasters +4.45,2069,1423157516,good_reads:book,https://www.goodreads.com/author/show/2973783.Alexandra_Bracken,2013,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/science-fiction|/genres/adventure|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/apocalyptic|/genres/post-apocalyptic,dir20/16150830-never-fade.html,16024,"Never Fade (The Darkest Minds, #2)" +3.96,2113,0786839171,good_reads:book,https://www.goodreads.com/author/show/125308.Cinda_Williams_Chima,2006,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/teen|/genres/romance|/genres/young-adult|/genres/young-adult-fantasy,dir20/213647.The_Warrior_Heir.html,29055,"The Warrior Heir (The Heir Chronicles, #1)" +4.56,568,1563891379,good_reads:book,https://www.goodreads.com/author/show/1221698.Neil_Gaiman,1994,/genres/sequential-art|/genres/graphic-novels|/genres/graphic-novels-comics|/genres/sequential-art|/genres/comics|/genres/horror|/genres/comics|/genres/comic-book|/genres/fantasy|/genres/mythology,dir20/25105.The_Sandman_Vol_7.html,27887,"The Sandman, Vol. 7 (The Sandman #7)" +4.71,273,,good_reads:book,https://www.goodreads.com/author/show/63244.Kalki,1950,/genres/historical-fiction|/genres/fiction|/genres/classics|/genres/novels|/genres/asian-literature|/genres/indian-literature|/genres/literature|/genres/drama,dir20/1108124._Ponniyin_Selvan_.html,2877,பொன்னியின் செல்வன் [Ponniyin Selvan] +4.85,104,,good_reads:book,https://www.goodreads.com/author/show/8472193.Tyler_Chase,2014,/genres/romance,dir20/23258641-van-laven-chronicles.html,201,Van Laven Chronicles +4.09,463,0060725133,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2001,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/paranormal|/genres/ghosts|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/mystery,dir20/199785.Reunion.html,23280,"Reunion (The Mediator, #3)" +4.08,1194,1857232097,good_reads:book,https://www.goodreads.com/author/show/6252.Robert_Jordan,1993,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/epic,dir20/13895.The_Fires_of_Heaven.html,68479,"The Fires of Heaven (Wheel of Time, #5)" +3.80,1682,0441017835,good_reads:book,https://www.goodreads.com/author/show/17061.Charlaine_Harris,2009,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/romance|/genres/mystery|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/short-stories|/genres/fantasy|/genres/supernatural,dir20/6202318-a-touch-of-dead.html,33648,"A Touch of Dead (Sookie Stackhouse, #4.1, #4.3, #5.1, #7.1, #8.1)" +3.76,3164,1555974708,good_reads:book,https://www.goodreads.com/author/show/225944.Per_Petterson,2003,/genres/fiction|/genres/book-club|/genres/adult-fiction|/genres/contemporary|/genres/novels|/genres/european-literature|/genres/scandinavian-literature|/genres/literary-fiction|/genres/historical-fiction|/genres/literature|/genres/modern,dir20/398323.Out_Stealing_Horses.html,17228,Out Stealing Horses +4.17,784,185723135X,good_reads:book,https://www.goodreads.com/author/show/5807106.Iain_M_Banks,1990,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/space-opera|/genres/culture|/genres/space|/genres/adventure|/genres/fantasy|/genres/science-fiction-fantasy|/genres/war|/genres/speculative-fiction,dir20/12007.Use_of_Weapons.html,17481,"Use of Weapons (Culture, #3)" +4.13,2015,0399254838,good_reads:book,https://www.goodreads.com/author/show/3041100.Andrea_Cremer,2011,/genres/young-adult|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/animals|/genres/wolves,dir20/7263429-wolfsbane.html,32155,"Wolfsbane (Nightshade, #2)" +3.94,490,,good_reads:book,https://www.goodreads.com/author/show/205.Robert_A_Heinlein,1973,/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/science-fiction|/genres/time-travel|/genres/classics|/genres/speculative-fiction|/genres/novels|/genres/space|/genres/romance,dir20/353.Time_Enough_for_Love.html,21050,Time Enough for Love +4.13,3719,,good_reads:book,https://www.goodreads.com/author/show/6554504.Madeline_Sheehan,2012,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/dark|/genres/adult|/genres/sociology|/genres/abuse|/genres/romance|/genres/erotic-romance|/genres/new-adult|/genres/drama,dir20/16109563-undeniable.html,33381,"Undeniable (Undeniable, #1)" +4.03,1999,0399256121,good_reads:book,https://www.goodreads.com/author/show/3041100.Andrea_Cremer,2012,/genres/young-adult|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/animals|/genres/wolves|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy,dir20/8130839-bloodrose.html,17999,"Bloodrose (Nightshade, #3)" +3.90,2971,0345497511,good_reads:book,https://www.goodreads.com/author/show/33918.China_Mi_ville,2009,/genres/fantasy|/genres/fiction|/genres/science-fiction|/genres/mystery|/genres/mystery|/genres/crime|/genres/fantasy|/genres/urban-fantasy|/genres/speculative-fiction|/genres/science-fiction-fantasy|/genres/book-club|/genres/mystery|/genres/noir,dir20/4703581-the-city-the-city.html,23038,The City & the City +3.97,1328,1408846403,good_reads:book,https://www.goodreads.com/author/show/2993185.Ahlam_Mosteghanemi,1993,/genres/novels|/genres/romance|/genres/literature|/genres/fiction|/genres/drama|/genres/love|/genres/historical-fiction|/genres/roman|/genres/poetry|/genres/politics,dir20/18632934-the-bridges-of-constantine.html,13870,The Bridges of Constantine +4.15,90,0679752455,good_reads:book,https://www.goodreads.com/author/show/34872.William_Kotzwinkle,1974,/genres/fiction|/genres/humor|/genres/literature|/genres/novels|/genres/humor|/genres/comedy|/genres/contemporary|/genres/modern|/genres/literature|/genres/20th-century,dir20/815527.The_Fan_Man.html,794,The Fan Man +3.85,573,0752876872,good_reads:book,https://www.goodreads.com/author/show/3532.Maeve_Binchy,1994,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/cultural|/genres/ireland|/genres/romance|/genres/european-literature|/genres/irish-literature|/genres/contemporary|/genres/drama|/genres/novels|/genres/adult-fiction|/genres/womens-fiction,dir20/34310.The_Glass_Lake.html,14093,The Glass Lake +4.21,3554,0991686004,good_reads:book,https://www.goodreads.com/author/show/4866520.K_A_Tucker,2012,/genres/new-adult|/genres/romance|/genres/contemporary|/genres/young-adult|/genres/romance|/genres/contemporary-romance|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/drama|/genres/realistic-fiction|/genres/death,dir20/15990969-ten-tiny-breaths.html,37766,"Ten Tiny Breaths (Ten Tiny Breaths, #1)" +4.07,4777,0803736991,good_reads:book,https://www.goodreads.com/author/show/4660036.Huntley_Fitzpatrick,2012,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/fiction|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/young-adult-contemporary|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/young-adult-romance,dir20/12294652-my-life-next-door.html,55915,"My Life Next Door (My Life Next Door, #1)" +4.31,858,0345382846,good_reads:book,https://www.goodreads.com/author/show/24655.Sharon_Kay_Penman,1985,/genres/historical-fiction|/genres/fiction|/genres/historical-fiction|/genres/medieval|/genres/fantasy|/genres/romance|/genres/european-literature|/genres/british-literature|/genres/romance|/genres/historical-romance|/genres/book-club|/genres/adult|/genres/literature,dir20/77449.Here_be_Dragons.html,12718,"Here be Dragons (Welsh Princes, #1)" +3.31,273,1497465141,good_reads:book,https://www.goodreads.com/author/show/6940334.Avery_Aster,2014,/genres/new-adult|/genres/romance|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/adult-fiction|/genres/erotica|/genres/young-adult|/genres/humor|/genres/humor|/genres/funny|/genres/young-adult|/genres/coming-of-age|/genres/fiction,dir20/20567976-love-lex.html,792,"Love, Lex (The Undergrad Years, #1)" +3.97,611,2020418770,good_reads:book,https://www.goodreads.com/author/show/235.Thomas_Pynchon,1961,/genres/fiction|/genres/literature|/genres/classics|/genres/contemporary|/genres/novels|/genres/literature|/genres/american|/genres/literary-fiction,dir20/5809.V_.html,11752,V. +4.22,72,,good_reads:book,https://www.goodreads.com/author/show/6980508.Christina_Mercer,2013,/genres/fantasy|/genres/young-adult|/genres/childrens|/genres/middle-grade|/genres/young-adult|/genres/young-adult-fantasy|/genres/fantasy|/genres/paranormal|/genres/adventure|/genres/romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/high-fantasy|/genres/childrens,dir20/17560444-arrow-of-the-mist.html,168,"Arrow of the Mist (Arrow of the Mist, #1)" +3.72,2612,0439771277,good_reads:book,https://www.goodreads.com/author/show/4057.Karen_Hesse,1997,/genres/historical-fiction|/genres/young-adult|/genres/poetry|/genres/fiction|/genres/childrens|/genres/academic|/genres/school|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/classics|/genres/academic|/genres/read-for-school,dir20/25346.Out_of_the_Dust.html,38092,Out of the Dust +4.08,2936,1451533969,good_reads:book,https://www.goodreads.com/author/show/3980637.Tina_Reber,2010,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/new-adult|/genres/adult|/genres/womens-fiction|/genres/chick-lit|/genres/love|/genres/adult-fiction|/genres/erotica|/genres/young-adult|/genres/fiction,dir20/8204005-love-unscripted.html,50343,"Love Unscripted (Love, #1)" +4.17,726,1585678449,good_reads:book,https://www.goodreads.com/author/show/34878.Walter_Moers,1999,/genres/fantasy|/genres/fiction|/genres/humor|/genres/european-literature|/genres/german-literature|/genres/young-adult|/genres/adventure|/genres/childrens,dir20/62032.The_13_Lives_of_Captain_Bluebear.html,8553,"The 13½ Lives of Captain Bluebear (Zamonia, #1)" +4.00,5590,0803734735,good_reads:book,https://www.goodreads.com/author/show/1373880.Kristin_Cashore,2012,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fiction|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/young-adult-fantasy|/genres/adventure,dir20/12680907-bitterblue.html,49706,"Bitterblue (Graceling Realm, #3)" +3.93,3452,0978970764,good_reads:book,https://www.goodreads.com/author/show/225033.David_Wong,2007,/genres/horror|/genres/fiction|/genres/humor|/genres/fantasy|/genres/science-fiction|/genres/humor|/genres/comedy|/genres/horror|/genres/bizarro-fiction|/genres/fantasy|/genres/supernatural|/genres/adult|/genres/literature|/genres/american,dir20/1857440.John_Dies_at_the_End.html,28711,"John Dies at the End (John Dies at the End, #1)" +4.35,581,0765348802,good_reads:book,https://www.goodreads.com/author/show/31232.Steven_Erikson,2001,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fiction|/genres/fantasy|/genres/high-fantasy|/genres/epic|/genres/science-fiction-fantasy|/genres/fantasy|/genres/dark-fantasy|/genres/war|/genres/fantasy|/genres/magic|/genres/novels,dir20/175983.Memories_of_Ice.html,19348,"Memories of Ice (Malazan Book of the Fallen, #3)" +4.19,1151,0060887184,good_reads:book,https://www.goodreads.com/author/show/12542.Bernard_Cornwell,2004,/genres/historical-fiction|/genres/fiction|/genres/fantasy|/genres/historical-fiction|/genres/medieval|/genres/adventure|/genres/european-literature|/genres/british-literature|/genres/war,dir20/68527.The_Last_Kingdom.html,21556,"The Last Kingdom (The Saxon Stories, #1)" +4.04,4035,,good_reads:book,https://www.goodreads.com/author/show/22159.Jessica_Park,2011,/genres/romance|/genres/young-adult|/genres/new-adult|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/contemporary-romance|/genres/fiction|/genres/academic|/genres/college|/genres/realistic-fiction|/genres/humor|/genres/funny,dir20/11096647-flat-out-love.html,37318,"Flat-Out Love (Flat-Out Love, #1)" +4.25,1283,0425233367,good_reads:book,https://www.goodreads.com/author/show/71688.Nalini_Singh,2010,/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/adult|/genres/fantasy|/genres/supernatural|/genres/fiction,dir20/6582637-archangel-s-kiss.html,26284,"Archangel's Kiss (Guild Hunter, #2)" +3.75,1346,1416978933,good_reads:book,https://www.goodreads.com/author/show/1290625.Jessica_Verday,2009,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/paranormal|/genres/ghosts|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/mystery|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/urban-fantasy,dir20/2998814-the-hollow.html,14755,"The Hollow (The Hollow, #1)" +3.56,2052,0767905180,good_reads:book,https://www.goodreads.com/author/show/12915.Jane_Green,1998,/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/adult-fiction|/genres/adult|/genres/humor|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/contemporary|/genres/fiction,dir20/227941.Jemima_J.html,85116,Jemima J +4.29,836,1741662095,good_reads:book,https://www.goodreads.com/author/show/34049.John_Flanagan,2007,/genres/fantasy|/genres/young-adult|/genres/adventure|/genres/fiction|/genres/historical-fiction|/genres/medieval|/genres/young-adult|/genres/teen|/genres/historical-fiction,dir20/2836109-erak-s-ransom.html,22970,"Erak's Ransom (Ranger's Apprentice, #5)" +4.37,707,0060525614,good_reads:book,https://www.goodreads.com/author/show/27498.Erin_Hunter,2003,/genres/fantasy|/genres/animals|/genres/fiction|/genres/young-adult|/genres/animals|/genres/cats|/genres/adventure|/genres/childrens,dir20/831194.Forest_of_Secrets.html,19142,"Forest of Secrets (Warriors, #3)" +3.51,2298,0375706860,good_reads:book,https://www.goodreads.com/author/show/1728.Orhan_Pamuk,2002,/genres/fiction|/genres/literature|/genres/book-club|/genres/novels|/genres/cultural|/genres/turkish|/genres/contemporary|/genres/asian-literature|/genres/turkish-literature|/genres/nobel-prize|/genres/historical-fiction|/genres/religion|/genres/islam,dir20/11691.Snow.html,21805,Snow +4.57,74,,good_reads:book,https://www.goodreads.com/author/show/6521036.J_K_Accinni,2012,/genres/science-fiction|/genres/young-adult,dir20/15992895-armageddon-cometh.html,197,"Armageddon Cometh (Species Intervention #6609, #3)" +3.74,877,006093140X,good_reads:book,https://www.goodreads.com/author/show/7728.Doris_Lessing,1962,/genres/fiction|/genres/classics|/genres/feminism|/genres/literature|/genres/novels|/genres/european-literature|/genres/british-literature|/genres/womens|/genres/literature|/genres/20th-century|/genres/literary-fiction|/genres/cultural|/genres/africa,dir20/24100.The_Golden_Notebook.html,10059,The Golden Notebook +3.95,1124,0099498596,good_reads:book,https://www.goodreads.com/author/show/3532.Maeve_Binchy,1990,/genres/fiction|/genres/romance|/genres/cultural|/genres/ireland|/genres/european-literature|/genres/irish-literature|/genres/historical-fiction|/genres/contemporary|/genres/novels|/genres/adult|/genres/drama|/genres/book-club,dir20/41977.Circle_of_Friends.html,33154,Circle of Friends +3.98,3853,0553805495,good_reads:book,https://www.goodreads.com/author/show/566874.Sarah_Addison_Allen,2008,/genres/fiction|/genres/magical-realism|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/fantasy|/genres/book-club|/genres/contemporary|/genres/adult|/genres/fantasy|/genres/magic|/genres/adult-fiction,dir20/2200877.The_Sugar_Queen.html,30147,The Sugar Queen +4.11,2940,1423121325,good_reads:book,https://www.goodreads.com/author/show/2261547.Rachel_Hawkins,2012,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/vampires|/genres/romance|/genres/paranormal|/genres/witches|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/supernatural|/genres/shapeshifters|/genres/werewolves,dir20/11454587-spell-bound.html,32899,"Spell Bound (Hex Hall, #3)" +3.86,2495,0152063846,good_reads:book,https://www.goodreads.com/author/show/1428675.Beth_Fantaskey,2000,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/urban-fantasy|/genres/fiction,dir20/3389671-jessica-s-guide-to-dating-on-the-dark-side.html,26875,"Jessica's Guide to Dating on the Dark Side (Jessica, #1)" +4.10,77,0194232158,good_reads:book,https://www.goodreads.com/author/show/8993.O_Henry,1910,/genres/classics|/genres/short-stories|/genres/humor|/genres/fiction|/genres/young-adult|/genres/childrens|/genres/literature|/genres/humor|/genres/comedy|/genres/humor|/genres/funny|/genres/adventure,dir20/963839.The_Ransom_of_Red_Chief.html,3128,The Ransom of Red Chief +4.21,1708,1599900572,good_reads:book,https://www.goodreads.com/author/show/359109.Jessica_Day_George,2007,/genres/fantasy|/genres/fantasy|/genres/dragons|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/adventure|/genres/romance|/genres/childrens|/genres/middle-grade|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/fairy-tales,dir20/669570.Dragon_Slippers.html,15178,"Dragon Slippers (Dragon Slippers, #1)" +4.75,643,0842339523,good_reads:book,https://www.goodreads.com/author/show/6492.Francine_Rivers,1993,/genres/christian-fiction|/genres/historical-fiction|/genres/christian|/genres/fiction|/genres/romance|/genres/religion|/genres/christianity|/genres/inspirational|/genres/christian-fiction|/genres/christian-historical-fiction|/genres/religion|/genres/religion|/genres/faith,dir20/95602.Mark_of_the_Lion_Trilogy.html,7044,Mark of the Lion Trilogy +4.13,1317,0385905165,good_reads:book,https://www.goodreads.com/author/show/27100.Michael_Scott,2010,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/mythology|/genres/adventure|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/young-adult-fantasy,dir20/6693332-the-necromancer.html,35608,"The Necromancer (The Secrets of the Immortal Nicholas Flamel, #4)" +3.93,3020,0785263705,good_reads:book,https://www.goodreads.com/author/show/4829.Donald_Miller,2002,/genres/christian|/genres/non-fiction|/genres/religion|/genres/religion|/genres/christianity|/genres/religion|/genres/faith|/genres/spirituality|/genres/autobiography|/genres/memoir|/genres/religion|/genres/theology|/genres/inspirational|/genres/biography,dir20/7214.Blue_Like_Jazz.html,60688,Blue Like Jazz +4.36,228,0312966202,good_reads:book,https://www.goodreads.com/author/show/18062.James_Herriot,1981,/genres/autobiography|/genres/memoir|/genres/non-fiction|/genres/classics|/genres/humor|/genres/biography-memoir|/genres/animals|/genres/biography|/genres/autobiography|/genres/european-literature|/genres/british-literature|/genres/short-stories|/genres/animals|/genres/dogs,dir20/38739.The_Lord_God_Made_Them_All.html,11710,The Lord God Made Them All +3.66,3939,0307237699,good_reads:book,https://www.goodreads.com/author/show/6356.Barack_Obama,2006,/genres/non-fiction|/genres/politics|/genres/biography|/genres/autobiography|/genres/memoir|/genres/biography|/genres/autobiography|/genres/history|/genres/politics|/genres/presidents|/genres/literature|/genres/american|/genres/philosophy|/genres/book-club,dir20/9742.The_Audacity_of_Hope.html,80244,The Audacity of Hope +3.98,763,0743234413,good_reads:book,https://www.goodreads.com/author/show/19929.Tim_Winton,1991,/genres/fiction|/genres/cultural|/genres/australia|/genres/literature|/genres/book-club|/genres/historical-fiction|/genres/classics|/genres/contemporary|/genres/literary-fiction|/genres/novels|/genres/family,dir20/343881.Cloudstreet.html,9262,Cloudstreet +4.19,483,0886773520,good_reads:book,https://www.goodreads.com/author/show/8685.Mercedes_Lackey,1989,/genres/fantasy|/genres/fiction|/genres/romance|/genres/m-m-romance|/genres/science-fiction-fantasy|/genres/romance|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/glbt|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy,dir20/28759.Magic_s_Pawn.html,15164,Magic's Pawn (Valdemar: Last Herald-Mage #1) +4.28,1165,1416950079,good_reads:book,https://www.goodreads.com/author/show/2821144.Ellen_Hopkins,2009,/genres/young-adult|/genres/poetry|/genres/fiction|/genres/contemporary|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/glbt|/genres/sociology|/genres/abuse|/genres/romance|/genres/drama,dir21/5510384-tricks.html,20599,"Tricks (Tricks, #1)" +4.08,2949,159514398X,good_reads:book,https://www.goodreads.com/author/show/4018722.Beth_Revis,2012,/genres/young-adult|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/romance|/genres/fantasy|/genres/mystery|/genres/fiction|/genres/space|/genres/young-adult|/genres/teen|/genres/adventure,dir21/10345927-a-million-suns.html,29149,"A Million Suns (Across the Universe, #2)" +4.04,2545,0142000701,good_reads:book,https://www.goodreads.com/author/show/585.John_Steinbeck,1962,/genres/non-fiction|/genres/travel|/genres/classics|/genres/autobiography|/genres/memoir|/genres/biography|/genres/literature|/genres/literature|/genres/american|/genres/book-club|/genres/history|/genres/animals|/genres/dogs,dir21/5306.Travels_with_Charley.html,35060,Travels with Charley +3.89,6774,0143145541,good_reads:book,https://www.goodreads.com/author/show/63630.Beth_Hoffman,2010,/genres/fiction|/genres/book-club|/genres/womens-fiction|/genres/chick-lit|/genres/historical-fiction|/genres/american|/genres/southern|/genres/adult|/genres/young-adult|/genres/contemporary|/genres/young-adult|/genres/coming-of-age|/genres/humor,dir21/6617928-saving-ceecee-honeycutt.html,50001,Saving CeeCee Honeycutt +4.35,4599,0743270754,good_reads:book,https://www.goodreads.com/author/show/1476.Doris_Kearns_Goodwin,2005,/genres/history|/genres/non-fiction|/genres/biography|/genres/politics|/genres/history|/genres/american-history|/genres/military-history|/genres/civil-war|/genres/politics|/genres/presidents|/genres/leadership,dir21/2199.Team_of_Rivals.html,59953,Team of Rivals +4.06,1941,1857988094,good_reads:book,https://www.goodreads.com/author/show/8726.Richard_Matheson,1954,/genres/horror|/genres/science-fiction|/genres/fiction|/genres/paranormal|/genres/vampires|/genres/apocalyptic|/genres/post-apocalyptic|/genres/classics|/genres/fantasy|/genres/science-fiction|/genres/dystopia|/genres/horror|/genres/zombies|/genres/science-fiction|/genres/apocalyptic,dir21/14064.I_Am_Legend.html,28996,I Am Legend +3.79,1021,0671729470,good_reads:book,https://www.goodreads.com/author/show/1353301.V_C_Andrews,1980,/genres/fiction|/genres/horror|/genres/young-adult|/genres/romance|/genres/gothic|/genres/drama|/genres/mystery|/genres/thriller|/genres/womens-fiction|/genres/chick-lit|/genres/adult,dir21/226709.Petals_on_the_Wind.html,31301,"Petals on the Wind (Dollanganger, #2)" +3.87,1408,1423111443,good_reads:book,https://www.goodreads.com/author/show/58846.Laurie_Faria_Stolarz,2008,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/mystery|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/romance|/genres/paranormal-romance|/genres/young-adult|/genres/teen|/genres/suspense,dir21/2820533-deadly-little-secret.html,17588,"Deadly Little Secret (Touch, #1)" +4.16,863,0758216432,good_reads:book,https://www.goodreads.com/author/show/137902.Richelle_Mead,2008,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/paranormal|/genres/vampires|/genres/paranormal|/genres/demons|/genres/adult|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/supernatural,dir21/2977487-succubus-dreams.html,17413,"Succubus Dreams (Georgina Kincaid, #3)" +4.05,1720,0446612731,good_reads:book,https://www.goodreads.com/author/show/12470.Michael_Connelly,1992,/genres/mystery|/genres/mystery|/genres/crime|/genres/fiction|/genres/thriller|/genres/mystery|/genres/detective|/genres/thriller|/genres/mystery-thriller|/genres/suspense|/genres/mystery|/genres/murder-mystery|/genres/novels|/genres/adult,dir21/32508.The_Black_Echo.html,60609,"The Black Echo (Harry Bosch, #1)" +3.91,2177,044022800X,good_reads:book,https://www.goodreads.com/author/show/6846.Christopher_Paul_Curtis,1995,/genres/historical-fiction|/genres/young-adult|/genres/childrens|/genres/fiction|/genres/academic|/genres/school|/genres/childrens|/genres/middle-grade|/genres/cultural|/genres/african-american|/genres/family|/genres/childrens|/genres/juvenile|/genres/cultural,dir21/108077.The_Watsons_Go_to_Birmingham_1963.html,30953,The Watsons Go to Birmingham—1963 +3.96,2208,0345457374,good_reads:book,https://www.goodreads.com/author/show/5246.Amy_Tan,1991,/genres/fiction|/genres/historical-fiction|/genres/cultural|/genres/china|/genres/book-club|/genres/cultural|/genres/asia|/genres/literature|/genres/asian-literature|/genres/contemporary|/genres/literature|/genres/novels|/genres/adult,dir21/12555.The_Bonesetter_s_Daughter.html,84542,The Bonesetter's Daughter +3.79,609,0618492399,good_reads:book,https://www.goodreads.com/author/show/3506.Carson_McCullers,1946,/genres/fiction|/genres/classics|/genres/literature|/genres/young-adult|/genres/coming-of-age|/genres/american|/genres/southern|/genres/novels|/genres/young-adult|/genres/literature|/genres/american|/genres/literary-fiction,dir21/330244.The_Member_of_the_Wedding.html,7917,The Member of the Wedding +4.22,1272,0345326490,good_reads:book,https://www.goodreads.com/author/show/37218.Edward_Abbey,1968,/genres/non-fiction|/genres/environment|/genres/nature|/genres/autobiography|/genres/memoir|/genres/travel|/genres/environment|/genres/adventure|/genres/philosophy|/genres/biography|/genres/writing|/genres/essays|/genres/nature|/genres/outdoors,dir21/214614.Desert_Solitaire.html,20514,Desert Solitaire +3.98,953,9707704667,good_reads:book,https://www.goodreads.com/author/show/22515.Mario_Vargas_Llosa,2006,/genres/fiction|/genres/cultural|/genres/latin-american|/genres/novels|/genres/european-literature|/genres/spanish-literature|/genres/nobel-prize|/genres/literature|/genres/latin-american-literature|/genres/literature|/genres/book-club|/genres/historical-fiction|/genres/contemporary,dir21/53926.Travesuras_de_la_ni_a_mala.html,11076,Travesuras de la niña mala +3.64,707,0345485599,good_reads:book,https://www.goodreads.com/author/show/457.Anne_Tyler,1988,/genres/fiction|/genres/contemporary|/genres/novels|/genres/literary-fiction|/genres/adult-fiction|/genres/book-club|/genres/literature|/genres/literature|/genres/american|/genres/adult|/genres/womens-fiction|/genres/chick-lit,dir21/31181.Breathing_Lessons.html,14033,Breathing Lessons +3.88,859,0446607207,good_reads:book,https://www.goodreads.com/author/show/9068.Sidney_Sheldon,1998,/genres/fiction|/genres/thriller|/genres/mystery|/genres/novels|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery-thriller|/genres/romance|/genres/psychology|/genres/contemporary|/genres/drama,dir21/43326.Tell_Me_Your_Dreams.html,24559,Tell Me Your Dreams +3.92,1339,0064408639,good_reads:book,https://www.goodreads.com/author/show/36746.Lemony_Snicket,2000,/genres/fiction|/genres/young-adult|/genres/childrens|/genres/fantasy|/genres/mystery|/genres/adventure,dir21/131123.The_Austere_Academy.html,67473,"The Austere Academy (A Series of Unfortunate Events, #5)" +3.84,825,0142003166,good_reads:book,https://www.goodreads.com/author/show/4462369.William_S_Burroughs,1953,/genres/fiction|/genres/classics|/genres/literature|/genres/novels|/genres/literature|/genres/american|/genres/contemporary|/genres/thriller|/genres/literature|/genres/20th-century|/genres/adult-fiction|/genres/dark,dir21/23940.Junky.html,30572,Junky +4.21,598,0413771164,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,2000,/genres/fantasy|/genres/fiction|/genres/humor|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny|/genres/novels|/genres/european-literature|/genres/british-literature|/genres/science-fiction|/genres/fantasy|/genres/magic,dir21/34498.The_Truth.html,28706,"The Truth (Discworld, #25)" +4.03,1684,0743264738,good_reads:book,https://www.goodreads.com/author/show/7111.Walter_Isaacson,2007,/genres/biography|/genres/non-fiction|/genres/science|/genres/history|/genres/science|/genres/physics|/genres/biography-memoir|/genres/biography|/genres/autobiography|/genres/philosophy|/genres/science|/genres/mathematics|/genres/religion,dir21/10884.Einstein.html,57043,Einstein +4.13,3268,0983212546,good_reads:book,https://www.goodreads.com/author/show/4586597.R_L_Mathewson,2011,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/humor|/genres/funny|/genres/adult|/genres/womens-fiction|/genres/chick-lit|/genres/humor|/genres/adult-fiction|/genres/erotica|/genres/new-adult|/genres/romance|/genres/erotic-romance,dir21/11381643-playing-for-keeps.html,55598,"Playing for Keeps (Neighbor from Hell, #1)" +3.72,1098,0375701966,good_reads:book,https://www.goodreads.com/author/show/337.Walker_Percy,1960,/genres/fiction|/genres/classics|/genres/literature|/genres/book-club|/genres/american|/genres/southern|/genres/literature|/genres/american|/genres/literary-fiction,dir21/10739.The_Moviegoer.html,13656,The Moviegoer +3.95,5056,054762834X,good_reads:book,https://www.goodreads.com/author/show/6914204.Robin_LaFevers,2012,/genres/fantasy|/genres/historical-fiction|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/fiction,dir21/9565548-grave-mercy.html,40974,"Grave Mercy (His Fair Assassin, #1)" +3.94,3407,0618084746,good_reads:book,https://www.goodreads.com/author/show/3506.Carson_McCullers,1940,/genres/fiction|/genres/classics|/genres/book-club|/genres/literature|/genres/american|/genres/southern|/genres/novels|/genres/literature|/genres/american|/genres/historical-fiction|/genres/literary-fiction,dir21/37380.The_Heart_is_a_Lonely_Hunter.html,54130,The Heart is a Lonely Hunter +3.99,393,0140115854,good_reads:book,https://www.goodreads.com/author/show/296961.Paul_Auster,1989,/genres/fiction|/genres/contemporary|/genres/novels|/genres/literature|/genres/american|/genres/literature|/genres/literature|/genres/20th-century|/genres/roman|/genres/academic|/genres/read-for-school|/genres/classics|/genres/literary-fiction,dir21/447.Moon_Palace.html,9687,Moon Palace +4.29,669,1741663016,good_reads:book,https://www.goodreads.com/author/show/34049.John_Flanagan,2009,/genres/fantasy|/genres/young-adult|/genres/adventure|/genres/fiction|/genres/historical-fiction|/genres/medieval|/genres/action|/genres/young-adult|/genres/teen|/genres/historical-fiction|/genres/young-adult|/genres/young-adult-fantasy|/genres/childrens,dir21/5201089-the-kings-of-clonmel.html,18835,"The Kings of Clonmel (Ranger's Apprentice, #8)" +4.05,3040,0316041440,good_reads:book,https://www.goodreads.com/author/show/432859.Jennifer_Brown,2009,/genres/young-adult|/genres/contemporary|/genres/realistic-fiction|/genres/fiction|/genres/young-adult|/genres/teen|/genres/death|/genres/romance|/genres/drama|/genres/young-adult|/genres/high-school|/genres/book-club,dir21/6316171-hate-list.html,29041,Hate List +4.23,734,0575070536,good_reads:book,https://www.goodreads.com/author/show/1159886.Arkady_Strugatsky,1972,/genres/science-fiction|/genres/fiction|/genres/cultural|/genres/russia|/genres/classics|/genres/science-fiction|/genres/dystopia|/genres/apocalyptic|/genres/post-apocalyptic|/genres/literature|/genres/russian-literature,dir21/331256.Roadside_Picnic.html,12785,Roadside Picnic +3.91,607,0879514256,good_reads:book,https://www.goodreads.com/author/show/22018.Mervyn_Peake,1946,/genres/fiction|/genres/fantasy|/genres/classics|/genres/science-fiction-fantasy|/genres/literature|/genres/novels|/genres/european-literature|/genres/british-literature|/genres/gothic|/genres/science-fiction|/genres/speculative-fiction,dir21/39063.Titus_Groan.html,7496,"Titus Groan (Gormenghast, #1)" +3.70,912,0345348656,good_reads:book,https://www.goodreads.com/author/show/12980.Stephen_R_Donaldson,1977,/genres/fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/high-fantasy|/genres/epic|/genres/adventure|/genres/novels|/genres/fantasy|/genres/magic,dir21/219205.Lord_Foul_s_Bane.html,24055,"Lord Foul's Bane (The Chronicles of Thomas Covenant the Unbeliever, #1)" +4.16,494,0060751649,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2003,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/ghosts|/genres/young-adult|/genres/young-adult-paranormal|/genres/contemporary,dir21/23225.Haunted.html,23950,"Haunted (The Mediator, #5)" +3.89,3901,0316081051,good_reads:book,https://www.goodreads.com/author/show/3153776.Mira_Grant,2010,/genres/horror|/genres/zombies|/genres/horror|/genres/science-fiction|/genres/fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/fantasy|/genres/thriller|/genres/fantasy|/genres/paranormal,dir21/7094569-feed.html,26714,"Feed (Newsflesh Trilogy, #1)" +4.15,371,0006498868,good_reads:book,https://www.goodreads.com/author/show/25307.Robin_Hobb,1999,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/dragons|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/epic|/genres/adventure|/genres/fantasy|/genres/magic|/genres/adventure|/genres/pirates,dir21/45101.The_Mad_Ship.html,19829,"The Mad Ship (Liveship Traders, #2)" +4.92,2,147930414X,good_reads:book,https://www.goodreads.com/author/show/6467808.Othen_Donald_Dale_Cummings,2012,,dir21/20363899-happy-halloween.html,49,Happy Halloween +4.17,483,0060725141,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2001,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/paranormal|/genres/ghosts|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/mystery,dir21/23224.Darkest_Hour.html,22763,"Darkest Hour (The Mediator, #4)" +4.03,1074,0393050327,good_reads:book,https://www.goodreads.com/author/show/16494.Sebastian_Junger,1997,/genres/non-fiction|/genres/history|/genres/adventure|/genres/biography|/genres/environment|/genres/nature|/genres/adventure|/genres/survival|/genres/science,dir21/108229.The_Perfect_Storm.html,60444,The Perfect Storm +4.10,780,159448144X,good_reads:book,https://www.goodreads.com/author/show/26826.Anna_Gavalda,2004,/genres/fiction|/genres/cultural|/genres/france|/genres/contemporary|/genres/romance|/genres/book-club|/genres/novels|/genres/literary-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/european-literature|/genres/french-literature|/genres/adult,dir21/47780.Hunting_and_Gathering.html,8203,Hunting and Gathering +4.39,149,0449912450,good_reads:book,https://www.goodreads.com/author/show/4116.Erich_Maria_Remarque,1939,/genres/classics|/genres/fiction|/genres/historical-fiction|/genres/european-literature|/genres/german-literature|/genres/war|/genres/cultural|/genres/france|/genres/romance|/genres/literature|/genres/novels|/genres/history|/genres/world-war-ii,dir21/672948.Arch_of_Triumph.html,7540,Arch of Triumph +3.85,881,0140389660,good_reads:book,https://www.goodreads.com/author/show/762707.S_E_Hinton,1971,/genres/young-adult|/genres/fiction|/genres/classics|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/coming-of-age|/genres/drama|/genres/childrens|/genres/academic|/genres/school|/genres/realistic-fiction|/genres/novels,dir21/33569.That_Was_Then_This_is_Now.html,17688,"That Was Then, This is Now" +3.96,2459,9773513912,good_reads:book,https://www.goodreads.com/author/show/1479015._,2008,/genres/novels|/genres/science-fiction|/genres/dystopia|/genres/fiction|/genres/literature|/genres/science-fiction|/genres/fantasy|/genres/cultural|/genres/egypt|/genres/social|/genres/art|/genres/suspense,dir21/3503947.html,21273,يوتوبيا +3.98,1684,0142401110,good_reads:book,https://www.goodreads.com/author/show/23509.Jean_Craighead_George,1959,/genres/young-adult|/genres/fiction|/genres/childrens|/genres/adventure|/genres/classics|/genres/adventure|/genres/survival|/genres/realistic-fiction|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/environment|/genres/nature,dir21/41667.My_Side_of_the_Mountain.html,35235,"My Side of the Mountain (Mountain, #1)" +3.91,812,1573227951,good_reads:book,https://www.goodreads.com/author/show/9833.Iain_Pears,1997,/genres/historical-fiction|/genres/mystery|/genres/fiction|/genres/mystery|/genres/crime|/genres/mystery|/genres/historical-mystery|/genres/thriller|/genres/mystery-thriller|/genres/european-literature|/genres/british-literature|/genres/thriller|/genres/literature|/genres/book-club,dir21/15888.An_Instance_of_the_Fingerpost.html,14101,An Instance of the Fingerpost +3.78,811,1876175702,good_reads:book,https://www.goodreads.com/author/show/76172.Ernesto_Guevara,1995,/genres/non-fiction|/genres/travel|/genres/biography|/genres/history|/genres/autobiography|/genres/memoir|/genres/politics|/genres/biography|/genres/autobiography|/genres/adventure|/genres/biography-memoir|/genres/classics,dir21/172732.The_Motorcycle_Diaries.html,14054,The Motorcycle Diaries +3.97,726,0812551478,good_reads:book,https://www.goodreads.com/author/show/3441.Terry_Goodkind,1996,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/romance|/genres/adventure|/genres/epic|/genres/adult,dir21/43892.Blood_of_the_Fold.html,46624,"Blood of the Fold (Sword of Truth, #3)" +4.48,215,0449912426,good_reads:book,https://www.goodreads.com/author/show/4116.Erich_Maria_Remarque,1936,/genres/classics|/genres/fiction|/genres/european-literature|/genres/german-literature|/genres/historical-fiction|/genres/war|/genres/novels|/genres/drama|/genres/literature|/genres/cultural|/genres/germany|/genres/romance,dir21/91203.Three_Comrades.html,9451,Three Comrades +4.10,1151,0312144075,good_reads:book,https://www.goodreads.com/author/show/28719.Gail_Tsukiyama,1994,/genres/historical-fiction|/genres/cultural|/genres/japan|/genres/book-club|/genres/cultural|/genres/asia|/genres/literature|/genres/asian-literature|/genres/cultural|/genres/china|/genres/fiction|/genres/novels|/genres/literature|/genres/asian-literature|/genres/japanese-literature,dir21/51113.The_Samurai_s_Garden.html,12398,The Samurai's Garden +4.11,414,006177894X,good_reads:book,https://www.goodreads.com/author/show/153734.Ellen_Schreiber,2008,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/young-adult|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/urban-fantasy,dir21/5489684-vampire-kisses.html,20405,"Vampire Kisses (Vampire Kisses, #1-3)" +4.03,909,156865054X,good_reads:book,https://www.goodreads.com/author/show/12534.Larry_Niven,1974,/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/space-opera|/genres/science-fiction|/genres/aliens|/genres/fantasy|/genres/space|/genres/speculative-fiction|/genres/classics|/genres/war|/genres/military,dir21/100365.The_Mote_in_God_s_Eye.html,38429,"The Mote in God's Eye (Moties, #1)" +3.79,1716,0545040523,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2008,/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/young-adult|/genres/teen|/genres/contemporary|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/realistic-fiction|/genres/mystery,dir21/2213324.Airhead.html,26855,"Airhead (Airhead, #1)" +4.37,1262,0670076082,good_reads:book,https://www.goodreads.com/author/show/47104.Melina_Marchetta,2011,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/young-adult|/genres/young-adult-fantasy|/genres/fiction|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/epic-fantasy,dir21/10165727-froi-of-the-exiles.html,8072,"Froi of the Exiles (Lumatere Chronicles, #2)" +4.21,583,0552153257,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,1996,/genres/fantasy|/genres/humor|/genres/fiction|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny,dir21/34527.Feet_of_Clay.html,36894,"Feet of Clay (Discworld, #19)" +3.96,207,074939482X,good_reads:book,https://www.goodreads.com/author/show/22018.Mervyn_Peake,1950,/genres/fantasy|/genres/fiction|/genres/classics|/genres/gothic|/genres/science-fiction-fantasy|/genres/novels|/genres/literature|/genres/speculative-fiction|/genres/science-fiction|/genres/european-literature|/genres/british-literature,dir21/258392.Gormenghast.html,6837,"Gormenghast (Gormenghast, #2)" +4.30,3379,,good_reads:book,https://www.goodreads.com/author/show/4872191.Abbi_Glines,2013,/genres/new-adult|/genres/romance|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/adult-fiction|/genres/erotica|/genres/sociology|/genres/abuse|/genres/adult|/genres/womens-fiction|/genres/chick-lit|/genres/drama,dir21/17333880-twisted-perfection.html,40549,"Twisted Perfection (Perfection, #1)" +3.60,2982,0156031191,good_reads:book,https://www.goodreads.com/author/show/8146.Mark_Helprin,1983,/genres/fiction|/genres/fantasy|/genres/historical-fiction|/genres/magical-realism|/genres/romance|/genres/book-club|/genres/science-fiction|/genres/steampunk,dir21/12967.Winter_s_Tale.html,15927,Winter's Tale +4.31,4628,0316067598,good_reads:book,https://www.goodreads.com/author/show/379290.Marcus_Luttrell,2006,/genres/war|/genres/military|/genres/war|/genres/history|/genres/autobiography|/genres/memoir|/genres/military|/genres/military-history|/genres/book-club|/genres/non-fiction|/genres/biography|/genres/biography|/genres/autobiography|/genres/biography-memoir,dir21/711901.Lone_Survivor.html,35286,Lone Survivor +4.02,472,0679724516,good_reads:book,https://www.goodreads.com/author/show/5548.Simone_de_Beauvoir,1949,/genres/feminism|/genres/non-fiction|/genres/philosophy|/genres/classics|/genres/gender|/genres/cultural|/genres/france|/genres/womens|/genres/sociology|/genres/gender|/genres/gender-studies|/genres/philosophy|/genres/theory,dir21/457264.The_Second_Sex.html,13894,The Second Sex +4.11,892,0425201376,good_reads:book,https://www.goodreads.com/author/show/9550.Laurell_K_Hamilton,1996,/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/horror|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/shapeshifters|/genres/werewolves,dir21/30273.The_Lunatic_Cafe.html,50103,"The Lunatic Cafe (Anita Blake, Vampire Hunter #4)" +4.27,1242,0373772327,good_reads:book,https://www.goodreads.com/author/show/48192.Gena_Showalter,2008,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/adult|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/fiction,dir21/2498983.The_Darkest_Kiss.html,35367,"The Darkest Kiss (Lords of the Underworld, #2)" +4.55,25,,good_reads:book,https://www.goodreads.com/author/show/4939353.Oliviu_Craznic,2010,/genres/horror|/genres/european-literature|/genres/romanian-literature|/genres/fantasy|/genres/shapeshifters|/genres/werewolves|/genres/paranormal|/genres/vampires,dir21/11688630-si-la-sfarsit-a-mai-ramas-cosmarul.html,108,....Si la sfarsit a mai ramas cosmarul +4.10,721,0060567236,good_reads:book,https://www.goodreads.com/author/show/3619.Roger_Zelazny,1967,/genres/science-fiction|/genres/fantasy|/genres/fiction|/genres/science-fiction-fantasy|/genres/religion|/genres/classics|/genres/fantasy|/genres/mythology|/genres/speculative-fiction|/genres/novels|/genres/philosophy,dir21/13821.Lord_of_Light.html,14878,Lord of Light +3.82,1432,0441172695,good_reads:book,https://www.goodreads.com/author/show/58.Frank_Herbert,1969,/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/classics|/genres/science-fiction|/genres/space-opera|/genres/novels|/genres/speculative-fiction|/genres/religion|/genres/epic,dir21/106.Dune_Messiah.html,59633,"Dune Messiah (Dune Chronicles, #2)" +4.07,613,0060725125,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2001,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/paranormal|/genres/ghosts|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/young-adult|/genres/teen|/genres/womens-fiction|/genres/chick-lit|/genres/mystery,dir21/199786.Ninth_Key.html,24601,"Ninth Key (The Mediator, #2)" +4.23,1168,0747532036,good_reads:book,https://www.goodreads.com/author/show/56700.Crockett_Johnson,1955,/genres/childrens|/genres/childrens|/genres/picture-books|/genres/fiction|/genres/classics|/genres/fantasy,dir21/98573.Harold_and_the_Purple_Crayon.html,82777,Harold and the Purple Crayon +3.93,2644,8183860699,good_reads:book,https://www.goodreads.com/author/show/4343092.Amish_Tripathi,2010,/genres/fiction|/genres/fantasy|/genres/fantasy|/genres/mythology|/genres/asian-literature|/genres/indian-literature|/genres/historical-fiction|/genres/cultural|/genres/india|/genres/novels|/genres/adventure|/genres/philosophy|/genres/mystery,dir21/7913305-the-immortals-of-meluha.html,36849,The Immortals of Meluha (Shiva Trilogy #1) +4.17,767,0575077832,good_reads:book,https://www.goodreads.com/author/show/38569.Andrzej_Sapkowski,1992,/genres/fantasy|/genres/fiction|/genres/european-literature|/genres/polish-literature|/genres/short-stories|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/dark-fantasy|/genres/horror|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/adventure,dir21/1128434.The_Last_Wish.html,14922,The Last Wish +3.97,4070,043977134X,good_reads:book,https://www.goodreads.com/author/show/153394.Suzanne_Collins,2003,/genres/fantasy|/genres/fiction|/genres/childrens|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/science-fiction|/genres/science-fiction-fantasy|/genres/animals|/genres/action,dir21/262430.Gregor_the_Overlander.html,47358,"Gregor the Overlander (Underland Chronicles, #1)" +4.16,24,0804844399,good_reads:book,https://www.goodreads.com/author/show/6894841.Felix_Abt,2012,,dir21/18343754-a-capitalist-in-north-korea.html,57,A Capitalist in North Korea +4.04,891,044661758X,good_reads:book,https://www.goodreads.com/author/show/12470.Michael_Connelly,1994,/genres/fiction|/genres/mystery|/genres/mystery|/genres/detective|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/crime|/genres/suspense|/genres/thriller|/genres/mystery|/genres/murder-mystery|/genres/adult|/genres/mystery|/genres/noir,dir21/49350.The_Concrete_Blonde.html,20937,"The Concrete Blonde (Harry Bosch, #3)" +4.62,13,,good_reads:book,https://www.goodreads.com/author/show/5808133.Lauren_Lynne,2013,/genres/young-adult|/genres/action|/genres/fantasy|/genres/suspense|/genres/adventure,dir21/17214485-whispers.html,45,"Whispers (The Secret Watchers, #2)" +4.31,2025,1476760756,good_reads:book,https://www.goodreads.com/author/show/5351355.J_M_Darhower,2012,/genres/romance|/genres/young-adult|/genres/new-adult|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/dark|/genres/sociology|/genres/abuse|/genres/suspense|/genres/mystery,dir21/18338465-sempre.html,15472,"Sempre (Forever, #1)" +4.24,428,0582418178,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1982,/genres/horror|/genres/fiction|/genres/short-stories|/genres/thriller|/genres/young-adult|/genres/coming-of-age|/genres/young-adult|/genres/mystery|/genres/drama|/genres/adventure|/genres/classics,dir21/11574.The_Body.html,17937,The Body +3.68,7735,0345494997,good_reads:book,https://www.goodreads.com/author/show/460979.Nancy_Horan,2007,/genres/book-club|/genres/historical-fiction|/genres/fiction|/genres/romance|/genres/adult-fiction|/genres/adult|/genres/architecture|/genres/art|/genres/novels|/genres/literary-fiction,dir21/898885.Loving_Frank.html,54949,Loving Frank +4.15,42,1478162155,good_reads:book,https://www.goodreads.com/author/show/6454826.Bob_Atkinson,2012,/genres/historical-fiction|/genres/science-fiction|/genres/time-travel|/genres/fantasy|/genres/cultural|/genres/scotland|/genres/science-fiction|/genres/fiction|/genres/romance|/genres/mystery,dir21/15982935-the-last-sunset.html,96,The Last Sunset +4.24,743,0312156960,good_reads:book,https://www.goodreads.com/author/show/12542.Bernard_Cornwell,1995,/genres/historical-fiction|/genres/fantasy|/genres/fiction|/genres/mythology|/genres/arthurian|/genres/historical-fiction|/genres/medieval|/genres/fantasy|/genres/mythology|/genres/adventure,dir21/68520.The_Winter_King.html,17016,"The Winter King (The Warlord Chronicles, #1)" +3.55,566,,good_reads:book,https://www.goodreads.com/author/show/4507090.Jayde_Scott,2011,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural,dir21/11267847-a-job-from-hell.html,5689,"A Job From Hell (Ancient Legends, #1)" +4.37,2373,0373210698,good_reads:book,https://www.goodreads.com/author/show/2995873.Julie_Kagawa,2013,/genres/paranormal|/genres/vampires|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/apocalyptic|/genres/post-apocalyptic,dir21/13581990-the-eternity-cure.html,13861,"The Eternity Cure (Blood of Eden, #2)" +3.61,1548,0006551815,good_reads:book,https://www.goodreads.com/author/show/3347.Frank_McCourt,1999,/genres/autobiography|/genres/memoir|/genres/non-fiction|/genres/biography|/genres/autobiography|/genres/cultural|/genres/ireland|/genres/biography-memoir|/genres/european-literature|/genres/irish-literature|/genres/biography|/genres/history|/genres/literature|/genres/adult,dir21/4912._Tis.html,35790,"'Tis (Frank McCourt, #2)" +3.84,399,0140440399,good_reads:book,https://www.goodreads.com/author/show/957.Thucydides,-411,/genres/history|/genres/classics|/genres/non-fiction|/genres/war|/genres/war|/genres/military|/genres/cultural|/genres/greece|/genres/military|/genres/military-history|/genres/politics|/genres/literature|/genres/literature|/genres/ancient,dir21/261243.The_History_of_the_Peloponnesian_War.html,17212,The History of the Peloponnesian War +3.93,2380,0385736843,good_reads:book,https://www.goodreads.com/author/show/1443712.Carrie_Ryan,2010,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/horror|/genres/zombies|/genres/horror|/genres/fantasy|/genres/fiction|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/teen|/genres/science-fiction,dir21/6555517-the-dead-tossed-waves.html,21907,"The Dead-Tossed Waves (The Forest of Hands and Teeth, #2)" +3.77,211,0140432353,good_reads:book,https://www.goodreads.com/author/show/159.Henry_James,1904,/genres/fiction|/genres/classics|/genres/literature|/genres/literature|/genres/american|/genres/historical-fiction|/genres/literature|/genres/20th-century|/genres/novels|/genres/literary-fiction|/genres/classics|/genres/classic-literature|/genres/book-club,dir21/259020.The_Golden_Bowl.html,5972,The Golden Bowl +4.09,1791,0393307050,good_reads:book,https://www.goodreads.com/author/show/5600.Patrick_O_Brian,1969,/genres/historical-fiction|/genres/adventure|/genres/classics|/genres/war|/genres/war|/genres/military|/genres/fiction,dir21/77430.Master_and_Commander.html,23052,"Master and Commander (Aubrey/Maturin, #1)" +4.30,815,0440243904,good_reads:book,https://www.goodreads.com/author/show/119121.Conn_Iggulden,2007,/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/asia|/genres/fantasy|/genres/adventure|/genres/war|/genres/war|/genres/military|/genres/action|/genres/novels|/genres/adult,dir21/1279686.Genghis.html,11968,"Genghis (Conqueror, #1)" +4.09,5945,0676979343,good_reads:book,https://www.goodreads.com/author/show/3670.Jhumpa_Lahiri,2008,/genres/fiction|/genres/short-stories|/genres/book-club|/genres/cultural|/genres/india|/genres/contemporary|/genres/literary-fiction|/genres/literature|/genres/adult-fiction|/genres/asian-literature|/genres/indian-literature|/genres/adult,dir21/85301.Unaccustomed_Earth.html,51333,Unaccustomed Earth +4.01,2151,0061869708,good_reads:book,https://www.goodreads.com/author/show/93970.Sara_Shepard,2010,/genres/young-adult|/genres/mystery|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/romance,dir21/8428069-the-lying-game.html,25873,"The Lying Game (The Lying Game, #1)" +4.26,4740,0525952926,good_reads:book,https://www.goodreads.com/author/show/3447.Ken_Follett,2012,/genres/history|/genres/war|/genres/history|/genres/world-war-ii|/genres/adult|/genres/epic|/genres/drama|/genres/book-club|/genres/thriller|/genres/cultural|/genres/russia|/genres/european-literature|/genres/british-literature,dir21/12959233-winter-of-the-world.html,40804,Winter of the World (The Century Trilogy #2) +4.17,570,141697895X,good_reads:book,https://www.goodreads.com/author/show/1290625.Jessica_Verday,2010,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/ghosts|/genres/romance|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/mystery|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/urban-fantasy,dir21/7159016-the-haunted.html,10416,"The Haunted (The Hollow, #2)" +3.95,3200,0062071041,good_reads:book,https://www.goodreads.com/author/show/2740668.Dan_Wells,2012,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fantasy|/genres/fiction|/genres/romance|/genres/adventure|/genres/young-adult|/genres/teen|/genres/science-fiction|/genres/apocalyptic,dir21/12476820-partials.html,28300,"Partials (The Partials Sequence, #1)" +3.74,5568,0593053893,good_reads:book,https://www.goodreads.com/author/show/6160.Sophie_Kinsella,2008,/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/fiction|/genres/contemporary|/genres/adult|/genres/humor|/genres/romance|/genres/contemporary-romance|/genres/adult-fiction|/genres/humor|/genres/funny|/genres/book-club,dir21/1358844.Remember_Me_.html,132215,Remember Me? +3.95,14972,0345505336,good_reads:book,https://www.goodreads.com/author/show/1421619.Jamie_Ford,2009,/genres/historical-fiction|/genres/book-club|/genres/fiction|/genres/romance|/genres/history|/genres/world-war-ii|/genres/adult-fiction,dir21/3367956-hotel-on-the-corner-of-bitter-and-sweet.html,148413,Hotel on the Corner of Bitter and Sweet +4.22,694,0553820273,good_reads:book,https://www.goodreads.com/author/show/137902.Richelle_Mead,2009,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/paranormal|/genres/vampires|/genres/paranormal|/genres/demons|/genres/adult|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/supernatural,dir21/5148720-succubus-heat.html,17330,"Succubus Heat (Georgina Kincaid, #4)" +4.04,1120,0575073608,good_reads:book,https://www.goodreads.com/author/show/6944.Jack_Finney,1970,/genres/science-fiction|/genres/time-travel|/genres/fiction|/genres/science-fiction|/genres/historical-fiction|/genres/fantasy|/genres/romance|/genres/mystery|/genres/new-york|/genres/classics|/genres/science-fiction-fantasy,dir21/40526.Time_and_Again.html,7986,"Time and Again (Time, #1)" +4.09,1113,0061671339,good_reads:book,https://www.goodreads.com/author/show/172487.Brom,2009,/genres/fantasy|/genres/science-fiction-fantasy|/genres/mystery|/genres/fantasy|/genres/high-fantasy|/genres/art|/genres/science-fiction|/genres/horror,dir21/6308379-the-child-thief.html,6962,The Child Thief +3.91,1080,0393327655,good_reads:book,https://www.goodreads.com/author/show/16593.Sam_Harris,2004,/genres/religion|/genres/non-fiction|/genres/philosophy|/genres/religion|/genres/atheism|/genres/politics|/genres/science|/genres/history|/genres/psychology|/genres/philosophy|/genres/skepticism|/genres/spirituality,dir21/29501.The_End_of_Faith.html,17036,The End of Faith +4.05,6175,1594201455,good_reads:book,https://www.goodreads.com/author/show/2121.Michael_Pollan,2007,/genres/non-fiction|/genres/food-and-drink|/genres/food|/genres/health|/genres/science|/genres/health|/genres/nutrition|/genres/food-and-drink|/genres/cooking|/genres/food-and-drink|/genres/foodie|/genres/book-club|/genres/environment|/genres/food-and-drink|/genres/food-writing,dir21/315425.In_Defense_of_Food.html,63519,In Defense of Food +3.83,1184,0312590989,good_reads:book,https://www.goodreads.com/author/show/200317.Alyson_Noel,2010,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires,dir21/7739934-night-star.html,36252,"Night Star (The Immortals, #5)" +4.18,558,0679767924,good_reads:book,https://www.goodreads.com/author/show/8875.Halld_r_Laxness,1934,/genres/fiction|/genres/classics|/genres/historical-fiction|/genres/literature|/genres/novels|/genres/european-literature|/genres/scandinavian-literature|/genres/nobel-prize|/genres/literature|/genres/20th-century,dir21/77287.Independent_People.html,3560,Independent People +3.80,1148,,good_reads:book,https://www.goodreads.com/author/show/40398.Arturo_P_rez_Reverte,1992,/genres/mystery|/genres/fiction|/genres/historical-fiction|/genres/thriller|/genres/writing|/genres/books-about-books|/genres/adventure|/genres/european-literature|/genres/spanish-literature|/genres/fantasy|/genres/mystery|/genres/crime|/genres/literature,dir21/7194.The_Club_Dumas.html,20059,The Club Dumas +4.12,1106,0141383356,good_reads:book,https://www.goodreads.com/author/show/10896.Eoin_Colfer,2007,/genres/young-adult|/genres/fantasy|/genres/science-fiction|/genres/steampunk|/genres/historical-fiction|/genres/adventure|/genres/fiction|/genres/science-fiction|/genres/young-adult|/genres/teen|/genres/romance|/genres/action,dir21/2049993.Airman.html,11518,Airman +4.08,939,0886778581,good_reads:book,https://www.goodreads.com/author/show/85545.Kristen_Britain,1998,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/magic|/genres/adventure|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/romance|/genres/adult,dir21/147843.Green_Rider.html,17755,"Green Rider (Green Rider, #1)" +4.31,836,174166134X,good_reads:book,https://www.goodreads.com/author/show/34049.John_Flanagan,2006,/genres/fantasy|/genres/young-adult|/genres/adventure|/genres/fiction|/genres/action|/genres/young-adult|/genres/teen|/genres/historical-fiction|/genres/medieval|/genres/historical-fiction|/genres/childrens|/genres/young-adult|/genres/young-adult-fantasy,dir22/1814843.The_Siege_of_Macindaw.html,25272,"The Siege of Macindaw (Ranger's Apprentice, #7)" +4.14,1074,0007133618,good_reads:book,https://www.goodreads.com/author/show/16094.Lois_McMaster_Bujold,2000,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/romance|/genres/science-fiction|/genres/fantasy|/genres/magic|/genres/adult|/genres/speculative-fiction,dir22/61886.The_Curse_of_Chalion.html,15263,"The Curse of Chalion (Chalion, #1)" +3.74,2203,0743495667,good_reads:book,https://www.goodreads.com/author/show/9212.Jennifer_Weiner,2002,/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/romance|/genres/adult-fiction|/genres/contemporary|/genres/adult|/genres/book-club|/genres/humor|/genres/media-tie-in|/genres/movies|/genres/romance|/genres/contemporary-romance,dir22/14758.In_Her_Shoes.html,130414,In Her Shoes +3.81,5807,1400078431,good_reads:book,https://www.goodreads.com/author/show/238.Joan_Didion,2005,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/biography|/genres/book-club|/genres/biography-memoir|/genres/death|/genres/biography|/genres/autobiography|/genres/psychology|/genres/literature|/genres/american|/genres/writing|/genres/essays,dir22/7815.The_Year_of_Magical_Thinking.html,67895,The Year of Magical Thinking +4.45,1433,0679729771,good_reads:book,https://www.goodreads.com/author/show/5117.Art_Spiegelman,1991,/genres/sequential-art|/genres/graphic-novels|/genres/world-war-ii|/genres/holocaust|/genres/sequential-art|/genres/comics|/genres/autobiography|/genres/memoir|/genres/non-fiction|/genres/biography|/genres/history|/genres/war|/genres/history|/genres/world-war-ii|/genres/graphic-novels-comics,dir22/15197.Maus_II.html,56754,"Maus, II (Maus, #2)" +4.06,3073,1891830430,good_reads:book,https://www.goodreads.com/author/show/14151.Craig_Thompson,2003,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fiction|/genres/young-adult|/genres/romance|/genres/graphic-novels-comics|/genres/young-adult|/genres/coming-of-age|/genres/religion|/genres/comics|/genres/comic-book|/genres/adult,dir22/25179.Blankets.html,49077,Blankets +4.03,736,0812972120,good_reads:book,https://www.goodreads.com/author/show/696805.Jules_Verne,1874,/genres/classics|/genres/science-fiction|/genres/fantasy|/genres/cultural|/genres/france|/genres/literature|/genres/novels|/genres/european-literature|/genres/french-literature|/genres/literature|/genres/19th-century|/genres/science-fiction-fantasy|/genres/childrens,dir22/32831.The_Mysterious_Island.html,21349,The Mysterious Island +4.05,561,0141181362,good_reads:book,https://www.goodreads.com/author/show/23129.Robertson_Davies,1970,/genres/fiction|/genres/cultural|/genres/canada|/genres/classics|/genres/literature|/genres/novels|/genres/literary-fiction|/genres/literature|/genres/canadian-literature|/genres/historical-fiction|/genres/academic|/genres/school|/genres/book-club,dir22/74406.Fifth_Business.html,9269,Fifth Business +4.83,19,,good_reads:book,https://www.goodreads.com/author/show/7172051.Stevie_Turner,2014,/genres/suspense|/genres/european-literature|/genres/british-literature|/genres/thriller|/genres/mystery-thriller|/genres/thriller|/genres/mystery|/genres/drama|/genres/sociology|/genres/abuse,dir22/20880952-a-house-without-windows.html,71,A House Without Windows +3.94,1971,0439286069,good_reads:book,https://www.goodreads.com/author/show/5817.Rodman_Philbrick,1993,/genres/young-adult|/genres/realistic-fiction|/genres/fiction|/genres/academic|/genres/school|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/academic|/genres/read-for-school|/genres/childrens|/genres/juvenile|/genres/young-adult|/genres/teen|/genres/contemporary,dir22/8953.Freak_the_Mighty.html,22359,Freak the Mighty +4.67,70,0988223678,good_reads:book,https://www.goodreads.com/author/show/6521036.J_K_Accinni,2012,/genres/science-fiction|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/wildlife|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/young-adult,dir22/17322045-hive.html,232,"Hive (Species Intervention #6609, #4)" +4.04,392,006093316X,good_reads:book,https://www.goodreads.com/author/show/10366.Clive_Barker,1990,/genres/horror|/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/dark-fantasy|/genres/science-fiction|/genres/thriller|/genres/science-fiction-fantasy|/genres/novels|/genres/suspense|/genres/adult,dir22/32628.The_Great_and_Secret_Show.html,19375,"The Great and Secret Show (Book of the Art, #1)" +4.15,1543,015205085X,good_reads:book,https://www.goodreads.com/author/show/170658.L_A_Meyer,2002,/genres/historical-fiction|/genres/young-adult|/genres/adventure|/genres/fiction|/genres/adventure|/genres/pirates|/genres/young-adult|/genres/teen|/genres/romance|/genres/fantasy|/genres/humor|/genres/action,dir22/295649.Bloody_Jack.html,13552,"Bloody Jack (Bloody Jack, #1)" +4.22,903,1423163001,good_reads:book,https://www.goodreads.com/author/show/15872.Rick_Riordan,2012,/genres/fantasy|/genres/fantasy|/genres/mythology|/genres/young-adult|/genres/adventure|/genres/mythology|/genres/greek-mythology|/genres/short-stories|/genres/fiction,dir22/12959086-the-demigod-diaries.html,16160,The Demigod Diaries +4.23,584,0486290727,good_reads:book,https://www.goodreads.com/author/show/4624490.Edgar_Allan_Poe,1844,/genres/poetry|/genres/classics|/genres/horror|/genres/fiction|/genres/gothic|/genres/short-stories|/genres/academic|/genres/school|/genres/literature|/genres/literature|/genres/american|/genres/mystery,dir22/264158.The_Raven.html,31322,The Raven +4.13,719,0552150215,good_reads:book,https://www.goodreads.com/author/show/27804.John_Katzenbach,2002,/genres/thriller|/genres/mystery|/genres/fiction|/genres/suspense|/genres/mystery|/genres/crime|/genres/novels|/genres/thriller|/genres/mystery-thriller|/genres/psychology|/genres/thriller|/genres/psychological-thriller|/genres/adventure,dir22/67931.The_Analyst.html,9944,The Analyst +4.24,1206,044101738X,good_reads:book,https://www.goodreads.com/author/show/40563.Patricia_Briggs,2009,/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/shapeshifters|/genres/fiction|/genres/adult|/genres/fairies|/genres/fae,dir22/5292853-hunting-ground.html,33321,"Hunting Ground (Alpha & Omega, #2)" +3.91,1228,0451194004,good_reads:book,https://www.goodreads.com/author/show/8050.Ira_Levin,1967,/genres/horror|/genres/fiction|/genres/classics|/genres/thriller|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/mystery|/genres/suspense,dir22/228296.Rosemary_s_Baby.html,54984,Rosemary's Baby +4.05,588,0156106809,good_reads:book,https://www.goodreads.com/author/show/155517.Italo_Calvino,1957,/genres/classics|/genres/european-literature|/genres/italian-literature|/genres/novels|/genres/literature|/genres/cultural|/genres/italy|/genres/fantasy|/genres/fiction|/genres/magical-realism|/genres/historical-fiction|/genres/literary-fiction,dir22/9804.The_Baron_in_the_Trees.html,12045,The Baron in the Trees +3.87,2090,0451228219,good_reads:book,https://www.goodreads.com/author/show/20248.J_R_Ward,2009,/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/paranormal|/genres/demons|/genres/paranormal|/genres/angels|/genres/adult|/genres/fantasy|/genres/supernatural,dir22/6289920-covet.html,33685,"Covet (Fallen Angels, #1)" +3.96,896,0060858796,good_reads:book,https://www.goodreads.com/author/show/26256.Marya_Hornbacher,1997,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/psychology|/genres/mental-health|/genres/mental-illness|/genres/biography|/genres/health|/genres/mental-health|/genres/biography-memoir|/genres/biography|/genres/autobiography,dir22/46815.Wasted.html,20287,Wasted +4.21,2070,0553804685,good_reads:book,https://www.goodreads.com/author/show/73149.Scott_Lynch,2007,/genres/fantasy|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/epic-fantasy|/genres/adventure|/genres/pirates,dir22/887877.Red_Seas_Under_Red_Skies.html,39450,"Red Seas Under Red Skies (Gentleman Bastard, #2)" +3.80,4360,0061147931,good_reads:book,https://www.goodreads.com/author/show/88506.Joe_Hill,2007,/genres/fiction|/genres/horror|/genres/paranormal|/genres/ghosts|/genres/fantasy|/genres/paranormal|/genres/thriller|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/mystery|/genres/suspense|/genres/adult,dir22/153025.Heart_Shaped_Box.html,46397,Heart-Shaped Box +4.15,456,0345341678,good_reads:book,https://www.goodreads.com/author/show/26.Anne_McCaffrey,1978,/genres/fantasy|/genres/science-fiction|/genres/fantasy|/genres/dragons|/genres/fiction|/genres/science-fiction-fantasy|/genres/young-adult|/genres/adult|/genres/fantasy|/genres/epic-fantasy|/genres/speculative-fiction|/genres/adventure,dir22/127586.The_White_Dragon.html,27344,"The White Dragon (Pern, #3)" +3.91,314,0141185503,good_reads:book,https://www.goodreads.com/author/show/585.John_Steinbeck,1933,/genres/fiction|/genres/classics|/genres/literature|/genres/novels|/genres/literature|/genres/american|/genres/literary-fiction|/genres/romance|/genres/modern|/genres/nobel-prize|/genres/historical-fiction,dir22/111300.To_a_God_Unknown.html,4549,To a God Unknown +4.25,1030,1563894696,good_reads:book,https://www.goodreads.com/author/show/32594.Jeph_Loeb,1997,/genres/sequential-art|/genres/graphic-novels|/genres/dc-comics|/genres/batman|/genres/fiction|/genres/comics|/genres/comic-book|/genres/superheroes|/genres/dc-comics|/genres/graphic-novels-comics|/genres/comics|/genres/superheroes|/genres/mystery|/genres/sequential-art|/genres/comics|/genres/mystery|/genres/crime,dir22/106069.Batman.html,39857,Batman +3.64,2065,0452282829,good_reads:book,https://www.goodreads.com/author/show/3524.Joyce_Carol_Oates,1996,/genres/fiction|/genres/book-club|/genres/contemporary|/genres/adult-fiction|/genres/literary-fiction|/genres/novels|/genres/literature|/genres/family,dir22/5204.We_Were_the_Mulvaneys.html,60275,We Were the Mulvaneys +3.61,1430,0099297701,good_reads:book,https://www.goodreads.com/author/show/12455.Thomas_Harris,1999,/genres/horror|/genres/fiction|/genres/thriller|/genres/mystery|/genres/mystery|/genres/crime|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/adult|/genres/novels|/genres/literature|/genres/american,dir22/32418.Hannibal.html,41718,"Hannibal (Hannibal Lecter, #3)" +4.35,567,1933626046,good_reads:book,https://www.goodreads.com/author/show/111001.Susan_Kay,1990,/genres/fiction|/genres/romance|/genres/historical-fiction|/genres/fantasy|/genres/horror|/genres/gothic|/genres/classics|/genres/adult-fiction|/genres/romance|/genres/historical-romance|/genres/mystery,dir22/190507.Phantom.html,7342,Phantom +3.88,482,0440212812,good_reads:book,https://www.goodreads.com/author/show/9558.Poppy_Z_Brite,1992,/genres/horror|/genres/paranormal|/genres/vampires|/genres/fiction|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/glbt|/genres/gothic|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/m-m-romance,dir22/452244.Lost_Souls.html,11779,Lost Souls +4.25,1577,0060841826,good_reads:book,https://www.goodreads.com/author/show/22542.Megan_Whalen_Turner,2000,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/adventure|/genres/romance|/genres/historical-fiction|/genres/young-adult|/genres/young-adult-fantasy|/genres/fantasy|/genres/mythology|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/high-fantasy,dir22/40158.The_Queen_of_Attolia.html,15284,"The Queen of Attolia (The Queen's Thief, #2)" +3.95,885,0064410137,good_reads:book,https://www.goodreads.com/author/show/36746.Lemony_Snicket,2003,/genres/young-adult|/genres/fiction|/genres/childrens|/genres/fantasy|/genres/mystery|/genres/adventure|/genres/humor|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/realistic-fiction,dir22/297792.The_Slippery_Slope.html,58433,"The Slippery Slope (A Series of Unfortunate Events, #10)" +3.63,12527,0307592839,good_reads:book,https://www.goodreads.com/author/show/49625.Jennifer_Egan,2010,/genres/fiction|/genres/book-club|/genres/contemporary|/genres/music|/genres/short-stories|/genres/literary-fiction|/genres/novels|/genres/adult-fiction|/genres/literature|/genres/adult,dir22/7331435-a-visit-from-the-goon-squad.html,101886,A Visit from the Goon Squad +4.05,182,3522144104,good_reads:book,https://www.goodreads.com/author/show/127314.Otfried_Preu_ler,1971,/genres/fantasy|/genres/european-literature|/genres/german-literature|/genres/young-adult|/genres/fiction|/genres/classics|/genres/childrens|/genres/academic|/genres/school,dir22/472626.Krabat.html,4850,Krabat +4.04,715,9871144261,good_reads:book,https://www.goodreads.com/author/show/5775606.Ernesto_Sabato,1948,/genres/fiction|/genres/european-literature|/genres/spanish-literature|/genres/classics|/genres/literature|/genres/literature|/genres/latin-american-literature|/genres/novels|/genres/cultural|/genres/latin-american|/genres/academic|/genres/school|/genres/contemporary|/genres/thriller,dir22/53447.El_t_nel.html,15401,El túnel +4.11,1715,0345457692,good_reads:book,https://www.goodreads.com/author/show/16496.Richard_K_Morgan,2002,/genres/science-fiction|/genres/science-fiction|/genres/cyberpunk|/genres/fiction|/genres/mystery|/genres/mystery|/genres/noir|/genres/science-fiction-fantasy|/genres/mystery|/genres/crime|/genres/thriller,dir22/40445.Altered_Carbon.html,28857,"Altered Carbon (Takeshi Kovacs, #1)" +4.06,1543,1423108361,good_reads:book,https://www.goodreads.com/author/show/10896.Eoin_Colfer,2008,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/science-fiction|/genres/adventure|/genres/fantasy|/genres/magic|/genres/childrens|/genres/fantasy|/genres/urban-fantasy|/genres/science-fiction|/genres/time-travel|/genres/paranormal|/genres/fairies,dir22/2179276.The_Time_Paradox.html,44745,"The Time Paradox (Artemis Fowl, #6)" +3.96,826,8423648990,good_reads:book,https://www.goodreads.com/author/show/815.Carlos_Ruiz_Zaf_n,1999,/genres/young-adult|/genres/horror|/genres/romance|/genres/gothic|/genres/cultural|/genres/spain|/genres/european-literature|/genres/spanish-literature|/genres/fiction|/genres/mystery|/genres/thriller|/genres/contemporary,dir22/4516.Marina.html,10617,Marina +4.18,688,0394758277,good_reads:book,https://www.goodreads.com/author/show/1377.Raymond_Chandler,1940,/genres/mystery|/genres/fiction|/genres/mystery|/genres/crime|/genres/mystery|/genres/noir|/genres/classics|/genres/mystery|/genres/detective|/genres/thriller|/genres/novels|/genres/literature|/genres/american|/genres/mystery|/genres/hard-boiled,dir22/2050.Farewell_My_Lovely.html,16455,"Farewell, My Lovely" +3.66,2423,0767900383,good_reads:book,https://www.goodreads.com/author/show/4826.Frances_Mayes,1996,/genres/travel|/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/cultural|/genres/italy|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/biography|/genres/food-and-drink|/genres/food|/genres/book-club|/genres/contemporary,dir22/480479.Under_the_Tuscan_Sun.html,229228,Under the Tuscan Sun +4.27,1337,0758232012,good_reads:book,https://www.goodreads.com/author/show/137902.Richelle_Mead,2011,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/demons|/genres/paranormal|/genres/vampires|/genres/paranormal|/genres/angels|/genres/adult|/genres/fantasy|/genres/supernatural,dir22/7802254-succubus-revealed.html,13420,"Succubus Revealed (Georgina Kincaid, #6)" +4.10,389,1400095417,good_reads:book,https://www.goodreads.com/author/show/7385.Chaim_Potok,1969,/genres/fiction|/genres/classics|/genres/literature|/genres/jewish|/genres/historical-fiction|/genres/literature|/genres/religion|/genres/religion|/genres/judaism|/genres/novels|/genres/young-adult|/genres/literary-fiction,dir22/11499.The_Promise.html,8461,The Promise +4.02,1226,,good_reads:book,https://www.goodreads.com/author/show/10896.Eoin_Colfer,2005,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/science-fiction|/genres/adventure|/genres/fantasy|/genres/magic|/genres/childrens|/genres/fantasy|/genres/urban-fantasy,dir22/114954.The_Opal_Deception.html,67908,"The Opal Deception (Artemis Fowl, #4)" +4.06,579,0061051586,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,1998,/genres/fantasy|/genres/fiction|/genres/humor|/genres/paranormal|/genres/vampires|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny|/genres/paranormal|/genres/witches|/genres/novels|/genres/european-literature|/genres/british-literature,dir22/34541.Carpe_Jugulum.html,28728,"Carpe Jugulum (Discworld, #23)" +4.25,342,0140317201,good_reads:book,https://www.goodreads.com/author/show/410653.Astrid_Lindgren,1981,/genres/childrens|/genres/fantasy|/genres/fiction|/genres/classics|/genres/european-literature|/genres/swedish-literature|/genres/adventure|/genres/young-adult|/genres/european-literature|/genres/scandinavian-literature|/genres/european-literature|/genres/german-literature|/genres/novels,dir22/19314.Ronia_the_Robber_s_Daughter.html,11423,"Ronia, the Robber's Daughter" +5.00,3,1300589469,good_reads:book,https://www.goodreads.com/author/show/6906561.I_M_Nobody,2012,,dir22/17287259-a-book-about-absolutely-nothing.html,63,A Book About Absolutely Nothing. +4.00,731,006001234X,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,2001,/genres/fantasy|/genres/fiction|/genres/young-adult|/genres/humor|/genres/childrens|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/animals|/genres/fantasy|/genres/magic|/genres/humor|/genres/funny,dir22/34534.The_Amazing_Maurice_and_His_Educated_Rodents.html,20027,"The Amazing Maurice and His Educated Rodents (Discworld, #28)" +4.25,979,0451233182,good_reads:book,https://www.goodreads.com/author/show/15292.Rachel_Caine,2011,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/young-adult|/genres/teen,dir22/9376345-bite-club.html,21129,"Bite Club (The Morganville Vampires, #10)" +4.23,585,0006486010,good_reads:book,https://www.goodreads.com/author/show/25307.Robin_Hobb,2001,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/epic|/genres/fantasy|/genres/magic|/genres/adventure|/genres/fantasy|/genres/dragons|/genres/adult,dir22/68488.Fool_s_Errand.html,31573,"Fool's Errand (Tawny Man, #1)" +4.15,849,1423110706,good_reads:book,https://www.goodreads.com/author/show/125308.Cinda_Williams_Chima,2008,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/dragons|/genres/adventure|/genres/romance|/genres/young-adult|/genres/young-adult-fantasy|/genres/fantasy|/genres/paranormal,dir22/2866413-the-dragon-heir.html,20941,"The Dragon Heir (The Heir Chronicles, #3)" +4.08,532,0765345013,good_reads:book,https://www.goodreads.com/author/show/8649.Juliet_Marillier,2001,/genres/fantasy|/genres/romance|/genres/historical-fiction|/genres/fiction|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/young-adult|/genres/adult,dir22/13925.Child_of_the_Prophecy.html,12260,"Child of the Prophecy (Sevenwaters, #3)" +4.31,1026,1416509887,good_reads:book,https://www.goodreads.com/author/show/4428.Kresley_Cole,2006,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/adult|/genres/fantasy|/genres/urban-fantasy|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/witches,dir22/14383.No_Rest_for_the_Wicked.html,33500,"No Rest for the Wicked (Immortals After Dark, #3)" +3.90,866,0061006629,good_reads:book,https://www.goodreads.com/author/show/575.Robert_Harris,1992,/genres/fiction|/genres/historical-fiction|/genres/thriller|/genres/science-fiction|/genres/alternate-history|/genres/mystery|/genres/mystery|/genres/crime|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/war|/genres/fantasy,dir22/56842.Fatherland.html,13631,Fatherland +3.92,1935,0689872372,good_reads:book,https://www.goodreads.com/author/show/19564.Neal_Shusterman,2006,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/ghosts|/genres/adventure|/genres/science-fiction|/genres/young-adult|/genres/teen|/genres/science-fiction|/genres/dystopia,dir22/688191.Everlost.html,18722,"Everlost (Skinjacker, #1)" +4.37,2425,,good_reads:book,https://www.goodreads.com/author/show/7047863.K_Bromberg,2013,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/sports-and-games|/genres/sports|/genres/new-adult|/genres/romance|/genres/erotic-romance|/genres/adult|/genres/erotica|/genres/bdsm|/genres/contemporary-romance|/genres/sports-romance,dir22/17798287-driven.html,25728,"Driven (The Driven Trilogy, #1)" +3.71,2716,0062048503,good_reads:book,https://www.goodreads.com/author/show/1792350.Anna_Carey,2011,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/science-fiction|/genres/apocalyptic|/genres/post-apocalyptic,dir22/9297774-eve.html,26285,"Eve (Eve, #1)" +3.72,559,0060576170,good_reads:book,https://www.goodreads.com/author/show/19405.Thomas_Mann,1912,/genres/fiction|/genres/european-literature|/genres/german-literature|/genres/literature|/genres/novels|/genres/classics|/genres/cultural|/genres/germany|/genres/cultural|/genres/italy|/genres/glbt|/genres/literature|/genres/20th-century|/genres/short-stories,dir22/53061.Death_in_Venice.html,11603,Death in Venice +4.05,2261,1905654871,good_reads:book,https://www.goodreads.com/author/show/17015.P_C_Cast,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/young-adult-paranormal|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/young-adult-fantasy|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/mythology|/genres/love,dir22/7933617-destined.html,46632,"Destined (House of Night, #9)" +3.95,4079,0765319853,good_reads:book,https://www.goodreads.com/author/show/12581.Cory_Doctorow,2008,/genres/young-adult|/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/teen|/genres/science-fiction|/genres/cyberpunk|/genres/science|/genres/technology|/genres/thriller,dir22/954674.Little_Brother.html,27148,"Little Brother (Little Brother, #1)" +4.06,813,0553826107,good_reads:book,https://www.goodreads.com/author/show/137902.Richelle_Mead,2011,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fairies|/genres/fae|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/adult|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/fairies|/genres/fantasy|/genres/supernatural,dir22/8709525-iron-crowned.html,11561,"Iron Crowned (Dark Swan, #3)" +4.05,1705,0385738595,good_reads:book,https://www.goodreads.com/author/show/1443712.Carrie_Ryan,2011,/genres/horror|/genres/zombies|/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/horror|/genres/fantasy|/genres/apocalyptic|/genres/post-apocalyptic|/genres/romance|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/teen,dir22/8535273-the-dark-and-hollow-places.html,15653,"The Dark and Hollow Places (The Forest of Hands and Teeth, #3)" +4.41,757,1741664489,good_reads:book,https://www.goodreads.com/author/show/34049.John_Flanagan,2010,/genres/fantasy|/genres/young-adult|/genres/adventure|/genres/fiction|/genres/historical-fiction|/genres/medieval|/genres/historical-fiction,dir22/7592279-the-emperor-of-nihon-ja.html,19933,"The Emperor of Nihon-Ja (Ranger's Apprentice, #10)" +4.06,919,0064407330,good_reads:book,https://www.goodreads.com/author/show/10366.Clive_Barker,2002,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/horror|/genres/adventure|/genres/science-fiction-fantasy|/genres/young-adult|/genres/teen|/genres/childrens|/genres/fantasy|/genres/magic,dir22/768878.Abarat.html,16030,"Abarat (Abarat, #1)" +3.92,3659,0312650086,good_reads:book,https://www.goodreads.com/author/show/835348.Ann_Aguirre,2011,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/horror|/genres/zombies|/genres/apocalyptic|/genres/post-apocalyptic|/genres/science-fiction|/genres/fantasy|/genres/romance|/genres/fiction|/genres/horror|/genres/adventure,dir22/7137327-enclave.html,40255,"Enclave (Razorland, #1)" +3.77,2161,141659485X,good_reads:book,https://www.goodreads.com/author/show/188932.Glenn_Beck,2008,/genres/holiday|/genres/christmas|/genres/fiction|/genres/book-club|/genres/inspirational|/genres/holiday|/genres/adult-fiction|/genres/christian-fiction|/genres/adult|/genres/christian|/genres/lds|/genres/lds-fiction,dir22/3268926-the-christmas-sweater.html,10904,The Christmas Sweater +4.28,9142,0307266303,good_reads:book,https://www.goodreads.com/author/show/133538.Christopher_McDougall,2009,/genres/non-fiction|/genres/sports-and-games|/genres/sports|/genres/health|/genres/sports|/genres/fitness|/genres/book-club|/genres/adventure|/genres/science|/genres/autobiography|/genres/memoir|/genres/travel|/genres/biography,dir22/6289283-born-to-run.html,71453,Born to Run +3.57,1101,0451190750,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1984,/genres/horror|/genres/fiction|/genres/thriller|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/paranormal|/genres/mystery|/genres/suspense|/genres/novels|/genres/adult-fiction,dir22/10605.Thinner.html,98196,Thinner +4.48,640,0060525851,good_reads:book,https://www.goodreads.com/author/show/27498.Erin_Hunter,2004,/genres/fantasy|/genres/animals|/genres/fiction|/genres/young-adult|/genres/animals|/genres/cats|/genres/adventure|/genres/childrens|/genres/animals|/genres/animal-fiction|/genres/childrens|/genres/middle-grade|/genres/action,dir22/49006.The_Darkest_Hour.html,18101,"The Darkest Hour (Warriors, #6)" +4.04,14,,good_reads:book,https://www.goodreads.com/author/show/4859966.Angelo_Tsanatelis,2011,/genres/fantasy|/genres/fantasy|/genres/dark-fantasy|/genres/fiction,dir22/11390271-origins.html,48,Origins +3.64,32,1453717021,good_reads:book,https://www.goodreads.com/author/show/5105154.Chris_Titus,2011,/genres/thriller|/genres/fiction|/genres/religion|/genres/mystery|/genres/thriller|/genres/mystery-thriller|/genres/contemporary|/genres/cultural|/genres/china,dir22/12279098-the-god-complex.html,150,The God Complex +4.65,12,,good_reads:book,https://www.goodreads.com/author/show/6565853.Anastacia_Moore,2012,,dir22/17904495-curse-of-the-salute.html,31,Curse of The Salute +4.05,33,,good_reads:book,https://www.goodreads.com/author/show/6859137.Julian_Pencilliah,2013,/genres/self-help|/genres/business|/genres/inspirational|/genres/self-help|/genres/personal-development|/genres/non-fiction,dir22/18770284-the-jetstream-of-success.html,125,"The Jetstream of Success (Intellectual Maverick, #1)" +4.28,70,,good_reads:book,https://www.goodreads.com/author/show/46293.Nikolas_Schreck,1988,/genres/psychology|/genres/cultural|/genres/counter-culture|/genres/mystery|/genres/crime|/genres/anthropology|/genres/anarchism|/genres/satanism|/genres/non-fiction|/genres/crime|/genres/true-crime|/genres/law|/genres/religion,dir22/13222282-the-manson-file.html,253,The Manson File +3.70,1510,0765304740,good_reads:book,https://www.goodreads.com/author/show/589.Orson_Scott_Card,1996,/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/young-adult,dir22/31360.Children_of_the_Mind.html,57865,"Children of the Mind (The Ender Quintet, #4)" +4.61,28,,good_reads:book,https://www.goodreads.com/author/show/1429844.Brett_Axel,2012,/genres/childrens|/genres/childrens|/genres/picture-books|/genres/fantasy|/genres/glbt|/genres/glbt|/genres/trans|/genres/glbt|/genres/queer|/genres/kids|/genres/trans|/genres/transgender,dir22/13602221-goblinheart.html,84,Goblinheart +4.60,38,,good_reads:book,https://www.goodreads.com/author/show/5808133.Lauren_Lynne,2012,/genres/fantasy|/genres/young-adult|/genres/adventure|/genres/action|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/suspense|/genres/science-fiction,dir22/13583266-visions.html,84,"Visions (The Secret Watchers, #1)" +4.14,179,0226743403,good_reads:book,https://www.goodreads.com/author/show/3119.Paul_Scott,1966,/genres/historical-fiction|/genres/cultural|/genres/india|/genres/fiction|/genres/classics|/genres/literature|/genres/20th-century|/genres/novels|/genres/cultural|/genres/asia|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/literary-fiction,dir22/146746.The_Jewel_in_the_Crown.html,2572,"The Jewel in the Crown (The Raj Quartet, #1)" +4.21,258,0140446044,good_reads:book,https://www.goodreads.com/author/show/17241.Michel_de_Montaigne,1572,/genres/philosophy|/genres/writing|/genres/essays|/genres/classics|/genres/non-fiction|/genres/cultural|/genres/france|/genres/european-literature|/genres/french-literature|/genres/history|/genres/literature|/genres/literature|/genres/16th-century,dir22/30735.The_Complete_Essays.html,7106,The Complete Essays +3.82,434,0553585975,good_reads:book,https://www.goodreads.com/author/show/14424.Adam_Smith,1776,/genres/economics|/genres/non-fiction|/genres/philosophy|/genres/classics|/genres/history|/genres/politics|/genres/business|/genres/politics|/genres/political-science|/genres/sociology|/genres/reference,dir22/25698.The_Wealth_of_Nations.html,13976,The Wealth of Nations +4.02,699,0679882812,good_reads:book,https://www.goodreads.com/author/show/61105.Dr_Seuss,1960,/genres/childrens|/genres/childrens|/genres/picture-books|/genres/fiction|/genres/classics|/genres/kids|/genres/poetry|/genres/humor|/genres/fantasy|/genres/childrens|/genres/juvenile|/genres/young-adult,dir22/7769.Dr_Seuss_s_ABC.html,24142,Dr. Seuss's ABC +3.99,532,0575058080,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,1995,/genres/fantasy|/genres/humor|/genres/fiction|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny|/genres/paranormal|/genres/witches,dir22/78876.Maskerade.html,26902,"Maskerade (Discworld, #18)" +4.06,695,0062003933,good_reads:book,https://www.goodreads.com/author/show/50873.L_J_Smith,2010,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/teen,dir22/7726143-origins.html,43252,"Origins (The Vampire Diaries: Stefan's Diaries, #1)" +4.34,554,0060525630,good_reads:book,https://www.goodreads.com/author/show/27498.Erin_Hunter,2004,/genres/fantasy|/genres/animals|/genres/fiction|/genres/young-adult|/genres/animals|/genres/cats|/genres/adventure|/genres/childrens,dir22/295086.Rising_Storm.html,18133,"Rising Storm (Warriors, #4)" +4.28,459,0060750863,good_reads:book,https://www.goodreads.com/author/show/545.Neal_Stephenson,2004,/genres/fiction|/genres/historical-fiction|/genres/science-fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/european-literature|/genres/british-literature|/genres/science-fiction|/genres/steampunk|/genres/science-fiction|/genres/alternate-history|/genres/literature|/genres/suspense,dir22/116257.The_System_of_the_World.html,13069,"The System of the World (The Baroque Cycle, #3)" +3.95,1452,1557091552,good_reads:book,https://www.goodreads.com/author/show/6001.Carolyn_Keene,1930,/genres/young-adult|/genres/childrens|/genres/fiction|/genres/classics|/genres/mystery|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/middle-grade|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/crime|/genres/young-adult|/genres/teen,dir22/32979.The_Secret_of_the_Old_Clock.html,33648,"The Secret of the Old Clock (Nancy Drew, #1)" +4.19,354,8467550031,good_reads:book,https://www.goodreads.com/author/show/228898.Laura_Gallego_Garc_a,2011,/genres/fantasy|/genres/young-adult|/genres/romance,dir22/12554628-donde-los-rboles-cantan.html,2771,Donde los árboles cantan +3.98,851,0064410153,good_reads:book,https://www.goodreads.com/author/show/36746.Lemony_Snicket,2005,/genres/young-adult|/genres/fiction|/genres/childrens|/genres/mystery|/genres/fantasy|/genres/adventure|/genres/humor|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/realistic-fiction,dir22/65110.The_Penultimate_Peril.html,46346,"The Penultimate Peril (A Series of Unfortunate Events, #12)" +4.26,820,0691017840,good_reads:book,https://www.goodreads.com/author/show/20105.Joseph_Campbell,1949,/genres/non-fiction|/genres/fantasy|/genres/mythology|/genres/philosophy|/genres/religion|/genres/psychology|/genres/history|/genres/language|/genres/writing|/genres/classics|/genres/anthropology|/genres/reference,dir22/588138.The_Hero_With_a_Thousand_Faces.html,14369,The Hero With a Thousand Faces +4.23,6534,,good_reads:book,https://www.goodreads.com/author/show/6551005.Emma_Chase,2013,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/humor|/genres/funny|/genres/new-adult|/genres/adult|/genres/adult-fiction|/genres/erotica|/genres/womens-fiction|/genres/chick-lit|/genres/humor|/genres/fiction,dir22/18297707-tangled.html,51670,"Tangled (Tangled, #1)" +4.09,1847,044640103X,good_reads:book,https://www.goodreads.com/author/show/375143.Larissa_Ione,2008,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/adult|/genres/adult-fiction|/genres/erotica,dir22/2679633-pleasure-unbound.html,31780,"Pleasure Unbound (Demonica, #1)" +4.33,31,0987434853,good_reads:book,https://www.goodreads.com/author/show/4443219.Christine_M_Knight,2013,,dir22/18251020-life-song.html,40,Life Song +4.42,65,0140093141,good_reads:book,https://www.goodreads.com/author/show/3012988.Robert_Graves,1934,/genres/historical-fiction|/genres/fiction|/genres/classics|/genres/literature|/genres/politics|/genres/novels|/genres/cultural|/genres/italy|/genres/contemporary|/genres/modern|/genres/european-literature|/genres/british-literature,dir22/18769.I_Claudius_Claudius_the_God.html,1555,"I, Claudius/Claudius the God" +4.34,3,,good_reads:book,https://www.goodreads.com/author/show/4859966.Angelo_Tsanatelis,2011,/genres/fantasy|/genres/dark-fantasy,dir22/11447962-the-rootless.html,29,The Rootless +4.13,674,0553819879,good_reads:book,https://www.goodreads.com/author/show/137902.Richelle_Mead,2008,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/fairies|/genres/fae|/genres/romance|/genres/adult|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/fairies,dir22/5996209-thorn-queen.html,14613,"Thorn Queen (Dark Swan, #2)" +3.99,1326,0312656270,good_reads:book,https://www.goodreads.com/author/show/696372.Alexandra_Adornetto,2011,/genres/paranormal|/genres/angels|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/young-adult|/genres/teen,dir22/9666812-hades.html,21578,"Hades (Halo, #2)" +3.88,502,0886777631,good_reads:book,https://www.goodreads.com/author/show/6587.Tad_Williams,1996,/genres/fantasy|/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/cyberpunk|/genres/science-fiction-fantasy|/genres/adventure|/genres/fantasy|/genres/epic-fantasy|/genres/speculative-fiction|/genres/fantasy|/genres/urban-fantasy|/genres/thriller,dir22/28695.City_of_Golden_Shadow.html,15690,"City of Golden Shadow (Otherland, #1)" +4.25,3117,0062072064,good_reads:book,https://www.goodreads.com/author/show/4637369.Veronica_Rossi,2013,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/science-fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fantasy|/genres/paranormal|/genres/adventure|/genres/fiction|/genres/young-adult|/genres/teen,dir22/13253276-through-the-ever-night.html,30359,"Through the Ever Night (Under the Never Sky, #2)" +4.21,754,0061119067,good_reads:book,https://www.goodreads.com/author/show/36746.Lemony_Snicket,2006,/genres/young-adult|/genres/fiction|/genres/childrens|/genres/fantasy|/genres/mystery|/genres/adventure|/genres/humor|/genres/childrens|/genres/juvenile|/genres/humor|/genres/funny|/genres/novels,dir22/65113.A_Series_of_Unfortunate_Events_Box.html,7954,A Series of Unfortunate Events Box (Books 1-13) +3.94,419,0140447601,good_reads:book,https://www.goodreads.com/author/show/465.Alexis_de_Tocqueville,1835,/genres/history|/genres/politics|/genres/non-fiction|/genres/philosophy|/genres/classics|/genres/history|/genres/american-history|/genres/politics|/genres/political-science|/genres/sociology|/genres/academic|/genres/school|/genres/literature|/genres/19th-century,dir22/16619.Democracy_in_America.html,12122,Democracy in America +4.27,1470,006056251X,good_reads:book,https://www.goodreads.com/author/show/27847.Lisa_Kleypas,2006,/genres/romance|/genres/historical-romance|/genres/romance|/genres/historical-fiction|/genres/regency|/genres/adult|/genres/historical-romance|/genres/regency-romance|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/european-literature|/genres/british-literature|/genres/adult-fiction,dir22/114166.Devil_in_Winter.html,25218,"Devil in Winter (Wallflowers, #3)" +4.10,860,0553213180,good_reads:book,https://www.goodreads.com/author/show/5350.L_M_Montgomery,1917,/genres/classics|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/historical-fiction|/genres/romance|/genres/cultural|/genres/canada|/genres/literature|/genres/young-adult|/genres/teen|/genres/childrens|/genres/juvenile,dir23/77394.Anne_s_House_of_Dreams.html,32503,"Anne's House of Dreams (Anne of Green Gables, #5)" +4.16,840,0060885424,good_reads:book,https://www.goodreads.com/author/show/5300.Laura_Ingalls_Wilder,1940,/genres/historical-fiction|/genres/classics|/genres/childrens|/genres/fiction|/genres/young-adult|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/middle-grade|/genres/literature|/genres/american|/genres/family|/genres/kids,dir23/8282.The_Long_Winter.html,35627,"The Long Winter (Little House, #6)" +4.31,453,141690817X,good_reads:book,https://www.goodreads.com/author/show/8596.Tamora_Pierce,1996,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/young-adult-fantasy|/genres/romance|/genres/adventure|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/dragons|/genres/science-fiction-fantasy,dir23/13834.The_Realms_of_the_Gods.html,32530,"The Realms of the Gods (Immortals, #4)" +4.43,1672,1402798431,good_reads:book,https://www.goodreads.com/author/show/3097905.Colleen_Houck,2012,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/adventure|/genres/science-fiction|/genres/time-travel|/genres/fiction|/genres/romance|/genres/paranormal-romance,dir23/12677913-tiger-s-destiny.html,12153,"Tiger's Destiny (The Tiger Saga, #4)" +3.79,1104,014023313X,good_reads:book,https://www.goodreads.com/author/show/12034.Carol_Shields,1993,/genres/fiction|/genres/cultural|/genres/canada|/genres/book-club|/genres/literary-fiction|/genres/historical-fiction|/genres/literature|/genres/novels,dir23/77554.The_Stone_Diaries.html,20978,The Stone Diaries +4.16,814,0571207766,good_reads:book,https://www.goodreads.com/author/show/22515.Mario_Vargas_Llosa,2000,/genres/fiction|/genres/historical-fiction|/genres/cultural|/genres/latin-american|/genres/literature|/genres/novels|/genres/literature|/genres/latin-american-literature|/genres/european-literature|/genres/spanish-literature|/genres/politics,dir23/53969.The_Feast_of_the_Goat.html,10334,The Feast of the Goat +4.27,433,1581345275,good_reads:book,https://www.goodreads.com/author/show/5544.Frank_E_Peretti,1989,/genres/christian-fiction|/genres/fiction|/genres/christian|/genres/fantasy|/genres/thriller|/genres/religion|/genres/spirituality|/genres/religion|/genres/christianity|/genres/fantasy|/genres/supernatural|/genres/mystery,dir23/17303.Piercing_the_Darkness.html,33789,"Piercing the Darkness (Darkness, #2)" +4.22,2131,0425266516,good_reads:book,https://www.goodreads.com/author/show/4562483.Sylvain_Reynard,2013,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/adult|/genres/adult-fiction|/genres/erotica|/genres/new-adult|/genres/romance|/genres/erotic-romance|/genres/fiction|/genres/academic|/genres/college|/genres/womens-fiction|/genres/chick-lit,dir23/16247792-gabriel-s-redemption.html,19219,"Gabriel's Redemption (Gabriel's Inferno, #3)" +3.82,6403,1401322786,good_reads:book,https://www.goodreads.com/author/show/2331.Mitch_Albom,2012,/genres/fiction|/genres/fantasy|/genres/book-club|/genres/inspirational|/genres/adult|/genres/adult-fiction|/genres/contemporary|/genres/science-fiction|/genres/time-travel|/genres/science-fiction|/genres/novels,dir23/13624688-the-time-keeper.html,50112,The Time Keeper +4.03,1155,0375814256,good_reads:book,https://www.goodreads.com/author/show/4273.Roald_Dahl,1975,/genres/childrens|/genres/fiction|/genres/young-adult|/genres/classics|/genres/fantasy|/genres/adventure|/genres/humor|/genres/childrens|/genres/middle-grade|/genres/european-literature|/genres/british-literature|/genres/childrens|/genres/juvenile,dir23/6690.Danny_the_Champion_of_the_World.html,30524,Danny the Champion of the World +3.94,1726,0140439072,good_reads:book,https://www.goodreads.com/author/show/2448.Arthur_Conan_Doyle,1890,/genres/mystery|/genres/fiction|/genres/mystery|/genres/crime|/genres/classics|/genres/mystery|/genres/detective|/genres/literature|/genres/19th-century|/genres/european-literature|/genres/british-literature,dir23/608474.The_Sign_of_Four.html,38484,"The Sign of Four (Sherlock Holmes, #2)" +4.16,2423,0810984911,good_reads:book,https://www.goodreads.com/author/show/221559.Jeff_Kinney,2010,/genres/humor|/genres/realistic-fiction|/genres/fiction|/genres/childrens|/genres/humor|/genres/funny|/genres/young-adult|/genres/sequential-art|/genres/graphic-novels|/genres/humor|/genres/comedy|/genres/childrens|/genres/middle-grade|/genres/diary,dir23/7823678-the-ugly-truth.html,43619,"The Ugly Truth (Diary of a Wimpy Kid, #5)" +4.11,1023,0440401585,good_reads:book,https://www.goodreads.com/author/show/106.Madeleine_L_Engle,1978,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/science-fiction-fantasy|/genres/childrens|/genres/science-fiction|/genres/speculative-fiction|/genres/fantasy|/genres/magic|/genres/christian|/genres/kids,dir23/77276.A_Swiftly_Tilting_Planet.html,55959,"A Swiftly Tilting Planet (A Wrinkle in Time Quintet, #3)" +4.19,1169,,good_reads:book,https://www.goodreads.com/author/show/1201952.A_id_al_Qarni,2003,/genres/religion|/genres/religion|/genres/islam|/genres/self-help|/genres/non-fiction|/genres/psychology|/genres/inspirational|/genres/social|/genres/spirituality|/genres/literature|/genres/philosophy,dir23/2750180.html,15781,لا تحزن +4.34,892,0061138010,good_reads:book,https://www.goodreads.com/author/show/17054.Kim_Harrison,2009,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/paranormal|/genres/witches|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/magic|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance,dir23/3475268-white-witch-black-curse.html,31333,"White Witch, Black Curse (The Hollows, #7)" +4.42,1690,045146091X,good_reads:book,https://www.goodreads.com/author/show/10746.Jim_Butcher,2005,/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/mystery|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/vampires|/genres/science-fiction-fantasy,dir23/17683.Dead_Beat.html,54534,Dead Beat (The Dresden Files #7) +3.96,621,0689846231,good_reads:book,https://www.goodreads.com/author/show/46158.Marjorie_Kinnan_Rawlings,1938,/genres/classics|/genres/fiction|/genres/young-adult|/genres/animals|/genres/childrens|/genres/historical-fiction|/genres/literature,dir23/159582.The_Yearling.html,16710,The Yearling +3.85,583,0552152943,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,1990,/genres/fantasy|/genres/humor|/genres/fiction|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny|/genres/adventure|/genres/science-fiction|/genres/novels|/genres/fantasy|/genres/magic,dir23/34510.Moving_Pictures.html,31846,"Moving Pictures (Discworld, #10)" +4.17,746,0395957753,good_reads:book,https://www.goodreads.com/author/show/127901.Lloyd_C_Douglas,1942,/genres/historical-fiction|/genres/fiction|/genres/classics|/genres/christian-fiction|/genres/christian|/genres/religion|/genres/book-club|/genres/novels|/genres/adult-fiction|/genres/spirituality,dir23/219919.The_Robe.html,13339,The Robe +4.32,941,0060788380,good_reads:book,https://www.goodreads.com/author/show/17054.Kim_Harrison,2007,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/paranormal|/genres/witches|/genres/fiction|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/magic|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural,dir23/30259.For_a_Few_Demons_More.html,37582,"For a Few Demons More (The Hollows, #5)" +4.21,1068,068987779X,good_reads:book,https://www.goodreads.com/author/show/268199.Robert_Muchamore,1993,/genres/young-adult|/genres/adventure|/genres/action|/genres/spy-thriller|/genres/espionage|/genres/fiction|/genres/young-adult|/genres/teen|/genres/mystery|/genres/thriller|/genres/mystery|/genres/crime|/genres/contemporary,dir23/1166131.The_Recruit.html,14219,"The Recruit (Cherub, #1)" +3.85,535,0440060672,good_reads:book,https://www.goodreads.com/author/show/9068.Sidney_Sheldon,1973,/genres/mystery|/genres/thriller|/genres/fiction|/genres/romance|/genres/suspense|/genres/novels|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery-thriller|/genres/contemporary|/genres/drama,dir23/136167.The_Other_Side_of_Midnight.html,26141,The Other Side of Midnight +4.37,660,1741663024,good_reads:book,https://www.goodreads.com/author/show/34049.John_Flanagan,2009,/genres/fantasy|/genres/young-adult|/genres/adventure|/genres/fiction|/genres/historical-fiction|/genres/medieval|/genres/action|/genres/historical-fiction|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/young-adult-fantasy|/genres/childrens,dir23/6348045-halt-s-peril.html,23490,"Halt's Peril (Ranger's Apprentice, #9)" +3.98,632,0440415802,good_reads:book,https://www.goodreads.com/author/show/6810.Wilson_Rawls,1976,/genres/fiction|/genres/young-adult|/genres/classics|/genres/childrens|/genres/historical-fiction|/genres/animals|/genres/adventure|/genres/realistic-fiction|/genres/academic|/genres/school|/genres/childrens|/genres/juvenile,dir23/10372.Summer_of_the_Monkeys.html,7332,Summer of the Monkeys +3.59,676,0684859238,good_reads:book,https://www.goodreads.com/author/show/1455.Ernest_Hemingway,1937,/genres/fiction|/genres/classics|/genres/literature|/genres/literature|/genres/american|/genres/novels|/genres/literature|/genres/20th-century|/genres/adventure|/genres/adult|/genres/literary-fiction|/genres/classics|/genres/classic-literature,dir23/4630.To_Have_and_Have_Not.html,12373,To Have and Have Not +4.15,342,0099575515,good_reads:book,https://www.goodreads.com/author/show/10420.Aleksandr_Solzhenitsyn,1968,/genres/fiction|/genres/classics|/genres/cultural|/genres/russia|/genres/literature|/genres/russian-literature|/genres/literature|/genres/historical-fiction|/genres/literature|/genres/20th-century|/genres/medical|/genres/novels|/genres/nobel-prize,dir23/254316.Cancer_Ward.html,6834,Cancer Ward +4.13,1566,0152052216,good_reads:book,https://www.goodreads.com/author/show/93858.Edith_Pattou,2003,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/fairy-tales|/genres/romance|/genres/fiction|/genres/adventure|/genres/retellings|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/teen|/genres/fairy-tales|/genres/fairy-tale-retellings,dir23/161887.East.html,24410,East +4.11,2748,1585673692,good_reads:book,https://www.goodreads.com/author/show/27034.Charles_Portis,1968,/genres/fiction|/genres/western|/genres/historical-fiction|/genres/classics|/genres/book-club|/genres/adventure|/genres/novels|/genres/literature|/genres/adult-fiction|/genres/adult,dir23/257845.True_Grit.html,17979,True Grit +4.06,1108,0679774025,good_reads:book,https://www.goodreads.com/author/show/31122.Rick_Bragg,1991,/genres/autobiography|/genres/memoir|/genres/non-fiction|/genres/biography|/genres/book-club|/genres/biography-memoir|/genres/american|/genres/southern|/genres/biography|/genres/autobiography|/genres/history|/genres/family|/genres/literature|/genres/american,dir23/470495.All_Over_But_the_Shoutin_.html,16317,All Over But the Shoutin' +4.05,390,0735102864,good_reads:book,https://www.goodreads.com/author/show/128382.Leo_Tolstoy,1899,/genres/classics|/genres/cultural|/genres/russia|/genres/literature|/genres/russian-literature|/genres/literature|/genres/fiction|/genres/novels|/genres/literature|/genres/19th-century|/genres/philosophy,dir23/42641.Resurrection.html,7424,Resurrection +4.13,1667,0670063118,good_reads:book,https://www.goodreads.com/author/show/88685.Alison_Goodman,2011,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/dragons|/genres/romance|/genres/fantasy|/genres/magic|/genres/adventure|/genres/fiction|/genres/fantasy|/genres/high-fantasy|/genres/young-adult|/genres/young-adult-fantasy|/genres/fantasy|/genres/mythology,dir23/7992995-eona.html,19205,"Eona (Eon, #2)" +4.49,2556,,good_reads:book,https://www.goodreads.com/author/show/5410816.Tarryn_Fisher,2013,/genres/romance|/genres/new-adult|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/adult|/genres/drama|/genres/womens-fiction|/genres/chick-lit|/genres/love|/genres/dark|/genres/academic|/genres/college,dir23/16090981-thief.html,15991,"Thief (Love Me with Lies, #3)" +3.81,1423,140130866X,good_reads:book,https://www.goodreads.com/author/show/7116.Cecelia_Ahern,2005,/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/fiction|/genres/fantasy|/genres/contemporary|/genres/adult|/genres/romance|/genres/contemporary-romance|/genres/cultural|/genres/ireland|/genres/european-literature|/genres/irish-literature|/genres/magical-realism,dir23/158119.If_You_Could_See_Me_Now.html,22562,If You Could See Me Now +4.61,453,0836220889,good_reads:book,https://www.goodreads.com/author/show/13778.Bill_Watterson,1987,/genres/sequential-art|/genres/comics|/genres/humor|/genres/sequential-art|/genres/graphic-novels|/genres/fiction|/genres/humor|/genres/comedy|/genres/childrens|/genres/humor|/genres/funny|/genres/comics|/genres/comic-book|/genres/sequential-art|/genres/comic-strips|/genres/graphic-novels-comics,dir23/77727.Calvin_and_Hobbes.html,80791,Calvin and Hobbes +3.95,2609,0060590319,good_reads:book,https://www.goodreads.com/author/show/16218.Christopher_Moore,2009,/genres/humor|/genres/fiction|/genres/fantasy|/genres/humor|/genres/comedy|/genres/historical-fiction|/genres/humor|/genres/funny|/genres/book-club|/genres/adult|/genres/contemporary|/genres/adult-fiction,dir23/3684856-fool.html,32438,Fool +4.23,2064,0778313077,good_reads:book,https://www.goodreads.com/author/show/445303.Maria_V_Snyder,2011,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/adventure|/genres/fantasy|/genres/high-fantasy|/genres/fiction|/genres/horror|/genres/zombies|/genres/young-adult|/genres/young-adult-fantasy,dir23/10445208-touch-of-power.html,17769,"Touch of Power (Healer, #1)" +4.18,1839,0451233328,good_reads:book,https://www.goodreads.com/author/show/1857564.Chloe_Neill,2011,/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/adult|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/shapeshifters,dir23/9581001-hard-bitten.html,21194,"Hard Bitten (Chicagoland Vampires, #4)" +3.97,895,0061670855,good_reads:book,https://www.goodreads.com/author/show/50873.L_J_Smith,2008,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/vampires|/genres/fiction,dir23/3099780-the-secret-circle.html,17114,"The Secret Circle (The Secret Circle, #1-2)" +3.69,1609,0553214322,good_reads:book,https://www.goodreads.com/author/show/880695.H_G_Wells,1896,/genres/classics|/genres/science-fiction-fantasy|/genres/novels|/genres/science-fiction|/genres/european-literature|/genres/british-literature|/genres/classics|/genres/classic-literature|/genres/fiction|/genres/gothic|/genres/science-fiction|/genres/dystopia|/genres/speculative-fiction,dir23/29981.The_Island_of_Dr_Moreau.html,48115,The Island of Dr. Moreau +4.19,412,0679725229,good_reads:book,https://www.goodreads.com/author/show/5152.Vladimir_Nabokov,1969,/genres/fiction|/genres/classics|/genres/cultural|/genres/russia|/genres/novels|/genres/literature|/genres/literature|/genres/russian-literature,dir23/12187.Ada_or_Ardor.html,5449,"Ada, or Ardor" +4.40,602,0440406943,good_reads:book,https://www.goodreads.com/author/show/13876.Ingri_d_Aulaire,1962,/genres/fantasy|/genres/mythology|/genres/childrens|/genres/classics|/genres/fantasy|/genres/fiction|/genres/childrens|/genres/picture-books|/genres/young-adult|/genres/mythology|/genres/greek-mythology|/genres/academic|/genres/school|/genres/reference,dir23/79626.D_Aulaires_Book_of_Greek_Myths.html,9489,D'Aulaires' Book of Greek Myths +3.90,1620,190444248X,good_reads:book,https://www.goodreads.com/author/show/15873.Cornelia_Funke,1997,/genres/fantasy|/genres/fantasy|/genres/dragons|/genres/young-adult|/genres/childrens|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/magic|/genres/childrens|/genres/middle-grade,dir23/100464.Dragon_Rider.html,47525,Dragon Rider +3.71,1867,0062515675,good_reads:book,https://www.goodreads.com/author/show/24678.Robin_S_Sharma,1996,/genres/self-help|/genres/non-fiction|/genres/philosophy|/genres/inspirational|/genres/spirituality|/genres/self-help|/genres/personal-development|/genres/business|/genres/psychology|/genres/asian-literature|/genres/indian-literature|/genres/leadership,dir23/43877.The_Monk_Who_Sold_His_Ferrari.html,35945,The Monk Who Sold His Ferrari +4.35,557,0684815001,good_reads:book,https://www.goodreads.com/author/show/29333.Dietrich_Bonhoeffer,1937,/genres/religion|/genres/theology|/genres/christian|/genres/religion|/genres/christianity|/genres/religion|/genres/non-fiction|/genres/spirituality|/genres/religion|/genres/faith|/genres/classics|/genres/philosophy|/genres/history,dir23/174834.The_Cost_of_Discipleship.html,16911,The Cost of Discipleship +4.18,614,0440244501,good_reads:book,https://www.goodreads.com/author/show/375626.Lara_Adrian,2009,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult,dir23/4769247-ashes-of-midnight.html,15724,"Ashes of Midnight (Midnight Breed, #6)" +4.04,2735,0345481283,good_reads:book,https://www.goodreads.com/author/show/8730.Naomi_Novik,2006,/genres/fantasy|/genres/dragons|/genres/historical-fiction|/genres/fiction|/genres/fantasy|/genres/science-fiction|/genres/alternate-history|/genres/science-fiction-fantasy|/genres/adventure|/genres/war|/genres/science-fiction|/genres/steampunk,dir23/28876.His_Majesty_s_Dragon.html,30260,His Majesty's Dragon (Temeraire #1) +3.75,3003,0060288140,good_reads:book,https://www.goodreads.com/author/show/65189.Louise_Rennison,1999,/genres/young-adult|/genres/humor|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/romance|/genres/young-adult|/genres/teen|/genres/contemporary|/genres/humor|/genres/funny|/genres/realistic-fiction|/genres/humor|/genres/comedy,dir23/402013.Angus_Thongs_and_Full_Frontal_Snogging.html,84745,"Angus, Thongs and Full-Frontal Snogging (Confessions of Georgia Nicolson, #1)" +3.49,8800,1596912855,good_reads:book,https://www.goodreads.com/author/show/49177.Shannon_Hale,2007,/genres/romance|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/adult|/genres/adult-fiction|/genres/book-club|/genres/humor|/genres/young-adult|/genres/romance|/genres/contemporary-romance,dir23/248483.Austenland.html,51714,"Austenland (Austenland, #1)" +4.31,783,0312369506,good_reads:book,https://www.goodreads.com/author/show/4430.Sherrilyn_Kenyon,2007,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/mythology|/genres/adult|/genres/paranormal|/genres/demons|/genres/fiction,dir23/84133.Devil_May_Cry.html,24482,"Devil May Cry (Dark-Hunter, #7)" +4.36,110,,good_reads:book,https://www.goodreads.com/author/show/6521036.J_K_Accinni,2013,/genres/horror|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/dystopia|/genres/dark|/genres/science-fiction|/genres/aliens|/genres/science-fiction|/genres/thriller|/genres/young-adult|/genres/wildlife|/genres/fantasy,dir23/18874565-alien-species-intervention-books-1-3.html,364,Alien Species Intervention Books 1-3 +3.98,1619,1600964338,good_reads:book,https://www.goodreads.com/author/show/128382.Leo_Tolstoy,1884,/genres/classics|/genres/fiction|/genres/cultural|/genres/russia|/genres/literature|/genres/russian-literature|/genres/short-stories|/genres/literature|/genres/literature|/genres/19th-century|/genres/philosophy|/genres/novels,dir23/18386.The_Death_of_Ivan_Ilych.html,37981,The Death of Ivan Ilych +3.95,317,0060931930,good_reads:book,https://www.goodreads.com/author/show/563720.O_E_R_lvaag,1925,/genres/fiction|/genres/historical-fiction|/genres/classics|/genres/literature|/genres/book-club|/genres/novels|/genres/american|/genres/americana|/genres/academic|/genres/college|/genres/literature|/genres/american|/genres/european-literature|/genres/scandinavian-literature,dir23/57586.Giants_in_the_Earth.html,3018,Giants in the Earth +4.15,1604,1563899809,good_reads:book,https://www.goodreads.com/author/show/24514.Brian_K_Vaughan,2003,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/science-fiction|/genres/fiction|/genres/graphic-novels-comics|/genres/apocalyptic|/genres/post-apocalyptic|/genres/comics|/genres/comic-book|/genres/science-fiction|/genres/dystopia,dir23/156534.Y.html,53919,"Y (Y: The Last Man, #1)" +4.12,1132,0812515285,good_reads:book,https://www.goodreads.com/author/show/44037.Vernor_Vinge,1992,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/space-opera|/genres/science-fiction-fantasy|/genres/fantasy|/genres/speculative-fiction|/genres/space|/genres/science-fiction|/genres/aliens|/genres/adventure|/genres/novels,dir23/77711.A_Fire_Upon_the_Deep.html,25453,"A Fire Upon the Deep (Zones of Thought, #1)" +3.78,2468,0743246071,good_reads:book,https://www.goodreads.com/author/show/9987.Philippa_Gregory,2003,/genres/historical-fiction|/genres/fiction|/genres/romance|/genres/european-literature|/genres/british-literature|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/historical-romance|/genres/adult|/genres/adult-fiction|/genres/book-club|/genres/literature|/genres/16th-century,dir23/252499.The_Queen_s_Fool.html,55234,"The Queen's Fool (The Tudor Court, #4)" +3.95,5343,0743275012,good_reads:book,https://www.goodreads.com/author/show/7128.Jodi_Picoult,2000,/genres/fiction|/genres/mystery|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/book-club|/genres/adult-fiction|/genres/adult|/genres/mystery|/genres/crime|/genres/novels|/genres/realistic-fiction,dir23/14864.Plain_Truth.html,109202,Plain Truth +3.73,3109,0545284104,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2011,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/romance|/genres/paranormal-romance|/genres/mythology|/genres/greek-mythology|/genres/young-adult|/genres/teen,dir23/9397967-abandon.html,25772,"Abandon (Abandon, #1)" +3.97,3277,0316123536,good_reads:book,https://www.goodreads.com/author/show/2895706.Kami_Garcia,2012,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/witches|/genres/fiction,dir23/7930335-beautiful-redemption.html,37473,"Beautiful Redemption (Caster Chronicles, #4)" +4.43,98,,good_reads:book,https://www.goodreads.com/author/show/1571853.Mark_A_Cooper,2008,/genres/young-adult|/genres/spy-thriller|/genres/espionage|/genres/action|/genres/mystery|/genres/fiction|/genres/thriller|/genres/adventure,dir23/4630239-fledgling.html,646,"Fledgling (Jason Steed, #1)" +4.20,804,0758232004,good_reads:book,https://www.goodreads.com/author/show/137902.Richelle_Mead,2010,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/demons|/genres/paranormal|/genres/vampires|/genres/adult|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/supernatural,dir23/6916963-succubus-shadows.html,15365,"Succubus Shadows (Georgina Kincaid, #5)" +4.20,424,0099366711,good_reads:book,https://www.goodreads.com/author/show/2887.James_Ellroy,1990,/genres/fiction|/genres/mystery|/genres/crime|/genres/mystery|/genres/mystery|/genres/noir|/genres/thriller|/genres/historical-fiction|/genres/mystery|/genres/hard-boiled|/genres/mystery|/genres/detective|/genres/suspense|/genres/literature,dir23/57727.L_A_Confidential.html,16756,"L.A. Confidential (L.A. Quartet, #3)" +4.00,4037,1400065453,good_reads:book,https://www.goodreads.com/author/show/6538289.David_Mitchell,2010,/genres/fiction|/genres/historical-fiction|/genres/cultural|/genres/japan|/genres/book-club|/genres/literature|/genres/literary-fiction|/genres/cultural|/genres/asia|/genres/novels|/genres/contemporary|/genres/european-literature|/genres/british-literature,dir23/7141642-the-thousand-autumns-of-jacob-de-zoet.html,27793,The Thousand Autumns of Jacob de Zoet +3.64,3627,0061345660,good_reads:book,https://www.goodreads.com/author/show/548551.Anna_Godbersen,2007,/genres/young-adult|/genres/historical-fiction|/genres/romance|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/teen|/genres/romance|/genres/historical-romance|/genres/mystery|/genres/drama|/genres/young-adult|/genres/young-adult-historical-fiction,dir23/1254951.The_Luxe.html,49402,"The Luxe (Luxe, #1)" +3.74,760,,good_reads:book,https://www.goodreads.com/author/show/1411964.John_le_Carr_,2000,/genres/fiction|/genres/cultural|/genres/africa|/genres/thriller|/genres/mystery|/genres/spy-thriller|/genres/espionage|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/crime|/genres/contemporary|/genres/suspense|/genres/novels,dir23/19000.The_Constant_Gardener.html,11352,The Constant Gardener +3.94,810,0064410145,good_reads:book,https://www.goodreads.com/author/show/36746.Lemony_Snicket,2004,/genres/fiction|/genres/young-adult|/genres/childrens|/genres/fantasy|/genres/mystery|/genres/adventure|/genres/humor|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/realistic-fiction,dir23/65111.The_Grim_Grotto.html,51116,"The Grim Grotto (A Series of Unfortunate Events, #11)" +4.25,1151,0446611239,good_reads:book,https://www.goodreads.com/author/show/12577.Douglas_Preston,2001,/genres/thriller|/genres/fiction|/genres/horror|/genres/suspense|/genres/mystery|/genres/crime|/genres/mystery|/genres/adventure|/genres/thriller|/genres/mystery-thriller|/genres/science-fiction|/genres/mystery|/genres/detective,dir23/39031.The_Cabinet_of_Curiosities.html,21261,"The Cabinet of Curiosities (Pendergast, #3)" +4.41,143,7119005901,good_reads:book,https://www.goodreads.com/author/show/5847865.Luo_Guanzhong,1522,/genres/classics|/genres/cultural|/genres/china|/genres/fiction|/genres/historical-fiction|/genres/literature|/genres/asian-literature|/genres/chinese-literature|/genres/war|/genres/cultural|/genres/asia,dir23/158770.Three_Kingdoms.html,1559,Three Kingdoms +4.09,511,014044176X,good_reads:book,https://www.goodreads.com/author/show/15538.Mikhail_Lermontov,1839,/genres/cultural|/genres/russia|/genres/fiction|/genres/literature|/genres/russian-literature|/genres/literature|/genres/19th-century|/genres/literature|/genres/classics|/genres/novels|/genres/academic|/genres/school,dir23/226378.A_Hero_of_Our_Time.html,20072,A Hero of Our Time +3.95,691,0141185910,good_reads:book,https://www.goodreads.com/author/show/10427.James_Baldwin,1953,/genres/classics|/genres/cultural|/genres/african-american|/genres/literature|/genres/novels|/genres/religion|/genres/literature|/genres/american|/genres/fiction|/genres/literature|/genres/20th-century|/genres/american|/genres/african-american-literature,dir23/17143.Go_Tell_It_on_the_Mountain.html,19567,Go Tell It on the Mountain +4.11,1118,0385333501,good_reads:book,https://www.goodreads.com/author/show/2778055.Kurt_Vonnegut,1968,/genres/fiction|/genres/short-stories|/genres/science-fiction|/genres/classics|/genres/literature|/genres/humor|/genres/literature|/genres/american|/genres/science-fiction|/genres/dystopia|/genres/novels|/genres/fantasy,dir23/4985.Welcome_to_the_Monkey_House.html,32118,Welcome to the Monkey House +4.33,31,0671005170,good_reads:book,https://www.goodreads.com/author/show/10835.John_D_Simons,1988,/genres/classics|/genres/fiction|/genres/cultural|/genres/russia|/genres/literature|/genres/novels,dir23/17886.Fyodor_Dostoyevsky_s_Crime_and_Punishment.html,1041,Fyodor Dostoyevsky's Crime and Punishment +4.04,7484,0679644199,good_reads:book,https://www.goodreads.com/author/show/5274234.Carol_Rifka_Brunt,2012,/genres/fiction|/genres/book-club|/genres/young-adult|/genres/contemporary|/genres/young-adult|/genres/coming-of-age|/genres/historical-fiction|/genres/adult-fiction|/genres/adult,dir23/12875258-tell-the-wolves-i-m-home.html,55196,Tell the Wolves I'm Home +4.22,670,1400031001,good_reads:book,https://www.goodreads.com/author/show/8170.William_Boyd,2002,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/novels|/genres/literary-fiction|/genres/contemporary|/genres/modern|/genres/classics,dir23/77866.Any_Human_Heart.html,5885,Any Human Heart +3.69,1622,045121742X,good_reads:book,https://www.goodreads.com/author/show/14469.Lauren_Willig,2004,/genres/romance|/genres/mystery|/genres/historical-fiction|/genres/fiction|/genres/romance|/genres/historical-romance|/genres/womens-fiction|/genres/chick-lit|/genres/adult|/genres/regency|/genres/cultural|/genres/france|/genres/european-literature|/genres/british-literature,dir23/84351.The_Secret_History_of_the_Pink_Carnation.html,13963,"The Secret History of the Pink Carnation (Pink Carnation, #1)" +3.99,810,0802136680,good_reads:book,https://www.goodreads.com/author/show/7371.Tobias_Wolff,1982,/genres/autobiography|/genres/memoir|/genres/non-fiction|/genres/biography|/genres/biography-memoir|/genres/biography|/genres/autobiography|/genres/academic|/genres/school,dir23/11466.This_Boy_s_Life.html,15139,This Boy's Life +4.12,7450,1405258217,good_reads:book,https://www.goodreads.com/author/show/52320.Elizabeth_Wein,2012,/genres/historical-fiction|/genres/young-adult|/genres/fiction|/genres/war|/genres/book-club|/genres/history|/genres/world-war-ii|/genres/young-adult|/genres/teen,dir23/11925514-code-name-verity.html,31979,"Code Name Verity (Code Name Verity, #1)" +3.75,1414,0743451503,good_reads:book,https://www.goodreads.com/author/show/3190.F_Scott_Fitzgerald,1920,/genres/fiction|/genres/classics|/genres/literature|/genres/literature|/genres/american|/genres/novels|/genres/literature|/genres/20th-century|/genres/historical-fiction|/genres/romance|/genres/book-club|/genres/literary-fiction,dir23/4708.The_Beautiful_and_Damned.html,20972,The Beautiful and Damned +4.11,1334,1461072514,good_reads:book,https://www.goodreads.com/author/show/5286855.Amy_A_Bartol,2011,/genres/paranormal|/genres/angels|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/new-adult|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/academic|/genres/college,dir23/12925063-inescapable.html,19285,"Inescapable (The Premonition, #1)" +4.18,1127,0061161640,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,2007,/genres/fantasy|/genres/fiction|/genres/humor|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny|/genres/novels|/genres/science-fiction|/genres/european-literature|/genres/british-literature|/genres/adult,dir23/116296.Making_Money.html,30487,"Making Money (Discworld, #36)" +4.04,2704,0061797022,good_reads:book,https://www.goodreads.com/author/show/7581.Kelley_Armstrong,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/shapeshifters|/genres/werewolves|/genres/paranormal|/genres/shapeshifters|/genres/romance|/genres/paranormal-romance,dir23/7896345-the-gathering.html,37643,"The Gathering (Darkness Rising, #1)" +4.07,939,0812577566,good_reads:book,https://www.goodreads.com/author/show/6252.Robert_Jordan,2005,/genres/fantasy|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/epic|/genres/adventure|/genres/fantasy|/genres/magic|/genres/adult|/genres/science-fiction|/genres/fantasy|/genres/epic-fantasy,dir23/13888.Knife_of_Dreams.html,51231,"Knife of Dreams (Wheel of Time, #11)" +4.64,359,0836218051,good_reads:book,https://www.goodreads.com/author/show/13778.Bill_Watterson,1988,/genres/sequential-art|/genres/comics|/genres/humor|/genres/sequential-art|/genres/graphic-novels|/genres/fiction|/genres/childrens|/genres/humor|/genres/comedy|/genres/humor|/genres/funny|/genres/comics|/genres/comic-book|/genres/graphic-novels-comics|/genres/sequential-art|/genres/comic-strips,dir23/43070.The_Essential_Calvin_and_Hobbes.html,67279,The Essential Calvin and Hobbes +4.42,481,0062509594,good_reads:book,https://www.goodreads.com/author/show/875661.Rumi,1995,/genres/poetry|/genres/philosophy|/genres/classics|/genres/religion|/genres/religion|/genres/islam|/genres/non-fiction|/genres/literature|/genres/spirituality|/genres/cultural|/genres/iran|/genres/occult|/genres/mysticism,dir23/304079.The_Essential_Rumi.html,22187,The Essential Rumi +3.86,1819,0064407683,good_reads:book,https://www.goodreads.com/author/show/36746.Lemony_Snicket,2000,/genres/fiction|/genres/young-adult|/genres/childrens|/genres/fantasy|/genres/mystery|/genres/adventure,dir23/438492.The_Wide_Window.html,79909,"The Wide Window (A Series of Unfortunate Events, #3)" +4.46,1594,,good_reads:book,https://www.goodreads.com/author/show/2958084.Kristen_Ashley,2011,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/romance|/genres/romantic-suspense|/genres/adult|/genres/suspense|/genres/adult-fiction|/genres/erotica|/genres/mystery|/genres/womens-fiction|/genres/chick-lit|/genres/humor|/genres/funny,dir23/11227040-sweet-dreams.html,22856,"Sweet Dreams (Colorado Mountain, #2)" +4.20,934,,good_reads:book,https://www.goodreads.com/author/show/5816.Darren_Shan,2005,/genres/horror|/genres/fantasy|/genres/young-adult|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/teen,dir23/164719.Lord_Loss.html,12240,"Lord Loss (The Demonata, #1)" +4.06,750,141693586X,good_reads:book,https://www.goodreads.com/author/show/8993.O_Henry,1905,/genres/classics|/genres/fiction|/genres/short-stories|/genres/holiday|/genres/christmas|/genres/romance|/genres/literature|/genres/young-adult|/genres/childrens|/genres/holiday|/genres/academic|/genres/school,dir23/143534.The_Gift_of_the_Magi.html,52518,The Gift of the Magi +3.98,3615,0307595862,good_reads:book,https://www.goodreads.com/author/show/904719.Jo_Nesb_,2007,/genres/mystery|/genres/mystery|/genres/crime|/genres/fiction|/genres/thriller|/genres/european-literature|/genres/scandinavian-literature|/genres/thriller|/genres/mystery-thriller|/genres/suspense|/genres/mystery|/genres/detective|/genres/book-club|/genres/adult,dir23/9572203-the-snowman.html,32953,"The Snowman (Harry Hole, #7)" +4.14,995,1423104870,good_reads:book,https://www.goodreads.com/author/show/125308.Cinda_Williams_Chima,2008,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/adventure|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/young-adult-fantasy|/genres/romance,dir23/500743.The_Wizard_Heir.html,24951,"The Wizard Heir (The Heir Chronicles, #2)" +3.82,4637,0988393506,good_reads:book,https://www.goodreads.com/author/show/6535659.Cora_Carmack,2012,/genres/new-adult|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/academic|/genres/college|/genres/young-adult|/genres/adult|/genres/fiction|/genres/realistic-fiction|/genres/humor|/genres/funny|/genres/romance,dir23/16034964-losing-it.html,64771,"Losing It (Losing It, #1)" +4.27,770,0689878575,good_reads:book,https://www.goodreads.com/author/show/8596.Tamora_Pierce,1988,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/magic|/genres/adventure|/genres/young-adult|/genres/young-adult-fantasy|/genres/romance|/genres/young-adult|/genres/teen|/genres/science-fiction-fantasy|/genres/childrens,dir23/13837.Lioness_Rampant.html,52951,"Lioness Rampant (Song of the Lioness, #4)" +4.12,2384,0452274427,good_reads:book,https://www.goodreads.com/author/show/7277.Julia_Alvarez,1994,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/academic|/genres/school|/genres/literature|/genres/adult-fiction|/genres/novels,dir23/11206.In_the_Time_of_the_Butterflies.html,31451,In the Time of the Butterflies +4.10,1194,9770915343,good_reads:book,https://www.goodreads.com/author/show/5835922.Naguib_Mahfouz,1959,/genres/novels|/genres/fiction|/genres/literature|/genres/cultural|/genres/egypt|/genres/classics|/genres/religion|/genres/philosophy|/genres/cultural|/genres/africa|/genres/nobel-prize|/genres/book-club,dir23/2364284._.html,11002,أولاد حارتنا +4.08,1976,0385733585,good_reads:book,https://www.goodreads.com/author/show/27100.Michael_Scott,2008,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/mythology|/genres/adventure|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/young-adult-fantasy,dir23/2402971.The_Magician.html,48040,"The Magician (The Secrets of the Immortal Nicholas Flamel, #2)" +3.76,281,1937085767,good_reads:book,https://www.goodreads.com/author/show/4388953.Mary_Ting,2011,/genres/paranormal|/genres/angels|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/demons|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/fantasy|/genres/supernatural,dir23/11283685-crossroads.html,1387,"Crossroads (Crossroads Saga, #1)" +4.23,841,0751531189,good_reads:book,https://www.goodreads.com/author/show/1238.Nelson_DeMille,1988,/genres/fiction|/genres/thriller|/genres/mystery|/genres/spy-thriller|/genres/espionage|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/adventure|/genres/book-club|/genres/action|/genres/historical-fiction,dir23/353814.The_Charm_School.html,19285,The Charm School +3.58,1656,0060527994,good_reads:book,https://www.goodreads.com/author/show/566.Paulo_Coelho,2000,/genres/fiction|/genres/philosophy|/genres/novels|/genres/spirituality|/genres/contemporary|/genres/fantasy|/genres/literature|/genres/inspirational|/genres/book-club|/genres/religion,dir23/4008.The_Devil_and_Miss_Prym.html,34741,The Devil and Miss Prym +4.02,3194,1419704281,good_reads:book,https://www.goodreads.com/author/show/5186274.A_G_Howard,2013,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/retellings|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/fairy-tales|/genres/adventure,dir23/12558285-splintered.html,17073,"Splintered (Splintered, #1)" +3.91,3700,0142422053,good_reads:book,https://www.goodreads.com/author/show/10317.Maureen_Johnson,2011,/genres/young-adult|/genres/mystery|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/paranormal|/genres/ghosts|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/historical-fiction|/genres/horror,dir23/13595639-the-name-of-the-star.html,27880,"The Name of the Star (Shades of London, #1)" +4.38,499,0060525657,good_reads:book,https://www.goodreads.com/author/show/27498.Erin_Hunter,2004,/genres/fantasy|/genres/animals|/genres/young-adult|/genres/fiction|/genres/animals|/genres/cats|/genres/childrens|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/animals|/genres/animal-fiction|/genres/action,dir23/336245.A_Dangerous_Path.html,17636,"A Dangerous Path (Warriors, #5)" +4.15,863,0330353829,good_reads:book,https://www.goodreads.com/author/show/6599.Margaret_George,1997,/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/egypt|/genres/romance|/genres/adult|/genres/adult-fiction|/genres/book-club|/genres/african-literature|/genres/egyptian-literature|/genres/literature|/genres/ancient|/genres/romance|/genres/historical-romance,dir24/10115.Memoirs_of_Cleopatra.html,12551,Memoirs of Cleopatra +3.70,285,0006174434,good_reads:book,https://www.goodreads.com/author/show/9068.Sidney_Sheldon,1988,/genres/fiction|/genres/thriller|/genres/mystery|/genres/romance|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/crime|/genres/drama|/genres/novels|/genres/contemporary,dir24/119382.Sands_of_Time.html,14718,Sands of Time +3.85,36310,0316068047,good_reads:book,https://www.goodreads.com/author/show/941441.Stephenie_Meyer,2008,/genres/science-fiction|/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fiction|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/aliens|/genres/romance|/genres/paranormal-romance|/genres/adult,dir24/1656001.The_Host.html,595689,"The Host (The Host, #1)" +4.39,338,0451456734,good_reads:book,https://www.goodreads.com/author/show/26897.Anne_Bishop,2000,/genres/fantasy|/genres/romance|/genres/fiction|/genres/fantasy|/genres/dark-fantasy|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/high-fantasy|/genres/paranormal|/genres/witches,dir24/47959.Queen_of_the_Darkness.html,15406,"Queen of the Darkness (The Black Jewels, #3)" +3.92,2800,1596435690,good_reads:book,https://www.goodreads.com/author/show/3036304.Caragh_M_O_Brien,2010,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fantasy|/genres/romance|/genres/fiction,dir24/6909544-birthmarked.html,30189,"Birthmarked (Birthmarked, #1)" +3.91,868,1405206128,good_reads:book,https://www.goodreads.com/author/show/36746.Lemony_Snicket,2001,/genres/fiction|/genres/young-adult|/genres/childrens|/genres/fantasy|/genres/mystery|/genres/adventure,dir24/65118.The_Hostile_Hospital.html,49002,"The Hostile Hospital (A Series of Unfortunate Events, #8)" +3.90,477,1844080412,good_reads:book,https://www.goodreads.com/author/show/2001717.Daphne_du_Maurier,1941,/genres/classics|/genres/historical-fiction|/genres/fiction|/genres/romance|/genres/adventure|/genres/pirates|/genres/gothic|/genres/adventure|/genres/romance|/genres/historical-romance|/genres/european-literature|/genres/british-literature|/genres/mystery,dir24/84573.Frenchman_s_Creek.html,5795,Frenchman's Creek +4.24,918,0689878567,good_reads:book,https://www.goodreads.com/author/show/8596.Tamora_Pierce,1984,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/magic|/genres/adventure|/genres/young-adult|/genres/young-adult-fantasy|/genres/romance|/genres/young-adult|/genres/teen|/genres/childrens|/genres/science-fiction-fantasy,dir24/13835.In_the_Hand_of_the_Goddess.html,52057,"In the Hand of the Goddess (Song of the Lioness, #2)" +3.99,665,0061129739,good_reads:book,https://www.goodreads.com/author/show/8788.Erich_Fromm,1956,/genres/psychology|/genres/philosophy|/genres/non-fiction|/genres/self-help|/genres/love|/genres/sociology|/genres/spirituality|/genres/relationships|/genres/european-literature|/genres/german-literature|/genres/classics,dir24/14142.The_Art_of_Loving.html,18546,The Art of Loving +4.22,1557,0316075558,good_reads:book,https://www.goodreads.com/author/show/1370283.Brent_Weeks,2010,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fiction|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction-fantasy|/genres/epic|/genres/adult|/genres/fantasy|/genres/dark-fantasy|/genres/science-fiction|/genres/action,dir24/7165300-the-black-prism.html,32807,"The Black Prism (Lightbringer, #1)" +4.06,242,8466309152,good_reads:book,https://www.goodreads.com/author/show/22515.Mario_Vargas_Llosa,1962,/genres/european-literature|/genres/spanish-literature|/genres/novels|/genres/literature|/genres/classics|/genres/cultural|/genres/latin-american|/genres/nobel-prize|/genres/literature|/genres/latin-american-literature|/genres/contemporary|/genres/literature|/genres/20th-century|/genres/modern,dir24/60142.La_ciudad_y_los_perros.html,7215,La ciudad y los perros +3.91,1108,0316735698,good_reads:book,https://www.goodreads.com/author/show/44942.Pete_Hamill,2002,/genres/fiction|/genres/historical-fiction|/genres/fantasy|/genres/book-club|/genres/new-york|/genres/magical-realism|/genres/cultural|/genres/ireland|/genres/science-fiction|/genres/time-travel,dir24/148465.Forever.html,7107,Forever +4.09,670,0553268929,good_reads:book,https://www.goodreads.com/author/show/6942.Pat_Conroy,1976,/genres/fiction|/genres/american|/genres/southern|/genres/book-club|/genres/literature|/genres/contemporary|/genres/war|/genres/military|/genres/historical-fiction|/genres/novels|/genres/drama|/genres/young-adult|/genres/coming-of-age,dir24/85448.The_Great_Santini.html,17282,The Great Santini +3.88,376,0156005204,good_reads:book,https://www.goodreads.com/author/show/1285555.Jos_Saramago,1982,/genres/fiction|/genres/historical-fiction|/genres/european-literature|/genres/portuguese-literature|/genres/romance|/genres/classics|/genres/cultural|/genres/portugal|/genres/literature|/genres/nobel-prize,dir24/2530.Baltasar_and_Blimunda.html,7488,Baltasar and Blimunda +3.65,1952,0061015725,good_reads:book,https://www.goodreads.com/author/show/5194.Michael_Crichton,2002,/genres/fiction|/genres/science-fiction|/genres/thriller|/genres/suspense|/genres/horror|/genres/mystery|/genres/science-fiction-fantasy|/genres/adventure|/genres/novels|/genres/thriller|/genres/mystery-thriller,dir24/83763.Prey.html,95779,Prey +3.70,1022,0375703055,good_reads:book,https://www.goodreads.com/author/show/3501.Kaye_Gibbons,1987,/genres/fiction|/genres/book-club|/genres/american|/genres/southern|/genres/adult-fiction|/genres/young-adult|/genres/academic|/genres/school|/genres/contemporary|/genres/young-adult|/genres/coming-of-age|/genres/novels|/genres/literary-fiction,dir24/277397.Ellen_Foster.html,16726,Ellen Foster +3.78,964,0375700528,good_reads:book,https://www.goodreads.com/author/show/163.Marguerite_Duras,1984,/genres/fiction|/genres/cultural|/genres/france|/genres/classics|/genres/romance|/genres/literature|/genres/european-literature|/genres/french-literature|/genres/novels|/genres/adult-fiction|/genres/erotica|/genres/historical-fiction|/genres/cultural|/genres/asia,dir24/275.The_Lover.html,15622,The Lover +3.85,4693,1439152780,good_reads:book,https://www.goodreads.com/author/show/615274.Kate_Morton,2010,/genres/fiction|/genres/mystery|/genres/gothic|/genres/book-club|/genres/adult-fiction|/genres/contemporary|/genres/european-literature|/genres/british-literature|/genres/history|/genres/world-war-ii|/genres/adult|/genres/drama,dir24/6746018-the-distant-hours.html,34905,The Distant Hours +3.85,537,0812551494,good_reads:book,https://www.goodreads.com/author/show/3441.Terry_Goodkind,1999,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/high-fantasy|/genres/romance|/genres/adventure|/genres/epic|/genres/adult,dir24/761732.Soul_of_the_Fire.html,38176,"Soul of the Fire (Sword of Truth, #5)" +4.31,2147,1582406723,good_reads:book,https://www.goodreads.com/author/show/12425.Robert_Kirkman,2004,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/horror|/genres/horror|/genres/zombies|/genres/fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/graphic-novels-comics|/genres/comics|/genres/comic-book|/genres/science-fiction|/genres/dystopia|/genres/fantasy,dir24/138398.The_Walking_Dead_Vol_01.html,100343,"The Walking Dead, Vol. 01" +3.64,2845,1567921892,good_reads:book,https://www.goodreads.com/author/show/18874.Susan_Hill,1983,/genres/horror|/genres/fiction|/genres/gothic|/genres/mystery|/genres/classics|/genres/paranormal|/genres/ghosts|/genres/historical-fiction|/genres/fantasy|/genres/paranormal|/genres/book-club|/genres/horror|/genres/ghost-stories,dir24/37034.The_Woman_in_Black.html,19589,The Woman in Black +3.92,2941,077832740X,good_reads:book,https://www.goodreads.com/author/show/2875124.Heather_Gudenkauf,2008,/genres/fiction|/genres/mystery|/genres/book-club|/genres/suspense|/genres/contemporary|/genres/thriller|/genres/adult|/genres/thriller|/genres/mystery-thriller|/genres/adult-fiction|/genres/drama,dir24/6335026-the-weight-of-silence.html,25783,The Weight of Silence +4.27,2188,0979528534,good_reads:book,https://www.goodreads.com/author/show/2904306.Karl_Marlantes,2006,/genres/fiction|/genres/historical-fiction|/genres/war|/genres/war|/genres/military,dir24/6411016-matterhorn.html,17192,Matterhorn +4.31,2826,,good_reads:book,https://www.goodreads.com/author/show/4849669.Fisher_Amelie,2012,/genres/new-adult|/genres/romance|/genres/contemporary|/genres/young-adult|/genres/romance|/genres/contemporary-romance|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/drama|/genres/fiction|/genres/love,dir24/18331807-vain.html,21716,"Vain (The Seven Deadly, #1)" +4.22,1596,0805079831,good_reads:book,https://www.goodreads.com/author/show/419.Naomi_Klein,2006,/genres/non-fiction|/genres/politics|/genres/economics|/genres/sociology|/genres/politics|/genres/political-science|/genres/business|/genres/philosophy|/genres/writing|/genres/journalism,dir24/1237300.The_Shock_Doctrine.html,17827,The Shock Doctrine +4.00,1192,0312351623,good_reads:book,https://www.goodreads.com/author/show/27847.Lisa_Kleypas,2007,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/adult|/genres/adult-fiction|/genres/love|/genres/western|/genres/adult-fiction|/genres/erotica,dir24/306364.Sugar_Daddy.html,23376,"Sugar Daddy (Travises, #1)" +3.96,759,0679734465,good_reads:book,https://www.goodreads.com/author/show/4764.Philip_K_Dick,1981,/genres/science-fiction|/genres/fiction|/genres/philosophy|/genres/science-fiction-fantasy|/genres/novels|/genres/religion|/genres/fantasy|/genres/speculative-fiction|/genres/literature|/genres/american|/genres/literature,dir24/216377.VALIS.html,13181,"VALIS (VALIS Trilogy, #1)" +3.84,1474,0425198685,good_reads:book,https://www.goodreads.com/author/show/9226.William_Gibson,2003,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/cyberpunk|/genres/mystery|/genres/thriller|/genres/science-fiction-fantasy|/genres/novels|/genres/spy-thriller|/genres/espionage|/genres/speculative-fiction|/genres/contemporary,dir24/22320.Pattern_Recognition.html,28516,"Pattern Recognition (Blue Ant, #1)" +4.03,945,044900483X,good_reads:book,https://www.goodreads.com/author/show/4007.Mary_Doria_Russell,1998,/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/religion|/genres/fantasy|/genres/speculative-fiction|/genres/science-fiction|/genres/aliens|/genres/spirituality|/genres/philosophy|/genres/literary-fiction,dir24/16948.Children_of_God.html,9894,"Children of God (The Sparrow, #2)" +4.30,187,0195288807,good_reads:book,https://www.goodreads.com/author/show/5158478.Anonymous,100,/genres/religion|/genres/reference|/genres/religion|/genres/christianity|/genres/classics|/genres/christian|/genres/philosophy|/genres/literature|/genres/fiction|/genres/religion|/genres/theology|/genres/spirituality,dir24/203818.The_New_Oxford_Annotated_Bible_New_Revised_Standard_Version.html,2035,"The New Oxford Annotated Bible, New Revised Standard Version" +3.77,2285,0143104888,good_reads:book,https://www.goodreads.com/author/show/10885.Edgar_Rice_Burroughs,1917,/genres/science-fiction|/genres/fantasy|/genres/classics|/genres/fiction|/genres/adventure|/genres/science-fiction-fantasy|/genres/pulp|/genres/romance|/genres/novels|/genres/science-fiction|/genres/planetary-romance,dir24/40395.A_Princess_of_Mars.html,29502,"A Princess of Mars (Barsoom, #1)" +3.88,2192,,good_reads:book,https://www.goodreads.com/author/show/5441556.Chanda_Hahn,2011,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/fairy-tales|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fiction|/genres/fantasy|/genres/magic,dir24/13402447-unenchanted.html,18500,"UnEnchanted (An Unfortunate Fairy Tale, #1)" +4.32,290,0812969642,good_reads:book,https://www.goodreads.com/author/show/233619.Marcel_Proust,1913,/genres/classics|/genres/fiction|/genres/cultural|/genres/france|/genres/literature|/genres/european-literature|/genres/french-literature|/genres/philosophy|/genres/novels,dir24/18796.In_Search_of_Lost_Time.html,5376,In Search of Lost Time (À la recherche du temps perdu #1-7) +3.97,2604,0547959109,good_reads:book,https://www.goodreads.com/author/show/4027380.Joelle_Charbonneau,2013,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/science-fiction|/genres/fiction|/genres/romance|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fantasy,dir24/13326831-the-testing.html,16550,"The Testing (The Testing, #1)" +4.05,3949,,good_reads:book,https://www.goodreads.com/author/show/151371.Jenny_Han,2014,/genres/contemporary|/genres/romance|/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/fiction|/genres/young-adult|/genres/young-adult-contemporary|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/high-school|/genres/romance|/genres/contemporary-romance,dir24/15749186-to-all-the-boys-i-ve-loved-before.html,26894,"To All the Boys I've Loved Before (To All the Boys I've Loved Before, #1)" +4.56,857,1590384113,good_reads:book,https://www.goodreads.com/author/show/207452.Gerald_N_Lund,1999,/genres/historical-fiction|/genres/christianity|/genres/lds|/genres/religion|/genres/lds|/genres/lds-fiction|/genres/fiction|/genres/religion|/genres/church|/genres/inspirational|/genres/book-club|/genres/spirituality|/genres/christian-fiction,dir24/352965.Fire_of_the_Covenant.html,6146,Fire of the Covenant +3.75,428,0553589490,good_reads:book,https://www.goodreads.com/author/show/9355.Dean_Koontz,1997,/genres/horror|/genres/fiction|/genres/thriller|/genres/suspense|/genres/mystery|/genres/thriller|/genres/mystery-thriller|/genres/fantasy|/genres/science-fiction|/genres/adventure|/genres/survival|/genres/spy-thriller|/genres/espionage,dir24/16431.Sole_Survivor.html,18528,Sole Survivor +3.92,1299,1400078377,good_reads:book,https://www.goodreads.com/author/show/14269.Natsuo_Kirino,1997,/genres/fiction|/genres/cultural|/genres/japan|/genres/mystery|/genres/asian-literature|/genres/japanese-literature|/genres/mystery|/genres/crime|/genres/thriller|/genres/horror|/genres/cultural|/genres/asia|/genres/thriller|/genres/mystery-thriller|/genres/contemporary,dir24/25365.Out.html,11411,Out +3.98,4457,0553807218,good_reads:book,https://www.goodreads.com/author/show/566874.Sarah_Addison_Allen,2010,/genres/fiction|/genres/magical-realism|/genres/fantasy|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/book-club|/genres/fantasy|/genres/magic|/genres/adult|/genres/adult-fiction,dir24/5126859-the-girl-who-chased-the-moon.html,32263,The Girl Who Chased the Moon +4.28,2612,,good_reads:book,https://www.goodreads.com/author/show/2958084.Kristen_Ashley,2011,/genres/romance|/genres/contemporary|/genres/adult|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/romantic-suspense|/genres/suspense|/genres/romance|/genres/contemporary-romance|/genres/womens-fiction|/genres/chick-lit|/genres/mystery|/genres/romance|/genres/erotic-romance,dir24/12299419-mystery-man.html,35737,"Mystery Man (Dream Man, #1)" +3.95,1395,0755309510,good_reads:book,https://www.goodreads.com/author/show/37519.Victoria_Hislop,2005,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/romance|/genres/cultural|/genres/greece|/genres/contemporary|/genres/novels|/genres/drama|/genres/womens-fiction|/genres/chick-lit|/genres/modern,dir24/922991.The_Island.html,16090,The Island +3.99,3294,0670012947,good_reads:book,https://www.goodreads.com/author/show/2987.Sarah_Dessen,2010,/genres/young-adult|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/fiction|/genres/romance|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/high-school|/genres/young-adult|/genres/young-adult-romance|/genres/young-adult|/genres/coming-of-age,dir24/8492856-what-happened-to-goodbye.html,52920,What Happened to Goodbye +3.74,592,0679761047,good_reads:book,https://www.goodreads.com/author/show/8550.Yasunari_Kawabata,1935,/genres/fiction|/genres/cultural|/genres/japan|/genres/asian-literature|/genres/japanese-literature|/genres/classics|/genres/literature|/genres/cultural|/genres/asia|/genres/romance|/genres/literature|/genres/asian-literature|/genres/nobel-prize|/genres/novels,dir24/14028.Snow_Country.html,7049,Snow Country +4.04,2283,0375760393,good_reads:book,https://www.goodreads.com/author/show/2121.Michael_Pollan,2001,/genres/non-fiction|/genres/science|/genres/food-and-drink|/genres/food|/genres/history|/genres/environment|/genres/nature|/genres/gardening|/genres/science|/genres/biology|/genres/environment|/genres/health|/genres/book-club,dir24/13839.The_Botany_of_Desire.html,29272,The Botany of Desire +3.57,1223,0345479726,good_reads:book,https://www.goodreads.com/author/show/3075.John_Irving,2005,/genres/fiction|/genres/contemporary|/genres/literature|/genres/literature|/genres/american|/genres/literary-fiction|/genres/novels|/genres/drama|/genres/adult-fiction|/genres/adult|/genres/book-club,dir24/9355.Until_I_Find_You.html,17556,Until I Find You +4.45,1847,0061449180,good_reads:book,https://www.goodreads.com/author/show/1599723.Michael_Grant,2013,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/horror|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/young-adult|/genres/teen,dir24/8811139-light.html,14763,"Light (Gone, #6)" +3.94,711,1857983416,good_reads:book,https://www.goodreads.com/author/show/4764.Philip_K_Dick,1974,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/dystopia|/genres/novels|/genres/science-fiction-fantasy|/genres/fantasy|/genres/speculative-fiction|/genres/thriller|/genres/psychology|/genres/literature|/genres/american,dir24/22584.Flow_My_Tears_the_Policeman_Said.html,16353,"Flow My Tears, the Policeman Said" +4.30,1086,1416950095,good_reads:book,https://www.goodreads.com/author/show/2821144.Ellen_Hopkins,2010,/genres/young-adult|/genres/poetry|/genres/fiction|/genres/realistic-fiction|/genres/contemporary|/genres/young-adult|/genres/teen,dir24/7171876-fallout.html,18301,"Fallout (Crank, #3)" +3.98,1030,0385521723,good_reads:book,https://www.goodreads.com/author/show/837804.Steve_Toltz,2008,/genres/fiction|/genres/cultural|/genres/australia|/genres/book-club|/genres/contemporary|/genres/humor|/genres/literature|/genres/novels,dir24/1833852.A_Fraction_of_the_Whole.html,6730,A Fraction of the Whole +4.23,2540,1841497975,good_reads:book,https://www.goodreads.com/author/show/40563.Patricia_Briggs,2011,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/shapeshifters|/genres/werewolves|/genres/paranormal|/genres/vampires|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/shapeshifters|/genres/fairies|/genres/fae|/genres/fiction,dir24/8087906-river-marked.html,42031,"River Marked (Mercy Thompson, #6)" +4.21,502,0060733357,good_reads:book,https://www.goodreads.com/author/show/545.Neal_Stephenson,2004,/genres/fiction|/genres/historical-fiction|/genres/science-fiction|/genres/fantasy|/genres/adventure|/genres/literature|/genres/cultural|/genres/france|/genres/adventure|/genres/pirates|/genres/science-fiction|/genres/alternate-history|/genres/science-fiction-fantasy,dir24/822.The_Confusion.html,14214,"The Confusion (The Baroque Cycle, #2)" +3.89,966,0060566221,good_reads:book,https://www.goodreads.com/author/show/36746.Lemony_Snicket,2001,/genres/fiction|/genres/young-adult|/genres/childrens|/genres/fantasy|/genres/mystery|/genres/adventure|/genres/humor|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/middle-grade|/genres/realistic-fiction,dir24/150037.The_Vile_Village.html,60411,"The Vile Village (A Series of Unfortunate Events, #7)" +3.95,13675,0385344228,good_reads:book,https://www.goodreads.com/author/show/218843.William_Landay,2012,/genres/book-club|/genres/fiction|/genres/mystery|/genres/thriller|/genres/mystery|/genres/crime|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/adult|/genres/adult-fiction|/genres/thriller|/genres/legal-thriller,dir24/11367726-defending-jacob.html,116439,Defending Jacob +3.98,1007,0517405091,good_reads:book,https://www.goodreads.com/author/show/13450.Gabriel_Garc_a_M_rquez,1994,/genres/fiction|/genres/magical-realism|/genres/classics|/genres/literature|/genres/cultural|/genres/latin-american|/genres/romance|/genres/novels|/genres/literature|/genres/latin-american-literature|/genres/historical-fiction|/genres/european-literature|/genres/spanish-literature,dir24/23876.Of_Love_and_Other_Demons.html,26257,Of Love and Other Demons +4.07,1208,0553296124,good_reads:book,https://www.goodreads.com/author/show/12479.Timothy_Zahn,1991,/genres/media-tie-in|/genres/star-wars|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/space-opera|/genres/adventure|/genres/novels|/genres/media-tie-in|/genres/space,dir24/216443.Heir_to_the_Empire.html,35219,"Heir to the Empire (Star Wars: The Thrawn Trilogy, #1)" +3.65,577,0571217354,good_reads:book,https://www.goodreads.com/author/show/5144.James_Joyce,1939,/genres/fiction|/genres/classics|/genres/literature|/genres/european-literature|/genres/irish-literature|/genres/cultural|/genres/ireland|/genres/novels,dir24/11013.Finnegans_Wake.html,7555,Finnegans Wake +3.89,749,0753819929,good_reads:book,https://www.goodreads.com/author/show/1388082.Jostein_Gaarder,2003,/genres/fiction|/genres/philosophy|/genres/novels|/genres/young-adult|/genres/romance|/genres/european-literature|/genres/scandinavian-literature|/genres/contemporary|/genres/literature,dir24/25403.The_Orange_Girl.html,9245,The Orange Girl +4.26,884,055255264X,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,2004,/genres/young-adult|/genres/fiction|/genres/humor|/genres/childrens|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/adventure|/genres/humor|/genres/comedy,dir24/34501.A_Hat_Full_of_Sky_Discworld_32_.html,34064,"A Hat Full of Sky (Discworld, #32) (Discworld, #32) (Tiffany Aching, #2)" +3.81,1657,0060958022,good_reads:book,https://www.goodreads.com/author/show/9432.Joanne_Harris,2001,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/cultural|/genres/france|/genres/food-and-drink|/genres/food|/genres/contemporary|/genres/war|/genres/mystery|/genres/history|/genres/world-war-ii|/genres/romance,dir24/15096.Five_Quarters_of_the_Orange.html,19309,Five Quarters of the Orange +3.90,591,0679733787,good_reads:book,https://www.goodreads.com/author/show/6526.K_b_Abe,1962,/genres/fiction|/genres/cultural|/genres/japan|/genres/asian-literature|/genres/japanese-literature|/genres/literature|/genres/classics|/genres/novels|/genres/magical-realism|/genres/cultural|/genres/asia|/genres/literature|/genres/20th-century|/genres/literary-fiction,dir24/9998.The_Woman_in_the_Dunes.html,8311,The Woman in the Dunes +4.20,3932,,good_reads:book,https://www.goodreads.com/author/show/6875794.Jay_Crownover,2012,/genres/new-adult|/genres/romance|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/academic|/genres/college|/genres/young-adult|/genres/adult-fiction|/genres/erotica|/genres/adult|/genres/womens-fiction|/genres/chick-lit|/genres/love,dir24/17200687-rule.html,56794,"Rule (Marked Men, #1)" +3.74,513,2264022442,good_reads:book,https://www.goodreads.com/author/show/10108.Roddy_Doyle,1993,/genres/fiction|/genres/european-literature|/genres/irish-literature|/genres/cultural|/genres/ireland|/genres/contemporary|/genres/novels|/genres/literary-fiction|/genres/literature|/genres/young-adult|/genres/coming-of-age|/genres/literature|/genres/20th-century|/genres/adult-fiction,dir24/30512.Paddy_Clarke_Ha_Ha_Ha.html,12015,Paddy Clarke Ha Ha Ha +4.01,1240,0345490657,good_reads:book,https://www.goodreads.com/author/show/9550.Laurell_K_Hamilton,2000,/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fairies|/genres/fae|/genres/fiction|/genres/adult-fiction|/genres/erotica|/genres/paranormal|/genres/fairies|/genres/adult,dir24/139417.A_Kiss_of_Shadows.html,37378,"A Kiss of Shadows (Merry Gentry, #1)" +4.26,684,0440244498,good_reads:book,https://www.goodreads.com/author/show/375626.Lara_Adrian,2008,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult,dir24/3373198-veil-of-midnight.html,21455,"Veil of Midnight (Midnight Breed, #5)" +4.12,2808,0670019631,good_reads:book,https://www.goodreads.com/author/show/4432.Jasper_Fforde,2009,/genres/fantasy|/genres/fiction|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/humor|/genres/mystery|/genres/book-club|/genres/adult|/genres/science-fiction-fantasy|/genres/adult-fiction,dir24/2113260.Shades_of_Grey.html,18472,"Shades of Grey (Shades of Grey, #1)" +4.22,571,0316156299,good_reads:book,https://www.goodreads.com/author/show/5816.Darren_Shan,2004,/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/horror|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/thriller,dir24/8948.Sons_of_Destiny.html,12301,"Sons of Destiny (Cirque Du Freak, #12)" +4.14,1171,0575082453,good_reads:book,https://www.goodreads.com/author/show/276660.Joe_Abercrombie,2009,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/dark-fantasy|/genres/adventure|/genres/fantasy|/genres/high-fantasy,dir24/2315892.Best_Served_Cold.html,20257,Best Served Cold +4.18,456,1416903445,good_reads:book,https://www.goodreads.com/author/show/8596.Tamora_Pierce,1993,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/young-adult-fantasy|/genres/adventure|/genres/young-adult|/genres/teen|/genres/science-fiction-fantasy|/genres/childrens|/genres/fantasy|/genres/high-fantasy,dir24/24094.Wolf_Speaker.html,28602,"Wolf-Speaker (Immortals, #2)" +4.03,501,0345478169,good_reads:book,https://www.goodreads.com/author/show/9550.Laurell_K_Hamilton,2002,/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fairies|/genres/fae|/genres/fiction|/genres/adult-fiction|/genres/erotica|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural,dir24/30240.A_Caress_of_Twilight.html,26785,"A Caress of Twilight (Merry Gentry, #2)" +3.72,1127,0060837640,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2007,/genres/young-adult|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/womens-fiction|/genres/chick-lit|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/teen|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/witches,dir24/207684.Jinx.html,18971,Jinx +4.08,3990,1465341889,good_reads:book,https://www.goodreads.com/author/show/5131072.Aleatha_Romig,2011,/genres/dark|/genres/romance|/genres/sociology|/genres/abuse|/genres/contemporary|/genres/adult-fiction|/genres/erotica|/genres/adult|/genres/thriller|/genres/suspense|/genres/erotica|/genres/bdsm|/genres/romance|/genres/contemporary-romance,dir24/12368985-consequences.html,23351,"Consequences (Consequences, #1)" +3.78,1454,0439272637,good_reads:book,https://www.goodreads.com/author/show/36746.Lemony_Snicket,2000,/genres/fiction|/genres/young-adult|/genres/childrens|/genres/fantasy|/genres/mystery|/genres/adventure,dir24/65119.The_Miserable_Mill.html,71445,"The Miserable Mill (A Series of Unfortunate Events, #4)" +4.29,2021,0451458923,good_reads:book,https://www.goodreads.com/author/show/10746.Jim_Butcher,2002,/genres/fantasy|/genres/urban-fantasy|/genres/mystery|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/science-fiction-fantasy|/genres/paranormal|/genres/vampires,dir24/91478.Summer_Knight.html,63308,Summer Knight (The Dresden Files #4) +3.68,3590,0452287898,good_reads:book,https://www.goodreads.com/author/show/66631.Marisa_de_los_Santos,2005,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/book-club|/genres/romance|/genres/adult-fiction|/genres/contemporary|/genres/adult|/genres/novels|/genres/womens-fiction|/genres/realistic-fiction,dir24/115076.Love_Walked_In.html,23762,Love Walked In +4.22,1187,1401207529,good_reads:book,https://www.goodreads.com/author/show/15085.Frank_Miller,1987,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/dc-comics|/genres/batman|/genres/fiction|/genres/graphic-novels-comics|/genres/comics|/genres/comic-book|/genres/superheroes|/genres/dc-comics|/genres/comics|/genres/superheroes,dir24/59980.Batman.html,91035,Batman +3.99,1730,0061935107,good_reads:book,https://www.goodreads.com/author/show/89439.Sophie_Jordan,2011,/genres/fantasy|/genres/fantasy|/genres/dragons|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/shapeshifters|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/magic,dir24/9436632-vanish.html,19976,"Vanish (Firelight, #2)" +4.00,651,0805211063,good_reads:book,https://www.goodreads.com/author/show/5223.Franz_Kafka,1926,/genres/fiction|/genres/classics|/genres/literature|/genres/european-literature|/genres/german-literature|/genres/novels|/genres/philosophy|/genres/european-literature|/genres/czech-literature|/genres/literature|/genres/20th-century,dir24/333538.The_Castle.html,18866,The Castle +4.28,2570,1442423684,good_reads:book,https://www.goodreads.com/author/show/19564.Neal_Shusterman,2012,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/young-adult|/genres/teen|/genres/romance|/genres/adventure|/genres/thriller|/genres/horror,dir24/13545075-unwholly.html,19530,"UnWholly (Unwind, #2)" +4.26,7810,,good_reads:book,https://www.goodreads.com/author/show/3064305.Hugh_Howey,2012,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/dystopia|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fantasy,dir24/13453029-wool-omnibus.html,63312,"Wool Omnibus (Silo, #1)" +3.65,3160,0743454553,good_reads:book,https://www.goodreads.com/author/show/7128.Jodi_Picoult,2005,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/drama|/genres/adult|/genres/adult-fiction|/genres/mystery|/genres/book-club|/genres/novels|/genres/family,dir24/14865.Vanishing_Acts.html,65790,Vanishing Acts +4.04,942,0060765240,good_reads:book,https://www.goodreads.com/author/show/38809.James_Rollins,2005,/genres/thriller|/genres/fiction|/genres/adventure|/genres/mystery|/genres/action|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/historical-fiction|/genres/science-fiction|/genres/spy-thriller|/genres/espionage,dir24/92147.Map_of_Bones.html,30935,"Map of Bones (Sigma Force, #2)" +4.05,437,014018726X,good_reads:book,https://www.goodreads.com/author/show/39326.Heinrich_B_ll,1963,/genres/fiction|/genres/european-literature|/genres/german-literature|/genres/novels|/genres/classics|/genres/literature|/genres/cultural|/genres/germany|/genres/nobel-prize|/genres/literature|/genres/20th-century|/genres/contemporary|/genres/literary-fiction,dir24/69091.The_Clown.html,8514,The Clown +4.08,242,1903809509,good_reads:book,https://www.goodreads.com/author/show/8113.John_Barth,1960,/genres/fiction|/genres/historical-fiction|/genres/literature|/genres/classics|/genres/novels|/genres/literary-fiction|/genres/humor|/genres/literature|/genres/american,dir24/24835.The_Sot_Weed_Factor.html,4375,The Sot-Weed Factor +4.33,742,0312934335,good_reads:book,https://www.goodreads.com/author/show/4430.Sherrilyn_Kenyon,2005,/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/shapeshifters|/genres/fantasy|/genres/mythology|/genres/adult|/genres/fiction,dir24/84139.Unleash_the_Night.html,25498,Unleash the Night (Were-Hunter #2) +3.77,679,0486282082,good_reads:book,https://www.goodreads.com/author/show/11155.Christopher_Marlowe,1604,/genres/classics|/genres/plays|/genres/fiction|/genres/academic|/genres/school|/genres/fantasy|/genres/plays|/genres/theatre|/genres/horror|/genres/poetry|/genres/academic|/genres/read-for-school|/genres/european-literature|/genres/british-literature,dir24/18525.Doctor_Faustus.html,30994,Doctor Faustus +4.16,857,0060890312,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,2006,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/humor|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/childrens|/genres/humor|/genres/comedy|/genres/humor|/genres/funny|/genres/paranormal|/genres/witches,dir24/34492.Wintersmith_Discworld_35_.html,24991,"Wintersmith (Discworld, #35) (Discworld, #35) (Tiffany Aching, #3)" +3.86,3360,0689848919,good_reads:book,https://www.goodreads.com/author/show/10003.Laurie_Halse_Anderson,2000,/genres/historical-fiction|/genres/young-adult|/genres/fiction|/genres/young-adult|/genres/teen|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/academic|/genres/school|/genres/adventure|/genres/survival|/genres/realistic-fiction|/genres/childrens|/genres/juvenile,dir24/781110.Fever_1793.html,54826,Fever 1793 +4.27,4906,0451239350,good_reads:book,https://www.goodreads.com/author/show/20248.J_R_Ward,2013,/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/vampires|/genres/romance|/genres/romance|/genres/m-m-romance|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/adult-fiction|/genres/erotica|/genres/fiction,dir24/13570854-lover-at-last.html,34278,"Lover at Last (Black Dagger Brotherhood, #11)" +3.94,88,9780989447,good_reads:book,https://www.goodreads.com/author/show/7086643.M_S_Willis,2013,/genres/romance|/genres/new-adult|/genres/contemporary|/genres/dark|/genres/sociology|/genres/abuse|/genres/romance|/genres/contemporary-romance|/genres/suspense|/genres/adult|/genres/tragedy|/genres/adult-fiction|/genres/erotica,dir24/17912005-control.html,765,"Control (Control, #1)" +4.07,7229,0385737424,good_reads:book,https://www.goodreads.com/author/show/175329.Rebecca_Stead,2009,/genres/young-adult|/genres/fiction|/genres/science-fiction|/genres/mystery|/genres/childrens|/genres/middle-grade|/genres/science-fiction|/genres/time-travel|/genres/fantasy|/genres/childrens|/genres/childrens|/genres/juvenile|/genres/historical-fiction,dir24/5310515-when-you-reach-me.html,43937,When You Reach Me +4.39,7,1602862249,good_reads:book,https://www.goodreads.com/author/show/7178100.Bill_Courtney,2014,/genres/sports-and-games|/genres/sports,dir24/18210758-against-the-grain.html,23,Against the Grain +4.25,851,,good_reads:book,https://www.goodreads.com/author/show/1176324._,2006,/genres/religion|/genres/islam|/genres/religion|/genres/psychology|/genres/self-help|/genres/non-fiction,dir24/2678349.html,8637,استمتع بحياتك +3.77,844,0375727019,good_reads:book,https://www.goodreads.com/author/show/32878.Michel_Houellebecq,1986,/genres/cultural|/genres/france|/genres/literature|/genres/novels|/genres/contemporary|/genres/european-literature|/genres/french-literature|/genres/fiction|/genres/philosophy|/genres/roman|/genres/literature|/genres/20th-century|/genres/science-fiction,dir24/58314.The_Elementary_Particles.html,12935,The Elementary Particles +4.25,41,1908208163,good_reads:book,https://www.goodreads.com/author/show/5061207.Carol_E_Wyer,2013,/genres/humor|/genres/non-fiction,dir24/17387313-how-not-to-murder-your-grumpy.html,73,How Not to Murder Your Grumpy +3.99,648,0679731210,good_reads:book,https://www.goodreads.com/author/show/8407795.Giuseppe_Tomasi_di_Lampedusa,1958,/genres/fiction|/genres/classics|/genres/historical-fiction|/genres/cultural|/genres/italy|/genres/european-literature|/genres/italian-literature|/genres/literature|/genres/novels|/genres/literature|/genres/20th-century|/genres/book-club|/genres/literature|/genres/19th-century,dir24/625094.The_Leopard.html,8383,The Leopard +3.93,2983,0142412147,good_reads:book,https://www.goodreads.com/author/show/1406384.John_Green,2008,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/short-stories|/genres/holiday|/genres/christmas|/genres/fiction|/genres/realistic-fiction,dir24/3213286-let-it-snow.html,31747,Let It Snow +4.38,556,1405034149,good_reads:book,https://www.goodreads.com/author/show/9237.Jacqueline_Carey,2003,/genres/fantasy|/genres/romance|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/adult-fiction|/genres/erotica|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction|/genres/alternate-history,dir24/40223.Kushiel_s_Avatar.html,20649,Kushiel's Avatar (Phèdre's Trilogy #3) +4.07,4313,0316777730,good_reads:book,https://www.goodreads.com/author/show/2849.David_Sedaris,1997,/genres/humor|/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/writing|/genres/essays|/genres/short-stories|/genres/humor|/genres/comedy|/genres/humor|/genres/funny|/genres/biography|/genres/biography-memoir,dir24/4138.Naked.html,161590,Naked +4.44,192,0374529604,good_reads:book,https://www.goodreads.com/author/show/4026.Pablo_Neruda,1974,/genres/poetry|/genres/classics|/genres/fiction|/genres/literature|/genres/romance|/genres/cultural|/genres/latin-american|/genres/european-literature|/genres/spanish-literature|/genres/poetry-plays|/genres/love|/genres/cultural|/genres/international,dir24/5936.The_Poetry_of_Pablo_Neruda.html,11254,The Poetry of Pablo Neruda +4.31,358,0345376595,good_reads:book,https://www.goodreads.com/author/show/10538.Carl_Sagan,1994,/genres/science|/genres/non-fiction|/genres/science|/genres/astronomy|/genres/space|/genres/philosophy|/genres/science|/genres/physics|/genres/science|/genres/technology|/genres/reference|/genres/science|/genres/engineering|/genres/science|/genres/popular-science,dir24/61663.Pale_Blue_Dot.html,12346,Pale Blue Dot +4.44,1570,1937053164,good_reads:book,https://www.goodreads.com/author/show/4476934.Jennifer_L_Armentrout,2013,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/mythology|/genres/greek-mythology|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/magic,dir25/9897164-apollyon.html,17073,"Apollyon (Covenant, #4)" +4.27,309,0879237511,good_reads:book,https://www.goodreads.com/author/show/15923.Georges_Perec,1978,/genres/fiction|/genres/cultural|/genres/france|/genres/literature|/genres/european-literature|/genres/french-literature|/genres/novels|/genres/classics,dir25/28293.Life.html,3321,Life +3.95,670,0747549923,good_reads:book,https://www.goodreads.com/author/show/26335.Hubert_Selby_Jr_,1964,/genres/fiction|/genres/classics|/genres/literature|/genres/thriller|/genres/contemporary|/genres/literature|/genres/american|/genres/dark|/genres/novels|/genres/new-york|/genres/book-club,dir25/50275.Last_Exit_To_Brooklyn.html,11743,Last Exit To Brooklyn +3.25,9437,1594743347,good_reads:book,https://www.goodreads.com/author/show/169377.Seth_Grahame_Smith,2009,/genres/fiction|/genres/horror|/genres/horror|/genres/zombies|/genres/fantasy|/genres/humor|/genres/classics|/genres/romance|/genres/historical-fiction|/genres/fantasy|/genres/paranormal|/genres/book-club,dir25/5899779-pride-and-prejudice-and-zombies.html,75635,"Pride and Prejudice and Zombies (Pride and Prejudice and Zombies, #1)" +4.28,364,074974801X,good_reads:book,https://www.goodreads.com/author/show/10657.Enid_Blyton,1943,/genres/childrens|/genres/fantasy|/genres/fiction|/genres/classics|/genres/adventure|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/european-literature|/genres/british-literature|/genres/childrens|/genres/childrens-classics|/genres/childrens|/genres/juvenile,dir25/74998.The_Magic_Faraway_Tree.html,19400,"The Magic Faraway Tree (The Faraway Tree, #2)" +4.04,446,048641423X,good_reads:book,https://www.goodreads.com/author/show/3565.Oscar_Wilde,1895,/genres/classics|/genres/plays|/genres/fiction|/genres/drama|/genres/humor|/genres/literature|/genres/19th-century|/genres/literature|/genres/romance|/genres/humor|/genres/comedy|/genres/european-literature|/genres/british-literature,dir25/5296.An_Ideal_Husband.html,22366,An Ideal Husband +4.20,1032,0345476093,good_reads:book,https://www.goodreads.com/author/show/137261.Barbara_W_Tuchman,1962,/genres/history|/genres/non-fiction|/genres/war|/genres/war|/genres/military|/genres/military|/genres/military-history|/genres/politics|/genres/history|/genres/european-history|/genres/history|/genres/world-history|/genres/classics|/genres/cultural|/genres/germany,dir25/11366.The_Guns_of_August.html,20043,The Guns of August +4.23,402,015694877X,good_reads:book,https://www.goodreads.com/author/show/18540.T_S_Eliot,1922,/genres/poetry|/genres/classics|/genres/literature|/genres/fiction|/genres/academic|/genres/school|/genres/literature|/genres/20th-century|/genres/literature|/genres/american|/genres/european-literature|/genres/british-literature,dir25/400412.The_Waste_Land_and_Other_Poems.html,31091,The Waste Land and Other Poems +4.61,2133,1423146735,good_reads:book,https://www.goodreads.com/author/show/15872.Rick_Riordan,2014,/genres/fantasy|/genres/fantasy|/genres/mythology|/genres/young-adult|/genres/adventure|/genres/fiction|/genres/childrens|/genres/middle-grade|/genres/mythology|/genres/greek-mythology|/genres/romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy,dir25/18705209-the-blood-of-olympus.html,10640,"The Blood of Olympus (The Heroes of Olympus, #5)" +4.05,1681,0807508527,good_reads:book,https://www.goodreads.com/author/show/10665.Gertrude_Chandler_Warner,1942,/genres/childrens|/genres/fiction|/genres/mystery|/genres/young-adult|/genres/classics|/genres/childrens|/genres/juvenile|/genres/adventure|/genres/realistic-fiction|/genres/childrens|/genres/chapter-books|/genres/kids,dir25/297249.The_Boxcar_Children.html,61016,"The Boxcar Children (The Boxcar Children, #1)" +3.75,14903,0345521307,good_reads:book,https://www.goodreads.com/author/show/290189.Paula_McLain,2011,/genres/historical-fiction|/genres/book-club|/genres/fiction|/genres/romance|/genres/cultural|/genres/france|/genres/adult|/genres/adult-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/novels|/genres/contemporary,dir25/8683812-the-paris-wife.html,129348,The Paris Wife +4.19,1172,037581468X,good_reads:book,https://www.goodreads.com/author/show/8596.Tamora_Pierce,2006,/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/fantasy|/genres/magic|/genres/mystery|/genres/young-adult|/genres/young-adult-fantasy|/genres/young-adult|/genres/teen|/genres/adventure|/genres/fantasy|/genres/high-fantasy,dir25/13829.Terrier.html,31882,"Terrier (Beka Cooper, #1)" +4.09,722,1595142525,good_reads:book,https://www.goodreads.com/author/show/3408349.Lili_St_Crow,2009,/genres/young-adult|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/horror|/genres/zombies,dir25/6371117-betrayals.html,20092,"Betrayals (Strange Angels, #2)" +4.06,2855,1939045010,good_reads:book,https://www.goodreads.com/author/show/4601855.Jessica_Sorensen,2012,/genres/new-adult|/genres/romance|/genres/contemporary|/genres/young-adult|/genres/romance|/genres/contemporary-romance|/genres/academic|/genres/college,dir25/15717876-the-secret-of-ella-and-micha.html,51584,"The Secret of Ella and Micha (The Secret, #1)" +3.90,1130,0374530637,good_reads:book,https://www.goodreads.com/author/show/22694.Flannery_O_Connor,1952,/genres/fiction|/genres/classics|/genres/gothic|/genres/southern-gothic|/genres/literature|/genres/novels|/genres/american|/genres/southern|/genres/religion|/genres/literature|/genres/american|/genres/book-club|/genres/literary-fiction,dir25/48467.Wise_Blood.html,13613,Wise Blood +3.88,733,0425181103,good_reads:book,https://www.goodreads.com/author/show/9355.Dean_Koontz,1976,/genres/horror|/genres/fiction|/genres/thriller|/genres/suspense|/genres/mystery|/genres/science-fiction|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/paranormal|/genres/fantasy,dir25/32435.Phantoms.html,43169,Phantoms +3.72,3641,0805076689,good_reads:book,https://www.goodreads.com/author/show/123463.Mary_E_Pearson,2008,/genres/young-adult|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/fiction|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/mystery|/genres/romance,dir25/1902241.The_Adoration_of_Jenna_Fox.html,28751,"The Adoration of Jenna Fox (Jenna Fox Chronicles, #1)" +3.73,1295,1599901196,good_reads:book,https://www.goodreads.com/author/show/777173.Gemma_Malley,2007,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/science-fiction|/genres/fiction|/genres/romance|/genres/fantasy|/genres/young-adult|/genres/teen|/genres/apocalyptic|/genres/post-apocalyptic|/genres/adult|/genres/science-fiction-fantasy,dir25/1722717.The_Declaration.html,14346,"The Declaration (The Declaration, #1)" +4.31,710,0743474163,good_reads:book,https://www.goodreads.com/author/show/9885.Judith_McNaught,1991,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/historical-romance|/genres/adult|/genres/romance|/genres/romantic-suspense|/genres/adult-fiction|/genres/suspense,dir25/16006.Paradise.html,18144,"Paradise (Second Opportunities, #1)" +3.69,704,0140086838,good_reads:book,https://www.goodreads.com/author/show/29581.Leslie_Marmon_Silko,1977,/genres/fiction|/genres/academic|/genres/school|/genres/literature|/genres/classics|/genres/academic|/genres/read-for-school|/genres/historical-fiction|/genres/novels|/genres/academic|/genres/college|/genres/literature|/genres/american|/genres/war,dir25/588234.Ceremony.html,9291,Ceremony +3.94,239,0679738959,good_reads:book,https://www.goodreads.com/author/show/1466.Jean_Paul_Sartre,1945,/genres/philosophy|/genres/fiction|/genres/classics|/genres/cultural|/genres/france|/genres/literature|/genres/european-literature|/genres/french-literature|/genres/novels|/genres/literature|/genres/20th-century|/genres/classics|/genres/modern-classics|/genres/literary-fiction,dir25/10034.The_Age_of_Reason.html,6035,The Age of Reason +4.29,1116,4770020678,good_reads:book,https://www.goodreads.com/author/show/188760.Tetsuko_Kuroyanagi,1982,/genres/childrens|/genres/non-fiction|/genres/cultural|/genres/japan|/genres/education|/genres/autobiography|/genres/memoir|/genres/asian-literature|/genres/japanese-literature|/genres/biography|/genres/true-story,dir25/328802.Totto_chan.html,9714,Totto-chan +3.94,267,0679736638,good_reads:book,https://www.goodreads.com/author/show/7565.William_Styron,1967,/genres/fiction|/genres/historical-fiction|/genres/classics|/genres/literature|/genres/cultural|/genres/african-american|/genres/literature|/genres/american|/genres/novels|/genres/literary-fiction|/genres/history|/genres/american-history|/genres/literature|/genres/20th-century,dir25/577283.The_Confessions_of_Nat_Turner.html,8266,The Confessions of Nat Turner +4.24,1613,0575077905,good_reads:book,https://www.goodreads.com/author/show/276660.Joe_Abercrombie,2008,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/dark-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction-fantasy,dir25/944076.Last_Argument_of_Kings.html,38665,Last Argument of Kings (The First Law #3) +3.79,1326,0446612545,good_reads:book,https://www.goodreads.com/author/show/3780.James_Patterson,2002,/genres/mystery|/genres/fiction|/genres/thriller|/genres/suspense|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/murder-mystery|/genres/mystery|/genres/detective|/genres/adult|/genres/adult-fiction,dir25/7510.The_Beach_House.html,57980,The Beach House +3.99,1839,1599901676,good_reads:book,https://www.goodreads.com/author/show/49177.Shannon_Hale,2009,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/fairy-tales|/genres/adventure|/genres/romance|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/young-adult-fantasy|/genres/science-fiction-fantasy,dir25/6407514-forest-born.html,15981,"Forest Born (The Books of Bayern, #4)" +4.27,491,0345396685,good_reads:book,https://www.goodreads.com/author/show/24655.Sharon_Kay_Penman,1994,/genres/historical-fiction|/genres/fiction|/genres/historical-fiction|/genres/medieval|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/adult-fiction|/genres/fantasy|/genres/epic|/genres/classics|/genres/book-club,dir25/43841.When_Christ_and_His_Saints_Slept.html,8159,"When Christ and His Saints Slept (Henry II & Eleanor of Aquitaine, #1)" +3.79,648,0140443150,good_reads:book,https://www.goodreads.com/author/show/18791.Guy_de_Maupassant,1885,/genres/classics|/genres/cultural|/genres/france|/genres/fiction|/genres/european-literature|/genres/french-literature|/genres/literature|/genres/19th-century|/genres/literature|/genres/romance|/genres/historical-fiction|/genres/novels|/genres/academic|/genres/school,dir25/780581.Bel_Ami.html,12122,Bel-Ami +3.91,432,0316037885,good_reads:book,https://www.goodreads.com/author/show/15890.Trudi_Canavan,2009,/genres/fantasy|/genres/fantasy|/genres/magic|/genres/fiction|/genres/young-adult|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/adventure|/genres/science-fiction-fantasy|/genres/romance|/genres/epic,dir25/3342764-the-magician-s-apprentice.html,14419,"The Magician's Apprentice (The Black Magician Trilogy, #0.5)" +4.11,760,1409522016,good_reads:book,https://www.goodreads.com/author/show/3465557.L_A_Weatherly,2011,/genres/paranormal|/genres/angels|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/adventure|/genres/fiction,dir25/9553503-angel-fire.html,10684,"Angel Fire (Angel, #2)" +4.06,1073,014017821X,good_reads:book,https://www.goodreads.com/author/show/27500.Angela_Carter,1979,/genres/short-stories|/genres/fantasy|/genres/fiction|/genres/horror|/genres/fantasy|/genres/fairy-tales|/genres/gothic|/genres/feminism|/genres/classics|/genres/literature|/genres/retellings,dir25/49011.The_Bloody_Chamber_and_Other_Stories.html,13961,The Bloody Chamber and Other Stories +4.11,4387,0156031663,good_reads:book,https://www.goodreads.com/author/show/27857.Jenna_Blum,2004,/genres/historical-fiction|/genres/fiction|/genres/book-club|/genres/world-war-ii|/genres/holocaust|/genres/history|/genres/world-war-ii|/genres/war|/genres/cultural|/genres/germany|/genres/adult-fiction|/genres/adult|/genres/literature|/genres/jewish,dir25/49465.Those_Who_Save_Us.html,50629,Those Who Save Us +3.98,508,0393310329,good_reads:book,https://www.goodreads.com/author/show/86404.E_M_Forster,1971,/genres/classics|/genres/fiction|/genres/glbt|/genres/romance|/genres/glbt|/genres/gay|/genres/glbt|/genres/queer|/genres/european-literature|/genres/british-literature|/genres/romance|/genres/m-m-romance|/genres/literature|/genres/novels,dir25/3103.Maurice.html,12143,Maurice +3.94,1468,142998192X,good_reads:book,https://www.goodreads.com/author/show/200317.Alyson_Noel,2011,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural,dir25/9395215-everlasting.html,31376,"Everlasting (The Immortals, #6)" +4.02,710,0679736395,good_reads:book,https://www.goodreads.com/author/show/7565.William_Styron,1990,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/psychology|/genres/biography|/genres/health|/genres/mental-health|/genres/mental-health|/genres/mental-illness|/genres/biography-memoir|/genres/biography|/genres/autobiography|/genres/literature|/genres/american|/genres/health,dir25/249042.Darkness_Visible.html,9867,Darkness Visible +4.38,325,0679729917,good_reads:book,https://www.goodreads.com/author/show/4273.Roald_Dahl,1978,/genres/short-stories|/genres/fiction|/genres/classics|/genres/horror|/genres/humor|/genres/european-literature|/genres/british-literature|/genres/fantasy|/genres/literature|/genres/anthologies|/genres/collections|/genres/anthologies,dir25/6330.The_Best_of_Roald_Dahl.html,4522,The Best of Roald Dahl +3.72,1675,0385340540,good_reads:book,https://www.goodreads.com/author/show/721.John_Grisham,2005,/genres/fiction|/genres/thriller|/genres/mystery|/genres/suspense|/genres/thriller|/genres/legal-thriller|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery-thriller|/genres/law,dir25/1110.The_Broker.html,51670,The Broker +4.65,819,0345529057,good_reads:book,https://www.goodreads.com/author/show/346732.George_R_R_Martin,2011,/genres/fantasy|/genres/fiction|/genres/adventure|/genres/science-fiction|/genres/fantasy|/genres/epic-fantasy|/genres/epic|/genres/science-fiction-fantasy|/genres/novels|/genres/historical-fiction|/genres/fantasy|/genres/high-fantasy,dir25/9814682-a-song-of-ice-and-fire-1-4.html,23683,A Song of Ice and Fire #1-4 +3.77,12318,0374214913,good_reads:book,https://www.goodreads.com/author/show/2960227.Robin_Sloan,2012,/genres/book-club|/genres/contemporary|/genres/adult|/genres/adult-fiction|/genres/fiction|/genres/adventure,dir25/13538873-mr-penumbra-s-24-hour-bookstore.html,64063,Mr. Penumbra's 24-Hour Bookstore +4.13,831,0192732137,good_reads:book,https://www.goodreads.com/author/show/4042181.Joss_Stirling,2010,/genres/young-adult|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/mystery|/genres/fiction,dir25/8314214-finding-sky.html,8364,"Finding Sky (Benedicts, #1)" +4.06,13905,0553296981,good_reads:book,https://www.goodreads.com/author/show/3720.Anne_Frank,1947,/genres/biography|/genres/history|/genres/classics|/genres/world-war-ii|/genres/holocaust|/genres/autobiography|/genres/memoir|/genres/biography|/genres/autobiography|/genres/academic|/genres/school|/genres/war|/genres/history|/genres/world-war-ii|/genres/biography-memoir,dir25/48855.The_Diary_of_a_Young_Girl.html,1330902,The Diary of a Young Girl +3.87,33,1452085331,good_reads:book,https://www.goodreads.com/author/show/4495290.Kelli_Sullivan,2010,/genres/young-adult|/genres/sports-and-games|/genres/sports|/genres/romance|/genres/contemporary,dir25/9838977-ice-in-my-veins.html,232,Ice in My Veins +4.23,526,,good_reads:book,https://www.goodreads.com/author/show/623606.Aidh_bin_Abdullah_al_Qarni,NA,/genres/religion|/genres/islam|/genres/non-fiction|/genres/religion|/genres/self-help|/genres/psychology|/genres/spirituality|/genres/asian-literature|/genres/indonesian-literature,dir25/1301625.La_Tahzan.html,4134,La Tahzan +4.36,3860,0451235843,good_reads:book,https://www.goodreads.com/author/show/20248.J_R_Ward,2012,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/fiction|/genres/adult-fiction|/genres/erotica|/genres/fantasy|/genres/supernatural,dir25/10993282-lover-reborn.html,46184,"Lover Reborn (Black Dagger Brotherhood, #10)" +4.37,496,0156031132,good_reads:book,https://www.goodreads.com/author/show/8146.Mark_Helprin,1991,/genres/fiction|/genres/historical-fiction|/genres/war|/genres/cultural|/genres/italy|/genres/literature|/genres/novels,dir25/87985.A_Soldier_of_the_Great_War.html,4079,A Soldier of the Great War +3.99,2249,0446694851,good_reads:book,https://www.goodreads.com/author/show/2345.Nicholas_Sparks,2004,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/biography|/genres/travel|/genres/book-club|/genres/romance|/genres/biography-memoir|/genres/biography|/genres/autobiography|/genres/adult|/genres/womens-fiction|/genres/chick-lit,dir25/3465.Three_Weeks_With_My_Brother.html,24843,Three Weeks With My Brother +4.29,2734,0062285688,good_reads:book,https://www.goodreads.com/author/show/4039811.Veronica_Roth,2014,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/fiction|/genres/short-stories|/genres/science-fiction|/genres/romance,dir25/18126198-four.html,21913,"Four (Divergent, #0.1 - 0.4)" +3.65,1719,0060093366,good_reads:book,https://www.goodreads.com/author/show/153734.Ellen_Schreiber,2003,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen|/genres/fiction|/genres/fantasy|/genres/urban-fantasy,dir25/263147.Vampire_Kisses.html,34457,"Vampire Kisses (Vampire Kisses, #1)" +4.00,1155,0446679089,good_reads:book,https://www.goodreads.com/author/show/1238.Nelson_DeMille,1994,/genres/fiction|/genres/mystery|/genres/thriller|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/crime|/genres/mystery|/genres/detective|/genres/action|/genres/adventure|/genres/book-club,dir25/33810.Plum_Island.html,23111,Plum Island +3.69,1028,0752860550,good_reads:book,https://www.goodreads.com/author/show/9343.Kate_Mosse,2007,/genres/historical-fiction|/genres/fiction|/genres/mystery|/genres/fantasy|/genres/thriller|/genres/cultural|/genres/france|/genres/romance,dir25/498835.Sepulchre.html,11488,"Sepulchre (Languedoc, #2)" +3.92,6297,0743296419,good_reads:book,https://www.goodreads.com/author/show/7128.Jodi_Picoult,2009,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/adult|/genres/adult-fiction|/genres/drama|/genres/book-club|/genres/realistic-fiction|/genres/novels|/genres/family,dir25/3720975-handle-with-care.html,71223,Handle with Care +4.20,3533,,good_reads:book,https://www.goodreads.com/author/show/7139136.Penelope_Douglas,2013,/genres/new-adult|/genres/romance|/genres/young-adult|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/high-school|/genres/sociology|/genres/abuse,dir25/20803953-bully.html,37508,"Bully (Fall Away, #1)" +3.90,1271,0547371489,good_reads:book,https://www.goodreads.com/author/show/4143266.Katie_Kacvinsky,2011,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/romance|/genres/science-fiction|/genres/fantasy|/genres/fiction|/genres/young-adult|/genres/teen|/genres/apocalyptic|/genres/post-apocalyptic|/genres/contemporary|/genres/love,dir25/8665876-awaken.html,9695,"Awaken (Awaken, #1)" +4.16,620,044023803X,good_reads:book,https://www.goodreads.com/author/show/17082.Amelia_Atwater_Rhodes,2003,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/shapeshifters|/genres/fiction|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/young-adult-fantasy,dir25/30334.Hawksong.html,14563,"Hawksong (The Kiesha'ra, #1)" +3.64,455,0743482859,good_reads:book,https://www.goodreads.com/author/show/947.William_Shakespeare,1606,/genres/classics|/genres/plays|/genres/drama|/genres/fiction|/genres/historical-fiction|/genres/literature|/genres/plays|/genres/theatre|/genres/romance|/genres/poetry|/genres/academic|/genres/school,dir25/104837.Antony_and_Cleopatra.html,17008,Antony and Cleopatra +4.17,641,1595142908,good_reads:book,https://www.goodreads.com/author/show/3408349.Lili_St_Crow,2010,/genres/young-adult|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/shapeshifters,dir25/6600807-jealousy.html,17466,"Jealousy (Strange Angels, #3)" +4.28,176,0394711823,good_reads:book,https://www.goodreads.com/author/show/233619.Marcel_Proust,1919,/genres/fiction|/genres/classics|/genres/literature|/genres/cultural|/genres/france|/genres/european-literature|/genres/french-literature|/genres/philosophy|/genres/novels|/genres/literary-fiction|/genres/literature|/genres/20th-century|/genres/glbt,dir25/190576.Remembrance_of_Things_Past.html,2196,Remembrance of Things Past +3.85,2005,0375832998,good_reads:book,https://www.goodreads.com/author/show/11664.David_Levithan,2003,/genres/young-adult|/genres/glbt|/genres/romance|/genres/fiction|/genres/contemporary|/genres/realistic-fiction|/genres/glbt|/genres/queer|/genres/young-adult|/genres/teen|/genres/romance|/genres/m-m-romance|/genres/glbt|/genres/gay,dir25/23228.Boy_Meets_Boy.html,28960,Boy Meets Boy +3.91,966,0385333471,good_reads:book,https://www.goodreads.com/author/show/2778055.Kurt_Vonnegut,1965,/genres/fiction|/genres/classics|/genres/humor|/genres/literature|/genres/novels|/genres/science-fiction|/genres/literature|/genres/american|/genres/contemporary|/genres/literature|/genres/20th-century|/genres/literary-fiction,dir25/9590.God_Bless_You_Mr_Rosewater.html,32372,"God Bless You, Mr. Rosewater" +4.29,3568,,good_reads:book,https://www.goodreads.com/author/show/4890182.Susan_Ee,2013,/genres/paranormal|/genres/angels|/genres/young-adult|/genres/fantasy|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fantasy|/genres/urban-fantasy,dir25/12983100-world-after.html,24518,"World After (Penryn & the End of Days, #2)" +4.52,1658,1937053571,good_reads:book,https://www.goodreads.com/author/show/4476934.Jennifer_L_Armentrout,2013,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/mythology|/genres/greek-mythology,dir25/13605723-sentinel.html,11741,"Sentinel (Covenant, #5)" +4.18,1168,045122793X,good_reads:book,https://www.goodreads.com/author/show/1857564.Chloe_Neill,2009,/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/adult|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/shapeshifters,dir25/6319978-friday-night-bites.html,27725,"Friday Night Bites (Chicagoland Vampires, #2)" +3.54,919,0571215165,good_reads:book,https://www.goodreads.com/author/show/7471.D_B_C_Pierre,2003,/genres/fiction|/genres/contemporary|/genres/novels|/genres/literature|/genres/humor|/genres/book-club|/genres/young-adult|/genres/coming-of-age|/genres/literary-fiction|/genres/modern|/genres/literature|/genres/american,dir25/11711.Vernon_God_Little.html,18782,Vernon God Little +4.61,1000,1780484259,good_reads:book,https://www.goodreads.com/author/show/346732.George_R_R_Martin,2000,/genres/fantasy|/genres/fiction|/genres/science-fiction-fantasy|/genres/adventure|/genres/fantasy|/genres/epic-fantasy|/genres/epic|/genres/fantasy|/genres/dragons|/genres/science-fiction|/genres/fantasy|/genres/high-fantasy|/genres/historical-fiction,dir25/12177850-a-song-of-ice-and-fire---a-game-of-thrones-a-clash-of-kings-a-storm-of.html,17216,"A Song of Ice and Fire - A Game of Thrones, A Clash of Kings, A Storm of Swords, A Feast for Crows, A Dance with Dragons (A Song of Ice and Fire, #1-5)" +4.12,9797,1476727651,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,2013,/genres/horror|/genres/thriller|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/fiction,dir25/16130549-doctor-sleep.html,59218,Doctor Sleep (The Shining #2) +4.55,756,9953320993,good_reads:book,https://www.goodreads.com/author/show/1280155.Safiur_Rahman_Mubarakpuri,1999,/genres/religion|/genres/islam|/genres/religion|/genres/history|/genres/non-fiction,dir25/545425._.html,8401,الرحيق المختوم +4.66,877,0875793266,good_reads:book,https://www.goodreads.com/author/show/189701.James_E_Talmage,1915,/genres/religion|/genres/christianity|/genres/lds|/genres/non-fiction|/genres/religion|/genres/church|/genres/spirituality|/genres/inspirational|/genres/biography|/genres/lds|/genres/lds-non-fiction|/genres/classics|/genres/lds|/genres/mormonism,dir25/481749.Jesus_the_Christ.html,14310,Jesus the Christ +4.02,345,0385418957,good_reads:book,https://www.goodreads.com/author/show/2875209.T_E_Lawrence,1922,/genres/history|/genres/non-fiction|/genres/biography|/genres/war|/genres/classics|/genres/autobiography|/genres/memoir|/genres/biography|/genres/autobiography|/genres/philosophy|/genres/travel|/genres/literature,dir25/57936.Seven_Pillars_of_Wisdom.html,3316,Seven Pillars of Wisdom +4.54,1471,,good_reads:book,https://www.goodreads.com/author/show/5804101.Anthony_Ryan,2011,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fiction|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/war|/genres/military|/genres/war|/genres/science-fiction-fantasy|/genres/epic|/genres/adult,dir25/13569581-blood-song.html,19916,"Blood Song (Raven's Shadow, #1)" +4.13,26,,good_reads:book,https://www.goodreads.com/author/show/6561688.Hunter_S_Jones,2012,/genres/horror|/genres/zombies|/genres/short-stories|/genres/adult-fiction|/genres/erotica|/genres/horror,dir25/16100516-fables-of-the-reconstruction.html,98,Fables of the Reconstruction +4.13,415,9707311169,good_reads:book,https://www.goodreads.com/author/show/30195.Mario_Benedetti,1960,/genres/classics|/genres/fiction|/genres/european-literature|/genres/spanish-literature|/genres/novels|/genres/romance|/genres/cultural|/genres/latin-american|/genres/academic|/genres/school|/genres/literature|/genres/literature|/genres/latin-american-literature|/genres/adult,dir25/56919.La_tregua.html,6024,La tregua +3.77,720,0140436030,good_reads:book,https://www.goodreads.com/author/show/5053909.Matthew_Gregory_Lewis,1795,/genres/classics|/genres/gothic|/genres/horror|/genres/fiction|/genres/literature|/genres/18th-century|/genres/literature|/genres/historical-fiction|/genres/fantasy|/genres/european-literature|/genres/british-literature|/genres/novels,dir25/93157.The_Monk.html,10124,The Monk +4.17,884,0060177241,good_reads:book,https://www.goodreads.com/author/show/10366.Clive_Barker,1992,/genres/fantasy|/genres/horror|/genres/fiction|/genres/young-adult|/genres/childrens|/genres/adventure|/genres/fantasy|/genres/supernatural|/genres/science-fiction-fantasy|/genres/fantasy|/genres/dark-fantasy,dir25/32638.The_Thief_of_Always.html,17686,The Thief of Always +4.29,237,0451460707,good_reads:book,https://www.goodreads.com/author/show/26897.Anne_Bishop,2005,/genres/fantasy|/genres/romance|/genres/fiction|/genres/fantasy|/genres/dark-fantasy|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/fantasy|/genres/paranormal|/genres/short-stories|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/high-fantasy,dir25/213105.Dreams_Made_Flesh.html,9818,"Dreams Made Flesh (The Black Jewels, #5)" +4.38,886,0060788704,good_reads:book,https://www.goodreads.com/author/show/17054.Kim_Harrison,2008,/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/witches|/genres/paranormal|/genres/demons|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/romance,dir25/1225621.The_Outlaw_Demon_Wails.html,37266,"The Outlaw Demon Wails (The Hollows, #6)" +3.56,3598,,good_reads:book,https://www.goodreads.com/author/show/3780.James_Patterson,2009,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/fiction|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/supernatural|/genres/adventure|/genres/young-adult|/genres/teen,dir25/6387565-witch-wizard.html,36262,"Witch & Wizard (Witch & Wizard, #1)" +3.53,3,,good_reads:book,https://www.goodreads.com/author/show/5139623.Jim_Henry,2013,,dir25/17563755-miscellaneous-stuff-stuff.html,15,Miscellaneous Stuff & Stuff +4.28,424,1416903372,good_reads:book,https://www.goodreads.com/author/show/8596.Tamora_Pierce,1994,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/young-adult-fantasy|/genres/adventure|/genres/young-adult|/genres/teen|/genres/science-fiction-fantasy|/genres/childrens|/genres/romance,dir25/13833.Emperor_Mage.html,36731,"Emperor Mage (Immortals, #3)" +4.21,520,0778326810,good_reads:book,https://www.goodreads.com/author/show/415967.Rachel_Vincent,2009,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/shapeshifters|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/romance|/genres/adult|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/young-adult,dir25/6134783-prey.html,12450,"Prey (Shifters, #4)" +3.88,1857,0375702709,good_reads:book,https://www.goodreads.com/author/show/3533.Ernest_J_Gaines,1993,/genres/fiction|/genres/classics|/genres/historical-fiction|/genres/book-club|/genres/academic|/genres/school|/genres/cultural|/genres/african-american|/genres/literature|/genres/adult-fiction|/genres/novels|/genres/adult,dir25/5197.A_Lesson_Before_Dying.html,29582,A Lesson Before Dying +3.91,19413,0307592731,good_reads:book,https://www.goodreads.com/author/show/155717.Cheryl_Strayed,2012,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/book-club|/genres/travel|/genres/biography|/genres/adventure|/genres/biography-memoir|/genres/adult|/genres/environment|/genres/nature|/genres/biography|/genres/autobiography,dir25/12262741-wild.html,148916,Wild +3.97,7139,0525951989,good_reads:book,https://www.goodreads.com/author/show/4208569.Rainbow_Rowell,2011,/genres/romance|/genres/fiction|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/adult|/genres/adult-fiction|/genres/young-adult,dir25/8909152-attachments.html,41698,Attachments +4.24,568,0060744510,good_reads:book,https://www.goodreads.com/author/show/27498.Erin_Hunter,2005,/genres/fantasy|/genres/animals|/genres/fiction|/genres/young-adult|/genres/animals|/genres/cats|/genres/adventure|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/animals|/genres/animal-fiction|/genres/action,dir25/273511.Midnight.html,16711,"Midnight (Warriors: The New Prophecy, #1)" +4.27,349,0553582453,good_reads:book,https://www.goodreads.com/author/show/25307.Robin_Hobb,2002,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/epic|/genres/fantasy|/genres/dragons|/genres/fantasy|/genres/magic|/genres/adventure|/genres/adult,dir25/45109.Golden_Fool.html,28463,"Golden Fool (Tawny Man, #2)" +4.43,691,0679722319,good_reads:book,https://www.goodreads.com/author/show/7363.Raymond_Carver,1988,/genres/short-stories|/genres/fiction|/genres/literature|/genres/literature|/genres/american|/genres/classics|/genres/literary-fiction|/genres/contemporary|/genres/anthologies|/genres/anthologies|/genres/collections|/genres/american|/genres/americana,dir25/11437.Where_I_m_Calling_From.html,13202,Where I'm Calling From +4.04,454,0385333765,good_reads:book,https://www.goodreads.com/author/show/6417.James_Clavell,1962,/genres/historical-fiction|/genres/fiction|/genres/war|/genres/classics|/genres/cultural|/genres/japan|/genres/history|/genres/world-war-ii|/genres/cultural|/genres/asia|/genres/adventure|/genres/literature|/genres/thriller,dir25/9827.King_Rat.html,20875,"King Rat (Asian Saga, #1)" +4.48,3822,0765325950,good_reads:book,https://www.goodreads.com/author/show/6252.Robert_Jordan,2013,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/epic|/genres/fantasy|/genres/magic|/genres/adventure|/genres/science-fiction|/genres/adult,dir25/7743175-a-memory-of-light.html,39352,"A Memory of Light (Wheel of Time, #14)" +4.20,1921,0525951113,good_reads:book,https://www.goodreads.com/author/show/1956402.Daniel_Suarez,2006,/genres/science-fiction|/genres/fiction|/genres/thriller|/genres/science-fiction|/genres/cyberpunk|/genres/mystery|/genres/science|/genres/technology|/genres/suspense|/genres/science-fiction-fantasy|/genres/thriller|/genres/mystery-thriller|/genres/speculative-fiction,dir25/4699575-daemon.html,17151,"Daemon (Daemon, #1)" +4.41,479,0142437883,good_reads:book,https://www.goodreads.com/author/show/500.Jorge_Luis_Borges,1945,/genres/classics|/genres/fantasy|/genres/literature|/genres/magical-realism|/genres/european-literature|/genres/spanish-literature|/genres/cultural|/genres/latin-american|/genres/short-stories|/genres/literature|/genres/latin-american-literature|/genres/literature|/genres/20th-century,dir25/5787.The_Aleph_and_Other_Stories.html,14678,The Aleph and Other Stories +4.12,1112,,good_reads:book,https://www.goodreads.com/author/show/5251202.Elizabeth_Hunter,2011,/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/mystery|/genres/adult|/genres/fiction|/genres/fantasy|/genres/supernatural,dir25/12755792-a-hidden-fire.html,10191,"A Hidden Fire (Elemental Mysteries, #1)" +4.71,124,0679777482,good_reads:book,https://www.goodreads.com/author/show/8361.Dorothy_Dunnett,1975,/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/scotland|/genres/cultural|/genres/france|/genres/romance|/genres/historical-romance|/genres/adventure|/genres/romance|/genres/literature|/genres/16th-century|/genres/literature|/genres/european-literature|/genres/british-literature,dir25/112074.Checkmate.html,2015,"Checkmate (The Lymond Chronicles, #6)" +4.08,1070,0060512741,good_reads:book,https://www.goodreads.com/author/show/874602.Ursula_K_Le_Guin,1971,/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/science-fiction|/genres/dystopia|/genres/science-fiction-fantasy|/genres/speculative-fiction|/genres/classics|/genres/novels|/genres/book-club|/genres/literature|/genres/american,dir25/59924.The_Lathe_of_Heaven.html,20264,The Lathe of Heaven +4.21,441,1416530738,good_reads:book,https://www.goodreads.com/author/show/9885.Judith_McNaught,1987,/genres/romance|/genres/historical-romance|/genres/romance|/genres/historical-fiction|/genres/regency|/genres/fiction|/genres/adult|/genres/historical-romance|/genres/regency-romance|/genres/womens-fiction|/genres/chick-lit,dir25/129620.Once_and_Always.html,13735,"Once and Always (Sequels, #1)" +3.66,1518,0759529434,good_reads:book,https://www.goodreads.com/author/show/4379470.Young_Kim,2010,/genres/young-adult|/genres/sequential-art|/genres/graphic-novels|/genres/romance|/genres/sequential-art|/genres/manga|/genres/fantasy|/genres/paranormal|/genres/sequential-art|/genres/comics|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/shapeshifters|/genres/werewolves,dir25/7619292-twilight.html,30599,"Twilight (Twilight: The Graphic Novel, #1)" +4.22,388,0689860072,good_reads:book,https://www.goodreads.com/author/show/26.Anne_McCaffrey,1977,/genres/science-fiction|/genres/fantasy|/genres/dragons|/genres/fantasy|/genres/fiction|/genres/young-adult|/genres/science-fiction-fantasy,dir25/28547.Dragonsinger.html,26422,"Dragonsinger (Harper Hall, #2)" +4.07,3040,1250003326,good_reads:book,https://www.goodreads.com/author/show/504038.Anna_Banks,2012,/genres/young-adult|/genres/fantasy|/genres/mermaids|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/mythology|/genres/romance|/genres/paranormal-romance,dir25/12425532-of-poseidon.html,27711,"Of Poseidon (The Syrena Legacy, #1)" +4.07,1640,,good_reads:book,https://www.goodreads.com/author/show/30095.Jean_Webster,1912,/genres/young-adult|/genres/fiction|/genres/romance|/genres/classics|/genres/historical-fiction|/genres/novels|/genres/childrens,dir25/1499952.Daddy_Long_Legs.html,16411,"Daddy-Long-Legs (Daddy-Long-Legs, #1)" +3.90,466,0767904427,good_reads:book,https://www.goodreads.com/author/show/2330.Tim_O_Brien,1978,/genres/fiction|/genres/war|/genres/historical-fiction|/genres/literature|/genres/novels|/genres/literary-fiction|/genres/classics|/genres/war|/genres/military,dir25/3446.Going_After_Cacciato.html,7431,Going After Cacciato +3.77,1770,1595140838,good_reads:book,https://www.goodreads.com/author/show/13957.Scott_Westerfeld,2005,/genres/young-adult|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/science-fiction|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/horror|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural,dir25/186103.Peeps.html,19093,"Peeps (Peeps, #1)" +3.55,1894,0449911659,good_reads:book,https://www.goodreads.com/author/show/6878.John_Updike,1960,/genres/fiction|/genres/classics|/genres/literature|/genres/literature|/genres/american|/genres/novels|/genres/book-club|/genres/literary-fiction|/genres/contemporary|/genres/literature|/genres/20th-century|/genres/literature|/genres/banned-books,dir25/85386.Rabbit_Run.html,29776,"Rabbit, Run (Rabbit Angstrom, #1)" +4.44,1067,1937053415,good_reads:book,https://www.goodreads.com/author/show/4476934.Jennifer_L_Armentrout,2012,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/mythology|/genres/greek-mythology|/genres/fantasy|/genres/supernatural|/genres/short-stories|/genres/fantasy|/genres/magic,dir26/13605727-elixir.html,13815,"Elixir (Covenant, #3.5)" +4.13,2049,9793062797,good_reads:book,https://www.goodreads.com/author/show/647438.Andrea_Hirata,2005,/genres/novels|/genres/asian-literature|/genres/indonesian-literature|/genres/fiction|/genres/adventure|/genres/inspirational|/genres/literature|/genres/romance|/genres/drama|/genres/childrens|/genres/education,dir26/1362193.Laskar_Pelangi.html,14679,"Laskar Pelangi (Tetralogi Laskar Pelangi, #1)" +4.01,617,0486455599,good_reads:book,https://www.goodreads.com/author/show/1315.Louisa_May_Alcott,1874,/genres/classics|/genres/fiction|/genres/young-adult|/genres/historical-fiction|/genres/childrens|/genres/childrens|/genres/juvenile|/genres/literature|/genres/literature|/genres/19th-century,dir26/14570.Eight_Cousins.html,21835,Eight Cousins +3.96,4209,0670026638,good_reads:book,https://www.goodreads.com/author/show/7825.Ruth_Ozeki,2013,/genres/fiction|/genres/book-club|/genres/cultural|/genres/japan|/genres/contemporary|/genres/historical-fiction|/genres/literary-fiction|/genres/cultural|/genres/asia|/genres/adult-fiction|/genres/adult|/genres/magical-realism,dir26/15811545-a-tale-for-the-time-being.html,25393,A Tale for the Time Being +3.94,2870,0803733062,good_reads:book,https://www.goodreads.com/author/show/970554.Ingrid_Law,2000,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/adventure|/genres/fantasy|/genres/magic|/genres/childrens|/genres/juvenile|/genres/family|/genres/young-adult|/genres/coming-of-age,dir26/2133795.Savvy.html,27108,"Savvy (Savvy, #1)" +4.02,2285,0060887338,good_reads:book,https://www.goodreads.com/author/show/93970.Sara_Shepard,2006,/genres/young-adult|/genres/mystery|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/contemporary|/genres/romance|/genres/young-adult|/genres/teen|/genres/realistic-fiction|/genres/thriller|/genres/drama,dir26/162089.Flawless.html,47115,"Flawless (Pretty Little Liars, #2)" +4.17,307,0785729194,good_reads:book,https://www.goodreads.com/author/show/26.Anne_McCaffrey,1988,/genres/fantasy|/genres/science-fiction|/genres/fantasy|/genres/dragons|/genres/fiction|/genres/science-fiction-fantasy,dir26/61942.The_Dragonriders_of_Pern.html,15804,"The Dragonriders of Pern (Dragonriders of Pern, #1-3)" +3.85,363,0044009126,good_reads:book,https://www.goodreads.com/author/show/7970.Richard_Brautigan,1964,/genres/fiction|/genres/poetry|/genres/literature|/genres/novels|/genres/literature|/genres/american|/genres/short-stories|/genres/classics|/genres/humor|/genres/literary-fiction|/genres/adult-fiction,dir26/63913.Trout_Fishing_In_America.html,6325,Trout Fishing In America +4.34,914,0446401056,good_reads:book,https://www.goodreads.com/author/show/375143.Larissa_Ione,2009,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/demons|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/paranormal|/genres/angels|/genres/adult-fiction|/genres/erotica,dir26/4701550-passion-unleashed.html,22588,"Passion Unleashed (Demonica, #3)" +3.43,1365,9770919403,good_reads:book,https://www.goodreads.com/author/show/73947._,2007,/genres/novels|/genres/fiction|/genres/literature,dir26/1220507._.html,14562,شيكاجو +4.02,1270,0330519476,good_reads:book,https://www.goodreads.com/author/show/4105961.Jana_Oliver,2010,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/paranormal|/genres/demons|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/fantasy|/genres/supernatural,dir26/8534899-forsaken.html,12753,"Forsaken (The Demon Trappers, #1)" +3.96,450,,good_reads:book,https://www.goodreads.com/author/show/7010931.J_G_Ballard,1984,/genres/fiction|/genres/historical-fiction|/genres/war|/genres/cultural|/genres/china|/genres/classics|/genres/history|/genres/world-war-ii|/genres/cultural|/genres/japan|/genres/cultural|/genres/asia,dir26/56674.Empire_of_the_Sun.html,8729,Empire of the Sun +3.21,10497,0224085611,good_reads:book,https://www.goodreads.com/author/show/498072.Audrey_Niffenegger,2009,/genres/fiction|/genres/fantasy|/genres/book-club|/genres/fantasy|/genres/paranormal|/genres/contemporary|/genres/paranormal|/genres/ghosts|/genres/adult-fiction|/genres/adult|/genres/fantasy|/genres/supernatural|/genres/magical-realism,dir26/6202342-her-fearful-symmetry.html,65433,Her Fearful Symmetry +4.35,1860,0062265946,good_reads:book,https://www.goodreads.com/author/show/4279785.Wendy_Higgins,2013,/genres/young-adult|/genres/teen|/genres/adventure,dir26/15768191-sweet-peril.html,19671,"Sweet Peril (The Sweet Trilogy, #2)" +4.11,827,0399142789,good_reads:book,https://www.goodreads.com/author/show/9374.Neale_Donald_Walsch,1995,/genres/spirituality|/genres/non-fiction|/genres/religion|/genres/philosophy|/genres/self-help|/genres/inspirational|/genres/spirituality|/genres/new-age|/genres/philosophy|/genres/metaphysics|/genres/self-help|/genres/personal-development|/genres/christian,dir26/15015.Conversations_with_God.html,14826,Conversations with God +3.87,4785,,good_reads:book,https://www.goodreads.com/author/show/1633682._,2012,/genres/novels|/genres/fiction|/genres/horror|/genres/mystery|/genres/suspense|/genres/literature|/genres/fantasy|/genres/supernatural|/genres/mystery|/genres/crime|/genres/psychology|/genres/thriller,dir26/16031620.html,39302,الفيل الأزرق +3.62,1439,0752224417,good_reads:book,https://www.goodreads.com/author/show/5194.Michael_Crichton,1995,/genres/fiction|/genres/science-fiction|/genres/thriller|/genres/adventure|/genres/fantasy|/genres/horror|/genres/animals|/genres/dinosaurs|/genres/science-fiction-fantasy|/genres/suspense|/genres/action,dir26/8650.The_Lost_World.html,64061,"The Lost World (Jurassic Park, #2)" +3.79,4914,0679766758,good_reads:book,https://www.goodreads.com/author/show/5021508.Sapphire,1996,/genres/fiction|/genres/young-adult|/genres/cultural|/genres/african-american|/genres/contemporary|/genres/book-club|/genres/adult-fiction|/genres/sociology|/genres/abuse|/genres/adult|/genres/realistic-fiction|/genres/literature,dir26/71332.Push.html,32784,Push +4.15,476,0886773784,good_reads:book,https://www.goodreads.com/author/show/8685.Mercedes_Lackey,1987,/genres/fantasy|/genres/fiction|/genres/young-adult|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/magic|/genres/adventure|/genres/romance|/genres/adult,dir26/13986.Arrows_of_the_Queen.html,20242,"Arrows of the Queen (Heralds of Valdemar, #1)" +4.32,590,0345371984,good_reads:book,https://www.goodreads.com/author/show/4.Douglas_Adams,1990,/genres/non-fiction|/genres/science|/genres/travel|/genres/environment|/genres/nature|/genres/humor|/genres/animals|/genres/environment|/genres/science|/genres/biology|/genres/writing|/genres/essays|/genres/humor|/genres/comedy,dir26/8696.Last_Chance_to_See.html,10532,Last Chance to See +4.23,399,,good_reads:book,https://www.goodreads.com/author/show/8596.Tamora_Pierce,2001,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/young-adult|/genres/young-adult-fantasy|/genres/fantasy|/genres/magic|/genres/adventure|/genres/young-adult|/genres/teen|/genres/science-fiction-fantasy|/genres/childrens|/genres/fantasy|/genres/high-fantasy,dir26/153795.Squire.html,28441,"Squire (Protector of the Small, #3)" +4.10,3565,,good_reads:book,https://www.goodreads.com/author/show/6521173.Jasinda_Wilder,2013,/genres/new-adult|/genres/romance|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/adult-fiction|/genres/erotica|/genres/adult|/genres/academic|/genres/college|/genres/drama|/genres/fiction,dir26/17448960-falling-into-you.html,33491,"Falling into You (Falling, #1)" +3.79,1214,0099282194,good_reads:book,https://www.goodreads.com/author/show/463.Philip_Roth,2000,/genres/fiction|/genres/literature|/genres/american|/genres/contemporary|/genres/literature|/genres/novels|/genres/book-club|/genres/literary-fiction|/genres/literature|/genres/jewish|/genres/classics|/genres/academic|/genres/college,dir26/11734.The_Human_Stain.html,18756,"The Human Stain (The American Trilogy, #3)" +3.69,10755,140006208X,good_reads:book,https://www.goodreads.com/author/show/97313.Elizabeth_Strout,2007,/genres/fiction|/genres/book-club|/genres/short-stories|/genres/adult-fiction|/genres/literary-fiction|/genres/contemporary,dir26/1736739.Olive_Kitteridge.html,67873,Olive Kitteridge +4.36,2820,1452440026,good_reads:book,https://www.goodreads.com/author/show/4907787.Rebecca_Donovan,2012,/genres/romance|/genres/young-adult|/genres/new-adult|/genres/sociology|/genres/abuse|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/high-school,dir26/13454149-barely-breathing.html,45660,"Barely Breathing (Breathing, #2)" +4.14,885,0723247706,good_reads:book,https://www.goodreads.com/author/show/11593.Beatrix_Potter,1901,/genres/childrens|/genres/classics|/genres/childrens|/genres/picture-books|/genres/fiction|/genres/animals|/genres/fantasy|/genres/childrens|/genres/juvenile|/genres/kids|/genres/european-literature|/genres/british-literature|/genres/young-adult,dir26/19321.The_Tale_of_Peter_Rabbit.html,116103,The Tale of Peter Rabbit +4.06,337,0141184590,good_reads:book,https://www.goodreads.com/author/show/3012988.Robert_Graves,1929,/genres/non-fiction|/genres/biography|/genres/history|/genres/war|/genres/biography|/genres/autobiography|/genres/classics|/genres/autobiography|/genres/memoir|/genres/biography-memoir|/genres/european-literature|/genres/british-literature|/genres/literature,dir26/55428.Goodbye_to_All_That.html,4963,Goodbye to All That +3.94,506,0140449086,good_reads:book,https://www.goodreads.com/author/show/901.Herodotus,-440,/genres/history|/genres/classics|/genres/non-fiction|/genres/cultural|/genres/greece|/genres/literature|/genres/ancient|/genres/literature|/genres/fantasy|/genres/mythology|/genres/academic|/genres/college|/genres/philosophy|/genres/academic|/genres/school,dir26/1362.The_Histories.html,20570,The Histories +4.19,696,0689878583,good_reads:book,https://www.goodreads.com/author/show/8596.Tamora_Pierce,1986,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/magic|/genres/adventure|/genres/young-adult|/genres/young-adult-fantasy|/genres/romance|/genres/young-adult|/genres/teen|/genres/science-fiction-fantasy|/genres/childrens,dir26/13830.The_Woman_Who_Rides_Like_a_Man.html,39879,"The Woman Who Rides Like a Man (Song of the Lioness, #3)" +3.68,372,0345422406,good_reads:book,https://www.goodreads.com/author/show/7577.Anne_Rice,2000,/genres/paranormal|/genres/vampires|/genres/horror|/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/urban-fantasy|/genres/occult|/genres/adult,dir26/43781.Merrick.html,27979,Merrick (The Vampire Chronicles #7) +4.04,551,067102731X,good_reads:book,https://www.goodreads.com/author/show/38951.John_Connolly,1999,/genres/mystery|/genres/thriller|/genres/mystery|/genres/crime|/genres/fiction|/genres/horror|/genres/thriller|/genres/mystery-thriller|/genres/suspense|/genres/mystery|/genres/detective,dir26/175242.Every_Dead_Thing.html,10440,"Every Dead Thing (Charlie Parker, #1)" +4.14,545,0802150594,good_reads:book,https://www.goodreads.com/author/show/3873.Mikhail_Bulgakov,1925,/genres/fiction|/genres/cultural|/genres/russia|/genres/classics|/genres/literature|/genres/russian-literature|/genres/science-fiction|/genres/literature|/genres/fantasy|/genres/novels|/genres/literature|/genres/20th-century|/genres/politics,dir26/113205.Heart_of_a_Dog.html,14972,Heart of a Dog +3.83,12414,0062049801,good_reads:book,https://www.goodreads.com/author/show/7136914.Ann_Patchett,2011,/genres/fiction|/genres/book-club|/genres/contemporary|/genres/adult-fiction|/genres/literary-fiction|/genres/adult|/genres/novels|/genres/adventure|/genres/mystery|/genres/literature,dir26/9118135-state-of-wonder.html,97215,State of Wonder +3.97,285,0140100180,good_reads:book,https://www.goodreads.com/author/show/22832.Jim_Carroll,1978,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/thriller|/genres/biography|/genres/dark|/genres/contemporary|/genres/culture|/genres/biography|/genres/autobiography|/genres/biography-memoir|/genres/literature,dir26/682745.The_Basketball_Diaries.html,14836,The Basketball Diaries +4.23,2493,0061974618,good_reads:book,https://www.goodreads.com/author/show/3380908.Pittacus_Lore,2013,/genres/young-adult|/genres/fantasy|/genres/science-fiction|/genres/science-fiction|/genres/aliens|/genres/fiction|/genres/fantasy|/genres/paranormal,dir26/15861491-the-fall-of-five.html,22619,"The Fall of Five (Lorien Legacies, #4)" +4.27,635,0060733497,good_reads:book,https://www.goodreads.com/author/show/60177.Guy_Gavriel_Kay,1995,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction|/genres/alternate-history|/genres/romance|/genres/science-fiction-fantasy|/genres/cultural|/genres/canada|/genres/adult|/genres/historical-fiction|/genres/book-club,dir26/104101.The_Lions_of_Al_Rassan.html,10103,The Lions of Al-Rassan +3.60,607,0060987324,good_reads:book,https://www.goodreads.com/author/show/1886.Douglas_Coupland,1998,/genres/fiction|/genres/contemporary|/genres/cultural|/genres/canada|/genres/novels|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/apocalyptic|/genres/post-apocalyptic|/genres/literature|/genres/literary-fiction|/genres/fantasy,dir26/3384.Girlfriend_in_a_Coma.html,12879,Girlfriend in a Coma +3.85,329,0521657296,good_reads:book,https://www.goodreads.com/author/show/11038.Immanuel_Kant,1781,/genres/non-fiction|/genres/classics|/genres/philosophy|/genres/european-literature|/genres/german-literature|/genres/philosophy|/genres/theory,dir26/18288.Critique_of_Pure_Reason.html,14051,Critique of Pure Reason +3.98,674,0099478420,good_reads:book,https://www.goodreads.com/author/show/2533.Graham_Greene,1948,/genres/fiction|/genres/classics|/genres/cultural|/genres/africa|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/literary-fiction|/genres/literature|/genres/20th-century|/genres/religion|/genres/historical-fiction,dir26/3692.The_Heart_of_the_Matter.html,15123,The Heart of the Matter +4.26,116,0330349422,good_reads:book,https://www.goodreads.com/author/show/16747.Robert_Musil,1930,/genres/fiction|/genres/classics|/genres/european-literature|/genres/german-literature|/genres/literature|/genres/philosophy|/genres/novels|/genres/literature|/genres/20th-century|/genres/cultural|/genres/germany|/genres/classics|/genres/modern-classics|/genres/literature|/genres/european-literature,dir26/527756.The_Man_Without_Qualities.html,2534,The Man Without Qualities +4.35,1088,0451234871,good_reads:book,https://www.goodreads.com/author/show/15292.Rachel_Caine,2011,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/young-adult|/genres/teen,dir26/10549501-last-breath.html,16830,"Last Breath (The Morganville Vampires, #11)" +3.79,120,0140424520,good_reads:book,https://www.goodreads.com/author/show/44407.George_Gordon_Byron,1824,/genres/classics|/genres/fiction|/genres/poetry|/genres/literature|/genres/literature|/genres/19th-century|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/english-literature,dir26/78249.Don_Juan.html,4694,Don Juan +4.20,182,0805057919,good_reads:book,https://www.goodreads.com/author/show/37218.Edward_Abbey,1988,/genres/fiction|/genres/literature|/genres/environment|/genres/novels|/genres/environment|/genres/nature|/genres/travel|/genres/literature|/genres/american|/genres/travel|/genres/road-trip|/genres/contemporary|/genres/american|/genres/american-fiction,dir26/118541.The_Fool_s_Progress.html,2052,The Fool's Progress +3.67,5145,0007149824,good_reads:book,https://www.goodreads.com/author/show/2715.Michael_Chabon,2007,/genres/fiction|/genres/mystery|/genres/science-fiction|/genres/science-fiction|/genres/alternate-history|/genres/mystery|/genres/crime|/genres/literature|/genres/jewish|/genres/book-club|/genres/literature|/genres/fantasy|/genres/novels,dir26/16703.The_Yiddish_Policemen_s_Union.html,40476,The Yiddish Policemen's Union +4.14,3259,0786851716,good_reads:book,https://www.goodreads.com/author/show/26250.Patricia_McCormick,2006,/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/poetry|/genres/contemporary|/genres/young-adult|/genres/cultural|/genres/cultural|/genres/india|/genres/book-club|/genres/sociology|/genres/abuse|/genres/fiction,dir26/201114.Sold.html,25228,Sold +3.51,1242,1573225126,good_reads:book,https://www.goodreads.com/author/show/4370.Elizabeth_Wurtzel,1994,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/psychology|/genres/biography|/genres/mental-health|/genres/mental-illness|/genres/health|/genres/mental-health|/genres/biography-memoir|/genres/biography|/genres/autobiography|/genres/adult|/genres/health,dir26/227603.Prozac_Nation.html,35497,Prozac Nation +4.08,1422,140220521X,good_reads:book,https://www.goodreads.com/author/show/65959.Tiffanie_DeBartolo,2005,/genres/romance|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/music|/genres/new-adult|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/adult|/genres/realistic-fiction|/genres/young-adult,dir26/113791.How_to_Kill_a_Rock_Star.html,10116,How to Kill a Rock Star +4.25,1571,0385735359,good_reads:book,https://www.goodreads.com/author/show/27100.Michael_Scott,2012,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/mythology|/genres/fiction|/genres/adventure|/genres/young-adult|/genres/teen,dir26/8519822-the-enchantress.html,21455,"The Enchantress (The Secrets of the Immortal Nicholas Flamel, #6)" +4.05,1934,0373778295,good_reads:book,https://www.goodreads.com/author/show/5752359.Chelsea_M_Cameron,2012,/genres/new-adult|/genres/romance|/genres/contemporary|/genres/academic|/genres/college|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/adult|/genres/love|/genres/realistic-fiction,dir26/17348308-my-favorite-mistake.html,39074,"My Favorite Mistake (My Favorite Mistake, #1)" +4.13,2362,0312966091,good_reads:book,https://www.goodreads.com/author/show/2384.Janet_Evanovich,1997,/genres/mystery|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/humor|/genres/mystery|/genres/crime|/genres/humor|/genres/funny|/genres/thriller|/genres/mystery-thriller|/genres/adult|/genres/contemporary|/genres/adult-fiction,dir26/6854.Three_to_Get_Deadly.html,90662,"Three to Get Deadly (Stephanie Plum, #3)" +4.14,1148,0316035920,good_reads:book,https://www.goodreads.com/author/show/191456.Cate_Tiernan,2010,/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/young-adult|/genres/young-adult-paranormal,dir26/7823549-immortal-beloved.html,8855,"Immortal Beloved (Immortal Beloved, #1)" +4.24,1195,0060856262,good_reads:book,https://www.goodreads.com/author/show/3028.Loung_Ung,2000,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/history|/genres/biography|/genres/cultural|/genres/asia|/genres/war|/genres/biography|/genres/autobiography|/genres/book-club|/genres/biography-memoir,dir26/4373.First_They_Killed_My_Father.html,10757,First They Killed My Father +4.32,387,0061131644,good_reads:book,https://www.goodreads.com/author/show/27498.Erin_Hunter,2007,/genres/fantasy|/genres/animals|/genres/animals|/genres/cats|/genres/fiction|/genres/young-adult|/genres/adventure|/genres/animals|/genres/animal-fiction|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/animals|/genres/anthropomorphic,dir26/608906.Firestar_s_Quest.html,10204,Firestar's Quest +3.78,1462,0743255062,good_reads:book,https://www.goodreads.com/author/show/289513.Benjamin_Franklin,1791,/genres/history|/genres/non-fiction|/genres/biography|/genres/autobiography|/genres/autobiography|/genres/memoir|/genres/biography|/genres/history|/genres/american-history|/genres/classics|/genres/politics|/genres/biography-memoir|/genres/academic|/genres/school,dir26/52309.The_Autobiography_of_Benjamin_Franklin.html,23692,The Autobiography of Benjamin Franklin +4.27,3681,,good_reads:book,https://www.goodreads.com/author/show/4872191.Abbi_Glines,2013,/genres/new-adult|/genres/romance|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/adult-fiction|/genres/erotica|/genres/womens-fiction|/genres/chick-lit|/genres/adult|/genres/love|/genres/drama,dir26/17337562-forever-too-far.html,48261,"Forever Too Far (Too Far, #3)" +3.98,1489,0451218469,good_reads:book,https://www.goodreads.com/author/show/54450.John_Shors,2004,/genres/historical-fiction|/genres/book-club|/genres/fiction|/genres/cultural|/genres/india|/genres/romance|/genres/cultural|/genres/asia|/genres/novels|/genres/adult-fiction,dir26/94672.Beneath_a_Marble_Sky.html,9570,Beneath a Marble Sky +3.86,4270,,good_reads:book,https://www.goodreads.com/author/show/1109606._,2012,/genres/novels|/genres/romance|/genres/romantic|/genres/literature|/genres/fiction|/genres/love|/genres/drama,dir26/16081961.html,34872,الأسود يليق بك +4.30,449,0811214133,good_reads:book,https://www.goodreads.com/author/show/6580622.W_G_Sebald,1995,/genres/fiction|/genres/travel|/genres/european-literature|/genres/german-literature|/genres/literature|/genres/cultural|/genres/germany|/genres/novels|/genres/writing|/genres/essays|/genres/european-literature|/genres/british-literature|/genres/contemporary|/genres/literature|/genres/20th-century,dir26/434903.The_Rings_of_Saturn.html,4239,The Rings of Saturn +4.08,756,055323370X,good_reads:book,https://www.goodreads.com/author/show/5350.L_M_Montgomery,1923,/genres/classics|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/historical-fiction|/genres/cultural|/genres/canada|/genres/romance|/genres/childrens|/genres/childrens-classics|/genres/childrens|/genres/juvenile|/genres/book-club,dir26/3562.Emily_of_New_Moon.html,25001,"Emily of New Moon (Emily of New Moon, #1)" +3.93,788,0440217490,good_reads:book,https://www.goodreads.com/author/show/3447.Ken_Follett,1993,/genres/historical-fiction|/genres/fiction|/genres/thriller|/genres/mystery|/genres/suspense|/genres/drama|/genres/romance|/genres/mystery|/genres/crime|/genres/novels|/genres/european-literature|/genres/british-literature,dir26/825508.A_Dangerous_Fortune.html,13720,A Dangerous Fortune +3.70,1922,014200202X,good_reads:book,https://www.goodreads.com/author/show/2565.Ian_Fleming,1953,/genres/fiction|/genres/thriller|/genres/spy-thriller|/genres/espionage|/genres/mystery|/genres/classics|/genres/adventure|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery-thriller|/genres/suspense|/genres/action,dir26/3758.Casino_Royale.html,27648,"Casino Royale (James Bond, #1)" +4.12,2066,031620157X,good_reads:book,https://www.goodreads.com/author/show/4919495.Chris_Colfer,2012,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/fairy-tales|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/magic|/genres/childrens|/genres/juvenile|/genres/retellings,dir26/11607446-the-wishing-spell.html,19640,"The Wishing Spell (The Land of Stories, #1)" +4.15,759,0064401480,good_reads:book,https://www.goodreads.com/author/show/13369.Betty_MacDonald,1947,/genres/childrens|/genres/fantasy|/genres/humor|/genres/classics|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/chapter-books|/genres/fiction|/genres/childrens|/genres/middle-grade|/genres/young-adult|/genres/kids,dir26/25051.Mrs_Piggle_Wiggle.html,32717,Mrs. Piggle-Wiggle +4.05,2562,,good_reads:book,https://www.goodreads.com/author/show/4930653.Raine_Miller,2012,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/romance|/genres/erotic-romance|/genres/adult|/genres/erotica|/genres/bdsm|/genres/new-adult|/genres/fiction|/genres/sociology|/genres/abuse,dir26/15852756-naked.html,52608,"Naked (The Blackstone Affair, #1)" +3.90,297,1841956724,good_reads:book,https://www.goodreads.com/author/show/211631.Erlend_Loe,213,/genres/fiction|/genres/contemporary|/genres/european-literature|/genres/scandinavian-literature|/genres/novels|/genres/humor|/genres/literature,dir26/604635.Na_ve_Super.html,6713,Naïve. Super +4.33,927,0425218422,good_reads:book,https://www.goodreads.com/author/show/71688.Nalini_Singh,2007,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/shapeshifters|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/science-fiction|/genres/fiction|/genres/shapeshifters|/genres/werewolves,dir26/458034.Caressed_by_Ice.html,17410,"Caressed by Ice (Psy-Changeling, #3)" +4.34,116,0312875045,good_reads:book,https://www.goodreads.com/author/show/6252.Robert_Jordan,1990,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fiction|/genres/science-fiction-fantasy|/genres/science-fiction,dir26/1111600.The_Wheel_of_Time.html,6655,"The Wheel of Time (Wheel of Time, #1-8)" +4.04,222,0231073372,good_reads:book,https://www.goodreads.com/author/show/10983.Sei_Sh_nagon,1002,/genres/asian-literature|/genres/japanese-literature|/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/biography|/genres/poetry|/genres/classics|/genres/cultural|/genres/japan|/genres/literature|/genres/asian-literature|/genres/literature|/genres/biography|/genres/autobiography,dir26/18185.The_Pillow_Book.html,2779,The Pillow Book +4.00,1369,1573227889,good_reads:book,https://www.goodreads.com/author/show/25334.Sarah_Waters,1998,/genres/fiction|/genres/historical-fiction|/genres/glbt|/genres/glbt|/genres/queer|/genres/romance|/genres/glbt|/genres/lesbian|/genres/adult|/genres/european-literature|/genres/british-literature|/genres/contemporary|/genres/lesbian|/genres/lesbian-fiction,dir26/56373.Tipping_the_Velvet.html,29433,Tipping the Velvet +3.74,2905,0743236017,good_reads:book,https://www.goodreads.com/author/show/375.Chuck_Klosterman,2003,/genres/non-fiction|/genres/writing|/genres/essays|/genres/humor|/genres/culture|/genres/pop-culture|/genres/music|/genres/culture|/genres/autobiography|/genres/memoir|/genres/sociology|/genres/humor|/genres/comedy|/genres/humor|/genres/funny,dir26/599.Sex_Drugs_and_Cocoa_Puffs.html,47348,"Sex, Drugs, and Cocoa Puffs" +3.94,474,0345501039,good_reads:book,https://www.goodreads.com/author/show/41992.Jerome_Lawrence,1955,/genres/plays|/genres/classics|/genres/drama|/genres/fiction|/genres/historical-fiction|/genres/academic|/genres/school|/genres/plays|/genres/theatre|/genres/academic|/genres/read-for-school|/genres/literature|/genres/young-adult|/genres/high-school,dir26/253264.Inherit_the_Wind.html,12571,Inherit the Wind +4.19,293,0316016659,good_reads:book,https://www.goodreads.com/author/show/5816.Darren_Shan,2003,/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/horror|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/childrens,dir26/8951.The_Lake_of_Souls.html,13754,"The Lake of Souls (Cirque Du Freak, #10)" +3.69,870,045052468X,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1989,/genres/horror|/genres/fiction|/genres/thriller|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/mystery|/genres/suspense|/genres/literature|/genres/american|/genres/novels|/genres/media-tie-in|/genres/movies,dir26/11597.The_Dark_Half.html,74017,The Dark Half +4.08,2676,1402244428,good_reads:book,https://www.goodreads.com/author/show/4062698.Olivia_Cunning,2010,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/romance|/genres/erotic-romance|/genres/adult|/genres/music|/genres/erotica|/genres/bdsm|/genres/erotica|/genres/menage|/genres/fiction,dir26/8379374-backstage-pass.html,39273,"Backstage Pass (Sinners on Tour, #1)" +4.20,198,1860466419,good_reads:book,https://www.goodreads.com/author/show/28517.Thomas_Berger,1964,/genres/historical-fiction|/genres/western|/genres/fiction|/genres/humor|/genres/classics|/genres/literature|/genres/adventure|/genres/novels|/genres/literature|/genres/american|/genres/book-club,dir26/50667.Little_Big_Man.html,3316,Little Big Man +4.08,856,0061129763,good_reads:book,https://www.goodreads.com/author/show/37218.Edward_Abbey,1975,/genres/fiction|/genres/environment|/genres/nature|/genres/environment|/genres/classics|/genres/politics|/genres/humor|/genres/novels|/genres/adventure|/genres/literature|/genres/book-club,dir26/99208.The_Monkey_Wrench_Gang.html,12262,The Monkey Wrench Gang +3.82,1350,0802142443,good_reads:book,https://www.goodreads.com/author/show/28229.Banana_Yoshimoto,1988,/genres/fiction|/genres/cultural|/genres/japan|/genres/asian-literature|/genres/japanese-literature|/genres/contemporary|/genres/short-stories|/genres/cultural|/genres/asia|/genres/literature|/genres/literature|/genres/asian-literature,dir26/50144.Kitchen.html,19078,Kitchen +4.27,420,0671721046,good_reads:book,https://www.goodreads.com/author/show/10518.Elizabeth_Moon,1992,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/war|/genres/military|/genres/epic|/genres/action|/genres/science-fiction,dir26/96281.The_Deed_of_Paksenarrion.html,7406,"The Deed of Paksenarrion (The Deed of Paksenarrion, #1-3)" +3.79,645,0515142816,good_reads:book,https://www.goodreads.com/author/show/9550.Laurell_K_Hamilton,2006,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/horror|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/shapeshifters|/genres/werewolves,dir26/121927.Danse_Macabre.html,31884,"Danse Macabre (Anita Blake, Vampire Hunter, #14)" +3.98,1619,0060766204,good_reads:book,https://www.goodreads.com/author/show/146374.Joseph_Delaney,2004,/genres/fantasy|/genres/young-adult|/genres/horror|/genres/fiction|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/adventure|/genres/paranormal|/genres/witches|/genres/childrens,dir26/298567.Revenge_of_the_Witch.html,19760,"Revenge of the Witch (The Last Apprentice / Wardstone Chronicles, #1)" +4.01,505,054506046X,good_reads:book,https://www.goodreads.com/author/show/11912.Jude_Watson,2009,/genres/mystery|/genres/adventure|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/fantasy|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/action|/genres/realistic-fiction,dir26/6389704-in-too-deep.html,26888,"In Too Deep (The 39 Clues, #6)" +3.61,2444,0375828257,good_reads:book,https://www.goodreads.com/author/show/2347.Jeanne_DuPrau,2004,/genres/young-adult|/genres/fantasy|/genres/science-fiction|/genres/dystopia|/genres/fiction|/genres/science-fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/childrens|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile,dir26/3467.The_People_of_Sparks.html,31137,"The People of Sparks (Book of Ember, #2)" +4.00,169,,good_reads:book,https://www.goodreads.com/author/show/4346631.Tessa_Dawn,2010,/genres/paranormal|/genres/vampires|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/dark-fantasy|/genres/adult|/genres/horror|/genres/dark,dir26/9292965-blood-destiny.html,1369,"Blood Destiny (Blood Curse, #1)" +3.94,412,0679725318,good_reads:book,https://www.goodreads.com/author/show/5152.Vladimir_Nabokov,1936,/genres/fiction|/genres/classics|/genres/cultural|/genres/russia|/genres/literature|/genres/russian-literature|/genres/literature|/genres/novels|/genres/science-fiction|/genres/dystopia|/genres/literary-fiction|/genres/literature|/genres/20th-century|/genres/fantasy,dir26/376561.Invitation_to_a_Beheading.html,6944,Invitation to a Beheading +3.74,1781,0062117181,good_reads:book,https://www.goodreads.com/author/show/4864634.C_J_Redwine,2012,/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/adventure|/genres/science-fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fiction|/genres/young-adult|/genres/teen,dir26/11410430-defiance.html,16313,Defiance (Defiance #1) +4.23,59,0385152132,good_reads:book,https://www.goodreads.com/author/show/13453.William_Blake,1966,/genres/poetry|/genres/classics|/genres/fiction|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/english-literature|/genres/art|/genres/reference|/genres/classics|/genres/classic-literature|/genres/religion,dir26/782580.The_Complete_Poetry_and_Prose.html,11565,The Complete Poetry and Prose +4.28,670,1841497762,good_reads:book,https://www.goodreads.com/author/show/7581.Kelley_Armstrong,2009,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/adult|/genres/paranormal|/genres/shapeshifters,dir26/4107256-frostbitten.html,15914,"Frostbitten (Women of the Otherworld, #10)" +4.05,1461,0615417175,good_reads:book,https://www.goodreads.com/author/show/4464118.Jamie_McGuire,2010,/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/angels|/genres/young-adult|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/new-adult|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/demons|/genres/academic|/genres/college,dir26/9712492-providence.html,20020,"Providence (Providence, #1)" +3.75,1161,0451188462,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1996,/genres/horror|/genres/fiction|/genres/thriller|/genres/fantasy|/genres/suspense|/genres/fantasy|/genres/supernatural|/genres/novels|/genres/fantasy|/genres/paranormal|/genres/adult|/genres/adult-fiction,dir26/10584.Desperation.html,72155,Desperation +3.58,1105,0340640146,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1995,/genres/horror|/genres/fiction|/genres/thriller|/genres/fantasy|/genres/suspense|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/paranormal|/genres/mystery|/genres/art|/genres/novels,dir26/10619.Rose_Madder.html,53994,Rose Madder +4.24,2068,1849231842,good_reads:book,https://www.goodreads.com/author/show/2958084.Kristen_Ashley,2008,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/romantic-suspense|/genres/humor|/genres/funny|/genres/adult|/genres/suspense|/genres/humor,dir26/6538757-rock-chick.html,25817,"Rock Chick (Rock Chick, #1)" +4.18,1200,0380782332,good_reads:book,https://www.goodreads.com/author/show/41313.Susan_Elizabeth_Phillips,1996,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/humor|/genres/funny|/genres/adult|/genres/humor|/genres/fiction|/genres/love|/genres/marriage,dir26/73086.Kiss_an_Angel.html,21758,Kiss an Angel +3.91,1070,0395137195,good_reads:book,https://www.goodreads.com/author/show/7549.Elizabeth_George_Speare,1961,/genres/historical-fiction|/genres/young-adult|/genres/fiction|/genres/classics|/genres/childrens|/genres/academic|/genres/school|/genres/christian|/genres/religion|/genres/childrens|/genres/juvenile|/genres/book-club,dir26/24408.The_Bronze_Bow.html,11304,The Bronze Bow +4.10,486,1423340418,good_reads:book,https://www.goodreads.com/author/show/9550.Laurell_K_Hamilton,2007,/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fairies|/genres/fae|/genres/fiction|/genres/adult-fiction|/genres/erotica|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/fairies,dir26/1406197.A_Lick_of_Frost.html,21898,"A Lick of Frost (Merry Gentry, #6)" +4.56,358,0061582476,good_reads:book,https://www.goodreads.com/author/show/27498.Erin_Hunter,2009,/genres/fantasy|/genres/animals|/genres/animals|/genres/cats|/genres/fiction|/genres/childrens|/genres/young-adult|/genres/adventure|/genres/animals|/genres/animal-fiction|/genres/childrens|/genres/middle-grade|/genres/romance,dir26/6249762-bluestar-s-prophecy.html,6105,Bluestar's Prophecy +3.85,1227,0809599813,good_reads:book,https://www.goodreads.com/author/show/10885.Edgar_Rice_Burroughs,1912,/genres/classics|/genres/fiction|/genres/fantasy|/genres/adventure|/genres/science-fiction|/genres/cultural|/genres/africa|/genres/pulp|/genres/literature,dir26/40425.Tarzan_of_the_Apes.html,20552,"Tarzan of the Apes (Tarzan, #1)" +3.62,872,0722536542,good_reads:book,https://www.goodreads.com/author/show/566.Paulo_Coelho,1996,/genres/fiction|/genres/novels|/genres/spirituality|/genres/historical-fiction|/genres/inspirational|/genres/philosophy|/genres/religion|/genres/literature|/genres/contemporary,dir26/4005.The_Fifth_Mountain.html,21864,The Fifth Mountain +3.99,1867,0330488902,good_reads:book,https://www.goodreads.com/author/show/153697.Ben_Sherwood,2004,/genres/fiction|/genres/romance|/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/contemporary|/genres/paranormal|/genres/ghosts|/genres/adult|/genres/book-club|/genres/adult-fiction,dir26/263050.The_Death_and_Life_of_Charlie_St_Cloud.html,37520,The Death and Life of Charlie St. Cloud +4.16,1609,,good_reads:book,https://www.goodreads.com/author/show/4872191.Abbi_Glines,2012,/genres/romance|/genres/new-adult|/genres/young-adult|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/womens-fiction|/genres/chick-lit|/genres/academic|/genres/college|/genres/young-adult|/genres/young-adult-romance|/genres/realistic-fiction|/genres/love,dir26/13146214-because-of-low.html,36686,"Because of Low (Sea Breeze, #2)" +4.19,1429,,good_reads:book,https://www.goodreads.com/author/show/4851199.Tijan,2012,/genres/romance|/genres/new-adult|/genres/young-adult|/genres/young-adult|/genres/high-school|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/young-adult-romance|/genres/womens-fiction|/genres/chick-lit|/genres/sports-and-games|/genres/sports|/genres/drama,dir26/16134551-fallen-crest-high.html,20796,"Fallen Crest High (Fallen Crest High, #1)" +4.06,2858,0373210582,good_reads:book,https://www.goodreads.com/author/show/48192.Gena_Showalter,2012,/genres/horror|/genres/zombies|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/horror|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/retellings,dir27/11300302-alice-in-zombieland.html,18624,"Alice in Zombieland (The White Rabbit Chronicles, #1)" +4.04,341,0345443608,good_reads:book,https://www.goodreads.com/author/show/9550.Laurell_K_Hamilton,2005,/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fairies|/genres/fae|/genres/fiction|/genres/adult-fiction|/genres/erotica|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/fairies,dir27/30226.A_Stroke_of_Midnight.html,23390,"A Stroke of Midnight (Merry Gentry, #4)" +3.95,1359,1599903423,good_reads:book,https://www.goodreads.com/author/show/345630.Carrie_Jones,2010,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/fairies|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/paranormal-romance|/genres/fairies|/genres/fae|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy,dir27/6600137-captivate.html,30270,"Captivate (Need, #2)" +3.87,3009,1400049628,good_reads:book,https://www.goodreads.com/author/show/5791.Max_Brooks,2003,/genres/horror|/genres/zombies|/genres/horror|/genres/fiction|/genres/humor|/genres/science-fiction|/genres/fantasy|/genres/apocalyptic|/genres/post-apocalyptic|/genres/reference|/genres/humor|/genres/comedy|/genres/adventure|/genres/survival,dir27/535441.The_Zombie_Survival_Guide.html,66450,The Zombie Survival Guide +3.57,1797,1400032814,good_reads:book,https://www.goodreads.com/author/show/2546.Chuck_Palahniuk,2003,/genres/fiction|/genres/horror|/genres/contemporary|/genres/thriller|/genres/novels|/genres/mystery|/genres/suspense|/genres/literature|/genres/literature|/genres/american|/genres/adult-fiction,dir27/22284.Diary.html,48673,Diary +3.96,245,1463406231,good_reads:book,https://www.goodreads.com/author/show/5042085.Nely_Cab,2011,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/mythology|/genres/romance|/genres/fiction|/genres/fantasy|/genres/magic|/genres/romance|/genres/paranormal-romance|/genres/mythology|/genres/greek-mythology|/genres/paranormal|/genres/demons,dir27/12039534-creatura.html,665,"Creatura (Creatura, #1)" +3.85,39,,good_reads:book,https://www.goodreads.com/author/show/5763697.Non_Nomen,2012,/genres/poetry|/genres/non-fiction|/genres/philosophy|/genres/sociology|/genres/sequential-art|/genres/graphic-novels,dir27/13508406-the-unwords.html,201,The Unwords +3.79,40,1616086734,good_reads:book,https://www.goodreads.com/author/show/98389.Richard_Belzer,2012,/genres/history|/genres/non-fiction|/genres/crime|/genres/true-crime|/genres/history|/genres/american-history|/genres/mystery|/genres/crime,dir27/14567915-dead-wrong.html,201,Dead Wrong +4.51,25,1457511118,good_reads:book,https://www.goodreads.com/author/show/6510850.Sandy_Klein_Bernstein,2012,/genres/fantasy|/genres/fantasy|/genres/magic,dir27/15954655-the-door-in-the-sky.html,53,The Door in the Sky +2.90,8,,good_reads:book,https://www.goodreads.com/author/show/7707820.Mary_Williams,2013,/genres/romance|/genres/realistic-fiction|/genres/young-adult,dir27/19546932-how-to-be-a-perfect-girl.html,31,How To Be A Perfect Girl +4.66,20,9780953318,good_reads:book,https://www.goodreads.com/author/show/7410148.Onyeka,2013,/genres/history|/genres/non-fiction|/genres/cultural|/genres/africa|/genres/race,dir27/18869947-blackamoores.html,38,Blackamoores +4.38,18,1500266736,good_reads:book,https://www.goodreads.com/author/show/7558024.Taylor_Ann_Bunker,2013,/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/young-adult-fantasy|/genres/fiction|/genres/paranormal|/genres/witches,dir27/19464292-witch-in-the-woods.html,42,"Witch in the Woods (Witch in the Woods, #1)" +3.39,2229,034546401X,good_reads:book,https://www.goodreads.com/author/show/5246.Amy_Tan,2005,/genres/fiction|/genres/book-club|/genres/historical-fiction|/genres/cultural|/genres/asia|/genres/cultural|/genres/china|/genres/literature|/genres/asian-literature|/genres/novels|/genres/contemporary|/genres/adult-fiction,dir27/9503.Saving_Fish_from_Drowning.html,21487,Saving Fish from Drowning +4.44,321,0441017770,good_reads:book,https://www.goodreads.com/author/show/17061.Charlaine_Harris,2008,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/mystery,dir27/4902793-sookie-stackhouse-7-copy-boxed-set.html,18897,"Sookie Stackhouse 7-copy Boxed Set (Sookie Stackhouse, #1-7)" +4.26,569,0060931728,good_reads:book,https://www.goodreads.com/author/show/4379.Sylvia_Plath,1965,/genres/poetry|/genres/classics|/genres/fiction|/genres/literature|/genres/american|/genres/feminism|/genres/literature|/genres/literature|/genres/20th-century|/genres/academic|/genres/school|/genres/adult|/genres/female-authors,dir27/395090.Ariel.html,24310,Ariel +4.03,850,,good_reads:book,https://www.goodreads.com/author/show/647438.Andrea_Hirata,2007,/genres/novels|/genres/asian-literature|/genres/indonesian-literature|/genres/fiction|/genres/adventure|/genres/travel|/genres/young-adult|/genres/inspirational|/genres/romance|/genres/literature|/genres/anthologies|/genres/collections,dir27/1464757.Edensor.html,9784,"Edensor (Tetralogi Laskar Pelangi, #3)" +3.83,6252,0446547654,good_reads:book,https://www.goodreads.com/author/show/2345.Nicholas_Sparks,2010,/genres/romance|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/adult|/genres/book-club|/genres/adult-fiction|/genres/love|/genres/romance|/genres/contemporary-romance|/genres/drama,dir27/10766509-the-best-of-me.html,59510,The Best of Me +4.31,271,0451418336,good_reads:book,https://www.goodreads.com/author/show/51304.Catherine_Anderson,2014,/genres/romance|/genres/romance|/genres/historical-romance|/genres/western|/genres/romance|/genres/western-romance|/genres/historical-fiction|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/angels|/genres/adult,dir27/18210693-walking-on-air.html,662,"Walking On Air (Valance Family, #1)" +3.93,1389,1423128192,good_reads:book,https://www.goodreads.com/author/show/10896.Eoin_Colfer,2010,/genres/fiction|/genres/young-adult|/genres/science-fiction|/genres/adventure|/genres/fantasy|/genres/magic|/genres/childrens|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/fairies|/genres/fantasy|/genres/science-fiction-fantasy,dir27/7005865-the-atlantis-complex.html,27156,"The Atlantis Complex (Artemis Fowl, #7)" +4.29,829,0440246113,good_reads:book,https://www.goodreads.com/author/show/375626.Lara_Adrian,2011,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/contemporary,dir27/8150317-deeper-than-midnight.html,14250,"Deeper Than Midnight (Midnight Breed, #9)" +3.93,901,0152020683,good_reads:book,https://www.goodreads.com/author/show/131683.Edward_Eager,1954,/genres/fantasy|/genres/childrens|/genres/fiction|/genres/young-adult|/genres/classics|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/fantasy|/genres/magic,dir27/225038.Half_Magic.html,19645,"Half Magic (Tales of Magic, #1)" +3.98,1689,0765354942,good_reads:book,https://www.goodreads.com/author/show/12577.Douglas_Preston,1995,/genres/horror|/genres/fiction|/genres/thriller|/genres/science-fiction|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/fantasy|/genres/mystery|/genres/crime|/genres/mystery|/genres/contemporary,dir27/67035.Relic.html,47610,"Relic (Pendergast, #1)" +3.86,4587,0307277887,good_reads:book,https://www.goodreads.com/author/show/10482.Jeff_Lindsay,2004,/genres/fiction|/genres/mystery|/genres/mystery|/genres/crime|/genres/thriller|/genres/horror|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/adult,dir27/17231.Darkly_Dreaming_Dexter.html,110544,"Darkly Dreaming Dexter (Dexter, #1)" +3.83,497,0671540661,good_reads:book,https://www.goodreads.com/author/show/23069.Gene_Wolfe,1980,/genres/fantasy|/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/apocalyptic|/genres/post-apocalyptic|/genres/speculative-fiction|/genres/fantasy|/genres/dark-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction|/genres/dystopia,dir27/60211.The_Shadow_of_the_Torturer.html,10121,The Shadow of the Torturer (The Book of the New Sun #1) +4.03,50,,good_reads:book,https://www.goodreads.com/author/show/4443219.Christine_M_Knight,2010,/genres/fiction,dir27/9634643-in-and-out-of-step.html,73,In and Out of Step +4.31,201,0006512666,good_reads:book,https://www.goodreads.com/author/show/12339.Michael_Marshall_Smith,1994,/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/horror|/genres/science-fiction|/genres/cyberpunk|/genres/science-fiction|/genres/dystopia|/genres/science-fiction-fantasy|/genres/humor|/genres/speculative-fiction|/genres/thriller,dir27/920395.Only_Forward.html,2453,Only Forward +4.04,3350,0451458125,good_reads:book,https://www.goodreads.com/author/show/10746.Jim_Butcher,2000,/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/mystery|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/fantasy|/genres/supernatural|/genres/shapeshifters|/genres/werewolves|/genres/science-fiction,dir27/91477.Fool_Moon.html,77267,Fool Moon (The Dresden Files #2) +3.80,94,1461012287,good_reads:book,https://www.goodreads.com/author/show/4727364.Shalini_Boland,2011,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/historical-fiction,dir27/11368591-hidden.html,465,"Hidden (Marchwood Vampires, #1)" +4.20,2828,0373210639,good_reads:book,https://www.goodreads.com/author/show/4575371.Katie_McGarry,2013,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/new-adult|/genres/romance|/genres/contemporary-romance|/genres/realistic-fiction|/genres/young-adult|/genres/high-school|/genres/sociology|/genres/abuse|/genres/fiction|/genres/young-adult|/genres/young-adult-romance,dir27/13561164-dare-you-to.html,20477,"Dare You To (Pushing the Limits, #2)" +4.17,1143,0553803727,good_reads:book,https://www.goodreads.com/author/show/16667.Isaac_Asimov,1952,/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/classics|/genres/science-fiction|/genres/space-opera|/genres/fantasy|/genres/novels|/genres/space|/genres/speculative-fiction|/genres/literature|/genres/american,dir27/29581.Foundation_and_Empire.html,79117,"Foundation and Empire (Foundation, #2)" +4.80,46,1475124511,good_reads:book,https://www.goodreads.com/author/show/5461236.Joe_Connolly,2012,/genres/non-fiction|/genres/animals,dir27/16186085-if-i-should-die-before-my-dog---.html,81,If I Should Die Before My Dog -- +4.01,888,0060932147,good_reads:book,https://www.goodreads.com/author/show/6343.Milan_Kundera,1978,/genres/fiction|/genres/european-literature|/genres/czech-literature|/genres/literature|/genres/novels|/genres/philosophy|/genres/short-stories|/genres/classics|/genres/contemporary,dir27/240976.The_Book_of_Laughter_and_Forgetting.html,22708,The Book of Laughter and Forgetting +3.57,1856,0316040096,good_reads:book,https://www.goodreads.com/author/show/2884780.Malinda_Lo,2009,/genres/fantasy|/genres/young-adult|/genres/glbt|/genres/romance|/genres/fantasy|/genres/fairy-tales|/genres/fiction|/genres/glbt|/genres/queer|/genres/paranormal|/genres/fairies|/genres/retellings|/genres/glbt|/genres/lesbian,dir27/6472451-ash.html,14305,Ash +4.11,500,0679723226,good_reads:book,https://www.goodreads.com/author/show/14473.James_M_Cain,1936,/genres/mystery|/genres/noir|/genres/mystery|/genres/fiction|/genres/mystery|/genres/crime|/genres/classics|/genres/thriller|/genres/novels|/genres/suspense|/genres/literature|/genres/american,dir27/56616.Double_Indemnity.html,9482,Double Indemnity +4.33,804,0192123092,good_reads:book,https://www.goodreads.com/author/show/2448.Arthur_Conan_Doyle,1893,/genres/mystery|/genres/classics|/genres/fiction|/genres/short-stories|/genres/mystery|/genres/crime|/genres/mystery|/genres/detective|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/historical-fiction|/genres/adventure,dir27/194373.The_Memoirs_of_Sherlock_Holmes.html,44646,"The Memoirs of Sherlock Holmes (Sherlock Holmes, #4)" +4.09,3090,0810970686,good_reads:book,https://www.goodreads.com/author/show/221559.Jeff_Kinney,2009,/genres/humor|/genres/realistic-fiction|/genres/fiction|/genres/childrens|/genres/young-adult|/genres/humor|/genres/funny|/genres/sequential-art|/genres/graphic-novels|/genres/humor|/genres/comedy,dir27/3293821-the-last-straw.html,54164,"The Last Straw (Diary of a Wimpy Kid, #3)" +4.22,493,0061144835,good_reads:book,https://www.goodreads.com/author/show/12542.Bernard_Cornwell,2005,/genres/historical-fiction|/genres/fiction|/genres/historical-fiction|/genres/medieval|/genres/fantasy|/genres/war|/genres/adventure|/genres/european-literature|/genres/british-literature,dir27/68528.The_Pale_Horseman.html,12907,"The Pale Horseman (The Saxon Stories, #2)" +3.90,2139,0380727501,good_reads:book,https://www.goodreads.com/author/show/7.Bill_Bryson,1995,/genres/non-fiction|/genres/humor|/genres/travel|/genres/autobiography|/genres/memoir|/genres/european-literature|/genres/british-literature|/genres/biography|/genres/humor|/genres/funny|/genres/humor|/genres/comedy|/genres/writing|/genres/essays|/genres/travel|/genres/travelogue,dir27/28.Notes_from_a_Small_Island.html,48471,Notes from a Small Island +3.69,1213,0451460936,good_reads:book,https://www.goodreads.com/author/show/38066.Karen_Chance,2006,/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/magic|/genres/romance|/genres/adult|/genres/paranormal|/genres/ghosts|/genres/fantasy|/genres/supernatural,dir27/67513.Touch_the_Dark.html,21054,"Touch the Dark (Cassandra Palmer, #1)" +3.90,2012,0786888768,good_reads:book,https://www.goodreads.com/author/show/34372.J_R_Moehringer,2005,/genres/autobiography|/genres/memoir|/genres/non-fiction|/genres/book-club|/genres/biography|/genres/biography|/genres/autobiography|/genres/biography-memoir|/genres/young-adult|/genres/coming-of-age|/genres/new-york|/genres/adult|/genres/humor,dir27/144977.The_Tender_Bar.html,19353,The Tender Bar +4.30,170,0147717795,good_reads:book,https://www.goodreads.com/author/show/40552.Jan_Karon,2002,/genres/fiction|/genres/christian|/genres/christian-fiction|/genres/religion|/genres/inspirational|/genres/religion|/genres/faith|/genres/womens-fiction|/genres/chick-lit,dir27/71778.The_Mitford_Years_Boxed_Set_Volumes_1_6.html,1071,The Mitford Years Boxed Set Volumes 1-6 +4.54,762,1563890356,good_reads:book,https://www.goodreads.com/author/show/1221698.Neil_Gaiman,1992,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fantasy|/genres/fiction|/genres/horror|/genres/graphic-novels-comics|/genres/comics|/genres/comic-book|/genres/fantasy|/genres/mythology|/genres/science-fiction-fantasy|/genres/fantasy|/genres/urban-fantasy,dir27/25101.The_Sandman_Vol_4.html,35758,"The Sandman, Vol. 4 (The Sandman #4)" +4.19,1213,0060531827,good_reads:book,https://www.goodreads.com/author/show/88922.Kenneth_Oppel,2004,/genres/science-fiction|/genres/steampunk|/genres/young-adult|/genres/fantasy|/genres/adventure|/genres/science-fiction|/genres/fiction|/genres/young-adult|/genres/teen|/genres/romance|/genres/adventure|/genres/pirates,dir27/428042.Airborn.html,13405,"Airborn (Matt Cruse, #1)" +3.47,1893,0375829873,good_reads:book,https://www.goodreads.com/author/show/10442.Robert_Cormier,1974,/genres/young-adult|/genres/fiction|/genres/classics|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/literature|/genres/banned-books|/genres/academic|/genres/school|/genres/young-adult|/genres/coming-of-age,dir27/17162.The_Chocolate_War.html,25665,"The Chocolate War (Chocolate War, #1)" +4.15,1134,0452285933,good_reads:book,https://www.goodreads.com/author/show/7581.Kelley_Armstrong,2002,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/vampires|/genres/fiction|/genres/adult,dir27/11922.Stolen.html,28716,Stolen (Women of the Otherworld #2) +3.60,674,1590521358,good_reads:book,https://www.goodreads.com/author/show/27398.Joshua_Harris,1996,/genres/religion|/genres/christianity|/genres/religion|/genres/marriage|/genres/inspirational|/genres/romance|/genres/religion|/genres/faith|/genres/parenting|/genres/religion|/genres/theology|/genres/family|/genres/spirituality,dir27/107195.I_Kissed_Dating_Goodbye.html,16043,I Kissed Dating Goodbye +4.16,1675,,good_reads:book,https://www.goodreads.com/author/show/4476934.Jennifer_L_Armentrout,2013,/genres/fantasy|/genres/paranormal|/genres/romance|/genres/science-fiction|/genres/aliens|/genres/new-adult|/genres/romance|/genres/paranormal-romance|/genres/adult|/genres/fantasy|/genres/science-fiction|/genres/fantasy|/genres/supernatural,dir27/14060046-obsession.html,13343,Obsession +4.18,819,0060885408,good_reads:book,https://www.goodreads.com/author/show/5300.Laura_Ingalls_Wilder,1937,/genres/classics|/genres/historical-fiction|/genres/childrens|/genres/fiction|/genres/young-adult|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/middle-grade|/genres/family|/genres/literature|/genres/american|/genres/childrens|/genres/chapter-books,dir27/7882.On_the_Banks_of_Plum_Creek.html,62029,"On the Banks of Plum Creek (Little House, #4)" +3.84,3053,043912042X,good_reads:book,https://www.goodreads.com/author/show/1244538.Pam_Mu_oz_Ryan,2000,/genres/historical-fiction|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/cultural|/genres/realistic-fiction|/genres/childrens|/genres/middle-grade|/genres/academic|/genres/school|/genres/childrens|/genres/juvenile|/genres/family,dir27/89763.Esperanza_Rising.html,32398,Esperanza Rising +4.33,25,,good_reads:book,https://www.goodreads.com/author/show/7058502.O_L_Ramos,2013,/genres/young-adult,dir27/18373829-the-keeper.html,83,"The Keeper (The Keeper, #2)" +4.27,297,006074457X,good_reads:book,https://www.goodreads.com/author/show/27498.Erin_Hunter,2005,/genres/fantasy|/genres/animals|/genres/fiction|/genres/animals|/genres/cats|/genres/childrens|/genres/adventure|/genres/animals|/genres/animal-fiction|/genres/childrens|/genres/middle-grade|/genres/young-adult|/genres/young-adult|/genres/teen,dir27/111021.Dawn.html,13982,"Dawn (Warriors: The New Prophecy, #3)" +4.23,10,1608623742,good_reads:book,https://www.goodreads.com/author/show/4875841.Patricia_H_Graham,2012,/genres/fiction,dir27/14495404-past-present-and-promises.html,30,"Past, Present, and Promises" +3.89,1060,0812565959,good_reads:book,https://www.goodreads.com/author/show/589.Orson_Scott_Card,2000,/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/young-adult|/genres/adventure|/genres/speculative-fiction|/genres/war|/genres/novels|/genres/space,dir27/9534.Shadow_of_the_Hegemon.html,45541,"Shadow of the Hegemon (Ender's Shadow, #2)" +4.06,1625,,good_reads:book,https://www.goodreads.com/author/show/871358._,1974,/genres/religion|/genres/philosophy|/genres/non-fiction,dir27/5664022.html,16647,حوار مع صديقي الملحد +4.11,482,0553575422,good_reads:book,https://www.goodreads.com/author/show/42110.Lynn_Flewelling,1996,/genres/fantasy|/genres/romance|/genres/m-m-romance|/genres/glbt|/genres/fiction|/genres/romance|/genres/glbt|/genres/gay|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/fantasy|/genres/magic|/genres/glbt|/genres/queer,dir27/74270.Luck_in_the_Shadows.html,8822,"Luck in the Shadows (Nightrunner, #1)" +4.01,685,0441004016,good_reads:book,https://www.goodreads.com/author/show/8835.Tim_Powers,1983,/genres/fantasy|/genres/science-fiction|/genres/science-fiction|/genres/steampunk|/genres/fiction|/genres/science-fiction|/genres/time-travel|/genres/historical-fiction|/genres/science-fiction-fantasy|/genres/adventure|/genres/fantasy|/genres/urban-fantasy|/genres/science-fiction|/genres/alternate-history,dir27/142296.The_Anubis_Gates.html,8126,The Anubis Gates +4.37,917,1849013764,good_reads:book,https://www.goodreads.com/author/show/375626.Lara_Adrian,2012,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/fiction|/genres/contemporary|/genres/fantasy|/genres/supernatural,dir27/12042279-darker-after-midnight.html,12594,"Darker After Midnight (Midnight Breed, #10)" +3.97,1190,0062300806,good_reads:book,https://www.goodreads.com/author/show/4039811.Veronica_Roth,2013,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/science-fiction|/genres/short-stories|/genres/fiction|/genres/romance|/genres/adventure|/genres/young-adult|/genres/teen|/genres/action,dir27/17860199-the-world-of-divergent.html,17149,"The World of Divergent (Divergent, #2.5)" +4.04,530,0380710811,good_reads:book,https://www.goodreads.com/author/show/2325.Colleen_McCullough,1990,/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/italy|/genres/roman|/genres/literature|/genres/ancient|/genres/war|/genres/classics|/genres/novels|/genres/epic|/genres/romance,dir27/480570.The_First_Man_in_Rome.html,11938,"The First Man in Rome (Masters of Rome, #1)" +4.33,190,0575081562,good_reads:book,https://www.goodreads.com/author/show/9494.H_P_Lovecraft,1930,/genres/horror|/genres/fantasy|/genres/fiction|/genres/classics|/genres/short-stories|/genres/science-fiction|/genres/gothic|/genres/horror|/genres/lovecraftian|/genres/lovecraftian|/genres/cthulhu-mythos,dir27/1335019.Necronomicon.html,5612,Necronomicon +4.17,1220,0451205367,good_reads:book,https://www.goodreads.com/author/show/688.George_S_Clason,1926,/genres/business|/genres/non-fiction|/genres/self-help|/genres/self-help|/genres/personal-development|/genres/economics|/genres/philosophy|/genres/classics|/genres/psychology|/genres/inspirational|/genres/book-club,dir27/1052.The_Richest_Man_in_Babylon.html,26432,The Richest Man in Babylon +3.75,1730,0385731051,good_reads:book,https://www.goodreads.com/author/show/3681.Ann_Brashares,2003,/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/young-adult|/genres/teen|/genres/realistic-fiction|/genres/contemporary|/genres/young-adult|/genres/coming-of-age|/genres/romance|/genres/childrens|/genres/young-adult|/genres/high-school,dir27/5454.The_Second_Summer_of_the_Sisterhood.html,57535,"The Second Summer of the Sisterhood (Sisterhood, #2)" +4.27,704,0842314296,good_reads:book,https://www.goodreads.com/author/show/13288.Hannah_Hurnard,1955,/genres/christian|/genres/christian-fiction|/genres/fiction|/genres/classics|/genres/spirituality|/genres/religion|/genres/christianity|/genres/religion|/genres/religion|/genres/faith|/genres/inspirational|/genres/fantasy,dir27/821056.Hinds_Feet_on_High_Places.html,25255,Hinds' Feet on High Places +3.90,345,0312868863,good_reads:book,https://www.goodreads.com/author/show/8726.Richard_Matheson,1975,/genres/science-fiction|/genres/time-travel|/genres/fantasy|/genres/fiction|/genres/romance|/genres/historical-fiction|/genres/science-fiction|/genres/travel|/genres/classics|/genres/love|/genres/literature|/genres/american,dir27/581126.Somewhere_in_Time.html,4165,Somewhere in Time +4.06,537,,good_reads:book,https://www.goodreads.com/author/show/3486415.Amanda_Hocking,2010,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/young-adult|/genres/young-adult-paranormal,dir27/8575295-wisdom.html,12845,"Wisdom (My Blood Approves, #4)" +4.19,1680,0062004042,good_reads:book,https://www.goodreads.com/author/show/3353516.Amy_Plum,2012,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/horror|/genres/zombies|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/ghosts|/genres/fiction,dir27/12908877-until-i-die.html,17786,"Until I Die (Revenants, #2)" +4.14,1412,0747267634,good_reads:book,https://www.goodreads.com/author/show/2384.Janet_Evanovich,2003,/genres/mystery|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/humor|/genres/romance|/genres/mystery|/genres/crime|/genres/humor|/genres/funny|/genres/humor|/genres/comedy|/genres/thriller|/genres/mystery-thriller|/genres/adult,dir27/40331.To_the_Nines.html,72228,"To the Nines (Stephanie Plum, #9)" +4.36,434,1569319014,good_reads:book,https://www.goodreads.com/author/show/208650.Eiichiro_Oda,1997,/genres/sequential-art|/genres/manga|/genres/sequential-art|/genres/comics|/genres/fantasy|/genres/sequential-art|/genres/graphic-novels|/genres/adventure|/genres/comics-manga|/genres/adventure|/genres/pirates|/genres/manga|/genres/shonen|/genres/humor|/genres/comedy|/genres/action,dir27/1237398.One_Piece_Volume_01.html,39322,"One Piece, Volume 01 (One Piece, #1)" +3.81,733,0809510839,good_reads:book,https://www.goodreads.com/author/show/26930.Joseph_Sheridan_Le_Fanu,1871,/genres/horror|/genres/gothic|/genres/classics|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/literature|/genres/19th-century|/genres/fantasy|/genres/supernatural|/genres/literature,dir27/48037.Carmilla.html,12327,Carmilla +3.96,1071,0312649916,good_reads:book,https://www.goodreads.com/author/show/3379695.Rebecca_Maizel,2010,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/young-adult|/genres/teen,dir27/7744064-infinite-days.html,7230,"Infinite Days (Vampire Queen, #1)" +4.35,1094,1416983244,good_reads:book,https://www.goodreads.com/author/show/2821144.Ellen_Hopkins,2011,/genres/young-adult|/genres/poetry|/genres/fiction|/genres/contemporary|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/glbt|/genres/romance|/genres/mental-health|/genres/mental-illness|/genres/sociology|/genres/abuse,dir27/9917945-perfect.html,14356,"Perfect (Impulse, #2)" +4.27,2619,0785289089,good_reads:book,https://www.goodreads.com/author/show/44526.Dave_Ramsey,2003,/genres/business|/genres/self-help|/genres/self-help|/genres/personal-development|/genres/christian|/genres/non-fiction|/genres/how-to|/genres/reference|/genres/adult|/genres/inspirational|/genres/education,dir27/78427.The_Total_Money_Makeover.html,26826,The Total Money Makeover +4.17,1739,,good_reads:book,https://www.goodreads.com/author/show/4476934.Jennifer_L_Armentrout,2012,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/aliens|/genres/romance|/genres/science-fiction|/genres/fantasy|/genres/romance|/genres/paranormal-romance,dir27/13183957-shadows.html,17707,"Shadows (Lux, #0.5)" +4.03,1668,,good_reads:book,https://www.goodreads.com/author/show/5416410.A_Meredith_Walters,2012,/genres/new-adult|/genres/romance|/genres/young-adult|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/dark|/genres/young-adult|/genres/high-school|/genres/mental-health|/genres/mental-illness,dir27/16081754-find-you-in-the-dark.html,20325,"Find You in the Dark (Find You in the Dark, #1)" +3.67,4829,1401340903,good_reads:book,https://www.goodreads.com/author/show/342135.Katherine_Howe,2009,/genres/historical-fiction|/genres/fantasy|/genres/mystery|/genres/book-club|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/adult-fiction|/genres/adult,dir27/4836308-the-physick-book-of-deliverance-dane.html,36289,The Physick Book of Deliverance Dane +3.92,872,0064410129,good_reads:book,https://www.goodreads.com/author/show/36746.Lemony_Snicket,2002,/genres/fiction|/genres/young-adult|/genres/childrens|/genres/fantasy|/genres/mystery|/genres/adventure,dir27/324277.The_Carnivorous_Carnival.html,56382,"The Carnivorous Carnival (A Series of Unfortunate Events, #9)" +3.75,846,0439295785,good_reads:book,https://www.goodreads.com/author/show/854076.Robert_Louis_Stevenson,1886,/genres/classics|/genres/fiction|/genres/adventure|/genres/historical-fiction|/genres/young-adult|/genres/literature|/genres/cultural|/genres/scotland|/genres/childrens|/genres/novels|/genres/classics|/genres/classic-literature,dir27/325128.Kidnapped.html,34205,"Kidnapped (David Balfour, #1)" +4.39,584,037570129X,good_reads:book,https://www.goodreads.com/author/show/34336.Anne_Carson,1998,/genres/poetry|/genres/fiction|/genres/glbt|/genres/queer|/genres/fantasy|/genres/cultural|/genres/canada|/genres/fantasy|/genres/mythology|/genres/literature|/genres/novels|/genres/glbt|/genres/glbt|/genres/gay,dir27/61049.Autobiography_of_Red.html,5375,Autobiography of Red +3.68,544,0876859260,good_reads:book,https://www.goodreads.com/author/show/13275.Charles_Bukowski,1994,/genres/fiction|/genres/novels|/genres/literature|/genres/literature|/genres/american|/genres/mystery|/genres/crime|/genres/mystery|/genres/humor|/genres/classics|/genres/contemporary|/genres/pulp,dir27/141526.Pulp.html,13202,Pulp +4.28,190,0375704779,good_reads:book,https://www.goodreads.com/author/show/8361.Dorothy_Dunnett,1986,/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/italy|/genres/adventure|/genres/cultural|/genres/belgium|/genres/literature|/genres/15th-century|/genres/literature|/genres/cultural|/genres/scotland|/genres/romance|/genres/historical-romance|/genres/novels,dir27/112078.Niccol_Rising.html,2135,"Niccolò Rising (The House of Niccolò, #1)" +4.46,633,9771925377,good_reads:book,https://www.goodreads.com/author/show/4859959.Alija_Izetbegovi_,1984,/genres/philosophy|/genres/religion|/genres/islam|/genres/religion|/genres/non-fiction|/genres/politics,dir27/6092250.html,3604,الإسلام بين الشرق والغرب +4.53,32,1491007753,good_reads:book,https://www.goodreads.com/author/show/5222848.Brian_Patrick_McKinley,2011,/genres/fantasy|/genres/supernatural|/genres/thriller|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/horror|/genres/fantasy|/genres/urban-fantasy|/genres/adventure|/genres/literature|/genres/american|/genres/novels,dir27/14896701-ancient-blood.html,90,"Ancient Blood (The Order Saga, #1)" +4.29,554,0743468406,good_reads:book,https://www.goodreads.com/author/show/16094.Lois_McMaster_Bujold,1986,/genres/science-fiction|/genres/science-fiction|/genres/space-opera|/genres/fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/adventure|/genres/war|/genres/military|/genres/space|/genres/speculative-fiction|/genres/sci-fi-fantasy,dir27/61906.The_Warrior_s_Apprentice.html,11402,"The Warrior's Apprentice (Vorkosigan Saga, #2)" +4.18,475,0316955108,good_reads:book,https://www.goodreads.com/author/show/9020.Herman_Wouk,1951,/genres/fiction|/genres/historical-fiction|/genres/classics|/genres/war|/genres/history|/genres/world-war-ii|/genres/literature|/genres/war|/genres/military|/genres/drama|/genres/novels|/genres/literary-fiction,dir27/368772.The_Caine_Mutiny.html,11239,The Caine Mutiny +3.91,2705,,good_reads:book,https://www.goodreads.com/author/show/4872191.Abbi_Glines,2011,/genres/romance|/genres/young-adult|/genres/new-adult|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/womens-fiction|/genres/chick-lit|/genres/music|/genres/young-adult|/genres/young-adult-romance|/genres/young-adult|/genres/high-school|/genres/realistic-fiction,dir27/11479285-breathe.html,50582,"Breathe (Sea Breeze, #1)" +4.30,3707,,good_reads:book,https://www.goodreads.com/author/show/4603829._,2012,/genres/novels,dir27/13637412.html,15834,ساق البامبو +4.53,83,142152581X,good_reads:book,https://www.goodreads.com/author/show/1978.Tsugumi_Ohba,2008,/genres/sequential-art|/genres/manga|/genres/sequential-art|/genres/comics|/genres/sequential-art|/genres/graphic-novels|/genres/fantasy|/genres/mystery|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/mystery|/genres/crime|/genres/horror|/genres/cultural|/genres/japan,dir27/3368983-death-note-box-set.html,1628,Death Note Box Set +3.85,598,0743484878,good_reads:book,https://www.goodreads.com/author/show/947.William_Shakespeare,1600,/genres/classics|/genres/plays|/genres/drama|/genres/fiction|/genres/historical-fiction|/genres/literature|/genres/plays|/genres/theatre|/genres/poetry|/genres/academic|/genres/school|/genres/european-literature|/genres/british-literature,dir27/37526.Henry_V.html,23070,Henry V +4.41,2535,1595143211,good_reads:book,https://www.goodreads.com/author/show/137902.Richelle_Mead,2014,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy,dir27/8709524-silver-shadows.html,15372,"Silver Shadows (Bloodlines, #5)" +3.88,771,0751504386,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1979,/genres/horror|/genres/fiction|/genres/short-stories|/genres/fantasy|/genres/thriller|/genres/anthologies|/genres/fantasy|/genres/supernatural|/genres/literature|/genres/american|/genres/science-fiction|/genres/suspense,dir27/13440.Skeleton_Crew.html,65607,Skeleton Crew +3.79,1304,,good_reads:book,https://www.goodreads.com/author/show/1633682._,2007,/genres/novels|/genres/mystery|/genres/crime|/genres/fiction|/genres/cultural|/genres/egypt|/genres/literature|/genres/suspense|/genres/drama|/genres/thriller|/genres/romance|/genres/mystery,dir27/3831279.html,17132,ڤيرتيجو +3.67,49,1937929957,good_reads:book,https://www.goodreads.com/author/show/5130924.Michael_West,2012,/genres/fantasy|/genres/horror|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/mermaids|/genres/mythology|/genres/greek-mythology|/genres/paranormal|/genres/shapeshifters|/genres/young-adult,dir27/13062645-poseidon-s-children.html,187,"Poseidon’s Children (The Legacy of the Gods, #1)" +3.87,1285,0679728740,good_reads:book,https://www.goodreads.com/author/show/4178.Cormac_McCarthy,1973,/genres/fiction|/genres/horror|/genres/literature|/genres/gothic|/genres/southern-gothic|/genres/novels|/genres/literature|/genres/american|/genres/mystery|/genres/crime|/genres/contemporary|/genres/american|/genres/southern|/genres/literary-fiction,dir27/293625.Child_of_God.html,13555,Child of God +4.06,1331,1416949658,good_reads:book,https://www.goodreads.com/author/show/7308.Susan_Cooper,1973,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/adventure|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/childrens|/genres/middle-grade|/genres/classics|/genres/childrens|/genres/juvenile,dir27/210329.The_Dark_is_Rising.html,31296,"The Dark is Rising (The Dark is Rising, #2)" +3.81,4613,0446407410,good_reads:book,https://www.goodreads.com/author/show/1899600.Vicki_Myron,2008,/genres/non-fiction|/genres/animals|/genres/autobiography|/genres/memoir|/genres/biography|/genres/animals|/genres/cats|/genres/adult|/genres/biography-memoir|/genres/book-club|/genres/contemporary|/genres/inspirational,dir27/3257136-dewey.html,33599,Dewey +4.18,929,0439656249,good_reads:book,https://www.goodreads.com/author/show/153394.Suzanne_Collins,2005,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/adventure|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/science-fiction-fantasy|/genres/young-adult|/genres/young-adult-fantasy|/genres/action,dir27/385706.Gregor_and_the_Curse_of_the_Warmbloods.html,25276,"Gregor and the Curse of the Warmbloods (Underland Chronicles, #3)" +4.43,7082,0618640150,good_reads:book,https://www.goodreads.com/author/show/656983.J_R_R_Tolkien,1954,/genres/fantasy|/genres/classics|/genres/fiction|/genres/science-fiction-fantasy|/genres/adventure|/genres/fantasy|/genres/epic-fantasy|/genres/literature|/genres/young-adult|/genres/novels|/genres/fantasy|/genres/high-fantasy,dir27/33.The_Lord_of_the_Rings.html,295058,"The Lord of the Rings (The Lord of the Rings, #1-3)" +3.74,1971,0439324599,good_reads:book,https://www.goodreads.com/author/show/26250.Patricia_McCormick,2000,/genres/young-adult|/genres/fiction|/genres/realistic-fiction|/genres/mental-health|/genres/mental-illness|/genres/psychology|/genres/young-adult|/genres/teen|/genres/contemporary|/genres/health|/genres/mental-health|/genres/young-adult|/genres/high-school|/genres/drama,dir27/662597.Cut.html,37037,Cut +4.12,3005,0545132053,good_reads:book,https://www.goodreads.com/author/show/21618.Raina_Telgemeier,2009,/genres/sequential-art|/genres/graphic-novels|/genres/young-adult|/genres/realistic-fiction|/genres/sequential-art|/genres/comics|/genres/childrens|/genres/middle-grade|/genres/young-adult|/genres/teen|/genres/childrens|/genres/humor,dir27/6393631-smile.html,35555,"Smile (Smile, #1)" +4.25,4361,,good_reads:book,https://www.goodreads.com/author/show/6422281.Tara_Sivec,2012,/genres/romance|/genres/humor|/genres/funny|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/humor|/genres/adult|/genres/new-adult|/genres/adult-fiction|/genres/erotica|/genres/humor|/genres/comedy,dir27/15704001-seduction-and-snacks.html,30833,"Seduction and Snacks (Chocolate Lovers, #1)" +4.04,1033,849759388X,good_reads:book,https://www.goodreads.com/author/show/2238.Isabel_Allende,1994,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/biography|/genres/european-literature|/genres/spanish-literature|/genres/book-club|/genres/biography-memoir,dir28/24790.Paula.html,16190,Paula +3.92,1449,0316058432,good_reads:book,https://www.goodreads.com/author/show/34660.Richard_Atwater,1938,/genres/childrens|/genres/fiction|/genres/classics|/genres/animals|/genres/young-adult|/genres/childrens|/genres/juvenile|/genres/humor|/genres/childrens|/genres/chapter-books|/genres/fantasy|/genres/childrens|/genres/middle-grade,dir28/61549.Mr_Popper_s_Penguins.html,34449,Mr. Popper's Penguins +3.81,724,0738703915,good_reads:book,https://www.goodreads.com/author/show/58846.Laurie_Faria_Stolarz,2003,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/mystery|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/fiction|/genres/young-adult|/genres/teen,dir28/477338.Blue_is_for_Nightmares.html,12974,"Blue is for Nightmares (Blue is for Nightmares, #1)" +3.92,1318,1461052149,good_reads:book,https://www.goodreads.com/author/show/4601855.Jessica_Sorensen,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/paranormal|/genres/vampires|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/fiction|/genres/fantasy|/genres/urban-fantasy,dir28/11051889-the-fallen-star.html,18080,"The Fallen Star (Fallen Star, #1)" +4.47,2292,,good_reads:book,https://www.goodreads.com/author/show/2958084.Kristen_Ashley,2012,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/adult-fiction|/genres/erotica|/genres/adult|/genres/romance|/genres/romantic-suspense|/genres/suspense|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/erotic-romance|/genres/action,dir28/13448656-motorcycle-man.html,28543,"Motorcycle Man (Dream Man, #4)" +3.82,3193,1937044963,good_reads:book,https://www.goodreads.com/author/show/2965489.Jennifer_Probst,2012,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/adult|/genres/womens-fiction|/genres/chick-lit|/genres/adult-fiction|/genres/erotica|/genres/fiction|/genres/new-adult|/genres/love|/genres/humor|/genres/funny,dir28/13486122-the-marriage-bargain.html,75073,"The Marriage Bargain (Marriage to a Billionaire, #1)" +4.01,852,1907411216,good_reads:book,https://www.goodreads.com/author/show/5430378.C_J_Daugherty,2012,/genres/young-adult|/genres/mystery|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/thriller|/genres/school-stories|/genres/boarding-school|/genres/fiction|/genres/contemporary,dir28/12576579-night-school.html,6008,"Night School (Night School, #1)" +4.44,727,0316187712,good_reads:book,https://www.goodreads.com/author/show/2063919.Michael_J_Sullivan,2012,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/high-fantasy,dir28/11100431-heir-of-novron.html,11806,"Heir of Novron (The Riyria Revelations, #5-6)" +3.70,211,0553299611,good_reads:book,https://www.goodreads.com/author/show/401.Robert_M_Pirsig,1991,/genres/philosophy|/genres/fiction|/genres/literature|/genres/spirituality|/genres/novels|/genres/philosophy|/genres/metaphysics|/genres/psychology|/genres/literature|/genres/20th-century|/genres/united-states|/genres/contemporary,dir28/31093.Lila.html,3722,Lila +4.13,1388,0060887397,good_reads:book,https://www.goodreads.com/author/show/93970.Sara_Shepard,2008,/genres/young-adult|/genres/mystery|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/contemporary|/genres/young-adult|/genres/teen,dir28/1537534.Unbelievable.html,36928,"Unbelievable (Pretty Little Liars, #4)" +3.95,1123,0778325644,good_reads:book,https://www.goodreads.com/author/show/445303.Maria_V_Snyder,2009,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/romance|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/adventure|/genres/fantasy|/genres/high-fantasy,dir28/6080889-storm-glass.html,14275,"Storm Glass (Glass, #1)" +3.69,541,0140437428,good_reads:book,https://www.goodreads.com/author/show/239579.Charles_Dickens,1841,/genres/classics|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/historical-fiction|/genres/classics|/genres/classic-literature|/genres/novels|/genres/fiction|/genres/literature|/genres/english-literature|/genres/literature|/genres/19th-century|/genres/adult-fiction,dir28/429024.The_Old_Curiosity_Shop.html,7572,The Old Curiosity Shop +3.77,2031,0385338708,good_reads:book,https://www.goodreads.com/author/show/6160.Sophie_Kinsella,2007,/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/romance|/genres/humor|/genres/contemporary|/genres/adult|/genres/humor|/genres/funny|/genres/adult-fiction|/genres/humor|/genres/comedy|/genres/romance|/genres/contemporary-romance,dir28/9420.Shopaholic_Baby.html,75809,"Shopaholic & Baby (Shopaholic, #5)" +4.12,138,0679724621,good_reads:book,https://www.goodreads.com/author/show/1938.Friedrich_Nietzsche,1908,/genres/philosophy|/genres/non-fiction|/genres/classics|/genres/european-literature|/genres/german-literature|/genres/philosophy|/genres/theory|/genres/academic|/genres/school|/genres/academic|/genres/college|/genres/religion|/genres/history|/genres/cultural|/genres/germany,dir28/132626.On_the_Genealogy_of_Morals_Ecce_Homo.html,9234,On the Genealogy of Morals/Ecce Homo +4.30,2013,,good_reads:book,https://www.goodreads.com/author/show/2958084.Kristen_Ashley,2011,/genres/romance|/genres/contemporary-romance|/genres/romance|/genres/adult|/genres/romance|/genres/romantic-suspense|/genres/mystery|/genres/womens-fiction|/genres/chick-lit|/genres/adult-fiction|/genres/erotica|/genres/suspense|/genres/contemporary|/genres/humor|/genres/funny,dir28/11227041-the-gamble.html,27731,"The Gamble (Colorado Mountain, #1)" +3.86,3692,0062001035,good_reads:book,https://www.goodreads.com/author/show/386042.Heather_Dixon,2011,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/fairy-tales|/genres/romance|/genres/fantasy|/genres/magic|/genres/retellings|/genres/fiction|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/paranormal|/genres/historical-fiction,dir28/8428195-entwined.html,21988,Entwined +4.35,906,0312992432,good_reads:book,https://www.goodreads.com/author/show/4430.Sherrilyn_Kenyon,2004,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/fantasy|/genres/mythology,dir28/869924.Seize_the_Night.html,29619,"Seize the Night (Dark-Hunter, #5)" +4.14,931,0156421178,good_reads:book,https://www.goodreads.com/author/show/3706.George_Orwell,1938,/genres/history|/genres/non-fiction|/genres/politics|/genres/classics|/genres/autobiography|/genres/memoir|/genres/cultural|/genres/spain|/genres/war|/genres/biography|/genres/literature|/genres/biography|/genres/autobiography,dir28/9646.Homage_to_Catalonia.html,15356,Homage to Catalonia +3.84,1004,0316734837,good_reads:book,https://www.goodreads.com/author/show/3530.Anita_Shreve,1999,/genres/fiction|/genres/historical-fiction|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/book-club|/genres/contemporary|/genres/adult-fiction|/genres/novels|/genres/adult|/genres/drama,dir28/89399.Fortune_s_Rocks.html,19508,Fortune's Rocks +4.10,979,,good_reads:book,https://www.goodreads.com/author/show/5816.Darren_Shan,2000,/genres/young-adult|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/horror|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/adventure|/genres/fantasy|/genres/urban-fantasy,dir28/8965.The_Vampire_s_Assistant.html,24745,"The Vampire's Assistant (Cirque Du Freak, #2)" +4.32,646,0061240885,good_reads:book,https://www.goodreads.com/author/show/165168.Derek_Landy,2008,/genres/fantasy|/genres/young-adult|/genres/adventure|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/mystery|/genres/fiction|/genres/humor|/genres/childrens|/genres/fantasy|/genres/paranormal,dir28/2157243.Playing_with_Fire.html,11064,"Playing with Fire (Skulduggery Pleasant, #2)" +4.07,2554,,good_reads:book,https://www.goodreads.com/author/show/4887264.Nicole_Williams,2012,/genres/romance|/genres/young-adult|/genres/new-adult|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/high-school|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/young-adult|/genres/young-adult-romance|/genres/sports-and-games|/genres/sports,dir28/15757434-crash.html,40105,"Crash (Crash, #1)" +4.04,980,0310226058,good_reads:book,https://www.goodreads.com/author/show/639.Lee_Strobel,1988,/genres/christian|/genres/non-fiction|/genres/religion|/genres/religion|/genres/christianity|/genres/religion|/genres/theology|/genres/religion|/genres/faith|/genres/spirituality|/genres/philosophy|/genres/history|/genres/inspirational,dir28/73186.The_Case_for_Christ.html,44618,The Case for Christ +3.40,1133,0393924769,good_reads:book,https://www.goodreads.com/author/show/7799.Nathaniel_Hawthorne,1851,/genres/classics|/genres/fiction|/genres/gothic|/genres/literature|/genres/historical-fiction|/genres/literature|/genres/american|/genres/horror|/genres/classics|/genres/classic-literature|/genres/literature|/genres/19th-century|/genres/novels,dir28/90192.The_House_of_the_Seven_Gables.html,19848,The House of the Seven Gables +4.53,2369,045146317X,good_reads:book,https://www.goodreads.com/author/show/10746.Jim_Butcher,2010,/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/mystery|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/science-fiction-fantasy|/genres/paranormal|/genres/wizards,dir28/6585201-changes.html,44016,"Changes (The Dresden Files, #12)" +3.70,838,067978148X,good_reads:book,https://www.goodreads.com/author/show/2751.Bret_Easton_Ellis,1987,/genres/fiction|/genres/contemporary|/genres/novels|/genres/literature|/genres/literature|/genres/american|/genres/thriller|/genres/dark|/genres/adult|/genres/glbt|/genres/modern,dir28/9912.The_Rules_of_Attraction.html,24828,The Rules of Attraction +4.22,903,0316123358,good_reads:book,https://www.goodreads.com/author/show/276660.Joe_Abercrombie,2011,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/dark-fantasy|/genres/war,dir28/9300768-the-heroes.html,15889,The Heroes +3.91,892,0439680093,good_reads:book,https://www.goodreads.com/author/show/32590.Anthony_Horowitz,2005,/genres/fantasy|/genres/young-adult|/genres/horror|/genres/fantasy|/genres/paranormal|/genres/adventure|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/mystery|/genres/fantasy|/genres/magic|/genres/thriller,dir28/107664.Raven_s_Gate.html,14713,"Raven's Gate (The Gatekeepers, #1)" +3.71,1838,0374349460,good_reads:book,https://www.goodreads.com/author/show/40593.Gabrielle_Zevin,2007,/genres/young-adult|/genres/contemporary|/genres/romance|/genres/realistic-fiction|/genres/fiction|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/high-school|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/coming-of-age|/genres/drama,dir28/317282.Memoirs_of_a_Teenage_Amnesiac.html,23088,Memoirs of a Teenage Amnesiac +4.22,225,0553328298,good_reads:book,https://www.goodreads.com/author/show/861.Jean_M_Auel,1986,/genres/fiction|/genres/historical-fiction|/genres/fantasy|/genres/adventure|/genres/romance|/genres/historical-romance|/genres/science-fiction|/genres/classics|/genres/novels|/genres/contemporary|/genres/anthropology,dir28/74341.The_Clan_of_the_Cave_Bear_the_Valley_of_Horses_the_Mammoth_Hunters_the_Plains_of_Passage.html,3733,"The Clan of the Cave Bear, the Valley of Horses, the Mammoth Hunters, the Plains of Passage (Earth's Children, #1-4)" +3.82,2030,0060842350,good_reads:book,https://www.goodreads.com/author/show/16218.Christopher_Moore,2004,/genres/humor|/genres/fiction|/genres/fantasy|/genres/holiday|/genres/christmas|/genres/humor|/genres/comedy|/genres/book-club|/genres/horror|/genres/horror|/genres/zombies|/genres/humor|/genres/funny|/genres/holiday,dir28/74731.The_Stupidest_Angel.html,27156,The Stupidest Angel +4.12,489,0061671355,good_reads:book,https://www.goodreads.com/author/show/50873.L_J_Smith,2009,/genres/young-adult|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/urban-fantasy,dir28/3665811-the-secret-circle.html,13483,"The Secret Circle (The Secret Circle, #2-3)" +4.40,986,188896314X,good_reads:book,https://www.goodreads.com/author/show/5951.Jeff_Smith,1991,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fantasy|/genres/fiction|/genres/graphic-novels-comics|/genres/comics|/genres/comic-book|/genres/adventure|/genres/young-adult|/genres/humor|/genres/childrens,dir28/92143.Bone.html,20866,Bone +4.31,10654,0142000655,good_reads:book,https://www.goodreads.com/author/show/585.John_Steinbeck,1952,/genres/classics|/genres/fiction|/genres/literature|/genres/historical-fiction|/genres/book-club|/genres/novels|/genres/literature|/genres/american,dir28/4406.East_of_Eden.html,242952,East of Eden +4.08,5095,0192833987,good_reads:book,https://www.goodreads.com/author/show/128382.Leo_Tolstoy,1869,,dir28/656.War_and_Peace.html,117775,War and Peace +3.68,1039,,good_reads:book,https://www.goodreads.com/author/show/800588.Ravinder_Singh,2007,/genres/romance|/genres/asian-literature|/genres/indian-literature|/genres/love|/genres/romantic|/genres/fiction|/genres/romance|/genres/love-story,dir28/7105461-i-too-had-a-love-story.html,16932,I Too Had A Love Story.. +3.97,1510,0609807900,good_reads:book,https://www.goodreads.com/author/show/79922.Megan_McCafferty,2001,/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/contemporary|/genres/romance|/genres/young-adult|/genres/teen|/genres/realistic-fiction|/genres/humor|/genres/young-adult|/genres/high-school|/genres/humor|/genres/funny,dir28/138202.Sloppy_Firsts.html,25569,"Sloppy Firsts (Jessica Darling, #1)" +4.32,1265,0312624689,good_reads:book,https://www.goodreads.com/author/show/4154802.C_C_Hunter,2011,/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/young-adult|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/ghosts|/genres/paranormal|/genres/fairies,dir28/10800916-awake-at-dawn.html,32299,"Awake at Dawn (Shadow Falls, #2)" +4.17,473,0553384031,good_reads:book,https://www.goodreads.com/author/show/338705.Catherynne_M_Valente,2006,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/fairy-tales|/genres/short-stories|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/mythology|/genres/science-fiction-fantasy|/genres/speculative-fiction|/genres/science-fiction|/genres/steampunk,dir28/202769.In_the_Night_Garden.html,3203,"In the Night Garden (The Orphan's Tales, #1)" +4.17,1810,1423147952,good_reads:book,https://www.goodreads.com/author/show/56224.Ally_Carter,2011,/genres/young-adult|/genres/mystery|/genres/contemporary|/genres/romance|/genres/adventure|/genres/fiction|/genres/young-adult|/genres/teen|/genres/womens-fiction|/genres/chick-lit|/genres/mystery|/genres/crime|/genres/realistic-fiction,dir28/10327303-uncommon-criminals.html,25478,"Uncommon Criminals (Heist Society, #2)" +3.90,3156,076791936X,good_reads:book,https://www.goodreads.com/author/show/7.Bill_Bryson,2006,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/biography|/genres/humor|/genres/book-club|/genres/biography|/genres/autobiography|/genres/biography-memoir|/genres/history|/genres/humor|/genres/funny|/genres/travel,dir28/10538.The_Life_and_Times_of_the_Thunderbolt_Kid.html,32797,The Life and Times of the Thunderbolt Kid +4.24,2894,,good_reads:book,https://www.goodreads.com/author/show/4838933.Samantha_Towle,2012,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/new-adult|/genres/contemporary|/genres/adult|/genres/music|/genres/adult-fiction|/genres/erotica,dir28/15724654-the-mighty-storm.html,46798,"The Mighty Storm (The Storm, #1)" +4.26,257,0060827629,good_reads:book,https://www.goodreads.com/author/show/27498.Erin_Hunter,2005,/genres/fantasy|/genres/animals|/genres/young-adult|/genres/fiction|/genres/animals|/genres/cats|/genres/adventure|/genres/childrens,dir28/273512.Starlight.html,11384,"Starlight (Warriors: The New Prophecy, #4)" +3.78,1155,0451167805,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1980,/genres/horror|/genres/thriller|/genres/science-fiction|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/suspense|/genres/adult|/genres/novels|/genres/adult-fiction,dir28/233667.Firestarter.html,103365,Firestarter +3.56,1400,0440442508,good_reads:book,https://www.goodreads.com/author/show/99849.Esther_Forbes,1943,/genres/historical-fiction|/genres/fiction|/genres/classics|/genres/young-adult|/genres/childrens|/genres/academic|/genres/school|/genres/war|/genres/academic|/genres/read-for-school|/genres/adventure|/genres/childrens|/genres/juvenile,dir28/816870.Johnny_Tremain.html,23973,Johnny Tremain +4.11,312,0441001866,good_reads:book,https://www.goodreads.com/author/show/5329.Brian_Jacques,1993,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/animals|/genres/adventure|/genres/science-fiction-fantasy|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/middle-grade|/genres/novels,dir28/201345.Martin_the_Warrior.html,25550,"Martin the Warrior (Redwall, #6)" +3.97,6037,0061992704,good_reads:book,https://www.goodreads.com/author/show/3406353.Justin_Halpern,2010,/genres/humor|/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/humor|/genres/comedy|/genres/humor|/genres/funny|/genres/biography|/genres/adult|/genres/biography|/genres/autobiography|/genres/family|/genres/book-club,dir28/7821447-sh-t-my-dad-says.html,75753,Sh*t My Dad Says +4.13,2458,1442402326,good_reads:book,https://www.goodreads.com/author/show/72451.Jonathan_Maberry,2010,/genres/horror|/genres/zombies|/genres/young-adult|/genres/horror|/genres/science-fiction|/genres/dystopia|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fantasy|/genres/fiction|/genres/science-fiction|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/teen,dir28/7157310-rot-and-ruin.html,18400,"Rot and Ruin (Benny Imura, #1)" +3.78,16631,0316206846,good_reads:book,https://www.goodreads.com/author/show/383606.Robert_Galbraith,2013,/genres/mystery|/genres/fiction|/genres/mystery|/genres/crime|/genres/book-club|/genres/adult|/genres/thriller|/genres/thriller|/genres/mystery-thriller|/genres/contemporary|/genres/adult-fiction|/genres/mystery|/genres/detective,dir28/16160797-the-cuckoo-s-calling.html,137464,"The Cuckoo's Calling (Cormoran Strike, #1)" +4.00,660,,good_reads:book,https://www.goodreads.com/author/show/4764.Philip_K_Dick,1965,/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/speculative-fiction|/genres/novels|/genres/science-fiction|/genres/dystopia,dir28/14185.The_Three_Stigmata_of_Palmer_Eldritch.html,14953,The Three Stigmata of Palmer Eldritch +3.81,290,0060815701,good_reads:book,https://www.goodreads.com/author/show/15890.Trudi_Canavan,2005,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/young-adult|/genres/science-fiction-fantasy|/genres/romance|/genres/adventure|/genres/european-literature|/genres/german-literature,dir28/28248.Priestess_of_the_White.html,8662,"Priestess of the White (Age of the Five, #1)" +3.89,1477,0446699489,good_reads:book,https://www.goodreads.com/author/show/9291.David_Baldacci,2000,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/mystery|/genres/thriller|/genres/drama|/genres/adult-fiction|/genres/family|/genres/adult|/genres/american|/genres/southern,dir28/87745.Wish_You_Well.html,11576,Wish You Well +3.66,407,0141439866,good_reads:book,https://www.goodreads.com/author/show/1036615.Charlotte_Bront_,1849,/genres/classics|/genres/fiction|/genres/literature|/genres/19th-century|/genres/romance|/genres/historical-fiction|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/classics|/genres/classic-literature|/genres/novels|/genres/literature|/genres/english-literature,dir28/31168.Shirley.html,14805,Shirley +4.18,2495,0451458443,good_reads:book,https://www.goodreads.com/author/show/10746.Jim_Butcher,2001,/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/mystery|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/supernatural|/genres/science-fiction-fantasy|/genres/paranormal|/genres/wizards,dir28/91476.Grave_Peril.html,68363,Grave Peril (The Dresden Files #3) +4.12,336,0060507772,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,2001,/genres/fantasy|/genres/fiction|/genres/humor|/genres/humor|/genres/comedy|/genres/sequential-art|/genres/graphic-novels|/genres/humor|/genres/funny|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/fantasy|/genres/magic|/genres/sequential-art|/genres/comics,dir28/34503.The_Last_Hero.html,17559,"The Last Hero (Discworld, #27)" +4.33,849,0440237556,good_reads:book,https://www.goodreads.com/author/show/48206.Karen_Marie_Moning,2002,/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/time-travel|/genres/romance|/genres/historical-romance|/genres/fantasy|/genres/fairies|/genres/fae|/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/scotland,dir28/112755.The_Dark_Highlander.html,21857,"The Dark Highlander (Highlander, #5)" +4.51,1405,1423144333,good_reads:book,https://www.goodreads.com/author/show/125308.Cinda_Williams_Chima,2012,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/romance|/genres/fantasy|/genres/high-fantasy|/genres/young-adult|/genres/young-adult-fantasy|/genres/adventure|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/paranormal|/genres/wizards,dir28/8069828-the-crimson-crown.html,14103,"The Crimson Crown (Seven Realms, #4)" +4.28,1538,,good_reads:book,https://www.goodreads.com/author/show/4872191.Abbi_Glines,2012,/genres/new-adult|/genres/romance|/genres/contemporary|/genres/young-adult|/genres/romance|/genres/contemporary-romance|/genres/academic|/genres/college|/genres/womens-fiction|/genres/chick-lit,dir28/15778138-just-for-now.html,30545,"Just for Now (Sea Breeze, #4)" +4.21,586,1595143920,good_reads:book,https://www.goodreads.com/author/show/3408349.Lili_St_Crow,2011,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/shapeshifters,dir28/8835897-defiance.html,14525,"Defiance (Strange Angels, #4)" +4.15,1763,0330371231,good_reads:book,https://www.goodreads.com/author/show/2384.Janet_Evanovich,1999,/genres/mystery|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/humor|/genres/romance|/genres/mystery|/genres/crime|/genres/humor|/genres/funny|/genres/humor|/genres/comedy|/genres/thriller|/genres/mystery-thriller|/genres/adult,dir28/6423.High_Five.html,78412,"High Five (Stephanie Plum, #5)" +4.52,186,0060734191,good_reads:book,https://www.goodreads.com/author/show/8347.Garth_Nix,1999,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/science-fiction|/genres/young-adult|/genres/teen|/genres/adventure|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/epic-fantasy,dir28/47615.The_Abhorsen_Trilogy_Box_Set.html,5024,"The Abhorsen Trilogy Box Set (Abhorsen, #1-3)" +4.05,4894,0965904830,good_reads:book,https://www.goodreads.com/author/show/2849.David_Sedaris,2004,/genres/humor|/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/writing|/genres/essays|/genres/short-stories|/genres/humor|/genres/comedy|/genres/humor|/genres/funny|/genres/biography|/genres/biography-memoir|/genres/book-club,dir28/10176.Dress_Your_Family_in_Corduroy_and_Denim.html,153578,Dress Your Family in Corduroy and Denim +4.38,243,0312335288,good_reads:book,https://www.goodreads.com/author/show/18062.James_Herriot,1976,/genres/non-fiction|/genres/animals|/genres/biography|/genres/autobiography|/genres/memoir|/genres/humor|/genres/classics|/genres/biography|/genres/autobiography|/genres/biography-memoir|/genres/european-literature|/genres/british-literature|/genres/short-stories,dir28/42909.All_Things_Wise_and_Wonderful.html,16028,All Things Wise and Wonderful +4.08,1573,1423108760,good_reads:book,https://www.goodreads.com/author/show/1562974.Katie_Alender,2009,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/horror|/genres/fantasy|/genres/mystery|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/ghosts|/genres/fiction|/genres/romance|/genres/young-adult|/genres/teen,dir28/3678651-bad-girls-don-t-die.html,14957,"Bad Girls Don't Die (Bad Girls Don't Die, #1)" +3.85,416,009949857X,good_reads:book,https://www.goodreads.com/author/show/3532.Maeve_Binchy,1982,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/cultural|/genres/ireland|/genres/historical-fiction|/genres/european-literature|/genres/irish-literature|/genres/novels|/genres/adult-fiction|/genres/contemporary|/genres/womens-fiction|/genres/european-literature|/genres/british-literature,dir28/41962.Light_a_Penny_Candle.html,11253,Light a Penny Candle +3.79,3617,0316010707,good_reads:book,https://www.goodreads.com/author/show/10015.Kate_Atkinson,2004,/genres/mystery|/genres/fiction|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery-thriller|/genres/book-club|/genres/european-literature|/genres/british-literature|/genres/thriller|/genres/contemporary|/genres/mystery|/genres/detective|/genres/adult,dir28/16243.Case_Histories.html,38964,"Case Histories (Jackson Brodie, #1)" +3.91,455,0141439734,good_reads:book,https://www.goodreads.com/author/show/854076.Robert_Louis_Stevenson,1886,/genres/classics|/genres/horror|/genres/fiction|/genres/gothic|/genres/science-fiction|/genres/literature|/genres/fantasy|/genres/mystery|/genres/short-stories|/genres/literature|/genres/19th-century,dir28/51497.The_Strange_Case_of_Dr_Jekyll_and_Mr_Hyde_and_Other_Tales_of_Terror.html,58386,The Strange Case of Dr. Jekyll and Mr. Hyde and Other Tales of Terror +3.89,688,0425217248,good_reads:book,https://www.goodreads.com/author/show/9550.Laurell_K_Hamilton,2002,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/horror|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/adult-fiction|/genres/erotica,dir28/30225.The_Harlequin.html,30584,"The Harlequin (Anita Blake, Vampire Hunter #15)" +3.83,845,1400079292,good_reads:book,https://www.goodreads.com/author/show/42540.John_Twelve_Hawks,2005,/genres/fantasy|/genres/fiction|/genres/science-fiction|/genres/thriller|/genres/science-fiction|/genres/dystopia|/genres/science-fiction-fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adventure|/genres/book-club|/genres/fantasy|/genres/paranormal,dir28/80754.The_Traveler.html,7511,"The Traveler (Fourth Realm, #1)" +3.88,4219,0375866590,good_reads:book,https://www.goodreads.com/author/show/13139.Rachel_Cohn,2010,/genres/young-adult|/genres/contemporary|/genres/romance|/genres/humor|/genres/funny|/genres/fiction,dir28/7741325-dash-lily-s-book-of-dares.html,42464,Dash & Lily's Book of Dares +3.44,1917,0545142997,good_reads:book,https://www.goodreads.com/author/show/347385.Rachel_Ward,2008,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/supernatural|/genres/thriller,dir28/6609758-numbers.html,13701,"Numbers (Numbers, #1)" +3.92,400,009959241X,good_reads:book,https://www.goodreads.com/author/show/3299.Salman_Rushdie,1995,/genres/fiction|/genres/cultural|/genres/india|/genres/literature|/genres/magical-realism|/genres/asian-literature|/genres/indian-literature|/genres/contemporary|/genres/novels|/genres/historical-fiction|/genres/literary-fiction|/genres/fantasy,dir28/9865.The_Moor_s_Last_Sigh.html,8231,The Moor's Last Sigh +3.65,2057,0061015733,good_reads:book,https://www.goodreads.com/author/show/5194.Michael_Crichton,2004,/genres/fiction|/genres/thriller|/genres/science-fiction|/genres/mystery|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/adventure|/genres/novels,dir28/15860.State_of_Fear.html,52252,State of Fear +4.31,378,0441018238,good_reads:book,https://www.goodreads.com/author/show/17061.Charlaine_Harris,2009,/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/paranormal|/genres/mystery|/genres/adult,dir28/6288362-sookie-stackhouse-8-volume-set.html,5967,"Sookie Stackhouse 8 Volume Set (Sookie Stackhouse, #1-8)" +3.89,14322,0307341569,good_reads:book,https://www.goodreads.com/author/show/2383.Gillian_Flynn,2009,/genres/mystery|/genres/fiction|/genres/book-club|/genres/thriller|/genres/mystery-thriller|/genres/thriller|/genres/adult-fiction|/genres/mystery|/genres/crime,dir28/5886881-dark-places.html,131240,Dark Places +4.25,2932,1416995587,good_reads:book,https://www.goodreads.com/author/show/151371.Jenny_Han,2011,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/fiction|/genres/young-adult|/genres/young-adult-contemporary|/genres/young-adult|/genres/young-adult-romance|/genres/love,dir28/8680278-we-ll-always-have-summer.html,41718,"We'll Always Have Summer (Summer, #3)" +3.73,648,,good_reads:book,https://www.goodreads.com/author/show/1530940.Ella_James,2013,/genres/romance|/genres/new-adult|/genres/adult-fiction|/genres/erotica|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/adult|/genres/erotica|/genres/bdsm|/genres/romance|/genres/romantic-suspense|/genres/mystery|/genres/romance|/genres/erotic-romance,dir28/18516961-selling-scarlett.html,5061,"Selling Scarlett (Love Inc., #1)" +3.63,833,0064472795,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2000,/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/fiction|/genres/young-adult|/genres/teen|/genres/contemporary|/genres/childrens|/genres/realistic-fiction|/genres/humor|/genres/young-adult|/genres/high-school,dir28/439275.Princess_in_the_Spotlight.html,32879,"Princess in the Spotlight (The Princess Diaries, #2)" +3.76,3248,0375835318,good_reads:book,https://www.goodreads.com/author/show/13139.Rachel_Cohn,2005,/genres/young-adult|/genres/romance|/genres/fiction|/genres/contemporary|/genres/music|/genres/young-adult|/genres/teen|/genres/realistic-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/humor|/genres/young-adult|/genres/young-adult-contemporary,dir28/25373.Nick_Norah_s_Infinite_Playlist.html,51889,Nick & Norah's Infinite Playlist +4.43,232,0375407936,good_reads:book,https://www.goodreads.com/author/show/4178.Cormac_McCarthy,1994,/genres/fiction|/genres/literature|/genres/western|/genres/novels|/genres/literature|/genres/american|/genres/historical-fiction|/genres/classics|/genres/contemporary|/genres/literary-fiction|/genres/literature|/genres/20th-century,dir28/6163.The_Border_Trilogy.html,3509,The Border Trilogy +4.40,453,0007302142,good_reads:book,https://www.goodreads.com/author/show/165168.Derek_Landy,2008,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/adventure|/genres/fiction|/genres/mystery|/genres/fantasy|/genres/paranormal|/genres/horror|/genres/humor,dir28/4893390-the-faceless-ones.html,10017,"The Faceless Ones (Skulduggery Pleasant, #3)" +3.91,1039,0060773758,good_reads:book,https://www.goodreads.com/author/show/17059.Lynsay_Sands,2005,/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/adult|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/contemporary,dir28/38568.A_Quick_Bite.html,23959,A Quick Bite (Argeneau #1) +4.04,1735,0307381463,good_reads:book,https://www.goodreads.com/author/show/269069.Michelle_Moran,2007,/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/egypt|/genres/book-club|/genres/romance|/genres/cultural|/genres/africa|/genres/adult|/genres/african-literature|/genres/egyptian-literature|/genres/adult-fiction|/genres/romance|/genres/historical-romance,dir28/481446.Nefertiti.html,19031,Nefertiti +3.94,2842,0803731531,good_reads:book,https://www.goodreads.com/author/show/24818.Frank_Beddor,2004,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/adventure|/genres/science-fiction|/genres/steampunk|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/fairy-tales|/genres/retellings|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/young-adult-fantasy,dir28/44170.The_Looking_Glass_Wars.html,28310,"The Looking Glass Wars (The Looking Glass Wars, #1)" +3.96,896,0843955430,good_reads:book,https://www.goodreads.com/author/show/90070.Jack_Ketchum,1989,/genres/horror|/genres/fiction|/genres/thriller|/genres/mystery|/genres/crime|/genres/crime|/genres/true-crime|/genres/mystery|/genres/sociology|/genres/abuse|/genres/suspense,dir28/179735.The_Girl_Next_Door.html,9773,The Girl Next Door +3.55,765,0060880120,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2006,/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/contemporary|/genres/fiction|/genres/young-adult|/genres/teen|/genres/realistic-fiction|/genres/young-adult|/genres/high-school|/genres/humor|/genres/humor|/genres/funny,dir28/23221.How_to_Be_Popular.html,16195,How to Be Popular +3.39,1928,1400031699,good_reads:book,https://www.goodreads.com/author/show/8719.Donna_Tartt,2002,/genres/fiction|/genres/mystery|/genres/contemporary|/genres/literary-fiction|/genres/mystery|/genres/crime|/genres/literature|/genres/novels|/genres/american|/genres/southern|/genres/literature|/genres/american|/genres/thriller|/genres/mystery-thriller,dir28/775346.The_Little_Friend.html,18969,The Little Friend +4.30,481,031604086X,good_reads:book,https://www.goodreads.com/author/show/543080.Pseudonymous_Bosch,2009,/genres/mystery|/genres/fantasy|/genres/adventure|/genres/fiction|/genres/childrens|/genres/young-adult|/genres/childrens|/genres/middle-grade|/genres/humor|/genres/humor|/genres/funny|/genres/humor|/genres/comedy,dir28/6464094-this-book-is-not-good-for-you.html,11647,"This Book Is Not Good for You (Secret, #3)" +3.95,1990,0646418432,good_reads:book,https://www.goodreads.com/author/show/123715.Agatha_Christie,1920,/genres/mystery|/genres/fiction|/genres/mystery|/genres/crime|/genres/classics|/genres/mystery|/genres/detective|/genres/thriller|/genres/mystery-thriller,dir28/16343.The_Mysterious_Affair_at_Styles.html,85558,The Mysterious Affair at Styles (Hercule Poirot #1) +3.90,1596,0786854448,good_reads:book,https://www.goodreads.com/author/show/6244.Ridley_Pearson,2005,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/adventure|/genres/mystery|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/science-fiction|/genres/fantasy|/genres/magic|/genres/childrens|/genres/juvenile,dir28/953260.Disney_after_Dark.html,13479,"Disney after Dark (Kingdom Keepers, #1)" +3.90,829,0060898488,good_reads:book,https://www.goodreads.com/author/show/2238.Isabel_Allende,2000,/genres/fiction|/genres/historical-fiction|/genres/novels|/genres/romance|/genres/cultural|/genres/latin-american|/genres/literature|/genres/european-literature|/genres/spanish-literature|/genres/book-club|/genres/adult-fiction|/genres/womens,dir28/85987.Portrait_in_Sepia.html,18498,Portrait in Sepia +4.07,550,0307021343,good_reads:book,https://www.goodreads.com/author/show/67939.Janette_Sebring_Lowrey,1942,/genres/childrens|/genres/childrens|/genres/picture-books|/genres/fiction|/genres/classics|/genres/animals|/genres/kids,dir28/505304.The_Poky_Little_Puppy.html,51696,The Poky Little Puppy +4.24,268,0140436065,good_reads:book,https://www.goodreads.com/author/show/3565.Oscar_Wilde,1895,/genres/classics|/genres/plays|/genres/drama|/genres/fiction|/genres/humor|/genres/literature|/genres/plays|/genres/theatre|/genres/literature|/genres/19th-century|/genres/european-literature|/genres/british-literature|/genres/romance,dir28/92308.The_Importance_of_Being_Earnest_and_Other_Plays.html,29542,The Importance of Being Earnest and Other Plays +4.26,800,160096527X,good_reads:book,https://www.goodreads.com/author/show/7014283.G_K_Chesterton,1908,/genres/religion|/genres/theology|/genres/religion|/genres/christian|/genres/religion|/genres/christianity|/genres/non-fiction|/genres/philosophy|/genres/classics|/genres/religion|/genres/faith|/genres/christianity|/genres/catholic|/genres/spirituality,dir28/87665.Orthodoxy.html,13027,Orthodoxy +4.10,7890,1439152802,good_reads:book,https://www.goodreads.com/author/show/615274.Kate_Morton,2010,/genres/historical-fiction|/genres/fiction|/genres/mystery|/genres/book-club|/genres/romance|/genres/adult-fiction|/genres/adult|/genres/european-literature|/genres/british-literature|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit,dir28/13508607-the-secret-keeper.html,53345,The Secret Keeper +3.32,3713,081297235X,good_reads:book,https://www.goodreads.com/author/show/6429.Curtis_Sittenfeld,2005,/genres/fiction|/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/young-adult|/genres/coming-of-age|/genres/adult-fiction|/genres/school-stories|/genres/boarding-school|/genres/adult|/genres/book-club|/genres/novels,dir28/9844.Prep.html,43973,Prep +4.03,392,0553816322,good_reads:book,https://www.goodreads.com/author/show/9550.Laurell_K_Hamilton,2004,/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fairies|/genres/fae|/genres/fiction|/genres/adult-fiction|/genres/erotica|/genres/fantasy|/genres/supernatural|/genres/adult,dir28/30243.Seduced_by_Moonlight.html,24266,"Seduced by Moonlight (Merry Gentry, #3)" +3.75,705,0515139750,good_reads:book,https://www.goodreads.com/author/show/9550.Laurell_K_Hamilton,2004,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/horror|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/adult-fiction|/genres/erotica|/genres/shapeshifters|/genres/werewolves,dir28/30271.Incubus_Dreams.html,33939,"Incubus Dreams (Anita Blake, Vampire Hunter, #12)" +3.49,2121,0425213978,good_reads:book,https://www.goodreads.com/author/show/9343.Kate_Mosse,2005,/genres/historical-fiction|/genres/fiction|/genres/fantasy|/genres/mystery|/genres/thriller|/genres/cultural|/genres/france|/genres/adventure|/genres/adult,dir28/14975.Labyrinth.html,28908,"Labyrinth (Languedoc, #1)" +3.43,1688,0140298479,good_reads:book,https://www.goodreads.com/author/show/3090.Helen_Fielding,1999,/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/romance|/genres/humor|/genres/contemporary|/genres/humor|/genres/funny|/genres/european-literature|/genres/british-literature|/genres/humor|/genres/comedy|/genres/adult|/genres/adult-fiction,dir28/363752.The_Edge_of_Reason.html,56348,"The Edge of Reason (Bridget Jones, #2)" +4.12,1578,0312349486,good_reads:book,https://www.goodreads.com/author/show/2384.Janet_Evanovich,2006,/genres/mystery|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/humor|/genres/romance|/genres/mystery|/genres/crime|/genres/humor|/genres/funny|/genres/humor|/genres/comedy|/genres/thriller|/genres/mystery-thriller|/genres/contemporary,dir29/3507.Twelve_Sharp.html,61322,"Twelve Sharp (Stephanie Plum, #12)" +4.05,352,0061288853,good_reads:book,https://www.goodreads.com/author/show/153734.Ellen_Schreiber,2008,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen|/genres/fiction|/genres/fantasy|/genres/urban-fantasy,dir29/2051840.The_Coffin_Club.html,18167,"The Coffin Club (Vampire Kisses, #5)" +4.30,436,0671737635,good_reads:book,https://www.goodreads.com/author/show/9885.Judith_McNaught,1988,/genres/romance|/genres/historical-romance|/genres/romance|/genres/regency|/genres/historical-fiction|/genres/fiction|/genres/adult|/genres/womens-fiction|/genres/chick-lit|/genres/european-literature|/genres/british-literature|/genres/love|/genres/family,dir29/129616.Something_Wonderful.html,14250,"Something Wonderful (Sequels, #2)" +4.16,332,0375703950,good_reads:book,https://www.goodreads.com/author/show/908.Alessandro_Baricco,1993,/genres/fiction|/genres/european-literature|/genres/italian-literature|/genres/cultural|/genres/italy|/genres/contemporary|/genres/novels|/genres/magical-realism|/genres/literature|/genres/drama|/genres/literature|/genres/20th-century|/genres/psychology,dir29/208631.Ocean_Sea.html,5232,Ocean Sea +3.86,244,0375727760,good_reads:book,https://www.goodreads.com/author/show/38706.Italo_Svevo,1923,/genres/fiction|/genres/cultural|/genres/italy|/genres/literature|/genres/novels|/genres/literature|/genres/20th-century|/genres/classics|/genres/psychology|/genres/european-literature|/genres/italian-literature|/genres/literary-fiction|/genres/classics|/genres/modern-classics,dir29/84737.Zeno_s_Conscience.html,5846,Zeno's Conscience +3.60,2990,0553376055,good_reads:book,https://www.goodreads.com/author/show/93575.Meg_Rosoff,2004,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/fiction|/genres/romance|/genres/war|/genres/science-fiction|/genres/young-adult|/genres/teen|/genres/apocalyptic|/genres/post-apocalyptic|/genres/adventure|/genres/survival|/genres/young-adult|/genres/coming-of-age,dir29/161426.How_I_Live_Now.html,22032,How I Live Now +3.61,421,0374502005,good_reads:book,https://www.goodreads.com/author/show/447.Bernard_Malamud,1952,/genres/fiction|/genres/sports-and-games|/genres/sports|/genres/sports|/genres/baseball|/genres/classics|/genres/literature|/genres/novels|/genres/literary-fiction|/genres/academic|/genres/read-for-school|/genres/young-adult|/genres/high-school|/genres/historical-fiction,dir29/685.The_Natural.html,5912,The Natural +3.97,1422,1416521496,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,2004,/genres/fantasy|/genres/fiction|/genres/horror|/genres/science-fiction|/genres/science-fiction-fantasy|/genres/adventure|/genres/western|/genres/epic,dir29/5093.Song_of_Susannah.html,63070,"Song of Susannah (The Dark Tower, #6)" +4.18,174,0805031499,good_reads:book,https://www.goodreads.com/author/show/8788.Erich_Fromm,1941,/genres/psychology|/genres/non-fiction|/genres/sociology|/genres/politics|/genres/history|/genres/philosophy|/genres/social-science|/genres/classics|/genres/european-literature|/genres/german-literature|/genres/spirituality,dir29/25491.Escape_from_Freedom.html,4348,Escape from Freedom +4.15,359,1905294964,good_reads:book,https://www.goodreads.com/author/show/15873.Cornelia_Funke,2003,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/adventure|/genres/young-adult|/genres/teen|/genres/european-literature|/genres/german-literature|/genres/childrens|/genres/middle-grade,dir29/3334563-the-inkheart-trilogy.html,9259,"The Inkheart Trilogy (Inkworld, #1-3)" +4.28,1469,0316925284,good_reads:book,https://www.goodreads.com/author/show/4339.David_Foster_Wallace,1996,/genres/non-fiction|/genres/writing|/genres/essays|/genres/humor|/genres/short-stories|/genres/literature|/genres/autobiography|/genres/memoir|/genres/literature|/genres/american|/genres/travel|/genres/philosophy|/genres/humor|/genres/funny,dir29/6748.A_Supposedly_Fun_Thing_I_ll_Never_Do_Again.html,17438,A Supposedly Fun Thing I'll Never Do Again +4.08,696,0380776847,good_reads:book,https://www.goodreads.com/author/show/41313.Susan_Elizabeth_Phillips,1995,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/sports-and-games|/genres/sports|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary-romance|/genres/sports-romance|/genres/fiction|/genres/humor|/genres/funny|/genres/adult|/genres/humor,dir29/73084.Heaven_Texas.html,17753,"Heaven, Texas (Chicago Stars, #2)" +3.69,2034,0316068683,good_reads:book,https://www.goodreads.com/author/show/2761947.Jackson_Pearce,2010,/genres/young-adult|/genres/fantasy|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fairy-tales|/genres/romance|/genres/retellings|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/fantasy|/genres/supernatural,dir29/6357708-sisters-red.html,12738,"Sisters Red (Fairytale Retellings, #1)" +4.25,247,031613290X,good_reads:book,https://www.goodreads.com/author/show/941441.Stephenie_Meyer,2005,/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/paranormal-romance|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/supernatural,dir29/8726744-the-twilight-saga-complete-collection.html,38429,"The Twilight Saga Complete Collection (Twilight, #1-4 + 3.5)" +4.28,613,0440245265,good_reads:book,https://www.goodreads.com/author/show/375626.Lara_Adrian,2009,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult,dir29/6481245-shades-of-midnight.html,18610,"Shades of Midnight (Midnight Breed, #7)" +4.17,1914,,good_reads:book,https://www.goodreads.com/author/show/4872191.Abbi_Glines,2012,/genres/romance|/genres/new-adult|/genres/young-adult|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/young-adult-romance|/genres/young-adult|/genres/high-school|/genres/love|/genres/young-adult|/genres/young-adult-contemporary,dir29/13369678-the-vincent-brothers.html,33313,"The Vincent Brothers (The Vincent Boys, #2)" +3.90,327,0140432078,good_reads:book,https://www.goodreads.com/author/show/57651.John_Stuart_Mill,1859,/genres/politics|/genres/non-fiction|/genres/classics|/genres/philosophy|/genres/history|/genres/politics|/genres/political-science|/genres/economics|/genres/writing|/genres/essays|/genres/academic|/genres/school|/genres/literature|/genres/19th-century,dir29/385228.On_Liberty.html,14267,On Liberty +4.12,3113,0374525641,good_reads:book,https://www.goodreads.com/author/show/7982.Anne_Fadiman,1997,/genres/non-fiction|/genres/health|/genres/medicine|/genres/book-club|/genres/anthropology|/genres/medical|/genres/science|/genres/biography|/genres/health|/genres/cultural|/genres/asia|/genres/culture,dir29/12609.The_Spirit_Catches_You_and_You_Fall_Down.html,32205,The Spirit Catches You and You Fall Down +4.22,727,0316043125,good_reads:book,https://www.goodreads.com/author/show/941441.Stephenie_Meyer,2011,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/reference|/genres/romance|/genres/paranormal-romance,dir29/3609763-the-twilight-saga.html,17291,"The Twilight Saga (Twilight, #4.5)" +4.27,383,0060888628,good_reads:book,https://www.goodreads.com/author/show/12542.Bernard_Cornwell,2006,/genres/historical-fiction|/genres/fiction|/genres/historical-fiction|/genres/medieval|/genres/adventure|/genres/fantasy|/genres/war|/genres/european-literature|/genres/british-literature|/genres/action|/genres/war|/genres/military|/genres/novels,dir29/68526.Lords_of_the_North.html,12566,"Lords of the North (The Saxon Stories, #3)" +3.89,1288,1423116186,good_reads:book,https://www.goodreads.com/author/show/52989.Julie_Anne_Peters,2009,/genres/young-adult|/genres/realistic-fiction|/genres/fiction|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/romance|/genres/health|/genres/mental-health|/genres/mental-health|/genres/mental-illness|/genres/death|/genres/sociology|/genres/abuse,dir29/6609549-by-the-time-you-read-this-i-ll-be-dead.html,14299,"By the Time You Read This, I'll Be Dead" +4.04,1138,1408810441,good_reads:book,https://www.goodreads.com/author/show/345630.Carrie_Jones,2010,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/fairies|/genres/shapeshifters|/genres/werewolves|/genres/fairies|/genres/fae|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic,dir29/8069535-entice.html,23129,"Entice (Need, #3)" +4.10,647,0446612758,good_reads:book,https://www.goodreads.com/author/show/12577.Douglas_Preston,2004,/genres/mystery|/genres/thriller|/genres/fiction|/genres/horror|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/crime,dir29/136637.Brimstone.html,18199,"Brimstone (Pendergast, #5; Diogenes, #1)" +4.09,941,0802136834,good_reads:book,https://www.goodreads.com/author/show/6583.Alison_Weir,1991,/genres/history|/genres/non-fiction|/genres/biography|/genres/european-literature|/genres/british-literature|/genres/biography-memoir|/genres/history|/genres/european-history|/genres/literature|/genres/16th-century|/genres/womens|/genres/book-club|/genres/history|/genres/world-history,dir29/10104.The_Six_Wives_of_Henry_VIII.html,30987,The Six Wives of Henry VIII +3.99,787,0552152161,good_reads:book,https://www.goodreads.com/author/show/24349.Betty_Mahmoody,1982,/genres/non-fiction|/genres/biography|/genres/autobiography|/genres/memoir|/genres/cultural|/genres/iran|/genres/biography-memoir|/genres/biography|/genres/autobiography|/genres/religion|/genres/islam|/genres/drama|/genres/true-story|/genres/religion,dir29/43255.Not_Without_My_Daughter.html,12519,Not Without My Daughter +4.13,4213,0545027896,good_reads:book,https://www.goodreads.com/author/show/38120.Brian_Selznick,2011,/genres/historical-fiction|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/sequential-art|/genres/graphic-novels|/genres/childrens|/genres/middle-grade|/genres/realistic-fiction|/genres/mystery|/genres/childrens|/genres/juvenile|/genres/adventure,dir29/10128428-wonderstruck.html,33637,Wonderstruck +3.59,235,,good_reads:book,https://www.goodreads.com/author/show/6517376.Travis_Luedke,2012,/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/adult,dir29/15980525-the-nightlife.html,928,"The Nightlife (The Nightlife, #1)" +4.07,1246,1595543414,good_reads:book,https://www.goodreads.com/author/show/1441.Ted_Dekker,2003,/genres/christian-fiction|/genres/fiction|/genres/christian|/genres/thriller|/genres/mystery|/genres/suspense|/genres/horror|/genres/thriller|/genres/mystery-thriller|/genres/adult,dir29/125963.Thr3e.html,19810,Thr3e +3.93,274,0374529388,good_reads:book,https://www.goodreads.com/author/show/447.Bernard_Malamud,1966,/genres/fiction|/genres/historical-fiction|/genres/classics|/genres/literature|/genres/jewish|/genres/literature|/genres/cultural|/genres/russia|/genres/novels|/genres/literary-fiction|/genres/literature|/genres/american|/genres/literature|/genres/20th-century,dir29/3066.The_Fixer.html,5673,The Fixer +4.26,207,1405201711,good_reads:book,https://www.goodreads.com/author/show/10657.Enid_Blyton,1991,/genres/childrens|/genres/fantasy|/genres/classics|/genres/fiction|/genres/adventure|/genres/young-adult|/genres/childrens|/genres/childrens-classics|/genres/fantasy|/genres/magic|/genres/childrens|/genres/juvenile|/genres/science-fiction-fantasy,dir29/17490.The_Faraway_Tree_Stories.html,9222,The Faraway Tree Stories (The Faraway Tree #1-3) +4.45,354,0007325940,good_reads:book,https://www.goodreads.com/author/show/165168.Derek_Landy,2010,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/mystery|/genres/adventure|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/fantasy|/genres/paranormal,dir29/7261549-dark-days.html,7742,"Dark Days (Skulduggery Pleasant, # 4)" +4.20,1974,1416971750,good_reads:book,https://www.goodreads.com/author/show/13957.Scott_Westerfeld,2010,/genres/science-fiction|/genres/steampunk|/genres/young-adult|/genres/fantasy|/genres/science-fiction|/genres/historical-fiction|/genres/fiction|/genres/adventure|/genres/science-fiction|/genres/alternate-history,dir29/7826116-behemoth.html,20758,"Behemoth (Leviathan, #2)" +4.30,664,0061092193,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,1993,/genres/fantasy|/genres/humor|/genres/fiction|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny|/genres/mystery|/genres/science-fiction|/genres/novels|/genres/european-literature|/genres/british-literature,dir29/400354.Men_at_Arms.html,38546,"Men at Arms (Discworld, #15)" +4.24,1475,0575077883,good_reads:book,https://www.goodreads.com/author/show/276660.Joe_Abercrombie,2007,/genres/fantasy|/genres/fiction|/genres/dark|/genres/fantasy|/genres/epic-fantasy,dir29/902715.Before_They_Are_Hanged.html,42639,"Before They Are Hanged (The First Law, #2)" +4.29,706,1569319006,good_reads:book,https://www.goodreads.com/author/show/11047.Masashi_Kishimoto,1990,/genres/sequential-art|/genres/manga|/genres/fantasy|/genres/sequential-art|/genres/comics|/genres/sequential-art|/genres/graphic-novels|/genres/young-adult|/genres/media-tie-in|/genres/anime|/genres/fiction|/genres/action|/genres/adventure,dir29/204042.Naruto_Vol_01.html,66570,"Naruto, Vol. 01 (Naruto, #1)" +3.84,2781,1416960597,good_reads:book,https://www.goodreads.com/author/show/363405.Elizabeth_Scott,2008,/genres/young-adult|/genres/contemporary|/genres/fiction|/genres/realistic-fiction|/genres/sociology|/genres/abuse|/genres/young-adult|/genres/teen|/genres/horror,dir29/2954411-living-dead-girl.html,17760,Living Dead Girl +4.24,9792,1439102767,good_reads:book,https://www.goodreads.com/author/show/7128.Jodi_Picoult,2013,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/world-war-ii|/genres/holocaust|/genres/contemporary|/genres/adult|/genres/adult-fiction,dir29/15753740-the-storyteller.html,66871,The Storyteller +4.59,571,1563892049,good_reads:book,https://www.goodreads.com/author/show/1221698.Neil_Gaiman,1995,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fantasy|/genres/fiction|/genres/graphic-novels-comics|/genres/horror|/genres/comics|/genres/comic-book|/genres/fantasy|/genres/mythology|/genres/science-fiction-fantasy|/genres/fantasy|/genres/urban-fantasy,dir29/71252.The_Sandman_Vol_9.html,25768,"The Sandman, Vol. 9 (The Sandman #9)" +4.03,4270,1594746125,good_reads:book,https://www.goodreads.com/author/show/3046613.Ransom_Riggs,2014,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/historical-fiction|/genres/horror|/genres/mystery,dir29/12396528-hollow-city.html,27426,"Hollow City (Miss Peregrine's Peculiar Children, #2)" +4.02,604,,good_reads:book,https://www.goodreads.com/author/show/3486415.Amanda_Hocking,2010,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/young-adult|/genres/teen,dir29/8177526-fate.html,15936,"Fate (My Blood Approves, #2)" +3.89,895,0545040566,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2009,/genres/young-adult|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/science-fiction|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/fiction|/genres/fantasy|/genres/mystery|/genres/young-adult|/genres/high-school,dir29/5135798-being-nikki.html,21246,"Being Nikki (Airhead, #2)" +3.79,1537,0060874198,good_reads:book,https://www.goodreads.com/author/show/79589.Alex_Flinn,2008,/genres/young-adult|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/fairy-tales|/genres/fantasy|/genres/magic|/genres/retellings|/genres/fiction|/genres/young-adult|/genres/teen|/genres/fairy-tales|/genres/fairy-tale-retellings|/genres/womens-fiction|/genres/chick-lit,dir29/5266667-a-kiss-in-time.html,14323,A Kiss in Time +3.95,826,034547063X,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,2001,/genres/horror|/genres/fantasy|/genres/fiction|/genres/mystery|/genres/thriller|/genres/fantasy|/genres/supernatural|/genres/suspense|/genres/adventure|/genres/novels|/genres/fantasy|/genres/paranormal,dir29/10607.Black_House.html,32976,"Black House (The Talisman, #2)" +4.36,694,0399256199,good_reads:book,https://www.goodreads.com/author/show/34049.John_Flanagan,2011,/genres/fantasy|/genres/young-adult|/genres/adventure|/genres/fiction|/genres/historical-fiction|/genres/young-adult|/genres/teen|/genres/action|/genres/historical-fiction|/genres/medieval|/genres/young-adult|/genres/young-adult-fantasy,dir29/10551947-the-outcasts.html,10275,"The Outcasts (Brotherband Chronicles, #1)" +4.10,2123,0373605692,good_reads:book,https://www.goodreads.com/author/show/4480131.Tiffany_Reisz,2011,/genres/adult-fiction|/genres/erotica|/genres/erotica|/genres/bdsm|/genres/romance|/genres/contemporary|/genres/dark|/genres/adult|/genres/romance|/genres/erotic-romance|/genres/romance|/genres/contemporary-romance|/genres/fiction|/genres/adult-fiction,dir29/10970532-the-siren.html,13140,"The Siren (The Original Sinners, #1)" +4.16,741,1599901102,good_reads:book,https://www.goodreads.com/author/show/359109.Jessica_Day_George,2008,/genres/fantasy|/genres/fantasy|/genres/dragons|/genres/young-adult|/genres/adventure|/genres/romance|/genres/childrens|/genres/fiction|/genres/childrens|/genres/middle-grade|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/fairy-tales,dir29/2208744.Dragon_Flight.html,11596,"Dragon Flight (Dragon Slippers, #2)" +4.11,2971,0810983915,good_reads:book,https://www.goodreads.com/author/show/221559.Jeff_Kinney,2009,/genres/realistic-fiction|/genres/humor|/genres/fiction|/genres/childrens|/genres/humor|/genres/funny|/genres/young-adult|/genres/sequential-art|/genres/graphic-novels|/genres/humor|/genres/comedy|/genres/childrens|/genres/middle-grade|/genres/diary,dir29/6578293-dog-days.html,50292,"Dog Days (Diary of a Wimpy Kid, #4)" +4.26,184,0955944686,good_reads:book,https://www.goodreads.com/author/show/15872.Rick_Riordan,2009,/genres/fantasy|/genres/fantasy|/genres/mythology|/genres/young-adult|/genres/adventure|/genres/fiction|/genres/short-stories|/genres/mythology|/genres/greek-mythology,dir29/4837112-percy-jackson-and-the-sword-of-hades.html,7449,"Percy Jackson and the Sword of Hades (Percy Jackson and the Olympians, #4.5)" +3.91,4362,0061147958,good_reads:book,https://www.goodreads.com/author/show/88506.Joe_Hill,2010,/genres/horror|/genres/fiction|/genres/fantasy|/genres/thriller|/genres/mystery|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/paranormal|/genres/adult,dir29/6587879-horns.html,37592,Horns +3.88,444,0439672465,good_reads:book,https://www.goodreads.com/author/show/179712.Chris_d_Lacey,1985,/genres/fantasy|/genres/fantasy|/genres/dragons|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/fantasy|/genres/magic|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/science-fiction-fantasy|/genres/science-fiction,dir29/312050.Icefire.html,14206,"Icefire (The Last Dragon Chronicles, #2)" +4.19,722,141692499X,good_reads:book,https://www.goodreads.com/author/show/26.Anne_McCaffrey,1976,/genres/fantasy|/genres/science-fiction|/genres/fantasy|/genres/dragons|/genres/fiction|/genres/young-adult|/genres/science-fiction-fantasy|/genres/adventure|/genres/fantasy|/genres/high-fantasy|/genres/young-adult|/genres/young-adult-fantasy|/genres/young-adult|/genres/teen,dir29/28541.Dragonsong.html,28434,"Dragonsong (Harper Hall, #1)" +4.20,397,,good_reads:book,https://www.goodreads.com/author/show/8596.Tamora_Pierce,2000,/genres/fantasy|/genres/magic|/genres/young-adult|/genres/teen|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/young-adult|/genres/young-adult-fantasy|/genres/young-adult,dir29/153785.Page.html,31704,"Page (Protector of the Small, #2)" +3.83,1961,0316094617,good_reads:book,https://www.goodreads.com/author/show/4254441.Cat_Patrick,2011,/genres/young-adult|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/mystery|/genres/contemporary|/genres/fiction,dir29/9415951-forgotten.html,12970,Forgotten +4.12,468,031235326X,good_reads:book,https://www.goodreads.com/author/show/5353.Barbara_Taylor_Bradford,1979,/genres/historical-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/contemporary|/genres/adult-fiction|/genres/fiction|/genres/drama|/genres/womens-fiction|/genres/novels,dir29/8155.A_Woman_of_Substance.html,22674,A Woman of Substance (Emma Harte Saga #1) +4.14,1447,0312980140,good_reads:book,https://www.goodreads.com/author/show/2384.Janet_Evanovich,2001,/genres/mystery|/genres/humor|/genres/funny|/genres/adult|/genres/humor|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/mystery|/genres/detective|/genres/suspense|/genres/mystery|/genres/crime|/genres/romance,dir29/6424.Seven_Up.html,77225,"Seven Up (Stephanie Plum, #7)" +4.12,588,0345495934,good_reads:book,https://www.goodreads.com/author/show/9550.Laurell_K_Hamilton,2008,/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fairies|/genres/fae|/genres/fiction|/genres/adult-fiction|/genres/erotica|/genres/fantasy|/genres/supernatural|/genres/adult,dir29/2798094-swallowing-darkness.html,19987,"Swallowing Darkness (Merry Gentry, #7)" +3.98,1873,0375829830,good_reads:book,https://www.goodreads.com/author/show/47104.Melina_Marchetta,2003,/genres/young-adult|/genres/contemporary|/genres/romance|/genres/fiction|/genres/realistic-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/teen,dir29/82434.Saving_Francesca.html,17165,Saving Francesca +4.68,114,140121083X,good_reads:book,https://www.goodreads.com/author/show/1221698.Neil_Gaiman,2007,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fantasy|/genres/fiction|/genres/horror|/genres/graphic-novels-comics|/genres/comics|/genres/comic-book|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/urban-fantasy,dir29/1025685.The_Absolute_Sandman_Vol_2.html,4656,"The Absolute Sandman, Vol. 2" +4.04,4420,0670018864,good_reads:book,https://www.goodreads.com/author/show/138825.Tana_French,2008,/genres/mystery|/genres/fiction|/genres/mystery|/genres/crime|/genres/suspense|/genres/thriller|/genres/thriller|/genres/mystery-thriller,dir29/1914973.The_Likeness.html,46532,"The Likeness (Dublin Murder Squad, #2)" +4.09,1168,0440236738,good_reads:book,https://www.goodreads.com/author/show/24689.Harlan_Coben,2002,/genres/mystery|/genres/thriller|/genres/fiction|/genres/suspense|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/murder-mystery|/genres/adult|/genres/book-club|/genres/adult-fiction,dir29/43930.Gone_for_Good.html,22044,Gone for Good +4.07,526,1598185217,good_reads:book,https://www.goodreads.com/author/show/4176632.W_Somerset_Maugham,1919,/genres/fiction|/genres/classics|/genres/art|/genres/literature|/genres/novels|/genres/european-literature|/genres/british-literature|/genres/historical-fiction,dir29/44796.The_Moon_and_Sixpence.html,8338,The Moon and Sixpence +4.10,42,0615366503,good_reads:book,https://www.goodreads.com/author/show/5658019.Jacob_Parker,2010,/genres/fantasy|/genres/christian|/genres/young-adult|/genres/adventure|/genres/young-adult|/genres/teen|/genres/fiction|/genres/adult|/genres/animals|/genres/mystery,dir29/8214792-kestrel-s-midnight-song.html,110,Kestrel's Midnight Song +3.78,805,,good_reads:book,https://www.goodreads.com/author/show/4096668.Addison_Moore,2011,/genres/paranormal|/genres/angels|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/science-fiction|/genres/time-travel,dir29/10941624-ethereal.html,9980,"Ethereal (Celestra, #1)" +4.16,373,0375700188,good_reads:book,https://www.goodreads.com/author/show/128952.Thomas_Kempis,1300,/genres/christian|/genres/religion|/genres/christianity|/genres/religion|/genres/theology|/genres/classics|/genres/spirituality|/genres/non-fiction|/genres/christianity|/genres/catholic|/genres/religion|/genres/religion|/genres/faith|/genres/philosophy,dir29/851393.The_Imitation_of_Christ.html,9578,The Imitation of Christ +4.11,9,,good_reads:book,https://www.goodreads.com/author/show/6494034.Darrius_Garrett,2013,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/education|/genres/biography|/genres/teaching|/genres/inspirational,dir29/17879512-diary-of-a-freedom-writer.html,64,Diary of a Freedom Writer +4.93,0,9789898541,good_reads:book,https://www.goodreads.com/author/show/7458878.Gra_a_Jacinto,2012,,dir29/19065420-la-os-fortes-e-decis-es-dif-ceis.html,14,Laços fortes e decisões difíceis +4.09,243,,good_reads:book,https://www.goodreads.com/author/show/3137322.Fyodor_Dostoyevsky,1848,/genres/classics|/genres/cultural|/genres/russia|/genres/literature|/genres/russian-literature|/genres/fiction|/genres/short-stories|/genres/literature|/genres/novels|/genres/romance|/genres/literature|/genres/19th-century|/genres/literary-fiction,dir29/1772910.White_Nights_and_Other_Stories.html,7833,White Nights and Other Stories +3.82,56,,good_reads:book,https://www.goodreads.com/author/show/3153008.Melissa_Petreshock,2014,/genres/new-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/dragons|/genres/romance|/genres/paranormal-romance|/genres/young-adult|/genres/fantasy|/genres/magic,dir29/18685332-fire-of-stars-and-dragons.html,157,Fire of Stars and Dragons (Stars and Souls #1) +4.94,6,,good_reads:book,https://www.goodreads.com/author/show/8127793.A_J_Salt,2014,,dir29/21864814-nik-nassa-the-mark-of-destiny.html,16,Nik Nassa & the Mark of Destiny +4.61,2,,good_reads:book,https://www.goodreads.com/author/show/8182217.Zion_Odum,NA,,dir29/22031070-my-death-experiences---a-preacher-s-18-apocalyptic-encounter-with-death.html,23,"My Death Experiences - A Preacher’s 18 Apocalyptic Encounter with Death, Heaven & Hell." +3.91,1240,1402726023,good_reads:book,https://www.goodreads.com/author/show/2897630.Johann_David_Wyss,1812,/genres/classics|/genres/fiction|/genres/adventure|/genres/childrens|/genres/young-adult|/genres/literature|/genres/historical-fiction|/genres/adventure|/genres/survival|/genres/classics|/genres/classic-literature|/genres/fantasy,dir29/62111.The_Swiss_Family_Robinson.html,61452,The Swiss Family Robinson +4.07,549,0441004326,good_reads:book,https://www.goodreads.com/author/show/28544.Sharon_Shinn,1996,/genres/fantasy|/genres/romance|/genres/science-fiction|/genres/fiction|/genres/paranormal|/genres/angels|/genres/science-fiction-fantasy|/genres/adult|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy-romance|/genres/fantasy|/genres/paranormal,dir29/97961.Archangel.html,6327,"Archangel (Samaria, #1)" +4.41,818,1416580956,good_reads:book,https://www.goodreads.com/author/show/4428.Kresley_Cole,2010,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/shapeshifters|/genres/werewolves|/genres/adult|/genres/paranormal|/genres/shapeshifters|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/urban-fantasy,dir29/6337006-pleasure-of-a-dark-prince.html,24401,"Pleasure of a Dark Prince (Immortals After Dark, #9)" +4.32,2846,148234873X,good_reads:book,https://www.goodreads.com/author/show/5228869.Georgia_Cates,2013,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/new-adult|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/adult|/genres/romance|/genres/erotic-romance|/genres/erotica|/genres/bdsm|/genres/womens-fiction|/genres/chick-lit|/genres/music,dir29/17156015-beauty-from-pain.html,35444,"Beauty from Pain (Beauty, #1)" +4.10,6242,0312364121,good_reads:book,https://www.goodreads.com/author/show/54493.Kristin_Hannah,2010,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/romance|/genres/cultural|/genres/russia|/genres/adult-fiction|/genres/family|/genres/adult,dir29/6668467-winter-garden.html,44630,Winter Garden +3.23,8596,1565125967,good_reads:book,https://www.goodreads.com/author/show/266461.Robert_Goolrick,2009,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/mystery|/genres/romance|/genres/adult-fiction|/genres/adult|/genres/suspense|/genres/drama|/genres/gothic,dir29/4929705-a-reliable-wife.html,57770,A Reliable Wife +4.09,1096,0688120490,good_reads:book,https://www.goodreads.com/author/show/8164.Lewis_Carroll,1871,/genres/classics|/genres/fantasy|/genres/fiction|/genres/childrens|/genres/young-adult|/genres/literature|/genres/adventure|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/19th-century|/genres/novels,dir29/83346.Through_the_Looking_Glass_and_What_Alice_Found_There.html,48650,"Through the Looking-Glass, and What Alice Found There (Alice's Adventures in Wonderland #2)" +3.53,10,,good_reads:book,https://www.goodreads.com/author/show/8193887.Huda_Aweys,2014,,dir29/22174792.html,19,الصوت روح +3.90,2067,0316051594,good_reads:book,https://www.goodreads.com/author/show/2188726.Sarah_Ockler,2009,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/fiction|/genres/young-adult|/genres/teen|/genres/death|/genres/young-adult|/genres/young-adult-contemporary|/genres/young-adult|/genres/young-adult-romance,dir29/5231173-twenty-boy-summer.html,28531,Twenty Boy Summer +4.06,1981,0373210574,good_reads:book,https://www.goodreads.com/author/show/2995873.Julie_Kagawa,2012,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/fairies|/genres/romance|/genres/fantasy|/genres/magic|/genres/fairies|/genres/fae|/genres/fantasy|/genres/urban-fantasy|/genres/adventure|/genres/fantasy|/genres/supernatural,dir29/12614410-the-lost-prince.html,14857,"The Lost Prince (The Iron Fey: Call of the Forgotten, #1)" +3.99,369,1400310113,good_reads:book,https://www.goodreads.com/author/show/33508.Wayne_Thomas_Batson,2005,/genres/fantasy|/genres/young-adult|/genres/christian-fiction|/genres/christian|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/dragons|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/fantasy|/genres/magic,dir29/712731.The_Door_Within.html,4414,"The Door Within (The Door Within, #1)" +3.78,2264,0312938993,good_reads:book,https://www.goodreads.com/author/show/9559.Sue_Grafton,1982,/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/mystery|/genres/detective|/genres/literature|/genres/american|/genres/fiction|/genres/womens|/genres/mystery|/genres/hard-boiled|/genres/contemporary|/genres/politics|/genres/mystery|/genres/cozy-mystery,dir29/64863.A_is_for_Alibi.html,85547,"A is for Alibi (Kinsey Millhone, #1)" +3.99,187,,good_reads:book,https://www.goodreads.com/author/show/5227478.Alecia_Stone,2012,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/angels|/genres/fiction|/genres/paranormal|/genres/demons|/genres/adventure|/genres/fantasy|/genres/mythology|/genres/mystery|/genres/science-fiction,dir29/13419125-talisman-of-el.html,409,Talisman of El (Talisman of El #1) +4.30,2010,0312360819,good_reads:book,https://www.goodreads.com/author/show/4175419.Darynda_Jones,2011,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/mystery|/genres/fantasy|/genres/paranormal|/genres/ghosts|/genres/paranormal|/genres/demons|/genres/adult|/genres/fantasy|/genres/supernatural,dir29/9565045-second-grave-on-the-left.html,20487,"Second Grave on the Left (Charley Davidson, #2)" +4.23,816,1250036771,good_reads:book,https://www.goodreads.com/author/show/4430.Sherrilyn_Kenyon,2004,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/fantasy|/genres/mythology|/genres/fiction|/genres/fantasy|/genres/supernatural,dir29/17332310-kiss-of-the-night.html,27820,"Kiss of the Night (Dark-Hunter, #4)" +4.12,255,0345470575,good_reads:book,https://www.goodreads.com/author/show/8476.CLAMP,2003,/genres/sequential-art|/genres/manga|/genres/fantasy|/genres/sequential-art|/genres/graphic-novels|/genres/romance|/genres/sequential-art|/genres/comics|/genres/young-adult|/genres/adventure|/genres/fiction|/genres/fantasy|/genres/magic|/genres/comics-manga,dir29/13570.Tsubasa.html,25405,Tsubasa (Tsubasa: RESERVoir CHRoNiCLE #1) +4.35,494,1586608290,good_reads:book,https://www.goodreads.com/author/show/41469.Oswald_Chambers,1935,/genres/religion|/genres/christianity|/genres/religion|/genres/theology|/genres/religion|/genres/faith|/genres/classics|/genres/non-fiction|/genres/spirituality|/genres/christian|/genres/inspirational|/genres/reference|/genres/religion,dir29/175510.My_Utmost_for_His_Highest.html,37869,My Utmost for His Highest +4.22,597,1590171691,good_reads:book,https://www.goodreads.com/author/show/25573.Stefan_Zweig,1941,/genres/fiction|/genres/classics|/genres/european-literature|/genres/german-literature|/genres/short-stories|/genres/literature|/genres/games|/genres/chess|/genres/novels,dir29/59151.Chess_Story.html,10871,Chess Story +3.53,722,0060096187,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2004,/genres/young-adult|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/fiction|/genres/realistic-fiction|/genres/young-adult|/genres/high-school|/genres/humor|/genres/childrens,dir29/90475.Teen_Idol.html,18094,Teen Idol +3.98,150,0373210817,good_reads:book,https://www.goodreads.com/author/show/5386283.Karen_Ann_Hopkins,2013,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/realistic-fiction|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/young-adult-contemporary|/genres/fiction|/genres/new-adult|/genres/young-adult|/genres/young-adult-romance|/genres/womens-fiction|/genres/chick-lit,dir29/15774969-belonging.html,623,"Belonging (Temptation, #2)" +3.77,349,0307275213,good_reads:book,https://www.goodreads.com/author/show/32878.Michel_Houellebecq,2005,/genres/fiction|/genres/cultural|/genres/france|/genres/science-fiction|/genres/contemporary|/genres/science-fiction|/genres/dystopia|/genres/philosophy|/genres/novels|/genres/european-literature|/genres/french-literature|/genres/literature|/genres/literary-fiction,dir29/263985.The_Possibility_of_an_Island.html,5244,The Possibility of an Island +3.91,1095,1579126243,good_reads:book,https://www.goodreads.com/author/show/123715.Agatha_Christie,1936,/genres/mystery|/genres/fiction|/genres/mystery|/genres/crime|/genres/classics|/genres/mystery|/genres/detective|/genres/thriller|/genres/mystery-thriller|/genres/european-literature|/genres/british-literature|/genres/thriller|/genres/mystery|/genres/murder-mystery|/genres/adult,dir29/16322.The_A_B_C_Murders.html,33623,"The A.B.C. Murders (Hercule Poirot, #13)" +3.79,379,0441328008,good_reads:book,https://www.goodreads.com/author/show/58.Frank_Herbert,1984,/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/classics|/genres/science-fiction|/genres/space-opera|/genres/speculative-fiction|/genres/novels|/genres/religion|/genres/adventure,dir29/117.Heretics_of_Dune.html,30490,Heretics of Dune (Dune Chronicles #5) +4.05,211,0140447539,good_reads:book,https://www.goodreads.com/author/show/4750._mile_Zola,1877,/genres/classics|/genres/fiction|/genres/cultural|/genres/france|/genres/european-literature|/genres/french-literature|/genres/literature|/genres/19th-century|/genres/literature|/genres/novels|/genres/historical-fiction|/genres/roman|/genres/literary-fiction,dir29/92967.L_Assommoir_The_Dram_Shop_.html,5711,"L'Assommoir (The Dram Shop) (The Dram Shop) (Les Rougon-Macquart, #7)" +4.31,50,1482586479,good_reads:book,https://www.goodreads.com/author/show/6583811.Cristiane_Serruya,2013,/genres/romance|/genres/contemporary|/genres/adult-fiction|/genres/erotica|/genres/dark,dir29/17454163-trust.html,163,"Trust (Trust Trilogy, #2)" +4.06,341,1857987632,good_reads:book,https://www.goodreads.com/author/show/7779.Arthur_C_Clarke,1956,/genres/science-fiction|/genres/fiction|/genres/classics|/genres/science-fiction|/genres/dystopia|/genres/science-fiction-fantasy|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/fantasy|/genres/speculative-fiction|/genres/literature,dir29/250024.The_City_and_the_Stars.html,13274,The City and the Stars +4.28,37,1470088223,good_reads:book,https://www.goodreads.com/author/show/5039646.Chelsea_Bellingeri,2012,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/witches|/genres/young-adult|/genres/young-adult-paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance,dir29/13495947-conjured.html,349,"Conjured (New England Witch Chronicles, #2)" +4.29,399,964913980X,good_reads:book,https://www.goodreads.com/author/show/30091.Jos_Mauro_de_Vasconcelos,1968,/genres/fiction|/genres/novels|/genres/classics|/genres/childrens|/genres/romance|/genres/drama|/genres/european-literature|/genres/portuguese-literature|/genres/academic|/genres/school|/genres/young-adult|/genres/cultural|/genres/brazil,dir29/192510._.html,6834,درخت زیبای من +3.96,700,0679776591,good_reads:book,https://www.goodreads.com/author/show/9800.Anne_Michaels,1996,/genres/historical-fiction|/genres/fiction|/genres/world-war-ii|/genres/holocaust|/genres/war|/genres/cultural|/genres/canada|/genres/novels|/genres/literature,dir29/15836.Fugitive_Pieces.html,8280,Fugitive Pieces +3.81,612,0515136816,good_reads:book,https://www.goodreads.com/author/show/9550.Laurell_K_Hamilton,2003,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/horror|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/shapeshifters|/genres/werewolves,dir29/30245.Cerulean_Sins.html,35110,"Cerulean Sins (Anita Blake, Vampire Hunter, #11)" +3.98,256,0984733604,good_reads:book,https://www.goodreads.com/author/show/5298385.Jennifer_Loren,2011,/genres/romance|/genres/contemporary|/genres/dark|/genres/romance|/genres/contemporary-romance|/genres/new-adult|/genres/adult|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/romantic-suspense|/genres/mystery|/genres/crime|/genres/suspense,dir30/12963457-the-devil-s-eyes.html,2952,"The Devil's Eyes (The Devil's Eyes, #1)" +4.02,104,,good_reads:book,https://www.goodreads.com/author/show/5039646.Chelsea_Bellingeri,2011,/genres/young-adult|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/young-adult|/genres/young-adult-paranormal|/genres/fantasy|/genres/supernatural|/genres/romance,dir30/12030849-new-england-witch-chronicles.html,668,"New England Witch Chronicles (New England Witch Chronicles, #1)" +4.56,2127,,good_reads:book,https://www.goodreads.com/author/show/7047863.K_Bromberg,2013,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/adult-fiction|/genres/erotica|/genres/contemporary|/genres/sports-and-games|/genres/sports|/genres/romance|/genres/erotic-romance|/genres/new-adult|/genres/adult,dir30/17880708-fueled.html,23391,"Fueled (The Driven Trilogy, #2)" +5.00,0,0983002282,good_reads:book,https://www.goodreads.com/author/show/6589034.Rebekah_McClew,2012,,dir30/17608096-obscured-darkness.html,8,Obscured Darkness (Family Secrets #2) +4.03,756,0385481969,good_reads:book,https://www.goodreads.com/author/show/6560.C_D_Payne,1995,/genres/fiction|/genres/humor|/genres/young-adult|/genres/young-adult|/genres/coming-of-age|/genres/humor|/genres/funny|/genres/humor|/genres/comedy|/genres/contemporary|/genres/book-club|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/high-school,dir30/10050.Youth_in_Revolt.html,6991,Youth in Revolt +3.94,433,0425181111,good_reads:book,https://www.goodreads.com/author/show/9355.Dean_Koontz,1986,/genres/horror|/genres/fiction|/genres/thriller|/genres/suspense|/genres/mystery|/genres/science-fiction|/genres/fantasy|/genres/thriller|/genres/mystery-thriller|/genres/adult|/genres/fantasy|/genres/paranormal,dir30/15676.Strangers.html,28102,Strangers +4.33,2172,0734406940,good_reads:book,https://www.goodreads.com/author/show/38954.Shaun_Tan,2007,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fantasy|/genres/childrens|/genres/picture-books|/genres/fiction|/genres/young-adult|/genres/art|/genres/childrens|/genres/graphic-novels-comics|/genres/historical-fiction,dir30/920607.The_Arrival.html,23168,The Arrival +3.70,9541,0670038601,good_reads:book,https://www.goodreads.com/author/show/138825.Tana_French,2007,/genres/mystery|/genres/fiction|/genres/mystery|/genres/crime|/genres/thriller|/genres/book-club|/genres/thriller|/genres/mystery-thriller|/genres/cultural|/genres/ireland|/genres/suspense|/genres/adult|/genres/adult-fiction,dir30/237209.In_the_Woods.html,108072,"In the Woods (Dublin Murder Squad, #1)" +3.94,71,,good_reads:book,https://www.goodreads.com/author/show/7558881.John_Patrick_Kennedy,2013,/genres/fantasy|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/dark-fantasy|/genres/science-fiction|/genres/dystopia|/genres/dark,dir30/19468216-plague-of-angels.html,219,"Plague of Angels (The Descended, #1)" +5.00,0,0983002215,good_reads:book,https://www.goodreads.com/author/show/6589034.Rebekah_McClew,2011,,dir30/16200303-family-secrets.html,9,Family Secrets +3.88,844,1416521836,good_reads:book,https://www.goodreads.com/author/show/93971.Laura_Wiess,2007,/genres/young-adult|/genres/fiction|/genres/sociology|/genres/abuse|/genres/contemporary|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/mystery|/genres/dark|/genres/mystery|/genres/crime|/genres/womens-fiction|/genres/chick-lit,dir30/162086.Such_a_Pretty_Girl.html,10056,Such a Pretty Girl +4.38,44,0552144320,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,1997,/genres/fantasy|/genres/fiction|/genres/humor|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny|/genres/mystery|/genres/fantasy|/genres/magic|/genres/novels|/genres/plays,dir30/7557548-men-at-arms.html,27560,Men at Arms +3.55,873,0060757353,good_reads:book,https://www.goodreads.com/author/show/51484.Paul_Zindel,1968,/genres/young-adult|/genres/fiction|/genres/classics|/genres/academic|/genres/school|/genres/academic|/genres/read-for-school|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/childrens|/genres/young-adult|/genres/high-school|/genres/childrens|/genres/middle-grade,dir30/128092.The_Pigman.html,17132,The Pigman +4.42,843,0373775814,good_reads:book,https://www.goodreads.com/author/show/48192.Gena_Showalter,2011,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/adult|/genres/fantasy|/genres/mythology|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/urban-fantasy|/genres/fiction,dir30/8038219-the-darkest-surrender.html,18022,"The Darkest Surrender (Lords of the Underworld, #8)" +3.83,50,,good_reads:book,https://www.goodreads.com/author/show/6527209.Ally_Shields,2012,/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/shapeshifters|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/supernatural|/genres/romance,dir30/16008403-awakening-the-fire.html,519,"Awakening the Fire (Guardian Witch, #1)" +4.12,3493,0618477942,good_reads:book,https://www.goodreads.com/author/show/21982.Alison_Bechdel,2006,/genres/sequential-art|/genres/graphic-novels|/genres/autobiography|/genres/memoir|/genres/sequential-art|/genres/comics|/genres/non-fiction|/genres/glbt|/genres/queer|/genres/glbt|/genres/biography|/genres/graphic-novels-comics|/genres/book-club|/genres/biography|/genres/autobiography,dir30/38990.Fun_Home.html,39683,Fun Home +3.85,673,0061020656,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,1989,/genres/humor|/genres/fiction|/genres/fantasy|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny,dir30/64217.Pyramids.html,34589,"Pyramids (Discworld, #7)" +3.82,1328,1416955208,good_reads:book,https://www.goodreads.com/author/show/588558.Lisa_Schroeder,2008,/genres/young-adult|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/ghosts|/genres/poetry|/genres/fantasy|/genres/contemporary|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/death,dir30/1832749.I_Heart_You_You_Haunt_Me.html,9774,"I Heart You, You Haunt Me" +4.25,578,0545310032,good_reads:book,https://www.goodreads.com/author/show/99650.Wendy_Mass,2011,/genres/realistic-fiction|/genres/fantasy|/genres/young-adult|/genres/childrens|/genres/middle-grade|/genres/fiction|/genres/mystery|/genres/childrens|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/adventure,dir30/10473214-13-gifts.html,6713,"13 Gifts (Willow Falls, #3)" +3.93,92,0979886945,good_reads:book,https://www.goodreads.com/author/show/5184237.Veronica_Blade,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/young-adult|/genres/high-school|/genres/young-adult|/genres/young-adult-paranormal|/genres/fantasy|/genres/supernatural,dir30/12518734-something-witchy-this-way-comes.html,450,"Something Witchy This Way Comes (Something Witchy, #1)" +4.93,6,1453634819,good_reads:book,https://www.goodreads.com/author/show/4808225.Dennis_Sharpe,2010,,dir30/11187861-the-years-distilled.html,28,The Years Distilled +4.29,3899,,good_reads:book,https://www.goodreads.com/author/show/6860574.Gail_McHugh,2013,/genres/romance|/genres/new-adult|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/adult-fiction|/genres/erotica|/genres/adult|/genres/romance|/genres/erotic-romance|/genres/love|/genres/drama|/genres/womens-fiction|/genres/chick-lit,dir30/17158596-collide.html,43807,"Collide (Collide, #1)" +4.46,873,031607991X,good_reads:book,https://www.goodreads.com/author/show/1370283.Brent_Weeks,2012,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fiction|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/epic|/genres/adventure|/genres/science-fiction-fantasy|/genres/action|/genres/science-fiction,dir30/12499290-the-blinding-knife.html,19805,"The Blinding Knife (Lightbringer, #2)" +3.99,938,0307376656,good_reads:book,https://www.goodreads.com/author/show/31003.Ildefonso_Falcones,2006,/genres/history|/genres/cultural|/genres/spain|/genres/european-literature|/genres/spanish-literature|/genres/historical-fiction|/genres/medieval|/genres/roman|/genres/drama|/genres/book-club|/genres/religion|/genres/literature|/genres/romance,dir30/54984.La_catedral_del_mar.html,13620,La catedral del mar +3.94,2270,0375758992,good_reads:book,https://www.goodreads.com/author/show/13900.Alexandra_Fuller,2001,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/book-club|/genres/cultural|/genres/africa|/genres/biography|/genres/travel|/genres/biography-memoir|/genres/history|/genres/adult|/genres/cultural|/genres/international,dir30/24687.Don_t_Let_s_Go_to_the_Dogs_Tonight.html,31371,Don't Let's Go to the Dogs Tonight +4.05,1779,0385521383,good_reads:book,https://www.goodreads.com/author/show/16204.Edward_Rutherfurd,2009,/genres/historical-fiction|/genres/fiction|/genres/new-york|/genres/book-club,dir30/6257535-new-york.html,14157,New York +3.76,187,0006473296,good_reads:book,https://www.goodreads.com/author/show/12980.Stephen_R_Donaldson,1977,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/epic|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/literature|/genres/20th-century|/genres/speculative-fiction,dir30/179033.The_Chronicles_of_Thomas_Covenant_the_Unbeliever.html,8978,"The Chronicles of Thomas Covenant, the Unbeliever (The Chronicles of Thomas Covenant, #1-3)" +3.74,47,,good_reads:book,https://www.goodreads.com/author/show/7058502.O_L_Ramos,2013,/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/paranormal|/genres/vampires|/genres/adult|/genres/young-adult|/genres/fantasy|/genres/urban-fantasy,dir30/17833728-the-keeper.html,202,"The Keeper (The Keeper, #1)" +4.73,1,0983002274,good_reads:book,https://www.goodreads.com/author/show/6589034.Rebekah_McClew,2012,,dir30/16173867-mortal.html,11,Mortal +3.60,0,0405047924,good_reads:book,https://www.goodreads.com/author/show/901.Herodotus,1973,/genres/classics,dir30/2533529.Herodotus_7_9.html,81,Herodotus 7-9 +4.20,24,,good_reads:book,https://www.goodreads.com/author/show/6534462.Christopher_Shields,2012,/genres/fantasy|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/fairies|/genres/fiction|/genres/fairies|/genres/fae|/genres/romance,dir30/16162553-the-changeling.html,217,"The Changeling (Weald Fae Journals, #2)" +3.73,3881,1597801577,good_reads:book,https://www.goodreads.com/author/show/1226977.Paolo_Bacigalupi,2009,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/steampunk|/genres/fantasy|/genres/apocalyptic|/genres/post-apocalyptic|/genres/science-fiction-fantasy|/genres/speculative-fiction,dir30/6597651-the-windup-girl.html,32571,The Windup Girl +4.03,633,1595541896,good_reads:book,https://www.goodreads.com/author/show/5544.Frank_E_Peretti,1995,/genres/fiction|/genres/christian|/genres/horror|/genres/thriller|/genres/fantasy|/genres/religion|/genres/religion|/genres/christianity|/genres/adult|/genres/spirituality|/genres/fantasy|/genres/paranormal,dir30/365006.The_Oath.html,16947,The Oath +4.35,35,1480137510,good_reads:book,https://www.goodreads.com/author/show/5039646.Chelsea_Bellingeri,2012,/genres/young-adult|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance,dir30/16109045-wicked-betrayal.html,289,"Wicked Betrayal (New England Witch Chronicles, #3)" +4.09,103,1930900236,good_reads:book,https://www.goodreads.com/author/show/410653.Astrid_Lindgren,1954,/genres/fantasy|/genres/childrens|/genres/classics|/genres/fiction|/genres/european-literature|/genres/swedish-literature|/genres/european-literature|/genres/scandinavian-literature|/genres/young-adult|/genres/adventure|/genres/european-literature|/genres/german-literature|/genres/novels,dir30/181087.Mio_My_Son.html,4937,"Mio, My Son" +3.88,1344,1439147973,good_reads:book,https://www.goodreads.com/author/show/580315.Jennifer_Estep,2010,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/vampires|/genres/romance|/genres/adult|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fiction,dir30/6611038-spider-s-bite.html,18013,"Spider's Bite (Elemental Assassin, #1)" +3.81,764,0393322572,good_reads:book,https://www.goodreads.com/author/show/21798.Betty_Friedan,1963,/genres/feminism|/genres/non-fiction|/genres/classics|/genres/psychology|/genres/politics|/genres/book-club|/genres/history|/genres/philosophy|/genres/womens,dir30/38723.The_Feminine_Mystique.html,11206,The Feminine Mystique +3.85,853,0007157177,good_reads:book,https://www.goodreads.com/author/show/1069006.C_S_Lewis,1945,/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/christian|/genres/classics|/genres/christian-fiction|/genres/science-fiction-fantasy|/genres/religion|/genres/religion|/genres/christianity|/genres/literature,dir30/100933.That_Hideous_Strength.html,17102,"That Hideous Strength (Space Trilogy, #3)" +3.59,3565,1416524517,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,2006,/genres/horror|/genres/fiction|/genres/horror|/genres/zombies|/genres/thriller|/genres/science-fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fantasy|/genres/science-fiction|/genres/apocalyptic|/genres/suspense,dir30/10567.Cell.html,103773,Cell +4.55,567,076536543X,good_reads:book,https://www.goodreads.com/author/show/38550.Brandon_Sanderson,2009,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fiction|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/epic|/genres/fantasy|/genres/high-fantasy|/genres/adult|/genres/science-fiction|/genres/dystopia,dir30/6604209-mistborn-trilogy-boxed-set.html,14738,"Mistborn Trilogy Boxed Set (Mistborn, #1-3)" +4.44,4023,1401908977,good_reads:book,https://www.goodreads.com/author/show/40411.Immaculee_Ilibagiza,2006,/genres/non-fiction|/genres/book-club|/genres/biography|/genres/autobiography|/genres/memoir|/genres/history|/genres/cultural|/genres/africa|/genres/religion|/genres/inspirational|/genres/biography|/genres/autobiography|/genres/christian,dir30/408615.Left_to_Tell.html,22964,Left to Tell +3.74,5905,,good_reads:book,https://www.goodreads.com/author/show/17061.Charlaine_Harris,2011,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/romance|/genres/mystery|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/adult,dir30/7981206-dead-reckoning.html,85791,"Dead Reckoning (Sookie Stackhouse, #11)" +4.08,261,1567923046,good_reads:book,https://www.goodreads.com/author/show/47421.Dino_Buzzati,1940,/genres/fiction|/genres/european-literature|/genres/italian-literature|/genres/classics|/genres/cultural|/genres/italy|/genres/novels|/genres/literature|/genres/war|/genres/fantasy|/genres/literature|/genres/20th-century|/genres/magical-realism,dir30/83017.The_Tartar_Steppe.html,4502,The Tartar Steppe +4.06,1839,0312349491,good_reads:book,https://www.goodreads.com/author/show/2384.Janet_Evanovich,2007,/genres/mystery|/genres/fiction|/genres/humor|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/mystery|/genres/crime|/genres/humor|/genres/funny|/genres/humor|/genres/comedy|/genres/thriller|/genres/mystery-thriller|/genres/contemporary,dir30/40317.Lean_Mean_Thirteen.html,60373,Lean Mean Thirteen (Stephanie Plum #13) +3.85,1153,0061161535,good_reads:book,https://www.goodreads.com/author/show/2238.Isabel_Allende,2006,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/european-literature|/genres/spanish-literature|/genres/literature|/genres/novels|/genres/romance|/genres/cultural|/genres/latin-american|/genres/magical-realism|/genres/adult-fiction,dir30/3300.In_s_of_My_Soul.html,12207,Inés of My Soul +3.80,1172,1439178232,good_reads:book,https://www.goodreads.com/author/show/203238.Jennifer_Echols,2010,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/high-school|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/young-adult-romance|/genres/fiction,dir30/7129588-forget-you.html,19134,Forget You +4.40,1117,,good_reads:book,https://www.goodreads.com/author/show/125308.Cinda_Williams_Chima,2011,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/magic|/genres/romance|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/young-adult|/genres/young-adult-fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/young-adult|/genres/teen,dir30/9409469-the-gray-wolf-throne.html,19373,"The Gray Wolf Throne (Seven Realms, #3)" +3.99,5343,145161747X,good_reads:book,https://www.goodreads.com/author/show/3502.Alice_Hoffman,2011,/genres/fiction|/genres/book-club|/genres/historical-fiction|/genres/magical-realism|/genres/adult-fiction|/genres/adult|/genres/literature|/genres/jewish,dir30/10950924-the-dovekeepers.html,33523,The Dovekeepers +3.97,471,0765342677,good_reads:book,https://www.goodreads.com/author/show/26878.Isobelle_Carmody,1987,/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fiction|/genres/science-fiction|/genres/adventure|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/young-adult-fantasy|/genres/science-fiction-fantasy,dir30/47916.Obernewtyn.html,6561,"Obernewtyn (Obernewtyn Chronicles, #1)" +3.87,1340,0142400769,good_reads:book,https://www.goodreads.com/author/show/63095.Andrew_Clements,2002,/genres/young-adult|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/mystery|/genres/childrens|/genres/young-adult|/genres/teen|/genres/childrens|/genres/middle-grade|/genres/realistic-fiction,dir30/542752.Things_Not_Seen.html,17354,"Things Not Seen (Things, #1)" +4.37,664,0842339760,good_reads:book,https://www.goodreads.com/author/show/6492.Francine_Rivers,1995,/genres/christian-fiction|/genres/historical-fiction|/genres/fiction|/genres/christian|/genres/romance|/genres/romance|/genres/christian-romance|/genres/religion|/genres/adult|/genres/christian-fiction|/genres/christian-historical-fiction|/genres/inspirational,dir30/95621.As_Sure_as_the_Dawn.html,16887,"As Sure as the Dawn (Mark of the Lion, #3)" +4.04,660,1857989341,good_reads:book,https://www.goodreads.com/author/show/16667.Isaac_Asimov,1973,/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/classics|/genres/fantasy,dir30/41821.The_Gods_Themselves.html,25747,The Gods Themselves +4.04,4732,0062200577,good_reads:book,https://www.goodreads.com/author/show/88506.Joe_Hill,2013,/genres/fantasy|/genres/thriller|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/supernatural,dir30/15729539-nos4a2.html,29587,NOS4A2 +4.08,3180,1408816032,good_reads:book,https://www.goodreads.com/author/show/176372.Madeline_Miller,2011,/genres/historical-fiction|/genres/fiction|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/romance|/genres/glbt|/genres/war,dir30/11250317-the-song-of-achilles.html,19732,The Song of Achilles +4.15,2032,0312966970,good_reads:book,https://www.goodreads.com/author/show/2384.Janet_Evanovich,1998,/genres/mystery|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/humor|/genres/romance|/genres/mystery|/genres/crime|/genres/humor|/genres/funny|/genres/humor|/genres/comedy,dir30/6422.Four_to_Score.html,85789,"Four to Score (Stephanie Plum, #4)" +3.70,880,0140183523,good_reads:book,https://www.goodreads.com/author/show/6989.Rudyard_Kipling,1901,/genres/classics|/genres/cultural|/genres/india|/genres/adventure|/genres/historical-fiction|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/fiction|/genres/young-adult|/genres/novels|/genres/cultural|/genres/asia,dir30/210834.Kim.html,17386,Kim +4.47,3505,,good_reads:book,https://www.goodreads.com/author/show/5829056.Amy_Harmon,2013,/genres/romance|/genres/new-adult|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/war|/genres/military|/genres/young-adult|/genres/fiction|/genres/drama|/genres/war|/genres/young-adult|/genres/high-school,dir30/18301124-making-faces.html,18137,Making Faces +3.05,5012,0143036696,good_reads:book,https://www.goodreads.com/author/show/4711.Sue_Monk_Kidd,2005,/genres/fiction|/genres/book-club|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/adult-fiction|/genres/contemporary|/genres/adult|/genres/novels|/genres/american|/genres/southern|/genres/womens,dir30/6976.The_Mermaid_Chair.html,53082,The Mermaid Chair +4.55,346,9753638027,good_reads:book,https://www.goodreads.com/author/show/116623.Sabahattin_Ali,1943,/genres/asian-literature|/genres/turkish-literature|/genres/cultural|/genres/turkish|/genres/novels|/genres/classics|/genres/fiction|/genres/roman|/genres/literature|/genres/romance|/genres/classics|/genres/modern-classics|/genres/literary-fiction,dir30/220826.K_rk_Mantolu_Madonna.html,8310,Kürk Mantolu Madonna +4.03,872,0689864124,good_reads:book,https://www.goodreads.com/author/show/140125.Heather_Vogel_Frederick,2007,/genres/young-adult|/genres/realistic-fiction|/genres/fiction|/genres/childrens|/genres/middle-grade|/genres/womens-fiction|/genres/chick-lit|/genres/childrens|/genres/contemporary,dir30/318016.The_Mother_Daughter_Book_Club.html,7078,"The Mother-Daughter Book Club (The Mother-Daughter Book Club, #1)" +4.07,488,0141026162,good_reads:book,https://www.goodreads.com/author/show/1194.Richard_Dawkins,1986,/genres/non-fiction|/genres/science|/genres/biology|/genres/evolution|/genres/science|/genres/biology|/genres/religion|/genres/philosophy|/genres/religion|/genres/atheism|/genres/science|/genres/popular-science|/genres/biology|/genres/genetics,dir30/117047.The_Blind_Watchmaker.html,15613,The Blind Watchmaker +4.14,204,846750269X,good_reads:book,https://www.goodreads.com/author/show/228898.Laura_Gallego_Garc_a,2004,/genres/fantasy|/genres/young-adult|/genres/european-literature|/genres/spanish-literature|/genres/fantasy|/genres/dragons|/genres/romance|/genres/fantasy|/genres/magic|/genres/adventure|/genres/childrens|/genres/cultural|/genres/spain|/genres/contemporary,dir30/1099262.La_resistencia.html,4196,"La resistencia (Memorias de Idhún, #1)" +4.20,97,0521567041,good_reads:book,https://www.goodreads.com/author/show/1938.Friedrich_Nietzsche,1878,/genres/philosophy|/genres/non-fiction|/genres/classics|/genres/european-literature|/genres/german-literature|/genres/psychology|/genres/philosophy|/genres/theory|/genres/history,dir30/451565.Human_All_Too_Human.html,5060,"Human, All Too Human" +4.24,4834,0805090037,good_reads:book,https://www.goodreads.com/author/show/58851.Hilary_Mantel,2012,/genres/historical-fiction|/genres/fiction|/genres/european-literature|/genres/british-literature|/genres/literary-fiction|/genres/book-club|/genres/literature|/genres/novels|/genres/mystery|/genres/adult-fiction|/genres/contemporary,dir30/13507212-bring-up-the-bodies.html,29040,"Bring Up the Bodies (Thomas Cromwell, #2)" +3.76,1015,0439856264,good_reads:book,https://www.goodreads.com/author/show/8347.Garth_Nix,2003,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/adventure|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/young-adult-fantasy|/genres/young-adult|/genres/teen,dir30/47613.Mister_Monday.html,22321,"Mister Monday (The Keys to the Kingdom, #1)" +3.78,314,0345440781,good_reads:book,https://www.goodreads.com/author/show/8732.David_Eddings,2000,/genres/fantasy|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/adult|/genres/romance|/genres/young-adult|/genres/fantasy|/genres/magic,dir30/110692.The_Redemption_of_Althalus.html,9838,The Redemption of Althalus +4.36,228,0345360338,good_reads:book,https://www.goodreads.com/author/show/24655.Sharon_Kay_Penman,1988,/genres/historical-fiction|/genres/fiction|/genres/historical-fiction|/genres/medieval|/genres/european-literature|/genres/british-literature|/genres/romance|/genres/romance|/genres/historical-romance|/genres/novels|/genres/fantasy|/genres/adult|/genres/epic,dir30/77448.Falls_the_Shadow.html,5285,"Falls the Shadow (Welsh Princes, #2)" +3.80,996,0140186301,good_reads:book,https://www.goodreads.com/author/show/13078.Kingsley_Amis,1953,/genres/fiction|/genres/classics|/genres/humor|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/humor|/genres/comedy|/genres/novels|/genres/literature|/genres/20th-century,dir30/395182.Lucky_Jim.html,13598,Lucky Jim +4.10,2713,0439796636,good_reads:book,https://www.goodreads.com/author/show/8080.Michael_Morpurgo,1982,/genres/historical-fiction|/genres/fiction|/genres/young-adult|/genres/animals|/genres/war|/genres/animals|/genres/horses|/genres/childrens|/genres/adventure|/genres/classics|/genres/childrens|/genres/middle-grade,dir30/792161.War_Horse.html,19618,"War Horse (War Horse, #1)" +3.63,1289,0385339658,good_reads:book,https://www.goodreads.com/author/show/721.John_Grisham,2003,/genres/fiction|/genres/mystery|/genres/thriller|/genres/thriller|/genres/legal-thriller|/genres/suspense|/genres/mystery|/genres/crime|/genres/law|/genres/thriller|/genres/mystery-thriller|/genres/adult|/genres/novels,dir30/5356.The_King_of_Torts.html,50821,The King of Torts +4.16,532,0778326497,good_reads:book,https://www.goodreads.com/author/show/415967.Rachel_Vincent,2009,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/shapeshifters|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/adult|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/shapeshifters|/genres/werewolves,dir30/4583888-pride.html,13105,"Pride (Shifters, #3)" +3.97,526,0590554085,good_reads:book,https://www.goodreads.com/author/show/8596.Tamora_Pierce,1997,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/young-adult-fantasy|/genres/young-adult|/genres/teen|/genres/childrens|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction-fantasy,dir30/58889.Sandry_s_Book.html,21934,"Sandry's Book (Circle of Magic, #1)" +4.07,699,0061232920,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2008,/genres/young-adult|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/young-adult|/genres/teen|/genres/contemporary|/genres/humor|/genres/realistic-fiction|/genres/humor|/genres/funny|/genres/young-adult|/genres/high-school,dir30/3474186-forever-princess.html,21976,"Forever Princess (The Princess Diaries, #10)" +3.69,1767,0345439104,good_reads:book,https://www.goodreads.com/author/show/3513.Christina_Schwarz,2000,/genres/book-club|/genres/mystery|/genres/contemporary|/genres/adult-fiction|/genres/adult|/genres/fiction|/genres/novels|/genres/literature|/genres/womens-fiction|/genres/chick-lit|/genres/drama,dir30/5171.Drowning_Ruth.html,53747,Drowning Ruth +3.72,383,0805210644,good_reads:book,https://www.goodreads.com/author/show/5223.Franz_Kafka,1927,/genres/fiction|/genres/classics|/genres/literature|/genres/european-literature|/genres/german-literature|/genres/novels|/genres/european-literature|/genres/czech-literature|/genres/philosophy|/genres/literature|/genres/20th-century|/genres/literary-fiction|/genres/magical-realism,dir30/22911.Amerika.html,10720,Amerika +4.22,679,0316113670,good_reads:book,https://www.goodreads.com/author/show/543080.Pseudonymous_Bosch,2008,/genres/mystery|/genres/adventure|/genres/fiction|/genres/young-adult|/genres/childrens|/genres/fantasy|/genres/humor|/genres/childrens|/genres/middle-grade,dir30/3359940-if-you-re-reading-this-it-s-too-late.html,13151,"If You're Reading This, It's Too Late (Secret, #2)" +3.89,1233,0061240850,good_reads:book,https://www.goodreads.com/author/show/6104.Marian_Keyes,2006,/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/romance|/genres/contemporary|/genres/adult|/genres/european-literature|/genres/irish-literature|/genres/drama|/genres/adult-fiction|/genres/cultural|/genres/ireland|/genres/book-club,dir30/165030.Anybody_Out_There_.html,33418,"Anybody Out There? (Walsh Family, #4)" +4.11,922,,good_reads:book,https://www.goodreads.com/author/show/4476934.Jennifer_L_Armentrout,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/mythology|/genres/romance|/genres/short-stories|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural,dir30/10860399-daimon.html,11528,"Daimon (Covenant, #0.5)" +3.78,999,0312426232,good_reads:book,https://www.goodreads.com/author/show/296961.Paul_Auster,2004,/genres/fiction|/genres/contemporary|/genres/literature|/genres/american|/genres/novels|/genres/new-york|/genres/literature|/genres/literary-fiction|/genres/book-club|/genres/roman|/genres/drama,dir30/446.The_Brooklyn_Follies.html,13136,The Brooklyn Follies +3.93,2799,0670022802,good_reads:book,https://www.goodreads.com/author/show/281810.Jojo_Moyes,2008,/genres/romance|/genres/fiction|/genres/historical-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/book-club|/genres/contemporary|/genres/adult,dir30/10163292-the-last-letter-from-your-lover.html,21111,The Last Letter from Your Lover +4.40,1537,,good_reads:book,https://www.goodreads.com/author/show/6670530.Lisa_De_Jong,2013,/genres/new-adult|/genres/romance|/genres/sociology|/genres/abuse|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/academic|/genres/college|/genres/young-adult|/genres/drama|/genres/womens-fiction|/genres/chick-lit|/genres/dark,dir30/17833493-when-it-rains.html,8648,"When It Rains (Rain, #1)" +3.69,307,0099460173,good_reads:book,https://www.goodreads.com/author/show/7577.Anne_Rice,2003,/genres/paranormal|/genres/vampires|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/horror|/genres/fantasy|/genres/paranormal|/genres/witches|/genres/occult|/genres/fantasy|/genres/urban-fantasy|/genres/family,dir30/31331.Blood_Canticle.html,15241,"Blood Canticle (The Vampire Chronicles, #10)" +4.36,839,044101769X,good_reads:book,https://www.goodreads.com/author/show/10746.Jim_Butcher,2008,/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/epic|/genres/adventure|/genres/adult|/genres/science-fiction|/genres/literature|/genres/american,dir30/6316821-first-lord-s-fury.html,28543,"First Lord's Fury (Codex Alera, #6)" +4.40,1309,0451461037,good_reads:book,https://www.goodreads.com/author/show/10746.Jim_Butcher,2006,/genres/fiction|/genres/mystery|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/science-fiction-fantasy|/genres/paranormal|/genres/vampires|/genres/paranormal|/genres/wizards|/genres/fantasy|/genres/urban-fantasy|/genres/science-fiction,dir30/91474.Proven_Guilty.html,52523,Proven Guilty (The Dresden Files #8) +3.92,706,0316035734,good_reads:book,https://www.goodreads.com/author/show/1423732.Simon_Holt,2008,/genres/young-adult|/genres/horror|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/demons|/genres/fiction|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/urban-fantasy|/genres/thriller,dir30/3374819-the-devouring.html,5889,"The Devouring (The Devouring, #1)" +3.94,1414,1936305941,good_reads:book,https://www.goodreads.com/author/show/4831831.Debra_Anastasia,2011,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/new-adult|/genres/adult|/genres/sociology|/genres/abuse|/genres/drama|/genres/fiction,dir30/13038680-poughkeepsie.html,9887,"Poughkeepsie (Poughkeepsie Brotherhood, #1)" +3.52,650,0060722290,good_reads:book,https://www.goodreads.com/author/show/3524.Joyce_Carol_Oates,2004,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/novels|/genres/literary-fiction|/genres/contemporary|/genres/adult-fiction|/genres/literature|/genres/romance|/genres/family,dir30/15967.The_Falls.html,6336,The Falls +4.17,560,0380794470,good_reads:book,https://www.goodreads.com/author/show/41313.Susan_Elizabeth_Phillips,1998,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/sports-and-games|/genres/sports|/genres/contemporary-romance|/genres/sports-romance|/genres/fiction|/genres/adult|/genres/humor|/genres/humor|/genres/funny,dir30/73095.Dream_a_Little_Dream.html,18123,"Dream a Little Dream (Chicago Stars, #4)" +3.92,745,0448095025,good_reads:book,https://www.goodreads.com/author/show/6001.Carolyn_Keene,1930,/genres/mystery|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/classics|/genres/childrens|/genres/juvenile|/genres/adventure|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/crime|/genres/young-adult|/genres/teen,dir30/233637.The_Hidden_Staircase.html,19224,"The Hidden Staircase (Nancy Drew, #2)" +4.00,504,0557489563,good_reads:book,https://www.goodreads.com/author/show/3486415.Amanda_Hocking,2010,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/young-adult|/genres/teen,dir30/8349348-flutter.html,14789,"Flutter (My Blood Approves, #3)" +4.00,930,0152047379,good_reads:book,https://www.goodreads.com/author/show/9720.Mary_Norton,1952,/genres/fantasy|/genres/childrens|/genres/fiction|/genres/classics|/genres/young-adult|/genres/childrens|/genres/juvenile|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/chapter-books|/genres/european-literature|/genres/british-literature,dir30/348573.The_Borrowers.html,55969,"The Borrowers (The Borrowers, #1)" +4.28,1361,0062012037,good_reads:book,https://www.goodreads.com/author/show/3406550.Josephine_Angelini,2013,/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/mythology|/genres/greek-mythology|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural,dir30/7849034-goddess.html,12960,"Goddess (Starcrossed, #3)" +4.06,733,1416936408,good_reads:book,https://www.goodreads.com/author/show/13957.Scott_Westerfeld,2007,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fantasy|/genres/fiction|/genres/adventure|/genres/young-adult|/genres/teen|/genres/science-fiction-fantasy|/genres/romance|/genres/apocalyptic|/genres/post-apocalyptic,dir30/493455.The_Uglies_Trilogy.html,11743,"The Uglies Trilogy (Uglies, #1-3)" +3.89,685,0060519568,good_reads:book,https://www.goodreads.com/author/show/13957.Scott_Westerfeld,2005,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/magic|/genres/horror,dir30/24767.Touching_Darkness.html,14372,"Touching Darkness (Midnighters, #2)" +3.92,947,1416954228,good_reads:book,https://www.goodreads.com/author/show/14617.Margaret_Peterson_Haddix,2009,/genres/science-fiction|/genres/young-adult|/genres/historical-fiction|/genres/science-fiction|/genres/time-travel|/genres/fantasy|/genres/adventure|/genres/fiction|/genres/mystery|/genres/childrens|/genres/childrens|/genres/middle-grade,dir30/3899465-sent.html,10545,"Sent (The Missing, #2)" +4.07,902,0060899190,good_reads:book,https://www.goodreads.com/author/show/8655.Frank_Warren,2005,/genres/non-fiction|/genres/art|/genres/humor|/genres/autobiography|/genres/memoir|/genres/adult|/genres/psychology|/genres/biography|/genres/humor|/genres/funny|/genres/art|/genres/photography|/genres/culture|/genres/pop-culture,dir30/87640.PostSecret.html,43341,PostSecret +3.79,1180,1846054761,good_reads:book,https://www.goodreads.com/author/show/3780.James_Patterson,2010,/genres/young-adult|/genres/fantasy|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/witches|/genres/young-adult|/genres/teen,dir30/7646805-the-gift.html,17762,"The Gift (Witch & Wizard, #2)" +4.28,4270,0684823780,good_reads:book,https://www.goodreads.com/author/show/1069006.C_S_Lewis,1952,/genres/non-fiction|/genres/religion|/genres/religion|/genres/theology|/genres/christian|/genres/classics|/genres/religion|/genres/christianity|/genres/religion|/genres/faith|/genres/philosophy|/genres/academic|/genres/read-for-school|/genres/spirituality,dir30/11138.Mere_Christianity.html,120846,Mere Christianity +4.34,3758,,good_reads:book,https://www.goodreads.com/author/show/6983012.Belle_Aurora,2014,/genres/romance|/genres/dark|/genres/erotica|/genres/bdsm|/genres/adult-fiction|/genres/erotica|/genres/new-adult|/genres/contemporary|/genres/sociology|/genres/abuse|/genres/adult|/genres/romance|/genres/contemporary-romance|/genres/romance|/genres/erotic-romance,dir30/18468559-raw.html,17669,Raw +3.54,1832,0385721420,good_reads:book,https://www.goodreads.com/author/show/9972.Julia_Glass,2002,/genres/fiction|/genres/book-club|/genres/contemporary|/genres/adult-fiction|/genres/literary-fiction|/genres/novels|/genres/literature|/genres/adult|/genres/cultural|/genres/scotland|/genres/family,dir30/227593.Three_Junes.html,30234,Three Junes +4.09,691,0451218590,good_reads:book,https://www.goodreads.com/author/show/9322.Edward_Albee,1962,/genres/plays|/genres/drama|/genres/classics|/genres/fiction|/genres/plays|/genres/theatre|/genres/literature|/genres/literature|/genres/american|/genres/academic|/genres/school,dir31/14940.Who_s_Afraid_of_Virginia_Woolf_.html,32993,Who's Afraid of Virginia Woolf? +4.33,1490,,good_reads:book,https://www.goodreads.com/author/show/6997072.Katy_Evans,2013,/genres/romance|/genres/new-adult|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/sports-and-games|/genres/sports|/genres/adult-fiction|/genres/erotica|/genres/adult,dir31/17830559-remy.html,15879,"Remy (Real, #3)" +4.52,605,,good_reads:book,https://www.goodreads.com/author/show/5014564.Quinn_Loftis,2012,/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/animals|/genres/wolves|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/shapeshifters|/genres/fantasy|/genres/magic,dir31/13363270-just-one-drop.html,11080,"Just One Drop (The Grey Wolves, #3)" +3.37,2823,0802142818,good_reads:book,https://www.goodreads.com/author/show/31428.Kiran_Desai,2005,/genres/fiction|/genres/cultural|/genres/india|/genres/book-club|/genres/historical-fiction|/genres/asian-literature|/genres/indian-literature|/genres/novels|/genres/literature|/genres/cultural|/genres/asia|/genres/literary-fiction|/genres/contemporary,dir31/95186.The_Inheritance_of_Loss.html,31085,The Inheritance of Loss +4.08,1622,0060887370,good_reads:book,https://www.goodreads.com/author/show/93970.Sara_Shepard,2007,/genres/young-adult|/genres/mystery|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/contemporary|/genres/romance|/genres/young-adult|/genres/teen|/genres/realistic-fiction|/genres/thriller|/genres/drama,dir31/1651302.Perfect.html,40813,"Perfect (Pretty Little Liars, #3)" +4.13,705,0312934343,good_reads:book,https://www.goodreads.com/author/show/4430.Sherrilyn_Kenyon,2006,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/mythology|/genres/adult|/genres/paranormal|/genres/shapeshifters|/genres/romance|/genres/fiction,dir31/84146.Dark_Side_of_the_Moon.html,22479,"Dark Side of the Moon (Dark-Hunter #7, Were-Hunter #3)" +3.90,430,0679750150,good_reads:book,https://www.goodreads.com/author/show/35258.Yukio_Mishima,1963,/genres/fiction|/genres/cultural|/genres/japan|/genres/asian-literature|/genres/japanese-literature|/genres/literature|/genres/classics|/genres/novels|/genres/cultural|/genres/asia|/genres/literature|/genres/asian-literature|/genres/literature|/genres/20th-century|/genres/literary-fiction,dir31/162332.The_Sailor_Who_Fell_from_Grace_with_the_Sea.html,6431,The Sailor Who Fell from Grace with the Sea +4.09,338,0573613052,good_reads:book,https://www.goodreads.com/author/show/1466.Jean_Paul_Sartre,1944,/genres/plays|/genres/philosophy|/genres/classics|/genres/drama|/genres/fiction|/genres/cultural|/genres/france|/genres/plays|/genres/theatre|/genres/european-literature|/genres/french-literature|/genres/literature|/genres/academic|/genres/school,dir31/123933.No_Exit.html,11543,No Exit +3.95,338,0060638508,good_reads:book,https://www.goodreads.com/author/show/6191.Martin_Heidegger,1927,/genres/non-fiction|/genres/classics|/genres/philosophy|/genres/theory|/genres/philosophy|/genres/psychology|/genres/philosophy|/genres/metaphysics|/genres/cultural|/genres/germany|/genres/science|/genres/academic|/genres/academic|/genres/college,dir31/92307.Being_and_Time.html,10697,Being and Time +3.97,41,0983740208,good_reads:book,https://www.goodreads.com/author/show/5130924.Michael_West,2011,/genres/horror|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/ghosts|/genres/novels,dir31/12292002-cinema-of-shadows.html,145,"Cinema of Shadows (Harmony, Indiana, #2)" +4.06,497,0980003431,good_reads:book,https://www.goodreads.com/author/show/2063919.Michael_J_Sullivan,2008,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic,dir31/4345290-the-crown-conspiracy.html,6426,"The Crown Conspiracy (The Riyria Revelations, #1)" +4.35,833,156389226X,good_reads:book,https://www.goodreads.com/author/show/1221698.Neil_Gaiman,1991,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fiction|/genres/fantasy|/genres/horror|/genres/graphic-novels-comics|/genres/comics|/genres/comic-book|/genres/fantasy|/genres/mythology,dir31/25100.The_Sandman_Vol_3.html,43101,"The Sandman, Vol. 3 (The Sandman #3)" +4.25,2521,0062285637,good_reads:book,https://www.goodreads.com/author/show/4039811.Veronica_Roth,2013,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/short-stories|/genres/fantasy|/genres/fiction,dir31/18080920-the-transfer.html,31874,"The Transfer (Divergent, #0.1)" +4.07,2091,1589190629,good_reads:book,https://www.goodreads.com/author/show/40552.Jan_Karon,1994,/genres/fiction|/genres/christian-fiction|/genres/christian|/genres/book-club|/genres/adult-fiction|/genres/inspirational|/genres/contemporary|/genres/adult|/genres/novels,dir31/71776.At_Home_in_Mitford.html,30709,"At Home in Mitford (Mitford Years, #1)" +3.66,542,0156029065,good_reads:book,https://www.goodreads.com/author/show/1730.Umberto_Eco,2000,/genres/fiction|/genres/historical-fiction|/genres/literature|/genres/fantasy|/genres/european-literature|/genres/italian-literature|/genres/historical-fiction|/genres/medieval|/genres/cultural|/genres/italy|/genres/novels|/genres/adventure|/genres/classics,dir31/10507.Baudolino.html,11737,Baudolino +3.85,715,0553379615,good_reads:book,https://www.goodreads.com/author/show/49347.Jean_Hegland,1996,/genres/fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/science-fiction|/genres/science-fiction|/genres/apocalyptic|/genres/book-club|/genres/speculative-fiction|/genres/adventure|/genres/survival|/genres/novels,dir31/86236.Into_the_Forest.html,4706,Into the Forest +3.77,2429,0743418719,good_reads:book,https://www.goodreads.com/author/show/7128.Jodi_Picoult,2001,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/romance|/genres/mystery|/genres/drama|/genres/adult-fiction|/genres/adult|/genres/realistic-fiction|/genres/novels,dir31/10915.Salem_Falls.html,47283,Salem Falls +3.75,1654,0425179613,good_reads:book,https://www.goodreads.com/author/show/1544.Lance_Armstrong,1999,/genres/non-fiction|/genres/biography|/genres/autobiography|/genres/memoir|/genres/sports|/genres/cycling|/genres/biography|/genres/autobiography|/genres/sports-and-games|/genres/sports|/genres/biography-memoir|/genres/inspirational|/genres/health|/genres/book-club,dir31/2265.It_s_Not_About_the_Bike.html,26766,It's Not About the Bike +4.28,951,0525951571,good_reads:book,https://www.goodreads.com/author/show/1956402.Daniel_Suarez,2010,/genres/science-fiction|/genres/fiction|/genres/thriller|/genres/science-fiction|/genres/cyberpunk|/genres/science|/genres/technology,dir31/7132363-freedom.html,11838,"Freedom™ (Daemon, #2)" +3.60,626,0312420331,good_reads:book,https://www.goodreads.com/author/show/7010931.J_G_Ballard,1973,/genres/fiction|/genres/science-fiction|/genres/literature|/genres/novels|/genres/thriller|/genres/contemporary|/genres/dark|/genres/horror|/genres/european-literature|/genres/british-literature|/genres/literary-fiction,dir31/70241.Crash.html,9761,Crash +4.20,104,0345432347,good_reads:book,https://www.goodreads.com/author/show/11586.David_Gemmell,1998,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fiction|/genres/fantasy|/genres/heroic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/science-fiction-fantasy,dir31/62292.Sword_in_the_Storm.html,4802,"Sword in the Storm (The Rigante, #1)" +4.29,897,0143017861,good_reads:book,https://www.goodreads.com/author/show/88550.Joseph_Boyden,2005,/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/canada|/genres/war|/genres/book-club|/genres/literature|/genres/canadian-literature|/genres/literature|/genres/adult-fiction|/genres/academic|/genres/school|/genres/adult,dir31/823411.Three_Day_Road.html,9392,Three Day Road +4.13,353,0140449914,good_reads:book,https://www.goodreads.com/author/show/1774448.Jaroslav_Ha_ek,1923,/genres/fiction|/genres/classics|/genres/european-literature|/genres/czech-literature|/genres/humor|/genres/war|/genres/literature|/genres/historical-fiction|/genres/novels|/genres/humor|/genres/comedy|/genres/literature|/genres/20th-century,dir31/7629.The_Good_Soldier_vejk.html,5804,The Good Soldier Švejk +3.81,495,037576013X,good_reads:book,https://www.goodreads.com/author/show/173.George_Eliot,1876,/genres/classics|/genres/fiction|/genres/literature|/genres/19th-century|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/historical-fiction|/genres/romance|/genres/novels,dir31/304.Daniel_Deronda.html,11890,Daniel Deronda +4.26,563,057506708X,good_reads:book,https://www.goodreads.com/author/show/1803294.W_adys_aw_Szpilman,1946,/genres/non-fiction|/genres/history|/genres/world-war-ii|/genres/holocaust|/genres/biography|/genres/autobiography|/genres/memoir|/genres/war|/genres/history|/genres/world-war-ii|/genres/biography|/genres/autobiography|/genres/classics|/genres/european-literature|/genres/polish-literature,dir31/128066.The_Pianist.html,26551,The Pianist +3.99,371,0765305240,good_reads:book,https://www.goodreads.com/author/show/3441.Terry_Goodkind,2006,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/epic|/genres/fantasy|/genres/high-fantasy|/genres/romance|/genres/adventure|/genres/adult,dir31/43884.Phantom.html,28138,"Phantom (Sword of Truth, #10)" +3.76,242,0345412214,good_reads:book,https://www.goodreads.com/author/show/12605.Mario_Puzo,1986,/genres/fiction|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery|/genres/novels|/genres/classics|/genres/action|/genres/suspense|/genres/drama|/genres/literature,dir31/364089.The_Last_Don.html,8906,The Last Don +4.09,467,0060935766,good_reads:book,https://www.goodreads.com/author/show/12542.Bernard_Cornwell,2000,/genres/historical-fiction|/genres/fiction|/genres/historical-fiction|/genres/medieval|/genres/fantasy|/genres/war|/genres/adventure|/genres/war|/genres/military|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/14th-century|/genres/action,dir31/68531.The_Archer_s_Tale.html,12205,"The Archer's Tale (The Grail Quest, #1)" +4.03,35,193792971X,good_reads:book,https://www.goodreads.com/author/show/5130924.Michael_West,2012,/genres/horror,dir31/16074582-spook-house.html,97,"Spook House (Harmony, Indiana, #3)" +3.95,418,0765344319,good_reads:book,https://www.goodreads.com/author/show/3441.Terry_Goodkind,2004,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/epic|/genres/fantasy|/genres/high-fantasy|/genres/romance|/genres/adventure|/genres/adult,dir31/43887.Chainfire.html,29685,"Chainfire (Sword of Truth, #9)" +4.74,36,,good_reads:book,https://www.goodreads.com/author/show/6521036.J_K_Accinni,2013,/genres/science-fiction|/genres/aliens|/genres/science-fiction|/genres/young-adult,dir31/18044158-the-one.html,165,"The One (Species Intervention #6609, #6)" +3.85,1394,0142408654,good_reads:book,https://www.goodreads.com/author/show/57462.Eva_Ibbotson,1981,/genres/historical-fiction|/genres/young-adult|/genres/fiction|/genres/young-adult|/genres/teen|/genres/womens-fiction|/genres/chick-lit|/genres/cultural|/genres/russia|/genres/european-literature|/genres/british-literature|/genres/adult|/genres/fantasy|/genres/romance,dir31/714569.A_Countess_Below_Stairs.html,12782,A Countess Below Stairs +3.78,1401,1416985794,good_reads:book,https://www.goodreads.com/author/show/453897.Janne_Teller,2000,/genres/young-adult|/genres/fiction|/genres/young-adult|/genres/teen|/genres/contemporary|/genres/realistic-fiction|/genres/philosophy|/genres/horror|/genres/academic|/genres/school|/genres/european-literature|/genres/danish|/genres/young-adult|/genres/coming-of-age,dir31/6647312-nothing.html,7881,Nothing +4.06,596,1582349606,good_reads:book,https://www.goodreads.com/author/show/109354.Kirsten_Miller,2006,/genres/young-adult|/genres/mystery|/genres/adventure|/genres/fantasy|/genres/fiction|/genres/young-adult|/genres/teen|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/contemporary|/genres/new-york,dir31/187753.Inside_the_Shadow_City.html,4158,"Inside the Shadow City (Kiki Strike,#1)" +3.99,759,0007158475,good_reads:book,https://www.goodreads.com/author/show/61105.Dr_Seuss,1965,/genres/childrens|/genres/childrens|/genres/picture-books|/genres/fiction|/genres/classics|/genres/poetry,dir31/105551.Fox_in_Socks.html,29426,Fox in Socks +4.00,658,0778325806,good_reads:book,https://www.goodreads.com/author/show/445303.Maria_V_Snyder,2009,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/romance|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/adventure|/genres/fantasy|/genres/high-fantasy,dir31/6351939-sea-glass.html,11292,"Sea Glass (Glass, #2)" +4.01,744,0778303918,good_reads:book,https://www.goodreads.com/author/show/445303.Maria_V_Snyder,2010,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/romance|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/young-adult-fantasy|/genres/science-fiction-fantasy,dir31/7970273-spy-glass.html,9455,"Spy Glass (Glass, #3)" +4.16,318,0451239482,good_reads:book,https://www.goodreads.com/author/show/51304.Catherine_Anderson,2013,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/science-fiction|/genres/time-travel|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/fiction|/genres/romance|/genres/time-travel-romance|/genres/romance|/genres/western-romance,dir31/15742663-perfect-timing.html,1031,Perfect Timing +4.01,427,0618565868,good_reads:book,https://www.goodreads.com/author/show/3506.Carson_McCullers,1951,/genres/fiction|/genres/short-stories|/genres/classics|/genres/gothic|/genres/southern-gothic|/genres/american|/genres/southern|/genres/literature|/genres/american|/genres/literature|/genres/literary-fiction,dir31/45791.The_Ballad_of_the_Sad_Caf_and_Other_Stories.html,6417,The Ballad of the Sad Café and Other Stories +4.21,1323,0316187747,good_reads:book,https://www.goodreads.com/author/show/2063919.Michael_J_Sullivan,2009,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/high-fantasy,dir31/10790290-theft-of-swords.html,16027,"Theft of Swords (The Riyria Revelations, #1-2)" +4.20,1206,0061566179,good_reads:book,https://www.goodreads.com/author/show/93970.Sara_Shepard,2010,/genres/young-adult|/genres/mystery|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/romance|/genres/realistic-fiction|/genres/thriller|/genres/drama,dir31/3047851-wanted.html,29496,"Wanted (Pretty Little Liars, #8)" +4.06,294,0312957572,good_reads:book,https://www.goodreads.com/author/show/4043.Wilbur_Smith,1995,/genres/historical-fiction|/genres/adventure|/genres/fiction|/genres/cultural|/genres/egypt|/genres/thriller|/genres/mystery|/genres/fantasy|/genres/cultural|/genres/africa|/genres/thriller|/genres/mystery-thriller|/genres/action,dir31/416580.The_Seventh_Scroll.html,8681,"The Seventh Scroll (Ancient Egypt, #2)" +3.96,1738,0553588265,good_reads:book,https://www.goodreads.com/author/show/9355.Dean_Koontz,2005,/genres/horror|/genres/fiction|/genres/mystery|/genres/thriller|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/suspense|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/ghosts,dir31/16433.Forever_Odd.html,44198,"Forever Odd (Odd Thomas, #2)" +4.37,325,157734720X,good_reads:book,https://www.goodreads.com/author/show/77656.Lucy_Mack_Smith,1853,/genres/religion|/genres/biography|/genres/christianity|/genres/lds|/genres/non-fiction|/genres/history|/genres/religion|/genres/church|/genres/spirituality|/genres/lds|/genres/lds-non-fiction|/genres/lds|/genres/mormonism|/genres/inspirational,dir31/218431.The_History_of_Joseph_Smith_by_His_Mother.html,3516,The History of Joseph Smith by His Mother +4.43,2025,1590382234,good_reads:book,https://www.goodreads.com/author/show/244801.James_L_Ferrell,2004,/genres/religion|/genres/christianity|/genres/lds|/genres/inspirational|/genres/book-club|/genres/religion|/genres/church|/genres/self-help|/genres/spirituality|/genres/non-fiction|/genres/lds|/genres/lds-fiction|/genres/christian,dir31/434535.The_Peacegiver.html,10353,The Peacegiver +4.18,1000,0982417020,good_reads:book,https://www.goodreads.com/author/show/2704714.Tymber_Dalton,2009,/genres/erotica|/genres/bdsm|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/erotica|/genres/menage|/genres/contemporary|/genres/adult|/genres/romance|/genres/erotic-romance|/genres/romance|/genres/contemporary-romance|/genres/menage|/genres/m-f-m|/genres/dark,dir31/6088255-the-reluctant-dom.html,7141,The Reluctant Dom +4.33,633,1582431604,good_reads:book,https://www.goodreads.com/author/show/8567.Wendell_Berry,2000,/genres/fiction|/genres/book-club|/genres/literature|/genres/novels|/genres/historical-fiction|/genres/literary-fiction|/genres/religion|/genres/faith|/genres/classics,dir31/57460.Jayber_Crow.html,3956,Jayber Crow +3.98,1704,0375822070,good_reads:book,https://www.goodreads.com/author/show/4273.Roald_Dahl,1970,/genres/childrens|/genres/fiction|/genres/fantasy|/genres/classics|/genres/young-adult|/genres/animals,dir31/6693.Fantastic_Mr_Fox.html,45794,Fantastic Mr. Fox +3.63,699,0440900565,good_reads:book,https://www.goodreads.com/author/show/11188.Bette_Greene,1973,/genres/young-adult|/genres/historical-fiction|/genres/fiction|/genres/classics|/genres/romance|/genres/history|/genres/world-war-ii|/genres/world-war-ii|/genres/holocaust|/genres/childrens|/genres/academic|/genres/school|/genres/war,dir31/18580.Summer_of_My_German_Soldier.html,11074,"Summer of My German Soldier (Summer of My German Soldier, #1)" +4.13,635,,good_reads:book,https://www.goodreads.com/author/show/5816.Darren_Shan,2000,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/horror|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/adventure|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/teen,dir31/8957.Tunnels_of_Blood.html,21419,"Tunnels of Blood (Cirque Du Freak, #3)" +4.26,456,,good_reads:book,https://www.goodreads.com/author/show/8596.Tamora_Pierce,2002,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/young-adult|/genres/young-adult-fantasy|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/teen|/genres/adventure|/genres/science-fiction-fantasy|/genres/childrens|/genres/fantasy|/genres/high-fantasy,dir31/153800.Lady_Knight.html,28320,"Lady Knight (Protector of the Small, #4)" +3.82,1467,1416913184,good_reads:book,https://www.goodreads.com/author/show/262086.Lauren_Barnholdt,2007,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/travel|/genres/road-trip|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/new-adult|/genres/fiction|/genres/young-adult|/genres/young-adult-romance,dir31/1672727.Two_Way_Street.html,33801,Two-Way Street +3.71,13297,0316176486,good_reads:book,https://www.goodreads.com/author/show/10015.Kate_Atkinson,2013,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/fantasy|/genres/adult|/genres/adult-fiction|/genres/literary-fiction|/genres/science-fiction|/genres/time-travel|/genres/history|/genres/world-war-ii|/genres/european-literature|/genres/british-literature,dir31/15790842-life-after-life.html,88203,Life After Life +4.44,1525,1416521690,good_reads:book,https://www.goodreads.com/author/show/29621.Sister_Souljah,1999,/genres/fiction|/genres/cultural|/genres/african-american|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/adult|/genres/adult-fiction|/genres/american|/genres/african-american-literature|/genres/womens-fiction|/genres/chick-lit|/genres/drama|/genres/novels,dir31/106393.The_Coldest_Winter_Ever.html,17104,The Coldest Winter Ever +3.76,1335,0375990674,good_reads:book,https://www.goodreads.com/author/show/2905297.Lauren_Kate,2012,/genres/paranormal|/genres/angels|/genres/young-adult|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance,dir31/12588363-fallen-in-love.html,22903,"Fallen in Love (Fallen, #3.5)" +4.12,271,0486452352,good_reads:book,https://www.goodreads.com/author/show/232932.Nikolai_Gogol,1835,/genres/fiction|/genres/short-stories|/genres/cultural|/genres/russia|/genres/literature|/genres/classics|/genres/literature|/genres/russian-literature|/genres/literature|/genres/19th-century|/genres/novels|/genres/plays,dir31/28382.Diary_of_a_Madman_and_Other_Stories.html,5935,Diary of a Madman and Other Stories +3.90,2702,1599903229,good_reads:book,https://www.goodreads.com/author/show/359109.Jessica_Day_George,2009,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/fairy-tales|/genres/romance|/genres/fiction|/genres/retellings|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/teen|/genres/fairy-tales|/genres/fairy-tale-retellings|/genres/historical-fiction,dir31/3697927-princess-of-the-midnight-ball.html,19769,"Princess of the Midnight Ball (Princess, #1)" +3.81,2472,0446580260,good_reads:book,https://www.goodreads.com/author/show/326788.Eric_Weiner,2008,/genres/non-fiction|/genres/travel|/genres/book-club|/genres/autobiography|/genres/memoir|/genres/psychology|/genres/humor|/genres/philosophy|/genres/sociology|/genres/adult|/genres/adventure,dir31/1918305.The_Geography_of_Bliss.html,17342,The Geography of Bliss +4.13,761,0765326302,good_reads:book,https://www.goodreads.com/author/show/338705.Catherynne_M_Valente,2011,/genres/fantasy|/genres/historical-fiction|/genres/fiction|/genres/fantasy|/genres/fairy-tales|/genres/fantasy|/genres/mythology|/genres/cultural|/genres/russia|/genres/romance|/genres/adult|/genres/folklore|/genres/war,dir31/8694389-deathless.html,4924,"Deathless (Deathless, #1)" +4.51,97,0893860220,good_reads:book,https://www.goodreads.com/author/show/172897.Nisargadatta_Maharaj,1973,/genres/spirituality|/genres/philosophy|/genres/non-fiction|/genres/religion|/genres/religion|/genres/buddhism|/genres/self-help,dir31/299869.I_Am_That.html,1992,I Am That +4.28,376,0060744545,good_reads:book,https://www.goodreads.com/author/show/27498.Erin_Hunter,2005,/genres/fantasy|/genres/animals|/genres/young-adult|/genres/fiction|/genres/animals|/genres/cats|/genres/adventure|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/animals|/genres/animal-fiction|/genres/action,dir31/296942.Moonrise.html,14445,"Moonrise (Warriors: The New Prophecy, #2)" +4.18,468,0451462335,good_reads:book,https://www.goodreads.com/author/show/8649.Juliet_Marillier,2008,/genres/fantasy|/genres/romance|/genres/historical-fiction|/genres/fiction|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/fantasy|/genres/fairy-tales|/genres/science-fiction-fantasy|/genres/adult|/genres/adventure,dir31/2917816-heir-to-sevenwaters.html,8132,"Heir to Sevenwaters (Sevenwaters, #4)" +4.02,2937,,good_reads:book,https://www.goodreads.com/author/show/4872191.Abbi_Glines,2011,/genres/romance|/genres/young-adult|/genres/new-adult|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/womens-fiction|/genres/chick-lit,dir31/12900174-the-vincent-boys.html,49955,"The Vincent Boys (The Vincent Boys, #1)" +3.82,975,0752861743,good_reads:book,https://www.goodreads.com/author/show/14473.James_M_Cain,1934,/genres/fiction|/genres/classics|/genres/mystery|/genres/mystery|/genres/crime|/genres/mystery|/genres/noir|/genres/thriller|/genres/novels|/genres/literature|/genres/american|/genres/literature|/genres/thriller|/genres/mystery-thriller,dir31/25807.The_Postman_Always_Rings_Twice.html,15922,The Postman Always Rings Twice +3.76,143,0192832883,good_reads:book,https://www.goodreads.com/author/show/389792.William_Henry_Hudson,1904,/genres/fantasy|/genres/classics|/genres/romance|/genres/literature|/genres/fiction|/genres/novels|/genres/adventure|/genres/historical-fiction|/genres/classics|/genres/classic-literature|/genres/literary-fiction,dir31/817019.Green_Mansions.html,1569,Green Mansions +4.31,1319,1423166000,good_reads:book,https://www.goodreads.com/author/show/56224.Ally_Carter,2013,/genres/young-adult|/genres/mystery|/genres/romance|/genres/contemporary|/genres/adventure|/genres/young-adult|/genres/teen|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/mystery|/genres/crime|/genres/spy-thriller|/genres/espionage,dir31/13580928-perfect-scoundrels.html,13319,"Perfect Scoundrels (Heist Society, #3)" +4.07,479,0441005764,good_reads:book,https://www.goodreads.com/author/show/5329.Brian_Jacques,1988,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/animals|/genres/adventure|/genres/science-fiction-fantasy|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/young-adult|/genres/teen,dir31/201341.Mossflower.html,48797,"Mossflower (Redwall, #2)" +4.08,298,006128887X,good_reads:book,https://www.goodreads.com/author/show/153734.Ellen_Schreiber,2009,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/urban-fantasy,dir31/5111039-royal-blood.html,16539,"Royal Blood (Vampire Kisses, #6)" +3.37,1213,0061750441,good_reads:book,https://www.goodreads.com/author/show/566.Paulo_Coelho,2008,/genres/fiction|/genres/novels|/genres/thriller|/genres/philosophy|/genres/contemporary|/genres/inspirational|/genres/spirituality|/genres/mystery|/genres/romance|/genres/mystery|/genres/crime,dir31/5356711-the-winner-stands-alone.html,17596,The Winner Stands Alone +3.99,513,0802131808,good_reads:book,https://www.goodreads.com/author/show/6936674.Sadegh_Hedayat,1937,/genres/fiction|/genres/novels|/genres/cultural|/genres/iran|/genres/literature|/genres/classics|/genres/horror|/genres/philosophy|/genres/modern|/genres/book-club|/genres/short-stories,dir31/45967.The_Blind_Owl.html,7297,The Blind Owl +4.45,1537,1423165993,good_reads:book,https://www.goodreads.com/author/show/56224.Ally_Carter,2013,/genres/young-adult|/genres/romance|/genres/spy-thriller|/genres/espionage|/genres/mystery|/genres/contemporary|/genres/adventure|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/action|/genres/young-adult|/genres/teen,dir31/13580951-united-we-spy.html,13198,"United We Spy (Gallagher Girls, #6)" +4.22,1199,1595540210,good_reads:book,https://www.goodreads.com/author/show/1441.Ted_Dekker,2004,/genres/fantasy|/genres/christian-fiction|/genres/fiction|/genres/christian|/genres/thriller|/genres/science-fiction|/genres/mystery|/genres/suspense|/genres/adult|/genres/adventure,dir31/125956.Black.html,18394,"Black (The Circle, #1)" +4.25,182,078691811X,good_reads:book,https://www.goodreads.com/author/show/1023510.R_A_Salvatore,1988,/genres/dungeons-and-dragons|/genres/forgotten-realms|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/science-fiction-fantasy|/genres/adventure|/genres/role-playing-games|/genres/dungeons-and-dragons|/genres/science-fiction|/genres/heroic-fantasy|/genres/sword-and-sorcery|/genres/adult|/genres/novels,dir31/62485.The_Icewind_Dale_Trilogy_Collector_s_Edition.html,9637,"The Icewind Dale Trilogy Collector's Edition (Forgotten Realms: Icewind Dale, #1-3; Legend of Drizzt, #4-6)" +4.19,208,0156340402,good_reads:book,https://www.goodreads.com/author/show/10991.Stanis_aw_Lem,1971,/genres/science-fiction|/genres/fiction|/genres/european-literature|/genres/polish-literature|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/humor|/genres/novels,dir31/733473.The_Futurological_Congress.html,3652,The Futurological Congress +3.95,447,0545060494,good_reads:book,https://www.goodreads.com/author/show/61707.Linda_Sue_Park,2010,/genres/mystery|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/fantasy|/genres/childrens|/genres/juvenile|/genres/action|/genres/realistic-fiction,dir31/6697305-storm-warning.html,30457,"Storm Warning (The 39 Clues, #9)" +4.11,1114,0345447867,good_reads:book,https://www.goodreads.com/author/show/18149.Tess_Gerritsen,2002,/genres/mystery|/genres/mystery|/genres/crime|/genres/thriller|/genres/fiction|/genres/suspense|/genres/thriller|/genres/mystery-thriller,dir31/715834.The_Apprentice.html,23392,The Apprentice (Rizzoli & Isles #2) +4.09,570,0006511252,good_reads:book,https://www.goodreads.com/author/show/14220.George_MacDonald_Fraser,1969,/genres/humor|/genres/historical-fiction|/genres/adventure|/genres/fiction|/genres/humor|/genres/comedy|/genres/war|/genres/war|/genres/military|/genres/novels|/genres/classics|/genres/action,dir31/142458.Flashman.html,6020,"Flashman (The Flashman Papers, #1)" +4.06,469,0812970438,good_reads:book,https://www.goodreads.com/author/show/7995.James_A_Michener,1978,/genres/fiction|/genres/historical-fiction|/genres/adventure|/genres/novels|/genres/classics|/genres/contemporary|/genres/literature|/genres/adult|/genres/literature|/genres/american|/genres/drama,dir31/12661.Chesapeake.html,10266,Chesapeake +4.02,318,0753819481,good_reads:book,https://www.goodreads.com/author/show/7380.Alice_Walker,1989,/genres/fiction|/genres/cultural|/genres/african-american|/genres/feminism|/genres/literature|/genres/magical-realism|/genres/classics|/genres/novels|/genres/contemporary|/genres/womens|/genres/literary-fiction,dir31/60937.The_Temple_Of_My_Familiar.html,9738,The Temple Of My Familiar +4.15,228,0140445684,good_reads:book,https://www.goodreads.com/author/show/7084.Karl_Marx,1867,/genres/philosophy|/genres/economics|/genres/politics|/genres/non-fiction|/genres/history|/genres/classics|/genres/philosophy|/genres/theory|/genres/sociology,dir31/325785.Capital_Volume_1.html,4123,"Capital, Volume 1 (Das Kapital, #1)" +3.79,323,0812967194,good_reads:book,https://www.goodreads.com/author/show/159.Henry_James,1901,/genres/classics|/genres/fiction|/genres/literature|/genres/literature|/genres/american|/genres/historical-fiction|/genres/cultural|/genres/italy|/genres/classics|/genres/classic-literature|/genres/literature|/genres/20th-century|/genres/romance|/genres/literary-fiction,dir31/124272.The_Wings_of_the_Dove.html,9758,The Wings of the Dove +4.29,970,0007191324,good_reads:book,https://www.goodreads.com/author/show/36346.Jennifer_Donnelly,2006,/genres/historical-fiction|/genres/romance|/genres/fiction|/genres/romance|/genres/historical-romance|/genres/adult|/genres/european-literature|/genres/british-literature|/genres/womens-fiction|/genres/chick-lit|/genres/drama|/genres/cultural|/genres/africa|/genres/adult-fiction,dir31/396266.The_Winter_Rose.html,10184,"The Winter Rose (The Tea Rose, #2)" +3.81,1275,0385339682,good_reads:book,https://www.goodreads.com/author/show/721.John_Grisham,2004,/genres/fiction|/genres/mystery|/genres/thriller|/genres/suspense|/genres/thriller|/genres/legal-thriller|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery-thriller|/genres/law|/genres/novels|/genres/adult-fiction,dir31/5346.The_Last_Juror.html,50136,The Last Juror +3.85,778,0060987464,good_reads:book,https://www.goodreads.com/author/show/14280.Marilyn_Manson,1998,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/biography|/genres/biography|/genres/autobiography|/genres/music|/genres/biography-memoir|/genres/adult|/genres/music|/genres/musicians|/genres/literature|/genres/american|/genres/true-story,dir31/37847.The_Long_Hard_Road_Out_of_Hell.html,14935,The Long Hard Road Out of Hell +4.04,1727,,good_reads:book,https://www.goodreads.com/author/show/5784345.Nyrae_Dawn,2012,/genres/new-adult|/genres/romance|/genres/contemporary|/genres/academic|/genres/college|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/drama|/genres/realistic-fiction|/genres/adult,dir31/15993374-charade.html,27832,"Charade (Games, #1)" +4.44,1065,1563892251,good_reads:book,https://www.goodreads.com/author/show/1221698.Neil_Gaiman,1990,/genres/sequential-art|/genres/comics|/genres/sequential-art|/genres/graphic-novels|/genres/fiction|/genres/horror|/genres/graphic-novels-comics|/genres/comics|/genres/comic-book|/genres/fantasy|/genres/fantasy|/genres/mythology|/genres/science-fiction-fantasy|/genres/fantasy|/genres/urban-fantasy,dir31/25099.The_Sandman_Vol_2.html,43636,"The Sandman, Vol. 2 (The Sandman #2)" +3.64,8805,0812983602,good_reads:book,https://www.goodreads.com/author/show/5142414.Karen_Thompson_Walker,2012,/genres/fiction|/genres/young-adult|/genres/science-fiction|/genres/book-club|/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/coming-of-age|/genres/fantasy|/genres/adult-fiction,dir31/12401556-the-age-of-miracles.html,53977,The Age of Miracles +3.84,957,0743264460,good_reads:book,https://www.goodreads.com/author/show/375.Chuck_Klosterman,2005,/genres/non-fiction|/genres/music|/genres/autobiography|/genres/memoir|/genres/culture|/genres/pop-culture|/genres/humor|/genres/writing|/genres/essays|/genres/travel|/genres/biography|/genres/culture|/genres/contemporary,dir31/597.Killing_Yourself_to_Live.html,19457,Killing Yourself to Live +3.69,1002,0553807145,good_reads:book,https://www.goodreads.com/author/show/9355.Dean_Koontz,2009,/genres/horror|/genres/fiction|/genres/suspense|/genres/mystery|/genres/thriller|/genres/thriller|/genres/mystery-thriller|/genres/adult-fiction|/genres/mystery|/genres/crime|/genres/spy-thriller|/genres/espionage|/genres/criticism,dir31/4946005-relentless.html,10716,Relentless +4.30,501,0812536355,good_reads:book,https://www.goodreads.com/author/show/44037.Vernor_Vinge,1999,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/space-opera|/genres/science-fiction-fantasy|/genres/speculative-fiction|/genres/science-fiction|/genres/aliens|/genres/space|/genres/fantasy|/genres/science-fiction|/genres/hard-science-fiction|/genres/novels,dir31/226004.A_Deepness_in_the_Sky.html,15600,"A Deepness in the Sky (Zones of Thought, #2)" +3.23,1795,0446363251,good_reads:book,https://www.goodreads.com/author/show/66622.Alexandra_Ripley,1990,/genres/historical-fiction|/genres/fiction|/genres/romance|/genres/classics|/genres/romance|/genres/historical-romance|/genres/adult-fiction|/genres/adult|/genres/womens-fiction|/genres/chick-lit|/genres/novels|/genres/drama,dir31/73062.Scarlett.html,26409,Scarlett +4.31,1041,044023655X,good_reads:book,https://www.goodreads.com/author/show/48206.Karen_Marie_Moning,2001,/genres/romance|/genres/science-fiction|/genres/time-travel|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/historical-romance|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/historical-fiction|/genres/cultural|/genres/scotland|/genres/adult|/genres/fantasy|/genres/magic,dir31/112754.Kiss_of_the_Highlander.html,26678,"Kiss of the Highlander (Highlander, #4)" +3.81,1045,0156031612,good_reads:book,https://www.goodreads.com/author/show/53597.Scarlett_Thomas,2006,/genres/science-fiction|/genres/fantasy|/genres/fiction|/genres/writing|/genres/books-about-books|/genres/magical-realism|/genres/contemporary|/genres/book-club|/genres/adult|/genres/european-literature|/genres/british-literature|/genres/science-fiction-fantasy,dir31/93436.The_End_of_Mr_Y.html,8830,The End of Mr. Y +3.84,1624,037321006X,good_reads:book,https://www.goodreads.com/author/show/445303.Maria_V_Snyder,2010,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fantasy|/genres/romance|/genres/fiction|/genres/adventure|/genres/young-adult|/genres/teen|/genres/apocalyptic|/genres/post-apocalyptic|/genres/mystery,dir31/7059135-inside-out.html,16330,"Inside Out (Insider, #1)" +4.06,615,0553587080,good_reads:book,https://www.goodreads.com/author/show/7581.Kelley_Armstrong,2005,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/paranormal|/genres/witches|/genres/paranormal|/genres/ghosts|/genres/fantasy|/genres/magic,dir31/11919.Haunted.html,17007,Haunted (Women of the Otherworld #5) +3.72,1169,0385613504,good_reads:book,https://www.goodreads.com/author/show/628636.Jenny_Downham,2010,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/realistic-fiction|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/family|/genres/young-adult|/genres/teen|/genres/mystery|/genres/young-adult|/genres/young-adult-contemporary,dir31/8720917-you-against-me.html,12170,You Against Me +4.27,975,0743452925,good_reads:book,https://www.goodreads.com/author/show/6251.Julie_Garwood,1989,/genres/romance|/genres/historical-romance|/genres/romance|/genres/historical-fiction|/genres/medieval|/genres/historical-fiction|/genres/adult|/genres/cultural|/genres/scotland|/genres/fiction|/genres/historical-romance|/genres/medieval-romance|/genres/humor|/genres/funny|/genres/womens-fiction|/genres/chick-lit,dir31/107779.The_Bride.html,28550,"The Bride (Lairds' Fiancées, #1)" +3.98,5508,0521618746,good_reads:book,https://www.goodreads.com/author/show/947.William_Shakespeare,1602,/genres/classics|/genres/plays|/genres/fiction|/genres/drama|/genres/academic|/genres/school|/genres/literature|/genres/plays|/genres/theatre|/genres/academic|/genres/read-for-school|/genres/young-adult|/genres/high-school|/genres/poetry,dir31/1420.Hamlet.html,403646,Hamlet +4.09,2890,,good_reads:book,https://www.goodreads.com/author/show/1152263.M_Leighton,2012,/genres/new-adult|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/adult-fiction|/genres/erotica|/genres/adult|/genres/romance|/genres/erotic-romance|/genres/romance|/genres/academic|/genres/college|/genres/womens-fiction|/genres/chick-lit|/genres/fiction,dir31/16001893-down-to-you.html,52139,"Down to You (The Bad Boys, #1)" +4.44,374,0099506165,good_reads:book,https://www.goodreads.com/author/show/19595.Vasily_Grossman,1959,/genres/fiction|/genres/cultural|/genres/russia|/genres/historical-fiction|/genres/classics|/genres/literature|/genres/russian-literature|/genres/war|/genres/literature|/genres/history|/genres/world-war-ii|/genres/novels,dir31/88432.Life_and_Fate.html,2991,Life and Fate +3.95,381,0875791212,good_reads:book,https://www.goodreads.com/author/show/151195.Jack_Weyland,1980,/genres/lds|/genres/lds-fiction|/genres/christianity|/genres/lds|/genres/fiction|/genres/romance|/genres/young-adult|/genres/religion|/genres/womens-fiction|/genres/chick-lit|/genres/novels|/genres/religion|/genres/church|/genres/adult,dir32/411449.Charly.html,7060,Charly +4.38,628,0525422242,good_reads:book,https://www.goodreads.com/author/show/293603.Heather_Brewer,2010,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/horror|/genres/fantasy|/genres/urban-fantasy|/genres/fiction,dir32/7818881-twelfth-grade-kills.html,9954,"Twelfth Grade Kills (The Chronicles of Vladimir Tod, #5)" +3.51,4390,0316127256,good_reads:book,https://www.goodreads.com/author/show/7176.Daniel_Handler,2011,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/fiction|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/high-school|/genres/young-adult|/genres/young-adult-contemporary|/genres/love,dir32/10798418-why-we-broke-up.html,30673,Why We Broke Up +3.86,981,0312424671,good_reads:book,https://www.goodreads.com/author/show/24732.Andrea_Levy,2004,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/european-literature|/genres/british-literature|/genres/war|/genres/literary-fiction|/genres/history|/genres/world-war-ii|/genres/novels|/genres/contemporary|/genres/literature,dir32/44001.Small_Island.html,13273,Small Island +3.92,279,1587159260,good_reads:book,https://www.goodreads.com/author/show/2413.George_MacDonald,1895,/genres/fantasy|/genres/fiction|/genres/classics|/genres/christian|/genres/literature|/genres/religion|/genres/christian-fiction|/genres/science-fiction-fantasy|/genres/religion|/genres/christianity|/genres/novels,dir32/268187.Lilith.html,3155,Lilith +4.38,966,0061138037,good_reads:book,https://www.goodreads.com/author/show/17054.Kim_Harrison,2010,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/paranormal|/genres/witches|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/magic|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance,dir32/6547188-black-magic-sanction.html,30368,"Black Magic Sanction (The Hollows, #8)" +3.57,4272,1595144919,good_reads:book,https://www.goodreads.com/author/show/569269.Jay_Asher,2011,/genres/young-adult|/genres/romance|/genres/fiction|/genres/contemporary|/genres/science-fiction|/genres/science-fiction|/genres/time-travel|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/realistic-fiction|/genres/young-adult|/genres/high-school,dir32/10959277-the-future-of-us.html,26618,The Future of Us +4.27,2815,006178320X,good_reads:book,https://www.goodreads.com/author/show/669810.Jeaniene_Frost,2012,/genres/paranormal|/genres/vampires|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/adult|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/fantasy|/genres/magic,dir32/7039218-once-burned.html,29685,"Once Burned (Night Prince, #1)" +3.84,7425,1400067111,good_reads:book,https://www.goodreads.com/author/show/713.Lisa_See,2008,/genres/historical-fiction|/genres/fiction|/genres/book-club|/genres/cultural|/genres/asia|/genres/literature|/genres/asian-literature|/genres/adult-fiction|/genres/adult|/genres/womens-fiction|/genres/chick-lit|/genres/novels|/genres/cultural,dir32/5960325-shanghai-girls.html,84984,Shanghai Girls (Shanghai Girls #1) +4.09,307,0893662135,good_reads:book,https://www.goodreads.com/author/show/26.Anne_McCaffrey,1988,/genres/fantasy|/genres/science-fiction|/genres/fantasy|/genres/dragons|/genres/fiction|/genres/science-fiction-fantasy|/genres/young-adult|/genres/adventure|/genres/adult|/genres/fantasy|/genres/epic-fantasy|/genres/romance,dir32/465904.Dragonsdawn.html,20048,"Dragonsdawn (Pern, #9)" +4.18,495,0843956534,good_reads:book,https://www.goodreads.com/author/show/6268.Christine_Feehan,1999,/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fiction|/genres/adult|/genres/fantasy|/genres/urban-fantasy|/genres/dark|/genres/contemporary,dir32/180426.Dark_Desire.html,17244,"Dark Desire (Dark, #2)" +3.93,1425,9380658797,good_reads:book,https://www.goodreads.com/author/show/4343092.Amish_Tripathi,2011,/genres/fantasy|/genres/fantasy|/genres/mythology|/genres/asian-literature|/genres/indian-literature|/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/india|/genres/novels|/genres/adventure|/genres/thriller|/genres/contemporary,dir32/11827808-the-secret-of-the-nagas.html,28666,The Secret of the Nagas (Shiva Trilogy #2) +3.71,2184,0307593916,good_reads:book,https://www.goodreads.com/author/show/7773619.Kyung_sook_Shin,2008,/genres/fiction|/genres/book-club|/genres/cultural|/genres/asia|/genres/contemporary|/genres/literature|/genres/asian-literature|/genres/novels|/genres/family|/genres/literary-fiction|/genres/literature|/genres/adult,dir32/8574333-please-look-after-mom.html,10805,Please Look After Mom +3.87,434,0140621318,good_reads:book,https://www.goodreads.com/author/show/30775.Anthony_Hope,1894,/genres/classics|/genres/fiction|/genres/adventure|/genres/historical-fiction|/genres/romance|/genres/fantasy|/genres/literature|/genres/19th-century|/genres/novels|/genres/literature|/genres/european-literature|/genres/british-literature,dir32/54492.The_Prisoner_of_Zenda.html,10131,The Prisoner of Zenda +4.02,195,0142501522,good_reads:book,https://www.goodreads.com/author/show/5329.Brian_Jacques,1992,/genres/fantasy|/genres/fiction|/genres/young-adult|/genres/childrens|/genres/animals|/genres/adventure|/genres/science-fiction-fantasy|/genres/novels|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile,dir32/7983.Salamandastron.html,19116,"Salamandastron (Redwall, #5)" +4.13,1362,0312985347,good_reads:book,https://www.goodreads.com/author/show/2384.Janet_Evanovich,2005,/genres/mystery|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/humor|/genres/romance|/genres/mystery|/genres/crime|/genres/humor|/genres/funny|/genres/humor|/genres/comedy,dir32/11003.Eleven_on_Top.html,68808,"Eleven on Top (Stephanie Plum, #11)" +3.95,2010,1416953582,good_reads:book,https://www.goodreads.com/author/show/767547.Lisa_McMann,2009,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/mystery|/genres/young-adult|/genres/teen|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy,dir32/3657138-fade.html,35904,"Fade (Dream Catcher, #2)" +3.98,1667,0446615625,good_reads:book,https://www.goodreads.com/author/show/9291.David_Baldacci,2004,/genres/fiction|/genres/mystery|/genres/thriller|/genres/suspense|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery-thriller|/genres/action,dir32/15158.The_Camel_Club.html,41864,"The Camel Club (Camel Club, #1)" +3.96,611,0061353450,good_reads:book,https://www.goodreads.com/author/show/141301.Jonathan_Littell,2006,/genres/fiction|/genres/historical-fiction|/genres/cultural|/genres/france|/genres/war|/genres/world-war-ii|/genres/holocaust|/genres/history|/genres/world-war-ii|/genres/literature|/genres/novels,dir32/3755250-the-kindly-ones.html,3744,The Kindly Ones +4.17,2649,0765330423,good_reads:book,https://www.goodreads.com/author/show/38550.Brandon_Sanderson,2011,/genres/fantasy|/genres/science-fiction|/genres/steampunk|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/urban-fantasy,dir32/10803121-the-alloy-of-law.html,35659,"The Alloy of Law (Mistborn, #4)" +3.91,1621,0143037234,good_reads:book,https://www.goodreads.com/author/show/4432.Jasper_Fforde,2005,/genres/fantasy|/genres/mystery|/genres/fiction|/genres/humor|/genres/mystery|/genres/crime|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/fairy-tales|/genres/humor|/genres/funny|/genres/european-literature|/genres/british-literature,dir32/6628.The_Big_Over_Easy.html,21331,"The Big Over Easy (Nursery Crime, #1)" +3.78,2873,0440421705,good_reads:book,https://www.goodreads.com/author/show/8178.Carl_Hiaasen,2002,/genres/young-adult|/genres/fiction|/genres/realistic-fiction|/genres/childrens|/genres/mystery|/genres/humor|/genres/childrens|/genres/middle-grade|/genres/animals|/genres/childrens|/genres/juvenile|/genres/academic|/genres/school,dir32/13083.Hoot.html,62767,Hoot +4.27,697,0440245273,good_reads:book,https://www.goodreads.com/author/show/375626.Lara_Adrian,2010,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/fiction|/genres/contemporary|/genres/fantasy|/genres/supernatural,dir32/7384801-taken-by-midnight.html,16392,"Taken by Midnight (Midnight Breed, #8)" +3.90,1020,0689868235,good_reads:book,https://www.goodreads.com/author/show/25422.Holly_Black,2005,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/fairies|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fiction|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/teen|/genres/fairies|/genres/fae,dir32/266607.Valiant.html,20478,"Valiant (Modern Faerie Tales, #2)" +3.98,521,0345413997,good_reads:book,https://www.goodreads.com/author/show/205.Robert_A_Heinlein,1957,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/time-travel|/genres/science-fiction-fantasy|/genres/fantasy|/genres/speculative-fiction|/genres/classics|/genres/adventure|/genres/travel|/genres/novels,dir32/348.The_Door_Into_Summer.html,13000,The Door Into Summer +4.14,2469,0751552615,good_reads:book,https://www.goodreads.com/author/show/4601855.Jessica_Sorensen,2013,/genres/new-adult|/genres/romance|/genres/young-adult|/genres/contemporary|/genres/academic|/genres/college|/genres/sociology|/genres/abuse|/genres/fiction|/genres/romance|/genres/contemporary-romance|/genres/drama|/genres/love,dir32/16718083-the-redemption-of-callie-kayden.html,29692,"The Redemption of Callie & Kayden (The Coincidence, #2)" +4.02,384,0440228840,good_reads:book,https://www.goodreads.com/author/show/17082.Amelia_Atwater_Rhodes,2000,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/young-adult-fantasy|/genres/horror|/genres/romance|/genres/paranormal-romance,dir32/30335.Demon_in_My_View.html,8738,"Demon in My View (Den of Shadows, #2)" +4.07,838,0425232476,good_reads:book,https://www.goodreads.com/author/show/2974095.Kate_Quinn,2010,/genres/historical-fiction|/genres/romance|/genres/romance|/genres/historical-romance|/genres/cultural|/genres/italy|/genres/fiction|/genres/roman|/genres/adult|/genres/womens-fiction|/genres/chick-lit|/genres/drama|/genres/literature|/genres/ancient,dir32/6581303-mistress-of-rome.html,6867,"Mistress of Rome (The Empress of Rome, #1)" +4.02,13575,1476729085,good_reads:book,https://www.goodreads.com/author/show/1895943.Graeme_Simsion,2013,/genres/book-club|/genres/contemporary|/genres/humor|/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/cultural|/genres/australia|/genres/realistic-fiction|/genres/fiction|/genres/novels|/genres/adult,dir32/16181775-the-rosie-project.html,88794,The Rosie Project (Don Tillman #1) +3.96,679,1841492051,good_reads:book,https://www.goodreads.com/author/show/589.Orson_Scott_Card,2005,/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/young-adult|/genres/space|/genres/war|/genres/literature|/genres/american|/genres/novels|/genres/science-fiction|/genres/dystopia,dir32/8647.Shadow_of_the_Giant.html,30651,"Shadow of the Giant (Ender's Shadow, #4)" +3.72,513,,good_reads:book,https://www.goodreads.com/author/show/1109606._,2007,/genres/novels|/genres/romance|/genres/literature,dir32/2501453._.html,8222,عابر سرير +4.01,2163,0060515228,good_reads:book,https://www.goodreads.com/author/show/1221698.Neil_Gaiman,2006,/genres/fantasy|/genres/short-stories|/genres/fiction|/genres/horror|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/fantasy|/genres/urban-fantasy|/genres/poetry|/genres/anthologies|/genres/contemporary,dir32/16788.Fragile_Things.html,31287,Fragile Things +3.75,1490,0062026771,good_reads:book,https://www.goodreads.com/author/show/4336590.Tara_Hudson,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/ghosts|/genres/romance|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/mystery|/genres/fiction|/genres/young-adult|/genres/teen,dir32/9256414-hereafter.html,12766,"Hereafter (Hereafter, #1)" +4.30,131,0872203492,good_reads:book,https://www.goodreads.com/author/show/879.Plato,-400,/genres/philosophy|/genres/classics|/genres/non-fiction|/genres/history|/genres/literature|/genres/politics|/genres/literature|/genres/ancient|/genres/cultural|/genres/greece|/genres/reference|/genres/academic|/genres/school,dir32/9462.Complete_Works.html,7454,Complete Works +3.94,577,0736693416,good_reads:book,https://www.goodreads.com/author/show/9629.Terry_Brooks,1982,/genres/fantasy|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/science-fiction|/genres/fantasy|/genres/magic,dir32/189783.The_Elfstones_Of_Shannara.html,40568,"The Elfstones Of Shannara (The Original Shannara Trilogy, #2)" +3.83,403,0330490265,good_reads:book,https://www.goodreads.com/author/show/19929.Tim_Winton,2001,/genres/fiction|/genres/cultural|/genres/australia|/genres/contemporary|/genres/book-club|/genres/literary-fiction|/genres/literature|/genres/novels|/genres/romance|/genres/relationships|/genres/drama,dir32/35306.Dirt_Music.html,5983,Dirt Music +3.96,2032,0812974018,good_reads:book,https://www.goodreads.com/author/show/6538289.David_Mitchell,2006,/genres/fiction|/genres/book-club|/genres/contemporary|/genres/young-adult|/genres/coming-of-age|/genres/european-literature|/genres/british-literature|/genres/young-adult|/genres/literary-fiction|/genres/literature|/genres/novels,dir32/14316.Black_Swan_Green.html,18983,Black Swan Green +4.49,303,0007325983,good_reads:book,https://www.goodreads.com/author/show/165168.Derek_Landy,2010,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/adventure|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/mystery|/genres/fantasy|/genres/paranormal,dir32/8113344-mortal-coil.html,6961,"Mortal Coil (Skulduggery Pleasant, #5)" +4.31,2592,,good_reads:book,https://www.goodreads.com/author/show/6997072.Katy_Evans,2013,/genres/romance|/genres/new-adult|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/sports-and-games|/genres/sports|/genres/adult-fiction|/genres/erotica|/genres/adult|/genres/contemporary-romance|/genres/sports-romance|/genres/romance|/genres/erotic-romance|/genres/mental-health|/genres/mental-illness,dir32/17792606-mine.html,26156,"Mine (Real, #2)" +3.85,253,0374522928,good_reads:book,https://www.goodreads.com/author/show/26338.Henry_Roth,1934,/genres/fiction|/genres/classics|/genres/historical-fiction|/genres/literature|/genres/jewish|/genres/new-york|/genres/novels|/genres/literature|/genres/american|/genres/literature|/genres/20th-century,dir32/366524.Call_it_Sleep.html,4744,Call it Sleep +3.70,1961,0062128027,good_reads:book,https://www.goodreads.com/author/show/5108399.Megan_Shepherd,2013,/genres/young-adult|/genres/historical-fiction|/genres/horror|/genres/fantasy|/genres/mystery|/genres/romance|/genres/science-fiction|/genres/gothic|/genres/fiction|/genres/fantasy|/genres/paranormal,dir32/12291438-the-madman-s-daughter.html,10763,"The Madman's Daughter (The Madman's Daughter, #1)" +3.88,1893,0345482409,good_reads:book,https://www.goodreads.com/author/show/589.Orson_Scott_Card,1999,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/fairy-tales|/genres/science-fiction-fantasy|/genres/romance|/genres/science-fiction|/genres/time-travel|/genres/science-fiction|/genres/historical-fiction|/genres/book-club|/genres/adult,dir32/7973.Enchantment.html,19097,Enchantment +4.18,332,0394865804,good_reads:book,https://www.goodreads.com/author/show/61105.Dr_Seuss,1984,/genres/childrens|/genres/childrens|/genres/picture-books|/genres/fiction|/genres/classics|/genres/poetry|/genres/war|/genres/fantasy|/genres/humor|/genres/politics|/genres/childrens|/genres/juvenile,dir32/275325.The_Butter_Battle_Book.html,7195,The Butter Battle Book +4.02,200,0451458028,good_reads:book,https://www.goodreads.com/author/show/26897.Anne_Bishop,2000,/genres/fantasy|/genres/romance|/genres/fiction|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/dark-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/high-fantasy|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/epic-fantasy,dir32/47954.The_Invisible_Ring.html,8516,"The Invisible Ring (The Black Jewels, #4)" +4.21,140,0345427130,good_reads:book,https://www.goodreads.com/author/show/90361.Robert_McLiam_Wilson,1996,/genres/cultural|/genres/ireland|/genres/fiction|/genres/european-literature|/genres/irish-literature|/genres/historical-fiction|/genres/novels|/genres/contemporary|/genres/literary-fiction|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/literature|/genres/20th-century,dir32/156234.Eureka_Street.html,1611,Eureka Street +3.83,231,0679783180,good_reads:book,https://www.goodreads.com/author/show/1481537.Stendhal,1839,/genres/classics|/genres/fiction|/genres/cultural|/genres/france|/genres/european-literature|/genres/french-literature|/genres/literature|/genres/historical-fiction|/genres/novels|/genres/literature|/genres/19th-century|/genres/cultural|/genres/italy|/genres/romance,dir32/14680.The_Charterhouse_of_Parma.html,6999,The Charterhouse of Parma +3.56,517,0345436911,good_reads:book,https://www.goodreads.com/author/show/9780.Sheri_Holman,1998,/genres/historical-fiction|/genres/fiction|/genres/european-literature|/genres/british-literature|/genres/book-club|/genres/mystery|/genres/adult|/genres/literature|/genres/19th-century,dir32/15807.The_Dress_Lodger.html,4919,The Dress Lodger +4.07,535,0446698229,good_reads:book,https://www.goodreads.com/author/show/5237.Hunter_S_Thompson,1973,/genres/non-fiction|/genres/politics|/genres/history|/genres/writing|/genres/journalism|/genres/autobiography|/genres/memoir|/genres/humor|/genres/literature|/genres/american|/genres/history|/genres/american-history|/genres/biography|/genres/writing|/genres/essays,dir32/7748.Fear_and_Loathing_on_the_Campaign_Trail_72.html,12521,Fear and Loathing on the Campaign Trail '72 +3.90,558,0345455290,good_reads:book,https://www.goodreads.com/author/show/4.Douglas_Adams,2002,/genres/science-fiction|/genres/fiction|/genres/humor|/genres/fantasy|/genres/humor|/genres/comedy|/genres/short-stories|/genres/writing|/genres/essays|/genres/science-fiction-fantasy,dir32/359.The_Salmon_of_Doubt.html,16899,"The Salmon of Doubt (Dirk Gently, #3)" +4.04,337,1587263890,good_reads:book,https://www.goodreads.com/author/show/1240.Jack_London,1906,/genres/classics|/genres/fiction|/genres/adventure|/genres/animals|/genres/literature|/genres/young-adult|/genres/historical-fiction|/genres/childrens|/genres/animals|/genres/dogs|/genres/novels,dir32/37677.The_Call_of_the_Wild_White_Fang.html,46868,The Call of the Wild/White Fang +3.83,1786,,good_reads:book,https://www.goodreads.com/author/show/1109606._,2009,/genres/novels|/genres/romance|/genres/literature|/genres/feminism|/genres/love|/genres/fiction|/genres/romantic|/genres/relationships,dir32/6621287-com.html,17581,com نسيان +3.56,2011,0307278492,good_reads:book,https://www.goodreads.com/author/show/13450.Gabriel_Garc_a_M_rquez,2004,/genres/fiction|/genres/literature|/genres/novels|/genres/romance|/genres/cultural|/genres/latin-american|/genres/magical-realism|/genres/classics|/genres/european-literature|/genres/spanish-literature|/genres/literary-fiction|/genres/literature|/genres/latin-american-literature,dir32/760.Memories_of_My_Melancholy_Whores.html,32371,Memories of My Melancholy Whores +4.04,496,1406501069,good_reads:book,https://www.goodreads.com/author/show/1315.Louisa_May_Alcott,1869,/genres/classics|/genres/fiction|/genres/young-adult|/genres/historical-fiction|/genres/romance|/genres/childrens|/genres/literature|/genres/19th-century|/genres/childrens|/genres/childrens-classics|/genres/literature|/genres/literature|/genres/american,dir32/246546.An_Old_Fashioned_Girl.html,10701,An Old-Fashioned Girl +4.54,108,0061477931,good_reads:book,https://www.goodreads.com/author/show/27498.Erin_Hunter,2005,/genres/fantasy|/genres/animals|/genres/cats|/genres/animals|/genres/young-adult|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/action|/genres/fiction|/genres/romance|/genres/thriller|/genres/mystery-thriller,dir32/1507805.Warriors_Box_Set.html,2690,"Warriors Box Set (Warriors, #1-6)" +3.82,716,1857232569,good_reads:book,https://www.goodreads.com/author/show/9629.Terry_Brooks,1986,/genres/fantasy|/genres/fiction|/genres/science-fiction-fantasy|/genres/humor|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/adventure|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/adult,dir32/15547.Magic_Kingdom_For_Sale_Sold.html,21744,"Magic Kingdom For Sale/Sold (Magic Kingdom of Landover, #1)" +4.14,163,0882898841,good_reads:book,https://www.goodreads.com/author/show/135841.Harold_Bell_Wright,1907,/genres/fiction|/genres/classics|/genres/historical-fiction|/genres/book-club|/genres/christian|/genres/christian-fiction|/genres/novels|/genres/adult-fiction|/genres/religion|/genres/literature,dir32/1043521.The_Shepherd_of_the_Hills.html,1079,The Shepherd of the Hills +4.13,704,0553269224,good_reads:book,https://www.goodreads.com/author/show/5350.L_M_Montgomery,1921,/genres/classics|/genres/fiction|/genres/young-adult|/genres/historical-fiction|/genres/childrens|/genres/romance|/genres/cultural|/genres/canada|/genres/young-adult|/genres/teen|/genres/literature|/genres/literature|/genres/canadian-literature,dir32/433533.Rilla_of_Ingleside.html,21989,"Rilla of Ingleside (Anne of Green Gables, #8)" +3.83,4872,0553807226,good_reads:book,https://www.goodreads.com/author/show/566874.Sarah_Addison_Allen,2011,/genres/fiction|/genres/magical-realism|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/fantasy|/genres/book-club|/genres/adult-fiction|/genres/adult|/genres/american|/genres/southern,dir32/8546358-the-peach-keeper.html,36624,The Peach Keeper +4.11,671,0425143325,good_reads:book,https://www.goodreads.com/author/show/3892.Tom_Clancy,1993,/genres/fiction|/genres/thriller|/genres/war|/genres/military|/genres/action|/genres/spy-thriller|/genres/espionage|/genres/suspense|/genres/mystery|/genres/adventure|/genres/war|/genres/thriller|/genres/mystery-thriller,dir32/19668.Without_Remorse.html,35480,"Without Remorse (John Clark, #1)" +4.25,922,0871137380,good_reads:book,https://www.goodreads.com/author/show/3098.Mark_Bowden,1999,/genres/history|/genres/non-fiction|/genres/war|/genres/military|/genres/war|/genres/military|/genres/military-history|/genres/cultural|/genres/africa|/genres/politics|/genres/history|/genres/american-history|/genres/writing|/genres/journalism|/genres/media-tie-in|/genres/movies,dir32/55403.Black_Hawk_Down.html,30692,Black Hawk Down +3.93,1175,144240924X,good_reads:book,https://www.goodreads.com/author/show/3508354.Kelly_Keaton,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/witches|/genres/mythology|/genres/greek-mythology,dir32/8109130-darkness-becomes-her.html,10732,"Darkness Becomes Her (Gods & Monsters, #1)" +3.99,8231,0316126691,good_reads:book,https://www.goodreads.com/author/show/3452783.Chad_Harbach,2011,/genres/fiction|/genres/book-club|/genres/sports-and-games|/genres/sports|/genres/contemporary|/genres/literary-fiction|/genres/sports|/genres/baseball|/genres/adult-fiction|/genres/adult|/genres/literature|/genres/novels,dir32/10996342-the-art-of-fielding.html,63667,The Art of Fielding +3.81,12384,0307886263,good_reads:book,https://www.goodreads.com/author/show/194416.Mindy_Kaling,2011,/genres/non-fiction|/genres/humor|/genres/autobiography|/genres/memoir|/genres/biography|/genres/humor|/genres/comedy|/genres/humor|/genres/funny,dir32/10335308-is-everyone-hanging-out-without-me.html,144496,Is Everyone Hanging Out Without Me? +3.91,1147,0061935123,good_reads:book,https://www.goodreads.com/author/show/89439.Sophie_Jordan,2012,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/dragons|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/shapeshifters|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance,dir32/12522507-hidden.html,10488,"Hidden (Firelight, #3)" +4.28,605,0374504644,good_reads:book,https://www.goodreads.com/author/show/22694.Flannery_O_Connor,1965,/genres/short-stories|/genres/fiction|/genres/classics|/genres/literature|/genres/american|/genres/southern|/genres/literature|/genres/american|/genres/gothic|/genres/southern-gothic|/genres/literary-fiction,dir32/218659.Everything_That_Rises_Must_Converge.html,11127,Everything That Rises Must Converge +3.98,2659,0312423799,good_reads:book,https://www.goodreads.com/author/show/3058.Augusten_Burroughs,2003,/genres/autobiography|/genres/memoir|/genres/non-fiction|/genres/biography|/genres/humor|/genres/biography-memoir|/genres/biography|/genres/autobiography|/genres/humor|/genres/funny|/genres/glbt|/genres/psychology|/genres/glbt|/genres/queer,dir32/32370.Dry.html,57540,Dry +4.17,130,0440413192,good_reads:book,https://www.goodreads.com/author/show/20575.Daniel_Pinkwater,1976,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/science-fiction|/genres/humor|/genres/funny|/genres/humor|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/science-fiction-fantasy,dir32/63321.Lizard_Music.html,1151,Lizard Music +4.07,703,0765315238,good_reads:book,https://www.goodreads.com/author/show/3441.Terry_Goodkind,2007,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/epic|/genres/fantasy|/genres/high-fantasy|/genres/romance|/genres/adventure|/genres/adult,dir32/604803.Confessor.html,28313,"Confessor (Sword of Truth, #11)" +4.57,192,1780484542,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,2005,/genres/fantasy|/genres/horror|/genres/fiction|/genres/science-fiction|/genres/western|/genres/thriller|/genres/adventure|/genres/apocalyptic|/genres/post-apocalyptic|/genres/dark|/genres/sci-fi-fantasy,dir32/12274389-the-dark-tower-series-collection.html,5008,The Dark Tower Series Collection +4.20,32773,074324754X,good_reads:book,https://www.goodreads.com/author/show/3275.Jeannette_Walls,2005,/genres/non-fiction|/genres/book-club|/genres/autobiography|/genres/memoir|/genres/biography|/genres/biography-memoir|/genres/biography|/genres/autobiography|/genres/contemporary|/genres/academic|/genres/school|/genres/family|/genres/social-issues|/genres/poverty,dir32/7445.The_Glass_Castle.html,454707,The Glass Castle +3.65,1097,0345435168,good_reads:book,https://www.goodreads.com/author/show/3529.Elizabeth_Berg,2000,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/book-club|/genres/adult-fiction|/genres/adult|/genres/novels|/genres/romance|/genres/womens-fiction|/genres/realistic-fiction,dir32/5190.Open_House.html,36797,Open House +4.35,363,0451456726,good_reads:book,https://www.goodreads.com/author/show/26897.Anne_Bishop,1999,/genres/fantasy|/genres/romance|/genres/fiction|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/dark-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/high-fantasy|/genres/paranormal|/genres/witches,dir32/47957.Heir_to_the_Shadows.html,14099,"Heir to the Shadows (The Black Jewels, #2)" +4.48,181,0385670516,good_reads:book,https://www.goodreads.com/author/show/7581.Kelley_Armstrong,2009,/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/ghosts|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy,dir32/8269450-darkest-powers-trilogy.html,11043,"Darkest Powers Trilogy (Darkest Powers, #1-3)" +3.82,2094,0765348780,good_reads:book,https://www.goodreads.com/author/show/31232.Steven_Erikson,1999,/genres/fantasy|/genres/epic-fantasy|/genres/fiction|/genres/fantasy|/genres/fantasy|/genres/high-fantasy|/genres/epic|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/dark-fantasy|/genres/war|/genres/science-fiction,dir32/55399.Gardens_of_the_Moon.html,37637,"Gardens of the Moon (The Malazan Book of the Fallen, #1)" +4.10,1467,0061797057,good_reads:book,https://www.goodreads.com/author/show/7581.Kelley_Armstrong,2012,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal|/genres/shapeshifters|/genres/romance|/genres/paranormal-romance|/genres/shapeshifters|/genres/werewolves|/genres/young-adult|/genres/teen,dir32/11765920-the-calling.html,19070,"The Calling (Darkness Rising, #2)" +3.87,1934,0307277771,good_reads:book,https://www.goodreads.com/author/show/4176632.W_Somerset_Maugham,1924,/genres/classics|/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/romance|/genres/cultural|/genres/china|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/cultural|/genres/asia|/genres/novels,dir32/99664.The_Painted_Veil.html,18418,The Painted Veil +3.72,722,0064472809,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2001,/genres/young-adult|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/young-adult|/genres/teen|/genres/contemporary|/genres/childrens|/genres/humor,dir32/93728.Princess_in_Love.html,31589,"Princess in Love (The Princess Diaries, #3)" +3.91,96,159308031X,good_reads:book,https://www.goodreads.com/author/show/5144.James_Joyce,1916,/genres/classics|/genres/fiction|/genres/literature|/genres/short-stories|/genres/european-literature|/genres/irish-literature|/genres/cultural|/genres/ireland|/genres/classics|/genres/classic-literature|/genres/literary-fiction|/genres/novels|/genres/european-literature|/genres/british-literature,dir32/23296.A_Portrait_of_the_Artist_as_a_Young_Man_Dubliners.html,3269,A Portrait of the Artist as a Young Man/Dubliners +4.07,1228,0316002569,good_reads:book,https://www.goodreads.com/author/show/99650.Wendy_Mass,2008,/genres/realistic-fiction|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/middle-grade|/genres/contemporary|/genres/young-adult|/genres/coming-of-age|/genres/childrens|/genres/childrens|/genres/juvenile|/genres/romance|/genres/science|/genres/astronomy,dir32/3223761-every-soul-a-star.html,12283,Every Soul a Star +4.21,1426,0061668125,good_reads:book,https://www.goodreads.com/author/show/2096360.Aprilynne_Pike,2012,/genres/fantasy|/genres/young-adult|/genres/paranormal|/genres/fairies|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/fairies|/genres/fae,dir32/12846479-destined.html,13355,"Destined (Wings, #4)" +3.86,47,0345345134,good_reads:book,https://www.goodreads.com/author/show/90476.Christine_Sparks,1980,/genres/biography|/genres/non-fiction|/genres/classics|/genres/history|/genres/drama|/genres/horror|/genres/book-club|/genres/european-literature|/genres/british-literature|/genres/academic|/genres/school|/genres/media-tie-in|/genres/movies,dir32/156378.Elephant_Man.html,917,Elephant Man +3.91,556,0007204884,good_reads:book,https://www.goodreads.com/author/show/41542.Helen_Dunmore,2005,/genres/fantasy|/genres/mermaids|/genres/young-adult|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/paranormal|/genres/childrens|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/mythology|/genres/childrens|/genres/middle-grade,dir32/1022657.Ingo.html,6032,"Ingo (Ingo, #1)" +4.18,1553,1592289444,good_reads:book,https://www.goodreads.com/author/show/5857.Slavomir_Rawicz,1956,/genres/non-fiction|/genres/history|/genres/biography|/genres/adventure|/genres/book-club|/genres/autobiography|/genres/memoir|/genres/travel|/genres/adventure|/genres/survival|/genres/cultural|/genres/russia|/genres/war,dir32/9013.The_Long_Walk.html,8234,The Long Walk +4.17,1825,0440241022,good_reads:book,https://www.goodreads.com/author/show/5091.Lee_Child,2005,/genres/thriller|/genres/fiction|/genres/mystery|/genres/mystery|/genres/crime|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/action|/genres/mystery|/genres/detective|/genres/adventure|/genres/war|/genres/military,dir32/220968.One_Shot.html,44932,"One Shot (Jack Reacher, #9)" +3.91,589,4103534222,good_reads:book,https://www.goodreads.com/author/show/3354.Haruki_Murakami,2009,/genres/fiction|/genres/fantasy|/genres/asian-literature|/genres/japanese-literature|/genres/cultural|/genres/japan|/genres/contemporary|/genres/magical-realism|/genres/science-fiction|/genres/novels|/genres/literature|/genres/mystery,dir32/6443834-1q84.html,21985,"1Q84 (1Q84, #1)" +4.53,82,0810112973,good_reads:book,https://www.goodreads.com/author/show/205563.Me_a_Selimovi_,1966,/genres/classics|/genres/fiction|/genres/literature|/genres/historical-fiction,dir32/358846.Death_and_the_Dervish.html,3035,Death and the Dervish +4.04,853,,good_reads:book,https://www.goodreads.com/author/show/3354.Haruki_Murakami,2005,/genres/science-fiction|/genres/asian-literature|/genres/japanese-literature|/genres/contemporary|/genres/fiction,dir32/12254379-1q84.html,7430,"1Q84 (1Q84, #1-2)" +4.13,998,1576469115,good_reads:book,https://www.goodreads.com/author/show/1372693.Gene_Stratton_Porter,1909,/genres/classics|/genres/fiction|/genres/young-adult|/genres/historical-fiction|/genres/childrens|/genres/romance|/genres/book-club|/genres/environment|/genres/nature|/genres/novels|/genres/childrens|/genres/juvenile,dir32/17567.A_Girl_of_the_Limberlost.html,10641,"A Girl of the Limberlost (Limberlost, #2)" +4.10,3035,0062197266,good_reads:book,https://www.goodreads.com/author/show/146797.Elizabeth_Haynes,2011,/genres/thriller|/genres/mystery|/genres/fiction|/genres/suspense|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery-thriller|/genres/book-club|/genres/romance|/genres/adult,dir32/15818362-into-the-darkest-corner.html,22094,Into the Darkest Corner +4.22,768,0759529515,good_reads:book,https://www.goodreads.com/author/show/3780.James_Patterson,2009,/genres/sequential-art|/genres/graphic-novels|/genres/young-adult|/genres/sequential-art|/genres/manga|/genres/science-fiction|/genres/adventure|/genres/fiction|/genres/paranormal|/genres/angels|/genres/action,dir32/3173558-maximum-ride-vol-1.html,21426,"Maximum Ride, Vol. 1 (Maximum Ride: The Manga, #1)" +4.16,1898,1859643299,good_reads:book,https://www.goodreads.com/author/show/6182432.Michelle_Cohen_Corasanti,2012,/genres/historical-fiction|/genres/fiction|/genres/war|/genres/contemporary,dir32/14929224-the-almond-tree.html,3405,The Almond Tree +4.25,2364,,good_reads:book,https://www.goodreads.com/author/show/5410816.Tarryn_Fisher,2012,/genres/romance|/genres/new-adult|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/adult|/genres/drama,dir32/15832316-dirty-red.html,16489,"Dirty Red (Love Me with Lies, #2)" +4.10,3255,0140255559,good_reads:book,https://www.goodreads.com/author/show/2384.Janet_Evanovich,1991,/genres/mystery|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/humor|/genres/romance|/genres/mystery|/genres/crime|/genres/humor|/genres/funny|/genres/humor|/genres/comedy|/genres/thriller|/genres/mystery-thriller|/genres/contemporary,dir32/6427.Two_for_the_Dough.html,97929,"Two for the Dough (Stephanie Plum, #2)" +3.62,2121,0689872992,good_reads:book,https://www.goodreads.com/author/show/4605.Lisi_Harrison,2004,/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/fiction|/genres/young-adult|/genres/teen|/genres/contemporary|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/romance|/genres/drama,dir32/890143.The_Clique.html,23720,"The Clique (The Clique, #1)" +4.28,872,0451236718,good_reads:book,https://www.goodreads.com/author/show/15292.Rachel_Caine,2012,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/romance,dir32/9526658-black-dawn.html,12432,"Black Dawn (The Morganville Vampires, #12)" +3.85,703,0451219597,good_reads:book,https://www.goodreads.com/author/show/3447.Ken_Follett,2001,/genres/historical-fiction|/genres/fiction|/genres/thriller|/genres/war|/genres/suspense|/genres/spy-thriller|/genres/espionage|/genres/history|/genres/world-war-ii|/genres/cultural|/genres/france|/genres/war|/genres/military|/genres/mystery,dir32/5062.Jackdaws.html,13166,Jackdaws +4.20,396,0671737821,good_reads:book,https://www.goodreads.com/author/show/6251.Julie_Garwood,1985,/genres/romance|/genres/historical-fiction|/genres/medieval|/genres/romance|/genres/historical-romance|/genres/historical-fiction|/genres/historical-romance|/genres/medieval-romance|/genres/fiction|/genres/adult|/genres/european-literature|/genres/british-literature|/genres/humor|/genres/funny|/genres/historical-romance|/genres/regency-romance,dir32/107774.Honor_s_Splendour.html,16535,Honor's Splendour +4.17,1658,0312976275,good_reads:book,https://www.goodreads.com/author/show/2384.Janet_Evanovich,2000,/genres/mystery|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/humor|/genres/romance|/genres/mystery|/genres/crime|/genres/humor|/genres/funny|/genres/humor|/genres/comedy|/genres/adult|/genres/thriller|/genres/mystery-thriller,dir32/6858.Hot_Six.html,79871,"Hot Six (Stephanie Plum, #6)" +3.45,1384,1400097029,good_reads:book,https://www.goodreads.com/author/show/91.John_Banville,2005,/genres/fiction|/genres/cultural|/genres/ireland|/genres/european-literature|/genres/irish-literature|/genres/literature|/genres/novels|/genres/book-club|/genres/contemporary|/genres/literary-fiction|/genres/european-literature|/genres/british-literature|/genres/modern,dir32/3656.The_Sea.html,13177,The Sea +3.97,2018,0739467042,good_reads:book,https://www.goodreads.com/author/show/36667.Vikas_Swarup,2000,/genres/cultural|/genres/india|/genres/fiction|/genres/contemporary|/genres/book-club|/genres/media-tie-in|/genres/movies|/genres/adult-fiction|/genres/drama|/genres/asian-literature|/genres/indian-literature|/genres/romance,dir32/288644.Q_A.html,18218,Q & A +3.98,152,8437600928,good_reads:book,https://www.goodreads.com/author/show/227771.Pedro_Calder_n_de_la_Barca,1635,/genres/plays|/genres/classics|/genres/drama|/genres/european-literature|/genres/spanish-literature|/genres/plays|/genres/theatre|/genres/fiction|/genres/cultural|/genres/spain|/genres/academic|/genres/school|/genres/literature|/genres/poetry,dir33/916114.La_vida_es_sue_o.html,5677,La vida es sueño +4.32,827,,good_reads:book,https://www.goodreads.com/author/show/4951964.Shelly_Crane,2011,/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/young-adult-paranormal|/genres/new-adult|/genres/contemporary,dir33/12667194-accordance.html,17857,"Accordance (Significance, #2)" +3.62,1646,044024191X,good_reads:book,https://www.goodreads.com/author/show/6160.Sophie_Kinsella,2004,/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/romance|/genres/humor|/genres/contemporary|/genres/adult|/genres/adult-fiction|/genres/humor|/genres/funny|/genres/humor|/genres/comedy,dir33/9417.Shopaholic_and_Sister.html,57744,"Shopaholic and Sister (Shopaholic, #4)" +4.72,77,1401210848,good_reads:book,https://www.goodreads.com/author/show/1221698.Neil_Gaiman,2008,/genres/sequential-art|/genres/comics|/genres/sequential-art|/genres/graphic-novels|/genres/fantasy|/genres/fiction|/genres/horror|/genres/graphic-novels-comics|/genres/comics|/genres/comic-book|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/mythology|/genres/anthologies|/genres/collections,dir33/2186848.The_Absolute_Sandman_Vol_3.html,3805,"The Absolute Sandman, Vol. 3" +4.13,969,0345338588,good_reads:book,https://www.goodreads.com/author/show/8516.Piers_Anthony,1983,/genres/fantasy|/genres/fiction|/genres/science-fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/paranormal|/genres/humor|/genres/death,dir33/76658.On_a_Pale_Horse.html,23921,"On a Pale Horse (Incarnations of Immortality, #1)" +3.92,598,1416954244,good_reads:book,https://www.goodreads.com/author/show/14617.Margaret_Peterson_Haddix,2010,/genres/science-fiction|/genres/young-adult|/genres/historical-fiction|/genres/science-fiction|/genres/time-travel|/genres/fantasy|/genres/adventure|/genres/fiction|/genres/mystery,dir33/7130745-sabotaged.html,7310,"Sabotaged (The Missing, #3)" +4.07,1053,9793062924,good_reads:book,https://www.goodreads.com/author/show/647438.Andrea_Hirata,2006,/genres/novels|/genres/asian-literature|/genres/indonesian-literature|/genres/fiction|/genres/inspirational|/genres/adventure|/genres/drama|/genres/literature|/genres/romance|/genres/love|/genres/young-adult,dir33/1407874.Sang_Pemimpi.html,10777,"Sang Pemimpi (Tetralogi Laskar Pelangi, #2)" +4.71,239,0751500283,good_reads:book,https://www.goodreads.com/author/show/13778.Bill_Watterson,1992,/genres/sequential-art|/genres/comics|/genres/humor|/genres/sequential-art|/genres/graphic-novels|/genres/comics|/genres/comic-book|/genres/humor|/genres/comedy|/genres/childrens|/genres/graphic-novels-comics|/genres/sequential-art|/genres/comic-strips|/genres/sequential-art|/genres/cartoon|/genres/humor|/genres/funny,dir33/24815.The_Indispensable_Calvin_and_Hobbes.html,12709,The Indispensable Calvin and Hobbes +4.31,1314,0385611072,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,2010,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/humor|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/paranormal|/genres/witches|/genres/humor|/genres/comedy|/genres/adventure|/genres/humor|/genres/funny,dir33/7576115-i-shall-wear-midnight-discworld-38.html,22812,"I Shall Wear Midnight (Discworld, #38) (Discworld, #38) (Tiffany Aching, #4)" +4.01,2565,,good_reads:book,https://www.goodreads.com/author/show/5085738.J_Sterling,2012,/genres/new-adult|/genres/romance|/genres/sports-and-games|/genres/sports|/genres/contemporary|/genres/academic|/genres/college|/genres/young-adult|/genres/romance|/genres/contemporary-romance|/genres/contemporary-romance|/genres/sports-romance|/genres/womens-fiction|/genres/chick-lit|/genres/love,dir33/15783307-the-perfect-game.html,40816,"The Perfect Game (The Perfect Game, #1)" +3.81,540,0060766735,good_reads:book,https://www.goodreads.com/author/show/11633.Sharon_Creech,2000,/genres/young-adult|/genres/fiction|/genres/adventure|/genres/realistic-fiction|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/contemporary|/genres/historical-fiction|/genres/young-adult|/genres/teen,dir33/69499.The_Wanderer.html,7847,The Wanderer +4.18,817,0385737742,good_reads:book,https://www.goodreads.com/author/show/2741166.Suzanne_LaFleur,2009,/genres/realistic-fiction|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/family|/genres/contemporary|/genres/childrens|/genres/juvenile,dir33/5982448-love-aubrey.html,6240,"Love, Aubrey" +3.98,372,0375726659,good_reads:book,https://www.goodreads.com/author/show/8878.Alistair_MacLeod,1999,/genres/fiction|/genres/cultural|/genres/canada|/genres/book-club|/genres/historical-fiction|/genres/literature|/genres/canadian-literature|/genres/contemporary|/genres/literature|/genres/literary-fiction|/genres/novels|/genres/family,dir33/14273.No_Great_Mischief.html,5255,No Great Mischief +4.09,537,055215315X,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,1992,/genres/fantasy|/genres/humor|/genres/fiction|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny|/genres/paranormal|/genres/witches,dir33/34529.Lords_and_Ladies.html,35286,"Lords and Ladies (Discworld, #14)" +4.08,466,0060727535,good_reads:book,https://www.goodreads.com/author/show/20062.Johnny_Cash,1997,/genres/music|/genres/biography|/genres/non-fiction|/genres/biography|/genres/autobiography|/genres/autobiography|/genres/memoir|/genres/biography-memoir|/genres/history|/genres/music|/genres/musicians|/genres/literature|/genres/american|/genres/culture|/genres/pop-culture,dir33/35488.Cash.html,11347,Cash +4.11,316,0380844001,good_reads:book,https://www.goodreads.com/author/show/88445.Kathleen_E_Woodiwiss,1982,/genres/romance|/genres/romance|/genres/historical-romance|/genres/historical-fiction|/genres/fiction|/genres/fairy-tales|/genres/beauty-and-the-beast|/genres/european-literature|/genres/british-literature|/genres/adult|/genres/mystery|/genres/regency|/genres/womens-fiction|/genres/chick-lit,dir33/896625.A_Rose_in_Winter.html,6229,A Rose in Winter +3.98,679,0340682388,good_reads:book,https://www.goodreads.com/author/show/40851.Siri_Hustvedt,2002,/genres/fiction|/genres/contemporary|/genres/art|/genres/novels|/genres/book-club|/genres/new-york|/genres/literature|/genres/american|/genres/literature|/genres/literary-fiction|/genres/adult,dir33/125502.What_I_Loved.html,7581,What I Loved +4.31,506,0883681056,good_reads:book,https://www.goodreads.com/author/show/66573.Brother_Lawrence,1691,/genres/religion|/genres/classics|/genres/christianity|/genres/catholic|/genres/inspirational|/genres/philosophy|/genres/biography|/genres/christian|/genres/spirituality|/genres/religion|/genres/god|/genres/religion|/genres/church,dir33/498641.The_Practice_of_the_Presence_of_God.html,18058,The Practice of the Presence of God +4.20,980,0380820846,good_reads:book,https://www.goodreads.com/author/show/63898.Julia_Quinn,2002,/genres/romance|/genres/historical-romance|/genres/romance|/genres/regency|/genres/historical-fiction|/genres/historical-romance|/genres/regency-romance|/genres/fiction|/genres/adult,dir33/110384.Romancing_Mister_Bridgerton.html,21641,"Romancing Mister Bridgerton (Bridgertons, #4)" +4.00,635,1857988221,good_reads:book,https://www.goodreads.com/author/show/10992.Alfred_Bester,1951,/genres/science-fiction|/genres/fiction|/genres/classics|/genres/mystery|/genres/science-fiction-fantasy|/genres/fantasy|/genres/speculative-fiction|/genres/mystery|/genres/crime|/genres/adventure|/genres/novels,dir33/76740.The_Demolished_Man.html,15289,The Demolished Man +4.22,434,0505523892,good_reads:book,https://www.goodreads.com/author/show/6268.Christine_Feehan,2000,/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/adult|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/dark,dir33/287633.Dark_Magic.html,16206,Dark Magic (Dark #4) +4.29,470,0451159411,good_reads:book,https://www.goodreads.com/author/show/11629.Jennings_Michael_Burch,1984,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/biography|/genres/academic|/genres/read-for-school|/genres/academic|/genres/school|/genres/psychology|/genres/sociology|/genres/abuse|/genres/biography-memoir|/genres/biography|/genres/autobiography|/genres/childrens,dir33/19412.They_Cage_the_Animals_at_Night.html,5097,They Cage the Animals at Night +4.49,19,1608604896,good_reads:book,https://www.goodreads.com/author/show/3161479.Saira_Viola,2009,/genres/contemporary,dir33/7117109-slide-a-modern-satire-on-the-excess-of-greed.html,37,"Slide, a Modern Satire on the Excess of Greed" +4.22,572,1555838537,good_reads:book,https://www.goodreads.com/author/show/80702.Leslie_Feinberg,1993,/genres/glbt|/genres/queer|/genres/fiction|/genres/glbt|/genres/gender|/genres/feminism|/genres/glbt|/genres/lesbian|/genres/glbt|/genres/trans|/genres/gender|/genres/gender-studies|/genres/sexuality|/genres/novels,dir33/139569.Stone_Butch_Blues.html,10165,Stone Butch Blues +3.75,1054,0670060291,good_reads:book,https://www.goodreads.com/author/show/410418.Susane_Colasanti,2006,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/fiction|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/high-school,dir33/781046.When_It_Happens.html,26469,When It Happens +4.00,0,,good_reads:book,https://www.goodreads.com/author/show/6520851.Michal_Siwiec,2012,,dir33/15992396-take-a-deep-breath---21-top-tips-for-relaxed-rewarding-and-healthy-life.html,11,"Take a Deep Breath - 21 Top Tips for Relaxed, Rewarding and Healthy Life for Stressed Wage Earners" +4.47,10,193745424X,good_reads:book,https://www.goodreads.com/author/show/6114295.Jozef_Rothstein,2012,/genres/humor,dir33/14655460-as-the-matzo-ball-turns.html,15,As the Matzo Ball Turns +4.05,29,,good_reads:book,https://www.goodreads.com/author/show/6983518.M_P_Attardo,2013,/genres/science-fiction|/genres/dystopia|/genres/new-adult|/genres/fantasy|/genres/romance|/genres/young-adult|/genres/science-fiction,dir33/17567854-intermix-nation.html,103,Intermix Nation +3.49,196,,good_reads:book,https://www.goodreads.com/author/show/7054725.Rucy_Ban,2013,/genres/new-adult|/genres/romance|/genres/contemporary|/genres/academic|/genres/college|/genres/romance|/genres/contemporary-romance|/genres/adult-fiction|/genres/erotica|/genres/young-adult|/genres/high-school,dir33/17825487-all-my-life.html,1191,"All My Life (First Things, #1)" +4.40,19,1625108737,good_reads:book,https://www.goodreads.com/author/show/6978127.G_X_Chen,2013,,dir33/17871711-the-mystery-of-revenge.html,55,The Mystery of Revenge +4.22,263,0316156280,good_reads:book,https://www.goodreads.com/author/show/5816.Darren_Shan,2004,/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/horror|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/childrens,dir33/8949.Lord_of_the_Shadows.html,12894,"Lord of the Shadows (Cirque Du Freak, #11)" +4.32,1469,0451459873,good_reads:book,https://www.goodreads.com/author/show/10746.Jim_Butcher,2004,/genres/mystery|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/mystery|/genres/detective|/genres/horror,dir33/99383.Blood_Rites.html,55946,Blood Rites (The Dresden Files #6) +4.31,1610,0451459407,good_reads:book,https://www.goodreads.com/author/show/10746.Jim_Butcher,2003,/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/mystery|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/supernatural|/genres/science-fiction-fantasy,dir33/91479.Death_Masks.html,58651,Death Masks (The Dresden Files #5) +3.84,679,0670011304,good_reads:book,https://www.goodreads.com/author/show/410418.Susane_Colasanti,2009,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/fiction|/genres/young-adult|/genres/high-school|/genres/young-adult|/genres/young-adult-romance|/genres/young-adult|/genres/young-adult-contemporary,dir33/5168517-waiting-for-you.html,16810,Waiting For You +4.17,485,1416994610,good_reads:book,https://www.goodreads.com/author/show/53574.Elizabeth_Chandler,2009,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/mystery|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/ghosts|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/young-adult|/genres/teen,dir33/6416903-legacy-of-lies-don-t-tell.html,8699,"Legacy of Lies & Don't Tell (Dark Secrets, #1-2)" +4.05,1898,,good_reads:book,https://www.goodreads.com/author/show/3393956.Nicky_Charles,2010,/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/paranormal|/genres/shapeshifters|/genres/adult|/genres/adult-fiction|/genres/erotica|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy,dir33/7785207-the-mating.html,18714,"The Mating (Law of the Lycans, #3)" +4.06,78,0984259422,good_reads:book,https://www.goodreads.com/author/show/3088610.Jen_Knox,2009,/genres/autobiography|/genres/memoir|/genres/non-fiction|/genres/mental-health|/genres/mental-illness|/genres/psychology|/genres/biography|/genres/biography-memoir|/genres/health|/genres/mental-health,dir33/6901097-musical-chairs.html,235,Musical Chairs +3.90,5887,0312323867,good_reads:book,https://www.goodreads.com/author/show/13370.Emily_Giffin,2005,/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/romance|/genres/contemporary|/genres/adult-fiction|/genres/adult|/genres/romance|/genres/contemporary-romance,dir33/42155.Something_Blue.html,135049,Something Blue +4.35,20,,good_reads:book,https://www.goodreads.com/author/show/7243654.Collette_Sinclaire,2013,,dir33/18397370-the-real-book-of-the-dead.html,40,The Real Book of the Dead +3.95,1139,1423119568,good_reads:book,https://www.goodreads.com/author/show/3425627.Yvonne_Woon,2010,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/horror|/genres/zombies|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/mystery|/genres/fiction|/genres/fantasy|/genres/urban-fantasy,dir33/7875327-dead-beautiful.html,8980,"Dead Beautiful (Dead Beautiful, #1)" +3.71,1134,1416540741,good_reads:book,https://www.goodreads.com/author/show/181357.Stef_Penney,2006,/genres/fiction|/genres/historical-fiction|/genres/mystery|/genres/book-club|/genres/cultural|/genres/canada|/genres/mystery|/genres/crime|/genres/novels|/genres/thriller|/genres/adult-fiction|/genres/thriller|/genres/mystery-thriller,dir33/315340.The_Tenderness_of_Wolves.html,6559,The Tenderness of Wolves +4.33,588,1466266732,good_reads:book,https://www.goodreads.com/author/show/5286855.Amy_A_Bartol,2011,/genres/paranormal|/genres/angels|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/new-adult|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires,dir33/13281637-intuition.html,13775,"Intuition (The Premonition, #2)" +4.20,723,0515126772,good_reads:book,https://www.goodreads.com/author/show/625.Nora_Roberts,1999,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/fiction|/genres/fantasy|/genres/contemporary|/genres/fantasy|/genres/paranormal|/genres/cultural|/genres/ireland|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/paranormal-romance,dir33/59810.Jewels_of_the_Sun.html,39582,"Jewels of the Sun (Gallaghers of Ardmore / Irish Trilogy, #1)" +4.10,572,0373802471,good_reads:book,https://www.goodreads.com/author/show/17015.P_C_Cast,2001,/genres/fantasy|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/mythology|/genres/fiction|/genres/adult|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/fantasy|/genres/supernatural,dir33/30187.Divine_By_Mistake.html,7845,"Divine By Mistake (Partholon, #1)" +4.05,275,0062003941,good_reads:book,https://www.goodreads.com/author/show/50873.L_J_Smith,2011,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/teen,dir33/8456124-bloodlust.html,9241,"Bloodlust (The Vampire Diaries: Stefan's Diaries, #2)" +4.42,30,,good_reads:book,https://www.goodreads.com/author/show/4598040.Haresh_Daswani,2010,/genres/psychology|/genres/short-stories|/genres/contemporary,dir33/10286585-evolution-of-insanity.html,62,Evolution of Insanity +3.96,1442,0425224201,good_reads:book,https://www.goodreads.com/author/show/1647762.Julie_James,2008,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/adult|/genres/humor|/genres/funny|/genres/humor,dir33/3863861-just-the-sexiest-man-alive.html,26654,Just the Sexiest Man Alive +4.17,2940,0061996203,good_reads:book,https://www.goodreads.com/author/show/3290920.Cynthia_Hand,2013,/genres/paranormal|/genres/angels|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy,dir33/13049981-boundless.html,21482,"Boundless (Unearthly, #3)" +4.26,931,044640098X,good_reads:book,https://www.goodreads.com/author/show/375143.Larissa_Ione,2009,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/demons|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/adult-fiction|/genres/erotica|/genres/shapeshifters|/genres/werewolves,dir33/4497978-desire-unchained.html,20490,"Desire Unchained (Demonica, #2)" +4.26,847,0441013406,good_reads:book,https://www.goodreads.com/author/show/10746.Jim_Butcher,2005,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/adventure|/genres/epic|/genres/adult|/genres/science-fiction,dir33/133664.Academ_s_Fury.html,27285,"Academ's Fury (Codex Alera, #2)" +4.23,358,0060888644,good_reads:book,https://www.goodreads.com/author/show/12542.Bernard_Cornwell,2007,/genres/historical-fiction|/genres/fiction|/genres/fantasy|/genres/historical-fiction|/genres/medieval|/genres/adventure|/genres/war|/genres/european-literature|/genres/british-literature,dir33/1297150.Sword_Song.html,10118,"Sword Song (The Saxon Stories, #4)" +3.60,636,142640607X,good_reads:book,https://www.goodreads.com/author/show/7330.Sinclair_Lewis,1922,/genres/fiction|/genres/classics|/genres/literature|/genres/literature|/genres/american|/genres/novels,dir33/169718.Babbit.html,11671,Babbit +3.92,1287,142312197X,good_reads:book,https://www.goodreads.com/author/show/3125711.Stacey_Kade,2010,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/ghosts|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/contemporary|/genres/humor|/genres/young-adult|/genres/teen,dir33/7008041-the-ghost-and-the-goth.html,12113,"The Ghost and the Goth (The Ghost and the Goth, #1)" +3.92,1399,0312150601,good_reads:book,https://www.goodreads.com/author/show/10015.Kate_Atkinson,1995,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/contemporary|/genres/european-literature|/genres/british-literature|/genres/mystery|/genres/novels|/genres/literary-fiction|/genres/literature|/genres/young-adult|/genres/coming-of-age,dir33/28940.Behind_the_Scenes_at_the_Museum.html,15515,Behind the Scenes at the Museum +4.92,5,,good_reads:book,https://www.goodreads.com/author/show/5227478.Alecia_Stone,2014,/genres/young-adult,dir33/13495579-blackout.html,25,Blackout (Talisman of El #2) +4.25,393,000721975X,good_reads:book,https://www.goodreads.com/author/show/12542.Bernard_Cornwell,2009,/genres/historical-fiction|/genres/fiction|/genres/historical-fiction|/genres/medieval|/genres/fantasy|/genres/european-literature|/genres/british-literature|/genres/war|/genres/adventure|/genres/war|/genres/military|/genres/action|/genres/adult-fiction,dir33/6489529-the-burning-land.html,9414,"The Burning Land (The Saxon Stories, #5)" +4.73,2,1938021231,good_reads:book,https://www.goodreads.com/author/show/4111693.Lisa_Cherry,2014,/genres/religion|/genres/christianity,dir33/18617712-not-open.html,11,Not Open +4.24,758,,good_reads:book,https://www.goodreads.com/author/show/7092218.Amelia_Hutchins,2013,/genres/fantasy|/genres/paranormal|/genres/fairies|/genres/fae|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/adult-fiction|/genres/erotica|/genres/fantasy|/genres/magic|/genres/adult,dir33/17927559-fighting-destiny.html,5783,"Fighting Destiny (The Fae Chronicles, #1)" +4.63,20,,good_reads:book,https://www.goodreads.com/author/show/7058502.O_L_Ramos,2013,,dir33/19571104-the-keeper.html,54,"The Keeper (The Keeper, #3)" +4.06,4381,0142422959,good_reads:book,https://www.goodreads.com/author/show/295178.Gayle_Forman,2013,/genres/realistic-fiction|/genres/fiction|/genres/travel|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/young-adult-contemporary|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/coming-of-age|/genres/young-adult|/genres/adventure|/genres/young-adult|/genres/young-adult-romance,dir33/17623975-just-one-day.html,30326,"Just One Day (Just One Day, #1)" +4.19,841,0545052424,good_reads:book,https://www.goodreads.com/author/show/99650.Wendy_Mass,2010,/genres/childrens|/genres/middle-grade|/genres/young-adult|/genres/childrens|/genres/humor|/genres/childrens|/genres/juvenile|/genres/realistic-fiction|/genres/young-adult|/genres/coming-of-age|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/academic|/genres/school,dir33/6696465-finally.html,9632,"Finally (Willow Falls, #2)" +4.12,325,1423121716,good_reads:book,https://www.goodreads.com/author/show/3161109.Mary_Jane_Knight,2010,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/mythology|/genres/fiction|/genres/adventure|/genres/mythology|/genres/greek-mythology|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/fantasy|/genres/magic|/genres/action,dir33/6654104-percy-jackson-the-olympians.html,11369,Percy Jackson & the Olympians +4.10,1341,0142406120,good_reads:book,https://www.goodreads.com/author/show/32590.Anthony_Horowitz,2001,/genres/young-adult|/genres/adventure|/genres/fiction|/genres/action|/genres/mystery|/genres/spy-thriller|/genres/espionage|/genres/thriller|/genres/young-adult|/genres/teen|/genres/childrens|/genres/realistic-fiction,dir33/224500.Point_Blank.html,29551,"Point Blank (Alex Rider, #2)" +4.37,612,0441015271,good_reads:book,https://www.goodreads.com/author/show/10746.Jim_Butcher,2007,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/epic|/genres/adventure|/genres/adult|/genres/science-fiction,dir33/346087.Captain_s_Fury.html,27960,"Captain's Fury (Codex Alera, #4)" +3.76,2535,1455503061,good_reads:book,https://www.goodreads.com/author/show/16304.Julianna_Baggott,2012,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/science-fiction|/genres/fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fantasy|/genres/romance|/genres/science-fiction|/genres/steampunk|/genres/science-fiction|/genres/apocalyptic|/genres/adult,dir33/9680114-pure.html,15281,"Pure (Pure, #1)" +4.10,264,0143039849,good_reads:book,https://www.goodreads.com/author/show/5775185.Ry_nosuke_Akutagawa,1914,/genres/short-stories|/genres/fiction|/genres/cultural|/genres/japan|/genres/asian-literature|/genres/japanese-literature|/genres/classics|/genres/literature|/genres/cultural|/genres/asia|/genres/literature|/genres/asian-literature|/genres/literary-fiction|/genres/historical-fiction,dir33/35206.Rashomon_and_Seventeen_Other_Stories.html,4361,Rashomon and Seventeen Other Stories +3.75,1849,0440241898,good_reads:book,https://www.goodreads.com/author/show/6160.Sophie_Kinsella,2002,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/humor|/genres/contemporary|/genres/adult|/genres/humor|/genres/funny|/genres/adult-fiction|/genres/european-literature|/genres/british-literature|/genres/humor|/genres/comedy,dir33/9419.Shopaholic_Ties_the_Knot.html,70160,"Shopaholic Ties the Knot (Shopaholic, #3)" +3.83,876,0525479422,good_reads:book,https://www.goodreads.com/author/show/1051591.Tera_Lynn_Childs,2008,/genres/young-adult|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/mythology|/genres/greek-mythology|/genres/young-adult|/genres/teen|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/fantasy|/genres/magic,dir33/2342943.Oh_My_Gods_.html,10953,"Oh. My. Gods. (Oh. My. Gods, #1)" +4.21,2293,1416995552,good_reads:book,https://www.goodreads.com/author/show/151371.Jenny_Han,2010,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/fiction|/genres/young-adult|/genres/young-adult-contemporary|/genres/love|/genres/young-adult|/genres/young-adult-romance,dir33/6584188-it-s-not-summer-without-you.html,51610,"It's Not Summer Without You (Summer, #2)" +4.05,7617,0393324826,good_reads:book,https://www.goodreads.com/author/show/7956.Mary_Roach,2003,/genres/non-fiction|/genres/science|/genres/humor|/genres/medical|/genres/book-club|/genres/death|/genres/history|/genres/health|/genres/medicine|/genres/adult|/genres/humor|/genres/funny,dir33/32145.Stiff.html,82059,Stiff +3.92,2803,0765317583,good_reads:book,https://www.goodreads.com/author/show/8589.William_R_Forstchen,2009,/genres/fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/science-fiction|/genres/science-fiction|/genres/apocalyptic|/genres/thriller|/genres/science-fiction|/genres/dystopia|/genres/book-club|/genres/adventure|/genres/survival,dir33/4922079-one-second-after.html,16057,One Second After +4.34,840,0440237564,good_reads:book,https://www.goodreads.com/author/show/48206.Karen_Marie_Moning,2004,/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/time-travel|/genres/fantasy|/genres/romance|/genres/historical-romance|/genres/fairies|/genres/fae|/genres/cultural|/genres/scotland|/genres/historical-fiction|/genres/adult,dir33/112752.The_Immortal_Highlander.html,21841,"The Immortal Highlander (Highlander, #6)" +3.66,766,0451528182,good_reads:book,https://www.goodreads.com/author/show/4699102.Unknown,1390,/genres/classics|/genres/poetry|/genres/fantasy|/genres/fiction|/genres/historical-fiction|/genres/medieval|/genres/mythology|/genres/arthurian|/genres/literature|/genres/academic|/genres/school|/genres/fantasy|/genres/mythology|/genres/historical-fiction,dir33/3049.Sir_Gawain_and_the_Green_Knight.html,29983,Sir Gawain and the Green Knight +4.41,1428,0062265970,good_reads:book,https://www.goodreads.com/author/show/4279785.Wendy_Higgins,2014,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/angels|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/demons|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/love,dir33/16007855-sweet-reckoning.html,9463,"Sweet Reckoning (The Sweet Trilogy, #3)" +3.88,411,0140449493,good_reads:book,https://www.goodreads.com/author/show/2192.Aristotle,-350,/genres/philosophy|/genres/classics|/genres/non-fiction|/genres/politics|/genres/academic|/genres/school|/genres/literature|/genres/ancient|/genres/academic|/genres/college|/genres/cultural|/genres/greece|/genres/history|/genres/reference,dir33/19068.The_Nicomachean_Ethics.html,16534,The Nicomachean Ethics +4.02,4546,,good_reads:book,https://www.goodreads.com/author/show/357601.Rachel_Hartman,2012,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/dragons|/genres/romance|/genres/fiction|/genres/young-adult|/genres/young-adult-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/young-adult|/genres/teen|/genres/mystery,dir33/19549841-seraphina.html,30905,"Seraphina (Seraphina, #1)" +3.86,321,0812967437,good_reads:book,https://www.goodreads.com/author/show/239579.Charles_Dickens,1848,/genres/classics|/genres/fiction|/genres/literature|/genres/literature|/genres/19th-century|/genres/classics|/genres/classic-literature|/genres/european-literature|/genres/british-literature,dir33/50827.Dombey_and_Son.html,6220,Dombey and Son +4.19,226,1577780728,good_reads:book,https://www.goodreads.com/author/show/5830.D_C_Talk,1997,/genres/christian|/genres/non-fiction|/genres/biography|/genres/religion|/genres/religion|/genres/christianity|/genres/religion|/genres/faith|/genres/history|/genres/church|/genres/church-history|/genres/religion|/genres/theology|/genres/spirituality,dir33/8964.Jesus_Freaks.html,13554,"Jesus Freaks (Jesus Freaks, #1)" +4.02,498,0452277752,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1985,/genres/horror|/genres/fiction|/genres/short-stories|/genres/thriller|/genres/science-fiction|/genres/fantasy|/genres/suspense|/genres/anthologies|/genres/collections|/genres/adult-fiction|/genres/mystery,dir33/10617.The_Bachman_Books.html,28806,The Bachman Books +4.10,2696,,good_reads:book,https://www.goodreads.com/author/show/155829.Jeanne_Birdsall,2005,/genres/childrens|/genres/fiction|/genres/realistic-fiction|/genres/young-adult|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/family|/genres/adventure|/genres/contemporary|/genres/childrens|/genres/chapter-books,dir33/266904.The_Penderwicks.html,20856,The Penderwicks +4.27,1756,,good_reads:book,https://www.goodreads.com/author/show/4872191.Abbi_Glines,2012,/genres/new-adult|/genres/romance|/genres/young-adult|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/womens-fiction|/genres/chick-lit|/genres/academic|/genres/college|/genres/love|/genres/young-adult|/genres/young-adult-romance|/genres/realistic-fiction,dir33/13496738-while-it-lasts.html,37793,"While It Lasts (Sea Breeze, #3)" +4.51,2612,1622662644,good_reads:book,https://www.goodreads.com/author/show/4476934.Jennifer_L_Armentrout,2014,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/aliens|/genres/romance|/genres/fantasy|/genres/science-fiction|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/new-adult|/genres/fantasy|/genres/urban-fantasy,dir33/13644055-opposition.html,13526,"Opposition (Lux, #5)" +4.22,1160,0425150984,good_reads:book,https://www.goodreads.com/author/show/17065.J_D_Robb,1995,/genres/fiction|/genres/science-fiction|/genres/mystery|/genres/thriller|/genres/thriller|/genres/mystery-thriller|/genres/romance|/genres/mystery|/genres/detective|/genres/mystery|/genres/murder-mystery|/genres/fantasy|/genres/mystery|/genres/crime,dir33/268601.Glory_in_Death.html,26375,"Glory in Death (In Death, #2)" +4.15,791,0373210272,good_reads:book,https://www.goodreads.com/author/show/415967.Rachel_Vincent,2010,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/ghosts|/genres/fiction|/genres/young-adult|/genres/teen,dir33/8487363-my-soul-to-steal.html,11938,"My Soul to Steal (Soul Screamers, #4)" +3.88,699,1419944932,good_reads:book,https://www.goodreads.com/author/show/6940334.Avery_Aster,2013,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/erotic-romance|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/humor|/genres/funny|/genres/adult|/genres/womens-fiction|/genres/chick-lit|/genres/adult-fiction|/genres/drama,dir33/18214458-unscrupulous.html,1203,"Unscrupulous (The Manhattanites, #2)" +4.16,903,0439717000,good_reads:book,https://www.goodreads.com/author/show/21616.Ann_M_Martin,2005,/genres/animals|/genres/dogs|/genres/fiction|/genres/young-adult|/genres/realistic-fiction|/genres/adventure|/genres/childrens|/genres/fantasy|/genres/childrens|/genres/juvenile,dir33/343718.A_Dog_s_Life.html,9762,A Dog's Life +4.28,444,141691420X,good_reads:book,https://www.goodreads.com/author/show/74046.D_J_MacHale,2008,/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/adventure|/genres/fiction|/genres/young-adult|/genres/teen|/genres/childrens|/genres/science-fiction|/genres/time-travel|/genres/young-adult|/genres/young-adult-fantasy|/genres/action,dir33/4415692-the-soldiers-of-halla.html,14245,"The Soldiers of Halla (Pendragon, #10)" +4.38,972,1416547037,good_reads:book,https://www.goodreads.com/author/show/4428.Kresley_Cole,2007,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/shapeshifters|/genres/werewolves|/genres/paranormal|/genres/witches|/genres/paranormal|/genres/shapeshifters|/genres/adult|/genres/fantasy|/genres/magic,dir33/435045.Wicked_Deeds_on_a_Winter_s_Night.html,31496,"Wicked Deeds on a Winter's Night (Immortals After Dark, #4)" +3.67,602,0060880155,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2007,/genres/young-adult|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/teen|/genres/contemporary|/genres/fiction|/genres/realistic-fiction|/genres/young-adult|/genres/high-school|/genres/young-adult|/genres/young-adult-romance|/genres/humor,dir33/199784.Pants_on_Fire.html,12952,Pants on Fire +4.61,4,,good_reads:book,https://www.goodreads.com/author/show/7243654.Collette_Sinclaire,2013,,dir33/18626461-messages-from-heaven.html,31,Messages From Heaven +3.98,779,0876852630,good_reads:book,https://www.goodreads.com/author/show/13275.Charles_Bukowski,1975,/genres/fiction|/genres/literature|/genres/classics|/genres/literature|/genres/american|/genres/novels|/genres/contemporary|/genres/thriller|/genres/dark|/genres/literature|/genres/20th-century|/genres/poetry,dir33/497199.Factotum.html,26021,Factotum +4.21,1263,0618665455,good_reads:book,https://www.goodreads.com/author/show/10006.Mary_Downing_Hahn,2007,/genres/mystery|/genres/horror|/genres/young-adult|/genres/paranormal|/genres/ghosts|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/horror|/genres/ghost-stories|/genres/fiction|/genres/childrens,dir33/541341.Deep_and_Dark_and_Dangerous.html,9199,Deep and Dark and Dangerous +3.94,869,0230756182,good_reads:book,https://www.goodreads.com/author/show/4292165.Jeyn_Roberts,2011,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/horror|/genres/zombies|/genres/horror|/genres/apocalyptic|/genres/post-apocalyptic|/genres/science-fiction|/genres/science-fiction|/genres/apocalyptic|/genres/fiction|/genres/adventure|/genres/survival|/genres/fantasy|/genres/paranormal,dir33/10841167-dark-inside.html,5744,"Dark Inside (Dark Inside, #1)" +3.80,2757,144240907X,good_reads:book,https://www.goodreads.com/author/show/4103366.Lauren_DeStefano,2012,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/romance|/genres/science-fiction|/genres/fantasy|/genres/fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/young-adult|/genres/teen|/genres/adventure|/genres/fantasy|/genres/paranormal,dir33/11112619-fever.html,25398,"Fever (The Chemical Garden, #2)" +3.69,490,1419940732,good_reads:book,https://www.goodreads.com/author/show/6940334.Avery_Aster,2013,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/contemporary|/genres/romance|/genres/erotic-romance|/genres/romance|/genres/contemporary-romance|/genres/adult|/genres/humor|/genres/funny|/genres/erotica|/genres/menage|/genres/fiction|/genres/new-adult,dir33/17553217-undressed.html,1748,"Undressed (The Manhattanites, #1)" +3.67,986,0156007479,good_reads:book,https://www.goodreads.com/author/show/23613.Emma_Donoghue,2000,/genres/historical-fiction|/genres/fiction|/genres/european-literature|/genres/british-literature|/genres/book-club|/genres/literary-fiction|/genres/literature|/genres/18th-century,dir33/44543.Slammerkin.html,9087,Slammerkin +3.86,986,076534775X,good_reads:book,https://www.goodreads.com/author/show/589.Orson_Scott_Card,1987,/genres/fantasy|/genres/fiction|/genres/science-fiction|/genres/alternate-history|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/historical-fiction|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/speculative-fiction|/genres/adventure,dir33/40290.Seventh_Son.html,22161,"Seventh Son (Tales of Alvin Maker, #1)" +4.01,420,0312423209,good_reads:book,https://www.goodreads.com/author/show/235.Thomas_Pynchon,1997,/genres/fiction|/genres/historical-fiction|/genres/literature|/genres/novels|/genres/contemporary|/genres/literature|/genres/american,dir33/413.Mason_and_Dixon.html,5352,Mason and Dixon +4.20,303,0380842939,good_reads:book,https://www.goodreads.com/author/show/274225.Anna_Lee_Waldo,1978,/genres/historical-fiction|/genres/fiction|/genres/western|/genres/adventure|/genres/history|/genres/american-history|/genres/classics,dir33/264778.Sacajawea.html,10508,Sacajawea +4.23,3402,0547152604,good_reads:book,https://www.goodreads.com/author/show/96375.Gary_D_Schmidt,2011,/genres/young-adult|/genres/historical-fiction|/genres/realistic-fiction|/genres/fiction|/genres/childrens|/genres/middle-grade|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/coming-of-age|/genres/childrens|/genres/family|/genres/book-club,dir33/9165406-okay-for-now.html,16275,Okay for Now +4.10,837,0312949812,good_reads:book,https://www.goodreads.com/author/show/27847.Lisa_Kleypas,2008,/genres/romance|/genres/historical-romance|/genres/romance|/genres/historical-fiction|/genres/regency|/genres/historical-romance|/genres/regency-romance|/genres/adult|/genres/fiction,dir34/2948832-seduce-me-at-sunrise.html,15788,"Seduce Me at Sunrise (The Hathaways, #2)" +4.71,787,0439827604,good_reads:book,https://www.goodreads.com/author/show/1077326.J_K_Rowling,2005,/genres/fantasy|/genres/fiction|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/childrens|/genres/adventure|/genres/classics|/genres/science-fiction-fantasy|/genres/love|/genres/paranormal|/genres/witches,dir34/10.Harry_Potter_Hardcover_Boxed_Set_Books_1_6.html,20354,"Harry Potter Hardcover Boxed Set, Books 1-6 (Harry Potter, #1-6)" +4.22,1275,,good_reads:book,https://www.goodreads.com/author/show/4872191.Abbi_Glines,2012,/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/new-adult|/genres/paranormal|/genres/ghosts|/genres/paranormal|/genres/angels|/genres/academic|/genres/college,dir34/13573795-ceaseless.html,20548,"Ceaseless (Existence Trilogy, #3)" +4.22,316,,good_reads:book,https://www.goodreads.com/author/show/5816.Darren_Shan,2003,/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/horror|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/childrens,dir34/8952.Killers_of_the_Dawn.html,14760,"Killers of the Dawn (Cirque Du Freak, #9)" +3.79,298,0486424529,good_reads:book,https://www.goodreads.com/author/show/3345.Joseph_Conrad,1904,/genres/fiction|/genres/classics|/genres/literature|/genres/novels|/genres/adventure|/genres/literature|/genres/20th-century|/genres/historical-fiction|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/english-literature|/genres/literary-fiction,dir34/115476.Nostromo.html,8185,Nostromo +3.94,391,1582404119,good_reads:book,https://www.goodreads.com/author/show/53498.Bo_Hampton,1820,/genres/classics|/genres/horror|/genres/fiction|/genres/fantasy|/genres/short-stories|/genres/literature|/genres/mystery|/genres/gothic|/genres/historical-fiction|/genres/fantasy|/genres/paranormal,dir34/93263.The_Legend_of_Sleepy_Hollow.html,37475,The Legend of Sleepy Hollow +4.30,159,0140187073,good_reads:book,https://www.goodreads.com/author/show/15991.William_Gaddis,1975,/genres/fiction|/genres/classics|/genres/literature|/genres/novels|/genres/literature|/genres/american|/genres/literary-fiction|/genres/literature|/genres/20th-century|/genres/contemporary|/genres/modern|/genres/economics,dir34/28434.JR.html,1415,JR +3.59,2796,1400076196,good_reads:book,https://www.goodreads.com/author/show/2408.Ian_McEwan,2005,/genres/fiction|/genres/contemporary|/genres/literature|/genres/book-club|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/literary-fiction|/genres/adult-fiction|/genres/modern|/genres/adult,dir34/5015.Saturday.html,37156,Saturday +4.11,784,0142406139,good_reads:book,https://www.goodreads.com/author/show/32590.Anthony_Horowitz,2003,/genres/young-adult|/genres/adventure|/genres/action|/genres/spy-thriller|/genres/espionage|/genres/fiction|/genres/mystery|/genres/thriller,dir34/175004.Eagle_Strike.html,27639,"Eagle Strike (Alex Rider, #4)" +3.96,1192,0152050841,good_reads:book,https://www.goodreads.com/author/show/86265.Jean_Ferris,2002,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/fairy-tales|/genres/romance|/genres/fiction|/genres/humor|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/magic,dir34/157055.Once_Upon_a_Marigold.html,15797,"Once Upon a Marigold (Upon a Marigold, #1)" +4.27,104,9500716054,good_reads:book,https://www.goodreads.com/author/show/5775606.Ernesto_Sabato,1961,/genres/fiction|/genres/european-literature|/genres/spanish-literature|/genres/cultural|/genres/latin-american|/genres/novels|/genres/classics|/genres/literature|/genres/contemporary|/genres/literature|/genres/latin-american-literature,dir34/1677.Sobre_h_roes_y_tumbas.html,3519,Sobre héroes y tumbas +4.44,144,,good_reads:book,https://www.goodreads.com/author/show/875661.Rumi,1215,/genres/poetry|/genres/philosophy|/genres/religion|/genres/islam|/genres/literature|/genres/religion|/genres/classics|/genres/spirituality|/genres/non-fiction|/genres/occult|/genres/mysticism|/genres/history,dir34/814318._.html,3074,مثنوی معنوی +3.90,3032,0345516109,good_reads:book,https://www.goodreads.com/author/show/3024821.Anne_Fortier,2010,/genres/historical-fiction|/genres/romance|/genres/fiction|/genres/mystery|/genres/cultural|/genres/italy|/genres/book-club|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/adult|/genres/adult-fiction,dir34/6718608-juliet.html,16838,Juliet +4.26,393,,good_reads:book,https://www.goodreads.com/author/show/4942228.Santino_Hassell,2007,/genres/romance|/genres/m-m-romance|/genres/science-fiction|/genres/dystopia|/genres/romance|/genres/science-fiction|/genres/dark|/genres/fantasy|/genres/war|/genres/military|/genres/sociology|/genres/abuse|/genres/mystery|/genres/crime|/genres/glbt,dir34/8164566-evenfall.html,2155,"Evenfall (In the company of shadows, #1)" +3.67,433,0316004030,good_reads:book,https://www.goodreads.com/author/show/46474.Patrick_Carman,2010,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/romance|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/mystery|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/teen,dir34/7155027-thirteen-days-to-midnight.html,2602,Thirteen Days to Midnight +4.09,2273,1442445807,good_reads:book,https://www.goodreads.com/author/show/164576.Suzanne_Young,2013,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/romance|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/young-adult|/genres/teen|/genres/mental-health|/genres/mental-illness|/genres/mystery|/genres/psychology,dir34/11366397-the-program.html,14605,"The Program (The Program, #1)" +3.84,834,0375836942,good_reads:book,https://www.goodreads.com/author/show/47104.Melina_Marchetta,1992,/genres/young-adult|/genres/contemporary|/genres/fiction|/genres/romance|/genres/realistic-fiction|/genres/young-adult|/genres/coming-of-age|/genres/cultural|/genres/australia|/genres/family|/genres/young-adult|/genres/teen|/genres/womens-fiction|/genres/chick-lit,dir34/82436.Looking_for_Alibrandi.html,11251,Looking for Alibrandi +4.42,195,0345378881,good_reads:book,https://www.goodreads.com/author/show/24655.Sharon_Kay_Penman,1991,/genres/historical-fiction|/genres/fiction|/genres/historical-fiction|/genres/medieval|/genres/european-literature|/genres/british-literature|/genres/romance|/genres/fantasy|/genres/romance|/genres/historical-romance|/genres/novels|/genres/adult|/genres/epic,dir34/119825.The_Reckoning.html,4985,"The Reckoning (Welsh Princes, #3)" +4.01,1879,0440244161,good_reads:book,https://www.goodreads.com/author/show/48206.Karen_Marie_Moning,1999,/genres/romance|/genres/science-fiction|/genres/time-travel|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/historical-romance|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/historical-fiction|/genres/fairies|/genres/fae|/genres/adult|/genres/fiction,dir34/743599.Beyond_the_Highland_Mist.html,38858,"Beyond the Highland Mist (Highlander, #1)" +3.92,452,0345419677,good_reads:book,https://www.goodreads.com/author/show/10089.Philip_Jos_Farmer,1971,/genres/science-fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/fiction|/genres/speculative-fiction|/genres/adventure|/genres/classics|/genres/science-fiction|/genres/dystopia|/genres/mystery|/genres/novels,dir34/189147.To_Your_Scattered_Bodies_Go.html,17184,"To Your Scattered Bodies Go (Riverworld, #1)" +4.24,644,0553344862,good_reads:book,https://www.goodreads.com/author/show/11700.David_James_Duncan,1983,/genres/fiction|/genres/book-club|/genres/literature|/genres/philosophy|/genres/environment|/genres/nature|/genres/novels|/genres/humor|/genres/literary-fiction|/genres/environment|/genres/spirituality,dir34/23196.The_River_Why.html,6295,The River Why +4.04,2081,1558745157,good_reads:book,https://www.goodreads.com/author/show/1881.Dave_Pelzer,1997,/genres/non-fiction|/genres/biography|/genres/autobiography|/genres/memoir|/genres/psychology|/genres/biography|/genres/autobiography|/genres/true-story|/genres/sociology|/genres/abuse|/genres/biography-memoir|/genres/adult,dir34/2743.The_Lost_Boy.html,38830,The Lost Boy +4.20,343,0451412761,good_reads:book,https://www.goodreads.com/author/show/38066.Karen_Chance,2009,/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy|/genres/magic|/genres/fairies|/genres/fae|/genres/adult|/genres/fantasy|/genres/supernatural,dir34/6203049-death-s-mistress.html,11809,"Death's Mistress (Dorina Basarab, #2)" +3.79,2575,0440243750,good_reads:book,https://www.goodreads.com/author/show/12942.Judy_Blume,1998,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/romance|/genres/book-club|/genres/adult|/genres/adult-fiction|/genres/contemporary|/genres/novels|/genres/young-adult|/genres/coming-of-age,dir34/22695.Summer_Sisters.html,56339,Summer Sisters +3.81,2604,0743299396,good_reads:book,https://www.goodreads.com/author/show/65678.Miranda_July,2005,/genres/short-stories|/genres/fiction|/genres/contemporary|/genres/adult-fiction|/genres/literature|/genres/literature|/genres/american|/genres/book-club|/genres/adult|/genres/humor|/genres/literary-fiction,dir34/113429.No_One_Belongs_Here_More_Than_You.html,19507,No One Belongs Here More Than You +4.13,1092,0473235501,good_reads:book,https://www.goodreads.com/author/show/7012565.Lang_Leav,2013,/genres/poetry|/genres/romance|/genres/young-adult|/genres/love|/genres/contemporary|/genres/fiction|/genres/relationships|/genres/short-stories|/genres/realistic-fiction|/genres/womens-fiction|/genres/chick-lit,dir34/18003300-love-misadventure.html,11147,Love & Misadventure +4.25,3168,1439107955,good_reads:book,https://www.goodreads.com/author/show/3032451.Siddhartha_Mukherjee,2010,/genres/non-fiction|/genres/science|/genres/history|/genres/health|/genres/medicine|/genres/medical|/genres/health|/genres/biography,dir34/7170627-the-emperor-of-all-maladies.html,28275,The Emperor of All Maladies +4.00,554,0545060451,good_reads:book,https://www.goodreads.com/author/show/46474.Patrick_Carman,2009,/genres/mystery|/genres/adventure|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/fantasy|/genres/childrens|/genres/juvenile,dir34/6255144-the-black-circle.html,30474,"The Black Circle (The 39 Clues, #5)" +4.33,1040,0312243359,good_reads:book,https://www.goodreads.com/author/show/7372.Philip_Gourevitch,1998,/genres/non-fiction|/genres/history|/genres/cultural|/genres/africa|/genres/war|/genres/politics|/genres/autobiography|/genres/memoir|/genres/writing|/genres/journalism|/genres/biography|/genres/social-movements|/genres/social-justice|/genres/sociology,dir34/11472.We_Wish_to_Inform_You_That_Tomorrow_We_Will_Be_Killed_With_Our_Families.html,13602,We Wish to Inform You That Tomorrow We Will Be Killed With Our Families +4.14,483,0156010860,good_reads:book,https://www.goodreads.com/author/show/1711.Thomas_Merton,1948,/genres/religion|/genres/biography|/genres/spirituality|/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/religion|/genres/christianity|/genres/religion|/genres/theology|/genres/christianity|/genres/catholic|/genres/biography|/genres/autobiography|/genres/christian,dir34/175078.The_Seven_Storey_Mountain.html,6933,The Seven Storey Mountain +3.72,741,0349108390,good_reads:book,https://www.goodreads.com/author/show/1886.Douglas_Coupland,1991,/genres/fiction|/genres/contemporary|/genres/cultural|/genres/canada|/genres/novels|/genres/literature|/genres/short-stories|/genres/adult-fiction|/genres/literary-fiction|/genres/classics|/genres/humor,dir34/3378.Generation_X.html,17670,Generation X +4.34,1505,,good_reads:book,https://www.goodreads.com/author/show/2958084.Kristen_Ashley,2012,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/adult|/genres/romance|/genres/romantic-suspense|/genres/adult-fiction|/genres/erotica|/genres/suspense|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/erotic-romance|/genres/mystery,dir34/13412515-law-man.html,22468,"Law Man (Dream Man, #3)" +4.35,5234,1609089464,good_reads:book,https://www.goodreads.com/author/show/5363257.Julianne_Donaldson,2012,/genres/romance|/genres/historical-fiction|/genres/romance|/genres/historical-romance|/genres/fiction|/genres/regency|/genres/book-club|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/clean-romance|/genres/historical-romance|/genres/regency-romance|/genres/young-adult,dir34/12820360-edenbrooke.html,18762,Edenbrooke +3.91,255,0415278481,good_reads:book,https://www.goodreads.com/author/show/1466.Jean_Paul_Sartre,1943,/genres/philosophy|/genres/non-fiction|/genres/cultural|/genres/france|/genres/classics|/genres/psychology|/genres/philosophy|/genres/theory|/genres/literature|/genres/european-literature|/genres/french-literature|/genres/philosophy|/genres/metaphysics|/genres/literature|/genres/20th-century,dir34/10033.Being_and_Nothingness.html,14851,Being and Nothingness +4.01,456,0898702682,good_reads:book,https://www.goodreads.com/author/show/1244.Mark_Twain,1883,/genres/classics|/genres/historical-fiction|/genres/fiction|/genres/literature|/genres/book-club|/genres/religion|/genres/cultural|/genres/france|/genres/literature|/genres/american|/genres/christianity|/genres/catholic|/genres/novels,dir34/826706.Joan_of_Arc.html,3156,Joan of Arc +3.98,499,0446362662,good_reads:book,https://www.goodreads.com/author/show/2687.Dan_Simmons,1991,/genres/horror|/genres/fiction|/genres/thriller|/genres/fantasy|/genres/suspense|/genres/mystery|/genres/adventure|/genres/modern,dir34/11279.Summer_of_Night.html,9258,Summer of Night +4.25,459,0316000957,good_reads:book,https://www.goodreads.com/author/show/5816.Darren_Shan,2001,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/horror|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/thriller,dir34/8967.Trials_of_Death.html,18079,"Trials of Death (Cirque Du Freak, #5)" +3.64,1281,0375508333,good_reads:book,https://www.goodreads.com/author/show/3732.Lorraine_Hansberry,1959,/genres/plays|/genres/classics|/genres/drama|/genres/fiction|/genres/academic|/genres/school|/genres/academic|/genres/read-for-school|/genres/historical-fiction|/genres/young-adult|/genres/high-school|/genres/cultural|/genres/african-american|/genres/literature,dir34/5517.A_Raisin_in_the_Sun.html,33566,A Raisin in the Sun +3.92,328,0140447636,good_reads:book,https://www.goodreads.com/author/show/123088.Joris_Karl_Huysmans,1884,/genres/cultural|/genres/france|/genres/literature|/genres/european-literature|/genres/french-literature|/genres/fiction|/genres/classics|/genres/literature|/genres/19th-century|/genres/novels|/genres/philosophy|/genres/literary-fiction|/genres/poetry,dir34/210255.Against_Nature.html,4676,Against Nature +4.23,23,1937929183,good_reads:book,https://www.goodreads.com/author/show/5130924.Michael_West,2003,/genres/horror|/genres/mystery|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/suspense|/genres/novels,dir34/18160656-the-wide-game.html,105,"The Wide Game (Harmony, Indiana, #1)" +3.95,3864,0061922315,good_reads:book,https://www.goodreads.com/author/show/3090079.Shilpi_Somaya_Gowda,2010,/genres/fiction|/genres/book-club|/genres/cultural|/genres/india|/genres/contemporary|/genres/cultural|/genres/canada|/genres/adult-fiction|/genres/parenting|/genres/adoption|/genres/cultural|/genres/adult|/genres/family,dir34/6905012-secret-daughter.html,39809,Secret Daughter +3.96,1575,0312374623,good_reads:book,https://www.goodreads.com/author/show/953371.Victoria_Forester,2008,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/science-fiction|/genres/adventure|/genres/childrens|/genres/juvenile,dir34/2090640.The_Girl_Who_Could_Fly.html,7672,The Girl Who Could Fly +4.40,388,1421501694,good_reads:book,https://www.goodreads.com/author/show/1978.Tsugumi_Ohba,2004,/genres/sequential-art|/genres/manga|/genres/sequential-art|/genres/graphic-novels|/genres/fantasy|/genres/sequential-art|/genres/comics|/genres/fiction|/genres/mystery|/genres/horror|/genres/young-adult,dir34/13619.Death_Note_Vol_2.html,13154,"Death Note, Vol. 2 (Death Note, #2)" +3.83,1566,0060920084,good_reads:book,https://www.goodreads.com/author/show/7.Bill_Bryson,1989,/genres/travel|/genres/non-fiction|/genres/humor|/genres/autobiography|/genres/memoir|/genres/biography|/genres/humor|/genres/funny|/genres/humor|/genres/comedy|/genres/literature|/genres/american,dir34/26.The_Lost_Continent.html,29420,The Lost Continent +3.72,800,1551113813,good_reads:book,https://www.goodreads.com/author/show/1209.Ford_Madox_Ford,1915,/genres/fiction|/genres/classics|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/20th-century|/genres/novels|/genres/historical-fiction|/genres/literary-fiction|/genres/academic|/genres/school|/genres/academic|/genres/college,dir34/7628.The_Good_Soldier.html,11056,The Good Soldier +4.18,2052,0141001828,good_reads:book,https://www.goodreads.com/author/show/1641.Nathaniel_Philbrick,1999,/genres/history|/genres/non-fiction|/genres/adventure|/genres/adventure|/genres/survival|/genres/history|/genres/american-history|/genres/book-club|/genres/biography|/genres/travel|/genres/adult|/genres/adventure|/genres/maritime,dir34/17780.In_the_Heart_of_the_Sea.html,30262,In the Heart of the Sea +3.58,707,0515140872,good_reads:book,https://www.goodreads.com/author/show/9550.Laurell_K_Hamilton,2006,/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/horror|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/shapeshifters,dir34/30228.Micah.html,31530,"Micah (Anita Blake, Vampire Hunter, #13)" +3.88,1325,1595145958,good_reads:book,https://www.goodreads.com/author/show/5625945.Jessica_Khoury,2012,/genres/young-adult|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/romance|/genres/fantasy|/genres/fiction|/genres/mystery|/genres/adventure|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/paranormal,dir34/13455112-origin.html,8383,"Origin (Corpus, #1)" +3.99,2069,0316125849,good_reads:book,https://www.goodreads.com/author/show/150484.Barry_Lyga,2012,/genres/young-adult|/genres/mystery|/genres/horror|/genres/thriller|/genres/contemporary|/genres/mystery|/genres/crime|/genres/fiction|/genres/young-adult|/genres/teen|/genres/suspense,dir34/7766027-i-hunt-killers.html,15979,"I Hunt Killers (Jasper Dent, #1)" +4.06,197,0152050884,good_reads:book,https://www.goodreads.com/author/show/179612.Carol_Plum_Ucci,1982,/genres/young-adult|/genres/fiction|/genres/glbt|/genres/mystery|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/glbt|/genres/queer|/genres/realistic-fiction|/genres/fantasy|/genres/queer|/genres/queer-lit,dir34/347639.What_Happened_to_Lani_Garver.html,2523,What Happened to Lani Garver +4.09,92,9631345343,good_reads:book,https://www.goodreads.com/author/show/1216116.Ferenc_Moln_r,1907,/genres/classics|/genres/european-literature|/genres/hungarian-literature|/genres/childrens|/genres/fiction|/genres/academic|/genres/school|/genres/young-adult|/genres/cultural|/genres/hungary|/genres/historical-fiction|/genres/novels|/genres/literature|/genres/20th-century,dir34/86336.The_Paul_Street_Boys.html,3511,The Paul Street Boys +4.07,537,0152051252,good_reads:book,https://www.goodreads.com/author/show/13014.Vivian_Vande_Velde,2002,/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/fiction|/genres/adventure|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/young-adult-fantasy|/genres/humor|/genres/romance|/genres/fantasy|/genres/magic,dir34/213652.Heir_Apparent.html,6246,"Heir Apparent (Rasmussem Corporation, #2)" +3.52,3931,0806527285,good_reads:book,https://www.goodreads.com/author/show/5856.Tucker_Max,2006,/genres/non-fiction|/genres/humor|/genres/autobiography|/genres/memoir|/genres/humor|/genres/comedy|/genres/biography|/genres/humor|/genres/funny|/genres/adult|/genres/biography|/genres/autobiography|/genres/short-stories|/genres/book-club,dir34/9010.I_Hope_They_Serve_Beer_in_Hell.html,39052,"I Hope They Serve Beer in Hell (Tucker Max, #1)" +4.22,398,0316000973,good_reads:book,https://www.goodreads.com/author/show/5816.Darren_Shan,2002,/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/horror|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/thriller,dir34/8968.The_Vampire_Prince.html,17225,"The Vampire Prince (Cirque Du Freak, #6)" +4.12,9086,0192802631,good_reads:book,https://www.goodreads.com/author/show/1265.Jane_Austen,1817,/genres/classics|/genres/fiction|/genres/romance|/genres/historical-fiction|/genres/literature|/genres/book-club|/genres/literature|/genres/19th-century,dir34/2156.Persuasion.html,270945,Persuasion +3.56,1340,0439895766,good_reads:book,https://www.goodreads.com/author/show/800019.Elizabeth_C_Bunce,2008,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/fairy-tales|/genres/historical-fiction|/genres/fiction|/genres/romance|/genres/retellings|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/magic|/genres/fairy-tales|/genres/fairy-tale-retellings,dir34/1743390.A_Curse_Dark_as_Gold.html,8636,A Curse Dark as Gold +4.17,369,0395169615,good_reads:book,https://www.goodreads.com/author/show/15450.Virginia_Lee_Burton,1938,/genres/childrens|/genres/picture-books|/genres/childrens|/genres/fiction|/genres/classics|/genres/childrens|/genres/juvenile|/genres/kids|/genres/fantasy|/genres/young-adult|/genres/historical-fiction|/genres/childrens|/genres/young-readers,dir34/153542.Mike_Mulligan_and_His_Steam_Shovel.html,31667,Mike Mulligan and His Steam Shovel +4.03,5530,0812992792,good_reads:book,https://www.goodreads.com/author/show/36615.Adam_Johnson,2012,/genres/book-club|/genres/historical-fiction|/genres/cultural|/genres/asia|/genres/contemporary|/genres/literary-fiction|/genres/literature|/genres/adult-fiction|/genres/novels|/genres/fiction|/genres/adult,dir34/11529868-the-orphan-master-s-son.html,31368,The Orphan Master's Son +4.29,1659,,good_reads:book,https://www.goodreads.com/author/show/4476934.Jennifer_L_Armentrout,2014,/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/demons|/genres/romance|/genres/paranormal-romance|/genres/new-adult|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/angels,dir34/17455585-white-hot-kiss.html,10177,"White Hot Kiss (The Dark Elements, #1)" +4.06,1992,0786886307,good_reads:book,https://www.goodreads.com/author/show/18575.Malika_Oufkir,1980,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/biography|/genres/book-club|/genres/cultural|/genres/africa|/genres/history|/genres/biography-memoir|/genres/politics|/genres/adult|/genres/adventure|/genres/survival,dir34/103342.Stolen_Lives.html,17710,Stolen Lives +4.14,3913,0316069906,good_reads:book,https://www.goodreads.com/author/show/2617.Jonathan_Safran_Foer,2009,/genres/non-fiction|/genres/food-and-drink|/genres/food|/genres/philosophy|/genres/health|/genres/animals|/genres/food-and-drink|/genres/vegan,dir34/6604712-eating-animals.html,32396,Eating Animals +4.51,552,0394720245,good_reads:book,https://www.goodreads.com/author/show/722.Robert_A_Caro,1974,/genres/history|/genres/biography|/genres/non-fiction|/genres/politics|/genres/new-york|/genres/history|/genres/american-history|/genres/cities|/genres/urban-planning|/genres/geography|/genres/cities|/genres/biography-memoir|/genres/cities|/genres/urbanism,dir34/1111.The_Power_Broker.html,4266,The Power Broker +4.12,228,0140272933,good_reads:book,https://www.goodreads.com/author/show/63.Bryce_Courtenay,1993,/genres/non-fiction|/genres/biography|/genres/cultural|/genres/australia|/genres/autobiography|/genres/memoir,dir34/510247.April_Fool_s_Day.html,3974,April Fool's Day +4.25,281,1570625387,good_reads:book,https://www.goodreads.com/author/show/54103.Jean_Giono,1953,/genres/fiction|/genres/short-stories|/genres/environment|/genres/classics|/genres/philosophy|/genres/european-literature|/genres/french-literature|/genres/cultural|/genres/france|/genres/environment|/genres/nature|/genres/spirituality|/genres/novels,dir34/757438.The_Man_Who_Planted_Trees.html,2300,The Man Who Planted Trees +4.24,157,0765309971,good_reads:book,https://www.goodreads.com/author/show/8649.Juliet_Marillier,2007,/genres/historical-fiction|/genres/romance|/genres/fiction|/genres/science-fiction-fantasy|/genres/adult|/genres/romance|/genres/fantasy-romance,dir34/13926.The_Well_of_Shades.html,3673,"The Well of Shades (The Bridei Chronicles, #3)" +4.08,385,0451461991,good_reads:book,https://www.goodreads.com/author/show/38066.Karen_Chance,2008,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy|/genres/magic|/genres/science-fiction|/genres/time-travel|/genres/paranormal|/genres/ghosts|/genres/fantasy|/genres/supernatural,dir34/1233478.Embrace_the_Night.html,15715,"Embrace the Night (Cassandra Palmer, #3)" +4.06,1715,0373210450,good_reads:book,https://www.goodreads.com/author/show/767317.Aimee_Carter,2012,/genres/fantasy|/genres/mythology|/genres/young-adult|/genres/fantasy|/genres/romance|/genres/mythology|/genres/greek-mythology|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/young-adult|/genres/teen,dir34/12637490-goddess-interrupted.html,19062,"Goddess Interrupted (Goddess Test, #2)" +4.21,3126,0393324818,good_reads:book,https://www.goodreads.com/author/show/776.Michael_Lewis,2003,/genres/sports-and-games|/genres/sports|/genres/non-fiction|/genres/sports|/genres/baseball|/genres/business|/genres/economics|/genres/biography|/genres/history|/genres/science|/genres/writing|/genres/journalism|/genres/book-club,dir34/1301.Moneyball.html,51636,Moneyball +4.05,307,0142004545,good_reads:book,https://www.goodreads.com/author/show/95806.Rani_Manicka,2002,/genres/fiction|/genres/historical-fiction|/genres/cultural|/genres/asia|/genres/cultural|/genres/india|/genres/book-club|/genres/literature|/genres/asian-literature|/genres/magical-realism|/genres/cultural|/genres/contemporary|/genres/adult-fiction,dir34/164814.The_Rice_Mother.html,2644,The Rice Mother +4.13,1060,0061566128,good_reads:book,https://www.goodreads.com/author/show/93970.Sara_Shepard,2009,/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/contemporary|/genres/romance|/genres/young-adult|/genres/teen|/genres/realistic-fiction,dir34/3047849-killer.html,32558,"Killer (Pretty Little Liars, #6)" +4.02,409,0515103292,good_reads:book,https://www.goodreads.com/author/show/4262.Truddi_Chase,1980,/genres/non-fiction|/genres/psychology|/genres/autobiography|/genres/memoir|/genres/biography|/genres/mental-health|/genres/mental-illness|/genres/health|/genres/mental-health|/genres/biography|/genres/autobiography|/genres/sociology|/genres/abuse|/genres/biography-memoir|/genres/crime|/genres/true-crime,dir34/760941.When_Rabbit_Howls.html,11549,When Rabbit Howls +4.18,234,081091185X,good_reads:book,https://www.goodreads.com/author/show/32665.David_Clement_Davies,2007,/genres/fantasy|/genres/young-adult|/genres/animals|/genres/animals|/genres/wolves|/genres/fiction|/genres/fantasy|/genres/magic|/genres/adventure|/genres/shapeshifters|/genres/werewolves|/genres/young-adult|/genres/teen|/genres/childrens,dir34/1161439.Fell.html,3501,"Fell (The Sight, #2)" +3.94,472,0552154180,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,1998,/genres/fantasy|/genres/fiction|/genres/humor|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny,dir34/47994.The_Last_Continent.html,26223,"The Last Continent (Discworld, #22)" +3.73,1338,0689862210,good_reads:book,https://www.goodreads.com/author/show/2713.E_L_Konigsburg,1996,/genres/young-adult|/genres/fiction|/genres/childrens|/genres/realistic-fiction|/genres/childrens|/genres/middle-grade|/genres/academic|/genres/school|/genres/childrens|/genres/juvenile|/genres/contemporary|/genres/classics|/genres/young-adult|/genres/teen,dir34/4538.The_View_from_Saturday.html,29321,The View from Saturday +3.72,1565,0670011835,good_reads:book,https://www.goodreads.com/author/show/318661.Amy_Efaw,2009,/genres/young-adult|/genres/realistic-fiction|/genres/fiction|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/mystery|/genres/mystery|/genres/crime|/genres/drama|/genres/young-adult|/genres/high-school|/genres/novels,dir34/6338619-after.html,13452,After +4.69,70,039306011X,good_reads:book,https://www.goodreads.com/author/show/5600.Patrick_O_Brian,1994,/genres/historical-fiction|/genres/fiction|/genres/adventure|/genres/adventure|/genres/maritime|/genres/literature|/genres/classics|/genres/novels,dir34/24520.The_Complete_Aubrey_Maturin_Novels.html,933,The Complete Aubrey/Maturin Novels (5 Volumes) +3.39,7237,0399154094,good_reads:book,https://www.goodreads.com/author/show/10465.Kate_Jacobs,2006,/genres/novels|/genres/book-club|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/family|/genres/crafts|/genres/crafty|/genres/literature|/genres/adult|/genres/contemporary|/genres/death,dir34/17204.The_Friday_Night_Knitting_Club.html,55813,"The Friday Night Knitting Club (Friday Night Knitting Club, #1)" +3.91,967,0140013083,good_reads:book,https://www.goodreads.com/author/show/36332.John_Wyndham,1955,/genres/science-fiction|/genres/fiction|/genres/classics|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/apocalyptic|/genres/post-apocalyptic|/genres/young-adult|/genres/science-fiction-fantasy,dir34/826845.The_Chrysalids.html,21755,The Chrysalids +4.31,604,0765345048,good_reads:book,https://www.goodreads.com/author/show/9237.Jacqueline_Carey,2002,/genres/fantasy|/genres/romance|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/adult-fiction|/genres/erotica|/genres/science-fiction|/genres/alternate-history|/genres/adult|/genres/fantasy|/genres/high-fantasy,dir34/395962.Kushiel_s_Chosen.html,22783,"Kushiel's Chosen (Phèdre's Trilogy, #2)" +4.02,125,3257230478,good_reads:book,https://www.goodreads.com/author/show/41616.Friedrich_D_rrenmatt,1961,/genres/classics|/genres/european-literature|/genres/german-literature|/genres/plays|/genres/drama|/genres/fiction|/genres/academic|/genres/school|/genres/literature|/genres/academic|/genres/read-for-school,dir34/452220.Die_Physiker.html,6426,Die Physiker +4.41,709,9953368783,good_reads:book,https://www.goodreads.com/author/show/926628.Ghazi_Abdul_Rahman_Algosaibi,1985,/genres/biography|/genres/non-fiction|/genres/biography|/genres/autobiography|/genres/business|/genres/management|/genres/autobiography|/genres/memoir|/genres/politics|/genres/biography-memoir,dir34/2246958._.html,3501,حياة في الإدارة +4.18,253,0060529342,good_reads:book,https://www.goodreads.com/author/show/43602.Harriette_Simpson_Arnow,1954,/genres/fiction|/genres/historical-fiction|/genres/classics|/genres/book-club|/genres/novels|/genres/american|/genres/southern|/genres/literary-fiction|/genres/literature|/genres/family|/genres/adult-fiction,dir34/600335.The_Dollmaker.html,1884,The Dollmaker +3.73,979,0439672449,good_reads:book,https://www.goodreads.com/author/show/179712.Chris_d_Lacey,2001,/genres/fantasy|/genres/fantasy|/genres/dragons|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/fantasy|/genres/magic|/genres/childrens|/genres/middle-grade,dir34/312043.The_Fire_Within.html,15485,"The Fire Within (The Last Dragon Chronicles, #1)" +4.38,815,1416576754,good_reads:book,https://www.goodreads.com/author/show/4428.Kresley_Cole,2008,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/vampires|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/adult|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/witches,dir34/2003625.Dark_Desires_After_Dusk.html,27071,"Dark Desires After Dusk (Immortals After Dark, #6)" +4.10,833,0373210051,good_reads:book,https://www.goodreads.com/author/show/415967.Rachel_Vincent,2010,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/demons|/genres/paranormal|/genres/ghosts|/genres/young-adult|/genres/teen,dir34/7476122-my-soul-to-keep.html,14088,"My Soul to Keep (Soul Screamers, #3)" +3.82,331,0425100650,good_reads:book,https://www.goodreads.com/author/show/9355.Dean_Koontz,1984,/genres/horror|/genres/fiction|/genres/thriller|/genres/suspense|/genres/mystery|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/thriller|/genres/mystery-thriller,dir34/693172.Twilight_Eyes.html,16440,Twilight Eyes +4.15,1474,0312983867,good_reads:book,https://www.goodreads.com/author/show/2384.Janet_Evanovich,2002,/genres/mystery|/genres/fiction|/genres/humor|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/mystery|/genres/crime|/genres/humor|/genres/funny|/genres/humor|/genres/comedy,dir34/6425.Hard_Eight.html,75393,"Hard Eight (Stephanie Plum, #8)" +3.75,1141,1416936491,good_reads:book,https://www.goodreads.com/author/show/14617.Margaret_Peterson_Haddix,1999,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/fairy-tales|/genres/romance|/genres/fiction|/genres/retellings|/genres/fairy-tales|/genres/fairy-tale-retellings|/genres/childrens|/genres/young-adult|/genres/teen|/genres/womens-fiction|/genres/chick-lit,dir34/162719.Just_Ella.html,25626,"Just Ella (The Palace Chronicles, #1)" +3.93,246,034541957X,good_reads:book,https://www.goodreads.com/author/show/26.Anne_McCaffrey,1983,/genres/fantasy|/genres/science-fiction|/genres/fantasy|/genres/dragons|/genres/fiction|/genres/science-fiction-fantasy|/genres/adventure|/genres/adult|/genres/young-adult|/genres/fantasy|/genres/epic-fantasy|/genres/sci-fi-fantasy,dir34/61958.Moreta.html,18408,"Moreta (Pern, #7)" +3.92,1086,1423121287,good_reads:book,https://www.goodreads.com/author/show/21911.Melissa_de_la_Cruz,2010,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/paranormal|/genres/angels|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural,dir34/7747263-misguided-angel.html,27368,"Misguided Angel (Blue Bloods, #5)" +3.96,718,0545040604,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2010,/genres/young-adult|/genres/science-fiction|/genres/contemporary|/genres/fiction|/genres/young-adult|/genres/teen|/genres/mystery|/genres/romance|/genres/fantasy,dir34/6460331-runaway.html,16867,"Runaway (Airhead, #3)" +4.34,815,1416580948,good_reads:book,https://www.goodreads.com/author/show/4428.Kresley_Cole,2009,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/adult|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/witches,dir34/3585344-kiss-of-a-demon-king.html,22970,"Kiss of a Demon King (Immortals After Dark, #7)" +4.01,8874,1416586288,good_reads:book,https://www.goodreads.com/author/show/3275.Jeannette_Walls,2008,/genres/book-club|/genres/fiction|/genres/historical-fiction|/genres/adult|/genres/biography-memoir|/genres/adult-fiction|/genres/western|/genres/novels|/genres/family|/genres/contemporary,dir34/6366437-half-broke-horses.html,86816,Half Broke Horses +4.21,5522,0061992259,good_reads:book,https://www.goodreads.com/author/show/1036736.Katherine_Applegate,2011,/genres/animals|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/fiction|/genres/young-adult|/genres/fantasy|/genres/childrens|/genres/juvenile|/genres/realistic-fiction|/genres/childrens|/genres/chapter-books|/genres/book-club,dir34/11594337-the-one-and-only-ivan.html,39491,The One and Only Ivan +4.01,321,1931561486,good_reads:book,https://www.goodreads.com/author/show/18686.Craig_Clevenger,2002,/genres/fiction|/genres/thriller|/genres/dark|/genres/contemporary|/genres/mystery|/genres/noir|/genres/literature|/genres/mystery|/genres/crime|/genres/mystery|/genres/novels|/genres/academic|/genres/college,dir34/527823.The_Contortionist_s_Handbook.html,5802,The Contortionist's Handbook +4.29,253,0007201788,good_reads:book,https://www.goodreads.com/author/show/119121.Conn_Iggulden,2008,/genres/historical-fiction|/genres/fiction|/genres/war|/genres/fantasy|/genres/cultural|/genres/asia|/genres/adventure|/genres/war|/genres/military|/genres/action|/genres/novels|/genres/drama,dir34/3276637-bones-of-the-hills.html,7992,"Bones of the Hills (Conqueror, #3)" +3.90,1289,0393332144,good_reads:book,https://www.goodreads.com/author/show/7622.Patricia_Highsmith,1955,/genres/fiction|/genres/mystery|/genres/mystery|/genres/crime|/genres/thriller|/genres/classics|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/noir|/genres/novels|/genres/cultural|/genres/italy,dir34/2247142.The_Talented_Mr_Ripley.html,23021,"The Talented Mr. Ripley (Ripley, #1)" +4.44,686,,good_reads:book,https://www.goodreads.com/author/show/5014564.Quinn_Loftis,2011,/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/animals|/genres/wolves|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/shapeshifters|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy,dir34/13070346-blood-rites.html,13224,"Blood Rites (The Grey Wolves, #2)" +3.92,142,0142501107,good_reads:book,https://www.goodreads.com/author/show/5329.Brian_Jacques,2000,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/animals|/genres/adventure|/genres/science-fiction-fantasy|/genres/childrens|/genres/middle-grade|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/high-fantasy,dir34/99085.Lord_Brocktree.html,28001,"Lord Brocktree (Redwall, #13)" +4.15,907,0525478922,good_reads:book,https://www.goodreads.com/author/show/293603.Heather_Brewer,2008,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/horror|/genres/young-adult|/genres/teen|/genres/romance,dir34/2272813.Ninth_Grade_Slays.html,17731,"Ninth Grade Slays (The Chronicles of Vladimir Tod, #2)" +4.12,613,0380808080,good_reads:book,https://www.goodreads.com/author/show/41313.Susan_Elizabeth_Phillips,2000,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/sports-and-games|/genres/sports|/genres/contemporary-romance|/genres/sports-romance|/genres/fiction|/genres/adult|/genres/humor|/genres/humor|/genres/funny,dir35/73100.This_Heart_of_Mine.html,16051,"This Heart of Mine (Chicago Stars, #5)" +3.79,1024,0312864590,good_reads:book,https://www.goodreads.com/author/show/6252.Robert_Jordan,2003,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/epic,dir35/113435.Crossroads_of_Twilight.html,45971,"Crossroads of Twilight (Wheel of Time, #10)" +3.97,2222,0810959259,good_reads:book,https://www.goodreads.com/author/show/65335.Michael_Buckley,2005,/genres/fantasy|/genres/mystery|/genres/childrens|/genres/fantasy|/genres/fairy-tales|/genres/young-adult|/genres/fiction|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/fantasy|/genres/magic,dir35/176327.The_Fairy_Tale_Detectives.html,25476,"The Fairy-Tale Detectives (The Sisters Grimm, #1)" +4.07,446,0140384286,good_reads:book,https://www.goodreads.com/author/show/87735.Bess_Streeter_Aldrich,1928,/genres/historical-fiction|/genres/fiction|/genres/classics|/genres/young-adult|/genres/book-club|/genres/romance|/genres/western|/genres/adult|/genres/literature|/genres/family,dir35/937020.A_Lantern_in_Her_Hand.html,2986,A Lantern in Her Hand +4.20,76,030711838X,good_reads:book,https://www.goodreads.com/author/show/692.Mercer_Mayer,1975,/genres/childrens|/genres/childrens|/genres/picture-books|/genres/fiction|/genres/classics|/genres/family|/genres/humor|/genres/animals|/genres/kids|/genres/literature|/genres/american|/genres/childrens|/genres/young-readers,dir35/386234.Just_for_You.html,16846,Just for You +3.95,2303,0142000280,good_reads:book,https://www.goodreads.com/author/show/1058.David_Allen,2001,/genres/non-fiction|/genres/business|/genres/self-help|/genres/productivity|/genres/self-help|/genres/personal-development|/genres/management|/genres/psychology|/genres/reference|/genres/leadership,dir35/1633.Getting_Things_Done.html,47707,Getting Things Done +4.10,759,1595143955,good_reads:book,https://www.goodreads.com/author/show/3408349.Lili_St_Crow,2011,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/romance|/genres/paranormal-romance,dir35/10710406-reckoning.html,9118,"Reckoning (Strange Angels, #5)" +4.18,1274,0385735332,good_reads:book,https://www.goodreads.com/author/show/27100.Michael_Scott,2011,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/fiction|/genres/fantasy|/genres/mythology|/genres/adventure|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/young-adult-fantasy,dir35/8458018-the-warlock.html,30237,"The Warlock (The Secrets of the Immortal Nicholas Flamel, #5)" +3.72,1320,0312664850,good_reads:book,https://www.goodreads.com/author/show/200317.Alyson_Noel,2012,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/mythology|/genres/paranormal|/genres/demons|/genres/fiction,dir35/12829446-fated.html,11183,"Fated (Soul Seekers, #1)" +4.02,780,0140236236,good_reads:book,https://www.goodreads.com/author/show/4000.Pat_Barker,1991,/genres/historical-fiction|/genres/fiction|/genres/war|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/literature|/genres/20th-century|/genres/novels|/genres/book-club|/genres/literary-fiction|/genres/glbt,dir35/5872.Regeneration.html,13191,"Regeneration (Regeneration, #1)" +3.91,424,0060776250,good_reads:book,https://www.goodreads.com/author/show/153734.Ellen_Schreiber,2006,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen|/genres/fiction|/genres/fantasy|/genres/urban-fantasy,dir35/263148.Vampireville.html,18373,"Vampireville (Vampire Kisses, #3)" +4.08,1229,0738718688,good_reads:book,https://www.goodreads.com/author/show/274533.Simone_Elkeles,2010,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/realistic-fiction|/genres/young-adult|/genres/young-adult-romance|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/contemporary-romance|/genres/fiction|/genres/young-adult|/genres/teen|/genres/new-adult,dir35/7797874-return-to-paradise.html,22798,"Return to Paradise (Leaving Paradise, #2)" +3.94,1251,000742826X,good_reads:book,https://www.goodreads.com/author/show/1192311.Claudia_Gray,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/historical-fiction|/genres/romance|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/historical-romance|/genres/paranormal|/genres/shapeshifters,dir35/9874342-fateful.html,7415,Fateful +4.13,2379,,good_reads:book,https://www.goodreads.com/author/show/3064305.Hugh_Howey,2011,/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/short-stories|/genres/fantasy|/genres/science-fiction-fantasy|/genres/young-adult|/genres/science-fiction|/genres/apocalyptic|/genres/book-club,dir35/12287209-wool.html,27107,"Wool (Wool, #1)" +3.73,2672,0062294377,good_reads:book,https://www.goodreads.com/author/show/2331.Mitch_Albom,2013,/genres/fiction|/genres/inspirational|/genres/book-club|/genres/contemporary|/genres/adult|/genres/mystery|/genres/spirituality|/genres/christian|/genres/adult-fiction|/genres/religion,dir35/17888952-the-first-phone-call-from-heaven.html,21564,The First Phone Call from Heaven +4.34,38,149171574X,good_reads:book,https://www.goodreads.com/author/show/363635.Linda_Masemore_Pirrung,2006,/genres/romance|/genres/psychology|/genres/suspense,dir35/19548967-cracked-hearts.html,80,Cracked Hearts +4.37,756,0446556823,good_reads:book,https://www.goodreads.com/author/show/375143.Larissa_Ione,2010,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/demons|/genres/romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/adult-fiction|/genres/erotica,dir35/6660747-ecstasy-unveiled.html,18486,"Ecstasy Unveiled (Demonica, #4)" +3.77,214,0140435476,good_reads:book,https://www.goodreads.com/author/show/15905.Thomas_Hardy,1998,/genres/classics|/genres/fiction|/genres/literature|/genres/19th-century|/genres/literature|/genres/romance|/genres/european-literature|/genres/british-literature|/genres/historical-fiction|/genres/classics|/genres/classic-literature|/genres/literature|/genres/english-literature|/genres/literary-fiction,dir35/341281.The_Woodlanders.html,7761,The Woodlanders +3.71,1176,0446694843,good_reads:book,https://www.goodreads.com/author/show/51162.Lolly_Winston,2004,/genres/fiction|/genres/book-club|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/adult-fiction|/genres/contemporary|/genres/humor|/genres/womens-fiction|/genres/adult|/genres/novels,dir35/251519.Good_Grief.html,19862,Good Grief +4.24,704,1563893304,good_reads:book,https://www.goodreads.com/author/show/5363.Mark_Waid,1996,/genres/fiction|/genres/sequential-art|/genres/graphic-novels|/genres/fantasy|/genres/graphic-novels-comics|/genres/comics|/genres/comic-book|/genres/comics|/genres/superheroes|/genres/sequential-art|/genres/comix|/genres/comics-manga|/genres/science-fiction|/genres/dystopia|/genres/war,dir35/16992.Kingdom_Come.html,32205,Kingdom Come +3.90,742,0007158491,good_reads:book,https://www.goodreads.com/author/show/61105.Dr_Seuss,1963,/genres/childrens|/genres/childrens|/genres/picture-books|/genres/fiction|/genres/classics|/genres/poetry|/genres/kids|/genres/humor|/genres/childrens|/genres/juvenile|/genres/young-adult|/genres/fantasy,dir35/206962.Hop_On_Pop.html,30257,Hop On Pop +4.01,106,0679734120,good_reads:book,https://www.goodreads.com/author/show/157249.William_Wharton,1978,/genres/fiction|/genres/classics|/genres/war|/genres/literature|/genres/american|/genres/contemporary|/genres/novels|/genres/literary-fiction|/genres/psychology|/genres/mental-health|/genres/mental-illness|/genres/drama,dir35/592191.Birdy.html,2878,Birdy +4.08,559,0312890176,good_reads:book,https://www.goodreads.com/author/show/23069.Gene_Wolfe,1994,/genres/fantasy|/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/speculative-fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/classics|/genres/novels|/genres/epic|/genres/fantasy|/genres/epic-fantasy,dir35/40992.Shadow_Claw.html,8278,Shadow & Claw (The Book of the New Sun #1-2) +3.82,808,0425222195,good_reads:book,https://www.goodreads.com/author/show/9550.Laurell_K_Hamilton,2007,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/horror|/genres/fiction|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/supernatural,dir35/2149535.Blood_Noir.html,27606,"Blood Noir (Anita Blake, Vampire Hunter #16)" +4.14,998,0425205819,good_reads:book,https://www.goodreads.com/author/show/4610.John_Sandford,1989,/genres/mystery|/genres/fiction|/genres/thriller|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery-thriller|/genres/suspense|/genres/mystery|/genres/detective|/genres/mystery|/genres/murder-mystery|/genres/adult-fiction|/genres/novels,dir35/37301.Rules_Of_Prey.html,35593,Rules Of Prey (Lucas Davenport #1) +4.14,1018,0380776162,good_reads:book,https://www.goodreads.com/author/show/76405.Loretta_Chase,1995,/genres/romance|/genres/historical-romance|/genres/romance|/genres/regency|/genres/historical-fiction|/genres/historical-romance|/genres/regency-romance|/genres/fiction|/genres/adult|/genres/fairy-tales|/genres/beauty-and-the-beast|/genres/humor|/genres/funny|/genres/european-literature|/genres/british-literature,dir35/425377.Lord_of_Scoundrels.html,13828,"Lord of Scoundrels (Scoundrels, #3)" +4.27,289,0505524473,good_reads:book,https://www.goodreads.com/author/show/6268.Christine_Feehan,2001,/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/adult|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/dark,dir35/313263.Dark_Fire.html,14164,"Dark Fire (Dark, #6)" +3.87,1500,1442440759,good_reads:book,https://www.goodreads.com/author/show/151371.Jenny_Han,2012,/genres/young-adult|/genres/contemporary|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/fantasy|/genres/fiction|/genres/young-adult|/genres/young-adult-contemporary|/genres/young-adult|/genres/high-school,dir35/13406425-burn-for-burn.html,9594,"Burn for Burn (Burn for Burn, #1)" +4.43,615,1563890933,good_reads:book,https://www.goodreads.com/author/show/1221698.Neil_Gaiman,1993,/genres/sequential-art|/genres/graphic-novels|/genres/fantasy|/genres/sequential-art|/genres/comics|/genres/fiction|/genres/graphic-novels-comics|/genres/horror|/genres/comics|/genres/comic-book|/genres/fantasy|/genres/mythology|/genres/science-fiction-fantasy|/genres/fantasy|/genres/urban-fantasy,dir35/25102.The_Sandman_Vol_5.html,29398,"The Sandman, Vol. 5 (The Sandman #5)" +4.16,1670,1416980067,good_reads:book,https://www.goodreads.com/author/show/2766469.Rachel_Ren_e_Russell,2009,/genres/realistic-fiction|/genres/humor|/genres/fiction|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/diary|/genres/young-adult|/genres/sequential-art|/genres/graphic-novels|/genres/humor|/genres/funny|/genres/humor|/genres/comedy,dir35/6054449-dork-diaries.html,19511,"Dork Diaries (Dork Diaries, #1)" +3.99,391,0061132233,good_reads:book,https://www.goodreads.com/author/show/153734.Ellen_Schreiber,2007,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen|/genres/fiction|/genres/fantasy|/genres/urban-fantasy,dir35/263171.Dance_with_a_Vampire.html,18390,"Dance with a Vampire (Vampire Kisses, #4)" +3.68,1143,0385516169,good_reads:book,https://www.goodreads.com/author/show/21770.Keith_Donohue,2006,/genres/fantasy|/genres/fiction|/genres/book-club|/genres/fantasy|/genres/fairy-tales|/genres/fantasy|/genres/paranormal|/genres/adult|/genres/adult-fiction|/genres/novels|/genres/science-fiction-fantasy|/genres/fantasy|/genres/urban-fantasy,dir35/38657.The_Stolen_Child.html,8082,The Stolen Child +4.02,225,0440229405,good_reads:book,https://www.goodreads.com/author/show/17082.Amelia_Atwater_Rhodes,2001,/genres/young-adult|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/horror|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/young-adult|/genres/teen,dir35/30336.Shattered_Mirror.html,7569,"Shattered Mirror (Den of Shadows, #3)" +3.95,541,000710653X,good_reads:book,https://www.goodreads.com/author/show/4260.Diana_Wynne_Jones,1977,/genres/fantasy|/genres/young-adult|/genres/childrens|/genres/fiction|/genres/fantasy|/genres/magic|/genres/childrens|/genres/middle-grade|/genres/adventure|/genres/young-adult|/genres/young-adult-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy,dir35/244572.Charmed_Life.html,15515,"Charmed Life (Chrestomanci, #1)" +3.77,501,1400075637,good_reads:book,https://www.goodreads.com/author/show/243571.Niccol_Ammaniti,2001,/genres/fiction|/genres/european-literature|/genres/italian-literature|/genres/cultural|/genres/italy|/genres/mystery|/genres/thriller|/genres/contemporary,dir35/110428.I_m_Not_Scared.html,6298,I'm Not Scared +4.03,799,0142409863,good_reads:book,https://www.goodreads.com/author/show/191456.Cate_Tiernan,2001,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/romance|/genres/fiction|/genres/religion|/genres/wicca|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy,dir35/675614.Book_of_Shadows.html,13900,"Book of Shadows (Sweep, #1)" +4.05,1299,1408319462,good_reads:book,https://www.goodreads.com/author/show/5238854.Teri_Terry,2012,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/science-fiction|/genres/romance|/genres/mystery|/genres/fantasy,dir35/12743472-slated.html,9406,"Slated (Slated, #1)" +3.80,1331,0385349831,good_reads:book,https://www.goodreads.com/author/show/566.Paulo_Coelho,2010,/genres/fiction|/genres/philosophy|/genres/historical-fiction|/genres/spirituality|/genres/inspirational,dir35/16054811-manuscript-found-in-accra.html,9582,Manuscript Found in Accra +3.80,1176,0385491034,good_reads:book,https://www.goodreads.com/author/show/3472.Margaret_Atwood,1993,/genres/fiction|/genres/cultural|/genres/canada|/genres/contemporary|/genres/literature|/genres/literary-fiction|/genres/novels|/genres/feminism|/genres/adult-fiction,dir35/17650.The_Robber_Bride.html,23252,The Robber Bride +4.16,537,1606841688,good_reads:book,https://www.goodreads.com/author/show/164187.Jennifer_Lynn_Barnes,2011,/genres/shapeshifters|/genres/werewolves|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/animals|/genres/wolves|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/shapeshifters|/genres/romance|/genres/paranormal-romance,dir35/9369687-trial-by-fire.html,9557,"Trial by Fire (Raised by Wolves, #2)" +3.74,5371,1439102724,good_reads:book,https://www.goodreads.com/author/show/7128.Jodi_Picoult,2011,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/glbt|/genres/book-club|/genres/adult|/genres/adult-fiction|/genres/drama,dir35/8554005-sing-you-home.html,51039,Sing You Home +3.80,369,0451523482,good_reads:book,https://www.goodreads.com/author/show/65685.Nathanael_West,1939,/genres/fiction|/genres/classics|/genres/literature|/genres/novels|/genres/literature|/genres/american|/genres/literature|/genres/20th-century|/genres/culture|/genres/film|/genres/book-club|/genres/literary-fiction|/genres/humor,dir35/113441.The_Day_of_the_Locust.html,11833,The Day of the Locust +4.26,638,0525421351,good_reads:book,https://www.goodreads.com/author/show/293603.Heather_Brewer,2009,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/horror|/genres/young-adult|/genres/teen|/genres/fiction|/genres/mystery,dir35/6178065-tenth-grade-bleeds.html,14102,"Tenth Grade Bleeds (The Chronicles of Vladimir Tod, #3)" +4.26,723,0671744216,good_reads:book,https://www.goodreads.com/author/show/6251.Julie_Garwood,1992,/genres/romance|/genres/historical-romance|/genres/historical-fiction|/genres/medieval|/genres/historical-fiction|/genres/cultural|/genres/scotland|/genres/fiction|/genres/adult|/genres/historical-romance|/genres/medieval-romance|/genres/romance|/genres/humor|/genres/funny|/genres/humor,dir35/107770.The_Secret.html,25044,The Secret (Highlands' Lairds #1) +4.23,1217,043979143X,good_reads:book,https://www.goodreads.com/author/show/153394.Suzanne_Collins,2007,/genres/fantasy|/genres/fiction|/genres/science-fiction-fantasy|/genres/young-adult|/genres/young-adult-fantasy|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/science-fiction|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/young-adult|/genres/teen,dir35/537070.Gregor_and_the_Code_of_Claw.html,26349,"Gregor and the Code of Claw (Underland Chronicles, #5)" +3.75,1411,1416994815,good_reads:book,https://www.goodreads.com/author/show/767547.Lisa_McMann,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/mystery|/genres/horror|/genres/paranormal|/genres/ghosts|/genres/romance|/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen,dir35/8543252-cryer-s-cross.html,7539,Cryer's Cross +4.00,637,0545060508,good_reads:book,https://www.goodreads.com/author/show/14617.Margaret_Peterson_Haddix,2010,/genres/mystery|/genres/adventure|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/fantasy|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/action|/genres/realistic-fiction,dir35/7182899-into-the-gauntlet.html,33079,"Into the Gauntlet (The 39 Clues, #10)" +4.62,2512,,good_reads:book,https://www.goodreads.com/author/show/7047863.K_Bromberg,2014,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/adult-fiction|/genres/erotica|/genres/sports-and-games|/genres/sports|/genres/contemporary|/genres/romance|/genres/erotic-romance|/genres/new-adult|/genres/adult|/genres/sociology|/genres/abuse|/genres/contemporary-romance|/genres/sports-romance,dir35/17880714-crashed.html,18925,"Crashed (The Driven Trilogy, #3)" +4.27,325,0268015384,good_reads:book,https://www.goodreads.com/author/show/5515884.Mary_Webb,1924,/genres/classics|/genres/fiction|/genres/historical-fiction|/genres/romance|/genres/book-club|/genres/adult-fiction|/genres/novels|/genres/european-literature|/genres/british-literature|/genres/family|/genres/literature|/genres/19th-century,dir35/779509.Precious_Bane.html,1367,Precious Bane +3.43,880,0316182745,good_reads:book,https://www.goodreads.com/author/show/3540.Janet_Fitch,2006,/genres/fiction|/genres/contemporary|/genres/literature|/genres/womens-fiction|/genres/chick-lit|/genres/adult-fiction|/genres/book-club|/genres/novels|/genres/adult|/genres/romance|/genres/drama,dir35/33144.Paint_it_Black.html,7746,Paint it Black +3.99,414,1404185712,good_reads:book,https://www.goodreads.com/author/show/220423.Lew_Wallace,1880,/genres/classics|/genres/historical-fiction|/genres/fiction|/genres/christian|/genres/christian-fiction|/genres/adventure|/genres/religion|/genres/literature|/genres/literature|/genres/19th-century|/genres/classics|/genres/classic-literature,dir35/387749.Ben_Hur.html,18785,Ben-Hur +4.30,156,0316075809,good_reads:book,https://www.goodreads.com/author/show/61939.Mark_Cotta_Vaz,2009,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/shapeshifters|/genres/werewolves|/genres/fiction|/genres/media-tie-in|/genres/movies|/genres/romance|/genres/paranormal-romance|/genres/reference|/genres/guides,dir35/6466909-new-moon.html,41758,"New Moon (The Twilight Saga: The Official Illustrated Movie Companion, #2)" +3.55,3594,140006466X,good_reads:book,https://www.goodreads.com/author/show/713.Lisa_See,2007,/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/china|/genres/book-club|/genres/romance|/genres/cultural|/genres/asia|/genres/literature|/genres/asian-literature|/genres/fantasy|/genres/adult-fiction|/genres/novels,dir35/24472.Peony_in_Love.html,29899,Peony in Love +3.95,659,0373802455,good_reads:book,https://www.goodreads.com/author/show/8685.Mercedes_Lackey,2004,/genres/fantasy|/genres/romance|/genres/fantasy|/genres/fairy-tales|/genres/fiction|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/young-adult|/genres/adult|/genres/romance|/genres/fantasy-romance|/genres/fairy-tales|/genres/fairy-tale-retellings,dir35/13982.The_Fairy_Godmother.html,11783,"The Fairy Godmother (Five Hundred Kingdoms, #1)" +4.52,339,0545422906,good_reads:book,https://www.goodreads.com/author/show/13599.Kate_Egan,2012,/genres/non-fiction|/genres/science-fiction|/genres/dystopia|/genres/media-tie-in|/genres/movies|/genres/young-adult|/genres/teen|/genres/adventure|/genres/romance|/genres/media-tie-in|/genres/culture|/genres/film|/genres/childrens|/genres/picture-books|/genres/reference,dir35/11742691-the-hunger-games.html,73993,The Hunger Games +3.94,2300,1606841750,good_reads:book,https://www.goodreads.com/author/show/143691.Ilsa_J_Bick,2011,/genres/young-adult|/genres/horror|/genres/zombies|/genres/science-fiction|/genres/dystopia|/genres/horror|/genres/apocalyptic|/genres/post-apocalyptic|/genres/science-fiction|/genres/fiction|/genres/adventure|/genres/survival,dir35/9975679-ashes.html,15542,"Ashes (Ashes Trilogy, #1)" +4.29,461,0743474171,good_reads:book,https://www.goodreads.com/author/show/9885.Judith_McNaught,1993,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/fiction|/genres/romance|/genres/historical-romance|/genres/romance|/genres/romantic-suspense|/genres/womens-fiction|/genres/chick-lit|/genres/adult|/genres/suspense,dir35/129617.Perfect.html,14251,Perfect (Second Opportunities #2) +3.81,304,0345376048,good_reads:book,https://www.goodreads.com/author/show/7577.Anne_Rice,1979,/genres/fiction|/genres/historical-fiction|/genres/horror|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/supernatural|/genres/contemporary|/genres/romance|/genres/novels,dir35/43798.The_Feast_of_All_Saints.html,13707,The Feast of All Saints +3.35,8286,0385343833,good_reads:book,https://www.goodreads.com/author/show/4937879.T_a_Obreht,2011,/genres/fiction|/genres/book-club|/genres/historical-fiction|/genres/magical-realism|/genres/contemporary|/genres/literary-fiction|/genres/adult-fiction|/genres/novels|/genres/adult|/genres/war,dir35/8366402-the-tiger-s-wife.html,60360,The Tiger's Wife +4.10,1270,0425201333,good_reads:book,https://www.goodreads.com/author/show/6361.Li_Cunxin,2003,/genres/non-fiction|/genres/biography|/genres/cultural|/genres/china|/genres/autobiography|/genres/memoir|/genres/book-club|/genres/biography|/genres/autobiography|/genres/history|/genres/cultural|/genres/asia|/genres/biography-memoir|/genres/literature|/genres/asian-literature,dir35/298137.Mao_s_Last_Dancer.html,11668,Mao's Last Dancer +4.50,620,,good_reads:book,https://www.goodreads.com/author/show/5286855.Amy_A_Bartol,2012,/genres/paranormal|/genres/angels|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/vampires,dir35/13502970-incendiary.html,8713,"Incendiary (The Premonition, #4)" +3.92,2183,0062248162,good_reads:book,https://www.goodreads.com/author/show/2987125.Kiera_Cass,2013,/genres/young-adult|/genres/romance|/genres/science-fiction|/genres/dystopia|/genres/short-stories|/genres/fantasy,dir35/15820748-the-prince.html,26418,"The Prince (The Selection, #0.5)" +4.31,633,014010870X,good_reads:book,https://www.goodreads.com/author/show/95739.Nien_Cheng,1986,/genres/non-fiction|/genres/cultural|/genres/china|/genres/autobiography|/genres/memoir|/genres/history|/genres/biography|/genres/cultural|/genres/asia|/genres/biography|/genres/autobiography|/genres/biography-memoir|/genres/book-club|/genres/literature|/genres/asian-literature,dir35/537404.Life_and_Death_in_Shanghai.html,6152,Life and Death in Shanghai +4.64,116,0679777466,good_reads:book,https://www.goodreads.com/author/show/8361.Dorothy_Dunnett,1969,/genres/historical-fiction|/genres/adventure|/genres/cultural|/genres/scotland|/genres/fiction|/genres/romance|/genres/historical-romance|/genres/romance|/genres/literature|/genres/classics|/genres/literature|/genres/16th-century|/genres/fantasy,dir35/360455.Pawn_in_Frankincense.html,2033,"Pawn in Frankincense (The Lymond Chronicles, #4)" +3.42,1475,0061229628,good_reads:book,https://www.goodreads.com/author/show/13677.Gail_Carson_Levine,2008,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/fairy-tales|/genres/fiction|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/magic|/genres/childrens|/genres/adventure|/genres/young-adult|/genres/teen,dir35/2204464.Ever.html,14647,Ever +3.90,520,014118616X,good_reads:book,https://www.goodreads.com/author/show/7287.Iris_Murdoch,1978,/genres/fiction|/genres/classics|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/novels,dir35/11229.The_Sea_the_Sea.html,8211,"The Sea, the Sea" +3.77,917,0812966295,good_reads:book,https://www.goodreads.com/author/show/4633123.H_Rider_Haggard,1885,/genres/classics|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/cultural|/genres/africa|/genres/historical-fiction|/genres/literature|/genres/literature|/genres/19th-century|/genres/novels|/genres/european-literature|/genres/british-literature,dir35/23814.King_Solomon_s_Mines.html,24732,"King Solomon's Mines (Allan Quatermain, #1)" +3.87,634,0156010593,good_reads:book,https://www.goodreads.com/author/show/1285555.Jos_Saramago,1997,/genres/fiction|/genres/literature|/genres/cultural|/genres/portugal|/genres/european-literature|/genres/portuguese-literature|/genres/novels|/genres/nobel-prize|/genres/magical-realism|/genres/literary-fiction,dir35/2528.All_the_Names.html,8598,All the Names +4.10,283,0670883514,good_reads:book,https://www.goodreads.com/author/show/63.Bryce_Courtenay,1998,/genres/fiction|/genres/historical-fiction|/genres/cultural|/genres/australia|/genres/drama|/genres/romance|/genres/adult|/genres/book-club|/genres/literature|/genres/novels|/genres/contemporary,dir35/2339.Jessica.html,4630,Jessica +4.02,291,039475767X,good_reads:book,https://www.goodreads.com/author/show/1377.Raymond_Chandler,1949,/genres/mystery|/genres/mystery|/genres/crime|/genres/mystery|/genres/noir|/genres/classics|/genres/mystery|/genres/hard-boiled|/genres/fiction|/genres/novels|/genres/thriller|/genres/mystery-thriller|/genres/literature|/genres/american,dir35/852401.The_Little_Sister.html,6541,The Little Sister +4.30,557,,good_reads:book,https://www.goodreads.com/author/show/5835922.Naguib_Mahfouz,1977,/genres/novels|/genres/fiction|/genres/cultural|/genres/egypt|/genres/literature,dir35/5295735.html,6232,الحرافيش +4.11,1017,0345409876,good_reads:book,https://www.goodreads.com/author/show/901977.Clarissa_Pinkola_Est_s,1992,/genres/non-fiction|/genres/feminism|/genres/fantasy|/genres/mythology|/genres/self-help|/genres/philosophy|/genres/spirituality|/genres/feminism|/genres/womens-studies|/genres/gender|/genres/gender|/genres/gender-studies,dir35/241823.Women_Who_Run_With_the_Wolves.html,15587,Women Who Run With the Wolves +3.85,689,0765340054,good_reads:book,https://www.goodreads.com/author/show/589.Orson_Scott_Card,2002,/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/young-adult|/genres/adventure|/genres/war|/genres/space|/genres/literature|/genres/american|/genres/science-fiction|/genres/dystopia,dir35/234724.Shadow_Puppets.html,34175,"Shadow Puppets (Ender's Shadow, #3)" +3.59,691,0375727272,good_reads:book,https://www.goodreads.com/author/show/2751.Bret_Easton_Ellis,2005,/genres/fiction|/genres/horror|/genres/thriller|/genres/contemporary|/genres/novels|/genres/literature|/genres/american|/genres/literature|/genres/dark|/genres/mystery|/genres/academic|/genres/college,dir35/4031.Lunar_Park.html,13104,Lunar Park +3.65,4152,0312348673,good_reads:book,https://www.goodreads.com/author/show/13370.Emily_Giffin,2008,/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/romance|/genres/adult|/genres/adult-fiction|/genres/contemporary,dir35/2120652.Love_the_One_You_re_With.html,91441,Love the One You're With +3.93,358,1421270536,good_reads:book,https://www.goodreads.com/author/show/1938.Friedrich_Nietzsche,1888,/genres/philosophy|/genres/non-fiction|/genres/religion|/genres/classics|/genres/european-literature|/genres/german-literature|/genres/religion|/genres/atheism|/genres/literature|/genres/19th-century|/genres/religion|/genres/christianity|/genres/writing|/genres/essays|/genres/cultural|/genres/germany,dir35/18304.The_Anti_Christ.html,8978,The Anti-Christ +3.76,1018,0062317148,good_reads:book,https://www.goodreads.com/author/show/2987125.Kiera_Cass,2014,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/romance|/genres/short-stories|/genres/fantasy|/genres/fiction|/genres/science-fiction|/genres/young-adult|/genres/teen|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/young-adult-romance,dir35/18170039-the-guard.html,12059,"The Guard (The Selection, #2.5)" +4.22,310,0375836586,good_reads:book,https://www.goodreads.com/author/show/8349.Christopher_Paolini,2005,/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/dragons|/genres/fantasy|/genres/adventure|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/epic-fantasy,dir35/13350.Eragon_Eldest.html,14182,"Eragon & Eldest (Inheritance, #1-2)" +4.29,245,0375400702,good_reads:book,https://www.goodreads.com/author/show/1433597.Samuel_Beckett,1958,/genres/fiction|/genres/classics|/genres/literature|/genres/european-literature|/genres/irish-literature|/genres/novels|/genres/cultural|/genres/ireland|/genres/philosophy|/genres/cultural|/genres/france|/genres/literature|/genres/20th-century|/genres/plays,dir35/12279.Molloy_Malone_Dies_The_Unnamable.html,5080,"Molloy, Malone Dies, The Unnamable" +3.91,1691,0007157150,good_reads:book,https://www.goodreads.com/author/show/1069006.C_S_Lewis,1938,/genres/science-fiction|/genres/classics|/genres/christian|/genres/christian-fiction|/genres/science-fiction-fantasy|/genres/fiction|/genres/religion|/genres/religion|/genres/christianity|/genres/adventure|/genres/novels,dir35/25350.Out_of_the_Silent_Planet.html,39465,"Out of the Silent Planet (Space Trilogy, #1)" +4.13,1369,193519223X,good_reads:book,https://www.goodreads.com/author/show/1122775.Abigail_Roux,2008,/genres/romance|/genres/m-m-romance|/genres/romance|/genres/mystery|/genres/contemporary|/genres/mystery|/genres/crime|/genres/suspense|/genres/romance|/genres/romantic-suspense|/genres/thriller|/genres/glbt|/genres/gay|/genres/glbt,dir35/5199022-cut-run.html,10642,"Cut & Run (Cut & Run, #1)" +4.40,603,0062278789,good_reads:book,https://www.goodreads.com/author/show/4039811.Veronica_Roth,2013,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/fiction|/genres/science-fiction|/genres/fantasy|/genres/romance|/genres/adventure|/genres/fantasy|/genres/paranormal|/genres/apocalyptic|/genres/post-apocalyptic|/genres/action,dir35/17383994-divergent-series-complete-box-set.html,12109,"Divergent Series Complete Box Set (Divergent, #1-3)" +3.94,2178,0375705856,good_reads:book,https://www.goodreads.com/author/show/16266.Kent_Haruf,1999,/genres/book-club|/genres/fiction|/genres/contemporary|/genres/literature|/genres/adult-fiction|/genres/literary-fiction|/genres/novels|/genres/adult|/genres/family|/genres/literature|/genres/american,dir35/77156.Plainsong.html,31016,"Plainsong (Plainsong, #1)" +3.86,885,081257558X,good_reads:book,https://www.goodreads.com/author/show/6252.Robert_Jordan,2000,/genres/fiction|/genres/science-fiction-fantasy|/genres/epic|/genres/fantasy|/genres/fantasy|/genres/magic|/genres/adventure|/genres/adult|/genres/science-fiction|/genres/novels|/genres/fantasy|/genres/epic-fantasy,dir35/13891.Winter_s_Heart.html,51803,"Winter's Heart (Wheel of Time, #9)" +4.12,1364,034551548X,good_reads:book,https://www.goodreads.com/author/show/18149.Tess_Gerritsen,2010,/genres/mystery|/genres/mystery|/genres/crime|/genres/thriller|/genres/fiction|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/adult|/genres/mystery|/genres/detective|/genres/mystery|/genres/murder-mystery|/genres/medical,dir35/7202831-ice-cold.html,19708,"Ice Cold (Rizzoli & Isles, #8)" +4.28,294,8125904808,good_reads:book,https://www.goodreads.com/author/show/35332.Larry_Collins,1975,/genres/non-fiction|/genres/cultural|/genres/india|/genres/politics|/genres/asian-literature|/genres/indian-literature|/genres/cultural|/genres/asia|/genres/cultural|/genres/pakistan|/genres/classics|/genres/history|/genres/biography|/genres/history|/genres/world-history,dir35/204123.Freedom_at_Midnight.html,4053,Freedom at Midnight +3.81,3617,0062071130,good_reads:book,https://www.goodreads.com/author/show/4384465.Brodi_Ashton,2012,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/mythology|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/mythology|/genres/greek-mythology,dir35/9413044-everneath.html,28061,"Everneath (Everneath, #1)" +4.54,1022,0670076244,good_reads:book,https://www.goodreads.com/author/show/47104.Melina_Marchetta,2012,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/high-fantasy|/genres/young-adult|/genres/young-adult-fantasy|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/magic,dir35/10165761-quintana-of-charyn.html,5322,"Quintana of Charyn (Lumatere Chronicles, #3)" +3.61,3079,0143037749,good_reads:book,https://www.goodreads.com/author/show/2522.Zadie_Smith,2005,/genres/fiction|/genres/contemporary|/genres/novels|/genres/book-club|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/literary-fiction,dir35/3679.On_Beauty.html,35212,On Beauty +4.22,472,037572737X,good_reads:book,https://www.goodreads.com/author/show/2887.James_Ellroy,1995,/genres/fiction|/genres/mystery|/genres/crime|/genres/mystery|/genres/mystery|/genres/noir|/genres/historical-fiction|/genres/thriller|/genres/literature|/genres/american|/genres/mystery|/genres/detective|/genres/suspense|/genres/politics,dir35/36064.American_Tabloid.html,8184,"American Tabloid (Underworld USA, #1)" +4.13,81,9751000122,good_reads:book,https://www.goodreads.com/author/show/3044063.Re_at_Nuri_G_ntekin,1922,/genres/asian-literature|/genres/turkish-literature|/genres/cultural|/genres/turkish|/genres/romance|/genres/novels|/genres/classics|/genres/roman|/genres/fiction|/genres/drama|/genres/historical-fiction|/genres/childrens,dir35/636802._al_ku_u.html,3766,Çalıkuşu +3.92,927,,good_reads:book,https://www.goodreads.com/author/show/1109606._,1997,/genres/romance|/genres/novels|/genres/literature|/genres/fiction|/genres/romantic|/genres/politics|/genres/drama|/genres/art,dir35/2501455._.html,11834,فوضى الحواس +4.30,383,0446500046,good_reads:book,https://www.goodreads.com/author/show/9237.Jacqueline_Carey,2008,/genres/fantasy|/genres/romance|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/adult-fiction|/genres/erotica|/genres/science-fiction|/genres/alternate-history|/genres/epic|/genres/adult,dir35/2152871.Kushiel_s_Mercy.html,10762,"Kushiel's Mercy (Imriel's Trilogy, #3)" +3.79,2061,0765329581,good_reads:book,https://www.goodreads.com/author/show/4692856.Kristen_Simmons,2012,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/romance|/genres/science-fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fiction|/genres/fantasy|/genres/adventure|/genres/young-adult|/genres/teen|/genres/action,dir35/10677277-article-5.html,17530,"Article 5 (Article 5, #1)" +3.80,452,0330487191,good_reads:book,https://www.goodreads.com/author/show/3989.V_S_Naipaul,1961,/genres/fiction|/genres/classics|/genres/cultural|/genres/india|/genres/literature|/genres/novels|/genres/nobel-prize|/genres/literary-fiction|/genres/asian-literature|/genres/indian-literature,dir35/5849.A_House_for_Mr_Biswas.html,10196,A House for Mr Biswas +3.84,406,0440228166,good_reads:book,https://www.goodreads.com/author/show/17082.Amelia_Atwater_Rhodes,2000,/genres/young-adult|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/horror|/genres/young-adult|/genres/teen|/genres/romance|/genres/young-adult|/genres/young-adult-fantasy,dir35/30331.In_the_Forests_of_the_Night.html,10079,"In the Forests of the Night (Den of Shadows, #1)" +4.62,242,0743238303,good_reads:book,https://www.goodreads.com/author/show/313356.Gordon_B_Hinckley,2002,/genres/religion|/genres/christianity|/genres/lds|/genres/non-fiction|/genres/religion|/genres/church|/genres/inspirational|/genres/self-help|/genres/spirituality|/genres/lds|/genres/lds-non-fiction|/genres/christian|/genres/religion|/genres/faith,dir35/596258.Way_to_Be_.html,5920,Way to Be! +4.45,1182,,good_reads:book,https://www.goodreads.com/author/show/2958084.Kristen_Ashley,2011,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/romance|/genres/romantic-suspense|/genres/adult|/genres/suspense|/genres/adult-fiction|/genres/erotica,dir35/12958487-lady-luck.html,18755,"Lady Luck (Colorado Mountain, #3)" +4.14,1611,,good_reads:book,https://www.goodreads.com/author/show/6863360.Willow_Aster,2013,/genres/new-adult|/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/academic|/genres/college|/genres/music|/genres/adult|/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/fiction,dir35/17166702-true-love-story.html,13990,True Love Story +3.78,177,0156421356,good_reads:book,https://www.goodreads.com/author/show/6530.Max_Frisch,1957,/genres/fiction|/genres/classics|/genres/european-literature|/genres/german-literature|/genres/literature|/genres/novels|/genres/academic|/genres/school|/genres/academic|/genres/read-for-school|/genres/drama|/genres/cultural|/genres/germany|/genres/roman,dir35/10009.Homo_Faber.html,6972,Homo Faber +4.31,447,0671011332,good_reads:book,https://www.goodreads.com/author/show/9885.Judith_McNaught,1989,/genres/romance|/genres/romance|/genres/historical-romance|/genres/regency|/genres/historical-fiction|/genres/fiction|/genres/historical-romance|/genres/regency-romance|/genres/adult|/genres/womens-fiction|/genres/chick-lit|/genres/cultural|/genres/scotland|/genres/european-literature|/genres/british-literature,dir36/129621.Almost_Heaven.html,15779,"Almost Heaven (Sequels, #3)" +3.85,205,0753809257,good_reads:book,https://www.goodreads.com/author/show/1094283.D_M_Thomas,1981,/genres/fiction|/genres/historical-fiction|/genres/literature|/genres/psychology|/genres/novels|/genres/literary-fiction|/genres/fantasy|/genres/world-war-ii|/genres/holocaust|/genres/modern|/genres/classics,dir36/46087.The_White_Hotel.html,2553,The White Hotel +3.25,1346,0743249291,good_reads:book,https://www.goodreads.com/author/show/9987.Philippa_Gregory,1987,/genres/historical-fiction|/genres/fiction|/genres/romance|/genres/romance|/genres/historical-romance|/genres/european-literature|/genres/british-literature|/genres/womens-fiction|/genres/chick-lit|/genres/adult-fiction|/genres/adult|/genres/book-club|/genres/literature|/genres/18th-century,dir36/16188.Wideacre.html,15219,"Wideacre (The Wideacre Trilogy, #1)" +4.09,1401,1434764338,good_reads:book,https://www.goodreads.com/author/show/73754.Lisa_Tawn_Bergren,2011,/genres/young-adult|/genres/science-fiction|/genres/time-travel|/genres/historical-fiction|/genres/fantasy|/genres/romance|/genres/christian-fiction|/genres/christian|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/paranormal,dir36/7879278-waterfall.html,10912,"Waterfall (River of Time, #1)" +4.03,400,0545060486,good_reads:book,https://www.goodreads.com/author/show/2130.Gordon_Korman,2010,/genres/young-adult|/genres/adventure|/genres/childrens|/genres/mystery|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/action|/genres/fiction|/genres/realistic-fiction|/genres/fantasy,dir36/6545536-the-emperor-s-code.html,26221,"The Emperor's Code (The 39 Clues, #8)" +4.21,403,0425197492,good_reads:book,https://www.goodreads.com/author/show/17015.P_C_Cast,2004,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/magic|/genres/mythology|/genres/greek-mythology|/genres/fantasy|/genres/urban-fantasy|/genres/womens-fiction|/genres/chick-lit,dir36/30194.Goddess_of_Spring.html,5703,"Goddess of Spring (Goddess Summoning, #2)" +3.97,663,1598184318,good_reads:book,https://www.goodreads.com/author/show/1240.Jack_London,1904,/genres/classics|/genres/fiction|/genres/adventure|/genres/literature|/genres/historical-fiction|/genres/novels|/genres/literature|/genres/american|/genres/philosophy|/genres/classics|/genres/classic-literature|/genres/book-club,dir36/43049.The_Sea_Wolf.html,12765,The Sea Wolf +3.72,1494,0064472779,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2002,/genres/young-adult|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/realistic-fiction|/genres/humor|/genres/childrens|/genres/humor|/genres/funny,dir36/19448.All_American_Girl.html,46364,"All-American Girl (All-American Girl, #1)" +4.27,1834,0439755204,good_reads:book,https://www.goodreads.com/author/show/183005.Jordan_Sonnenblick,2004,/genres/young-adult|/genres/realistic-fiction|/genres/fiction|/genres/young-adult|/genres/teen|/genres/childrens|/genres/middle-grade|/genres/humor|/genres/contemporary|/genres/music|/genres/family,dir36/318404.Drums_Girls_Dangerous_Pie.html,13241,"Drums, Girls & Dangerous Pie" +3.79,316,0140182829,good_reads:book,https://www.goodreads.com/author/show/6460339.Alain_Fournier,1912,/genres/cultural|/genres/france|/genres/classics|/genres/european-literature|/genres/french-literature|/genres/literature|/genres/novels|/genres/fiction|/genres/roman|/genres/literature|/genres/20th-century|/genres/literary-fiction|/genres/fantasy,dir36/794779.Le_Grand_Meaulnes.html,4058,Le Grand Meaulnes +4.09,719,0843959770,good_reads:book,https://www.goodreads.com/author/show/1310735.C_L_Wilson,2007,/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy-romance|/genres/fantasy|/genres/magic|/genres/fairies|/genres/fae|/genres/adult|/genres/fantasy|/genres/high-fantasy|/genres/paranormal|/genres/shapeshifters,dir36/1584974.Lord_of_the_Fading_Lands.html,7231,"Lord of the Fading Lands (Tairen Soul, #1)" +3.49,4222,0224081187,good_reads:book,https://www.goodreads.com/author/show/2408.Ian_McEwan,2007,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/literary-fiction|/genres/novels|/genres/romance|/genres/contemporary|/genres/adult-fiction,dir36/815309.On_Chesil_Beach.html,36379,On Chesil Beach +4.35,699,0441014348,good_reads:book,https://www.goodreads.com/author/show/10746.Jim_Butcher,2006,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/adventure|/genres/epic|/genres/adult|/genres/war,dir36/29394.Cursor_s_Fury.html,26003,"Cursor's Fury (Codex Alera, #3)" +3.68,4026,,good_reads:book,https://www.goodreads.com/author/show/2783820.Oliver_P_tzsch,2008,/genres/historical-fiction|/genres/mystery|/genres/fiction|/genres/book-club|/genres/thriller|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/crime|/genres/cultural|/genres/germany|/genres/mystery|/genres/historical-mystery|/genres/adult,dir36/9496240-the-hangman-s-daughter.html,37003,"The Hangman's Daughter (The Hangman's Daughter, #1)" +3.79,1001,0375703829,good_reads:book,https://www.goodreads.com/author/show/908.Alessandro_Baricco,1996,/genres/fiction|/genres/historical-fiction|/genres/european-literature|/genres/italian-literature|/genres/romance|/genres/cultural|/genres/japan|/genres/cultural|/genres/italy|/genres/literature|/genres/cultural|/genres/france|/genres/novels|/genres/literary-fiction,dir36/61264.Silk.html,13457,Silk +3.88,1739,076790382X,good_reads:book,https://www.goodreads.com/author/show/7.Bill_Bryson,1999,/genres/non-fiction|/genres/travel|/genres/humor|/genres/autobiography|/genres/memoir|/genres/writing|/genres/essays|/genres/biography|/genres/humor|/genres/funny|/genres/humor|/genres/comedy,dir36/25.I_m_a_Stranger_Here_Myself.html,37039,I'm a Stranger Here Myself +4.41,276,0553142151,good_reads:book,https://www.goodreads.com/author/show/158380.Ann_Fairbairn,1966,/genres/fiction|/genres/historical-fiction|/genres/classics|/genres/book-club|/genres/romance|/genres/novels|/genres/literature|/genres/american|/genres/contemporary,dir36/271685.Five_Smooth_Stones.html,1632,Five Smooth Stones +3.99,975,0373210043,good_reads:book,https://www.goodreads.com/author/show/415967.Rachel_Vincent,2009,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/demons|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/young-adult-paranormal,dir36/6763961-my-soul-to-save.html,15426,"My Soul to Save (Soul Screamers, #2)" +4.25,538,0553807099,good_reads:book,https://www.goodreads.com/author/show/7581.Kelley_Armstrong,2009,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/anthologies|/genres/adult,dir36/3422075-men-of-the-otherworld.html,11192,Men of the Otherworld +4.06,1053,0380776839,good_reads:book,https://www.goodreads.com/author/show/41313.Susan_Elizabeth_Phillips,1994,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/sports-and-games|/genres/sports|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary-romance|/genres/sports-romance|/genres/adult|/genres/fiction|/genres/humor,dir36/73070.It_Had_to_Be_You.html,32377,"It Had to Be You (Chicago Stars, #1)" +4.45,1487,0061138061,good_reads:book,https://www.goodreads.com/author/show/17054.Kim_Harrison,2011,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/paranormal|/genres/witches|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/magic|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance,dir36/8138071-pale-demon.html,28704,"Pale Demon (The Hollows, #9)" +3.83,4061,0062026488,good_reads:book,https://www.goodreads.com/author/show/4074051.Rae_Carson,2011,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/young-adult-fantasy|/genres/adventure|/genres/fiction|/genres/fantasy|/genres/high-fantasy|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/paranormal,dir36/10429092-the-girl-of-fire-and-thorns.html,36389,"The Girl of Fire and Thorns (Fire and Thorns, #1)" +4.10,406,8173711461,good_reads:book,https://www.goodreads.com/author/show/342404.Arun_Tiwari,1999,/genres/biography|/genres/non-fiction|/genres/biography|/genres/autobiography|/genres/cultural|/genres/india|/genres/asian-literature|/genres/indian-literature|/genres/inspirational|/genres/autobiography|/genres/memoir|/genres/self-help|/genres/philosophy|/genres/history,dir36/634583.Wings_of_Fire.html,13969,Wings of Fire +4.09,6053,1934781630,good_reads:book,https://www.goodreads.com/author/show/3371.Dave_Eggers,2009,/genres/non-fiction|/genres/book-club|/genres/biography|/genres/history|/genres/autobiography|/genres/memoir,dir36/6512154-zeitoun.html,44942,Zeitoun +4.20,3460,0393338827,good_reads:book,https://www.goodreads.com/author/show/776.Michael_Lewis,2009,/genres/business|/genres/economics|/genres/non-fiction|/genres/history|/genres/politics|/genres/book-club|/genres/contemporary|/genres/writing|/genres/journalism|/genres/sociology|/genres/literature|/genres/american,dir36/8032112-the-big-short.html,47786,The Big Short +3.56,599,0192801694,good_reads:book,https://www.goodreads.com/author/show/3345.Joseph_Conrad,1907,/genres/classics|/genres/literature|/genres/mystery|/genres/spy-thriller|/genres/espionage|/genres/novels|/genres/fiction|/genres/mystery|/genres/crime|/genres/thriller|/genres/literature|/genres/20th-century,dir36/86658.The_Secret_Agent.html,8676,The Secret Agent +4.13,1127,0140280197,good_reads:book,https://www.goodreads.com/author/show/865.Robert_Greene,1998,/genres/non-fiction|/genres/business|/genres/psychology|/genres/philosophy|/genres/history|/genres/self-help|/genres/politics|/genres/leadership|/genres/self-help|/genres/personal-development|/genres/management,dir36/1303.The_48_Laws_of_Power.html,17985,The 48 Laws of Power +4.09,3770,0739465511,good_reads:book,https://www.goodreads.com/author/show/12470.Michael_Connelly,2005,/genres/mystery|/genres/fiction|/genres/mystery|/genres/crime|/genres/thriller|/genres/thriller|/genres/legal-thriller|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/book-club|/genres/mystery|/genres/detective|/genres/adult,dir36/79885.The_Lincoln_Lawyer.html,109842,"The Lincoln Lawyer (Mickey Haller, #1)" +4.28,440,0140284583,good_reads:book,https://www.goodreads.com/author/show/3407.Antony_Beevor,1998,/genres/history|/genres/non-fiction|/genres/war|/genres/history|/genres/world-war-ii|/genres/military|/genres/military-history|/genres/war|/genres/military|/genres/cultural|/genres/russia|/genres/cultural|/genres/germany|/genres/history|/genres/european-history|/genres/history|/genres/world-history,dir36/542389.Stalingrad.html,12617,Stalingrad +4.23,635,0345451325,good_reads:book,https://www.goodreads.com/author/show/33958.Eric_S_Nylund,2001,/genres/science-fiction|/genres/fiction|/genres/games|/genres/video-games|/genres/war|/genres/military|/genres/war|/genres/novels|/genres/action|/genres/fantasy,dir36/60229.Halo.html,10640,Halo +4.01,411,006095955X,good_reads:book,https://www.goodreads.com/author/show/70766.Peter_Jenkins,1979,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/biography|/genres/nature|/genres/outdoors|/genres/book-club|/genres/travel|/genres/travel|/genres/walking|/genres/biography-memoir|/genres/environment|/genres/nature|/genres/literature|/genres/american,dir36/122781.A_Walk_Across_America.html,7010,A Walk Across America +3.63,793,0060080841,good_reads:book,https://www.goodreads.com/author/show/8050.Ira_Levin,1972,/genres/horror|/genres/fiction|/genres/science-fiction|/genres/classics|/genres/thriller|/genres/science-fiction|/genres/dystopia|/genres/mystery|/genres/feminism|/genres/suspense|/genres/adult,dir36/52350.The_Stepford_Wives.html,13076,The Stepford Wives +3.94,588,0192836382,good_reads:book,https://www.goodreads.com/author/show/3186713.Alexandre_Dumas_fils,1848,/genres/romance|/genres/cultural|/genres/france|/genres/classics|/genres/european-literature|/genres/french-literature|/genres/historical-fiction|/genres/literature|/genres/19th-century|/genres/novels|/genres/classics|/genres/classic-literature|/genres/romance|/genres/historical-romance|/genres/adult,dir36/7186.La_Dame_aux_Cam_lias.html,13250,La Dame aux Camélias +4.20,262,0151002347,good_reads:book,https://www.goodreads.com/author/show/4624490.Edgar_Allan_Poe,1840,/genres/classics|/genres/horror|/genres/short-stories|/genres/fiction|/genres/mystery|/genres/fantasy|/genres/literature|/genres/poetry|/genres/gothic|/genres/literature|/genres/19th-century,dir36/156152.Tales_of_Mystery_and_Imagination.html,6090,Tales of Mystery and Imagination +4.11,1425,1400052297,good_reads:book,https://www.goodreads.com/author/show/114656.Cupcake_Brown,2006,/genres/autobiography|/genres/memoir|/genres/non-fiction|/genres/biography|/genres/book-club|/genres/cultural|/genres/african-american|/genres/biography-memoir|/genres/biography|/genres/autobiography|/genres/sociology|/genres/abuse|/genres/adult|/genres/true-story,dir36/196764.A_Piece_of_Cake.html,14229,A Piece of Cake +3.87,1486,0765304961,good_reads:book,https://www.goodreads.com/author/show/589.Orson_Scott_Card,2005,/genres/science-fiction|/genres/fiction|/genres/space,dir36/3220405-ender-in-exile.html,25860,"Ender in Exile (The Ender Quintet, #1.6)" +4.40,1201,0451461401,good_reads:book,https://www.goodreads.com/author/show/10746.Jim_Butcher,2007,/genres/fantasy|/genres/mystery|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/science-fiction-fantasy|/genres/mystery|/genres/detective|/genres/horror|/genres/contemporary|/genres/science-fiction,dir36/91475.White_Night.html,51933,"White Night (The Dresden Files, #9)" +4.23,243,0679725733,good_reads:book,https://www.goodreads.com/author/show/3012988.Robert_Graves,1934,/genres/historical-fiction|/genres/fiction|/genres/classics|/genres/literature|/genres/novels|/genres/european-literature|/genres/british-literature|/genres/roman,dir36/52251.Claudius_the_God_and_His_Wife_Messalina.html,6517,"Claudius the God and His Wife Messalina (Claudius, #2)" +3.43,1894,0316113786,good_reads:book,https://www.goodreads.com/author/show/1033445.Uwem_Akpan,2008,/genres/fiction|/genres/cultural|/genres/africa|/genres/short-stories|/genres/book-club|/genres/historical-fiction,dir36/2296567.Say_You_re_One_of_Them.html,9612,Say You're One of Them +4.27,647,0440240972,good_reads:book,https://www.goodreads.com/author/show/48206.Karen_Marie_Moning,2005,/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/time-travel|/genres/romance|/genres/historical-romance|/genres/fantasy|/genres/fairies|/genres/fae|/genres/cultural|/genres/scotland|/genres/historical-fiction|/genres/fiction,dir36/112751.Spell_of_the_Highlander.html,16716,"Spell of the Highlander (Highlander, #7)" +4.16,228,0945774109,good_reads:book,https://www.goodreads.com/author/show/439723.Karel_apek,1935,/genres/science-fiction|/genres/european-literature|/genres/czech-literature|/genres/classics|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/humor|/genres/novels,dir36/816440.War_with_the_Newts.html,3411,War with the Newts +3.79,861,1406954365,good_reads:book,https://www.goodreads.com/author/show/1315.Louisa_May_Alcott,1871,/genres/classics|/genres/fiction|/genres/young-adult|/genres/historical-fiction|/genres/childrens|/genres/literature|/genres/literature|/genres/american|/genres/classics|/genres/classic-literature|/genres/literature|/genres/19th-century|/genres/novels,dir36/78950.Little_Men.html,27076,Little Men (Little Women #2) +3.90,850,3552060413,good_reads:book,https://www.goodreads.com/author/show/832040.Daniel_Glattauer,2006,/genres/romance|/genres/european-literature|/genres/german-literature|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/adult|/genres/romance|/genres/contemporary-romance,dir36/1820716.Gut_gegen_Nordwind.html,7585,"Gut gegen Nordwind (Gut gegen Nordwind, #1)" +4.34,237,1421513277,good_reads:book,https://www.goodreads.com/author/show/1978.Tsugumi_Ohba,2003,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fantasy|/genres/sequential-art|/genres/manga|/genres/fiction|/genres/horror|/genres/mystery|/genres/young-adult|/genres/comics-manga,dir36/445046.Death_Note_Vol_12.html,6981,"Death Note, Vol. 12 (Death Note, #12)" +4.23,170,0345340442,good_reads:book,https://www.goodreads.com/author/show/8732.David_Eddings,1984,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fiction|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction-fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/adventure|/genres/epic|/genres/adult,dir36/44660.The_Belgariad_Boxed_Set.html,8215,The Belgariad Boxed Set +3.82,534,0451160312,good_reads:book,https://www.goodreads.com/author/show/25366.Joanne_Greenberg,1964,/genres/fiction|/genres/psychology|/genres/young-adult|/genres/mental-health|/genres/mental-illness|/genres/health|/genres/mental-health|/genres/classics|/genres/contemporary|/genres/realistic-fiction,dir36/45220.I_Never_Promised_You_a_Rose_Garden.html,19268,I Never Promised You a Rose Garden +3.91,222,0586090363,good_reads:book,https://www.goodreads.com/author/show/338068.Robert_Tressell,1914,/genres/fiction|/genres/classics|/genres/historical-fiction|/genres/politics|/genres/literature|/genres/novels|/genres/philosophy|/genres/literature|/genres/20th-century|/genres/european-literature|/genres/british-literature|/genres/classics|/genres/modern-classics,dir36/921359.The_Ragged_Trousered_Philanthropists.html,3199,The Ragged Trousered Philanthropists +4.05,851,0517223546,good_reads:book,https://www.goodreads.com/author/show/16204.Edward_Rutherfurd,1987,/genres/historical-fiction|/genres/fiction|/genres/european-literature|/genres/british-literature|/genres/epic|/genres/literature|/genres/adult-fiction|/genres/adult|/genres/novels|/genres/book-club|/genres/travel,dir36/92163.Sarum.html,25829,Sarum +3.83,6086,0061173398,good_reads:book,https://www.goodreads.com/author/show/20357.Chelsea_Handler,2007,/genres/humor|/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/humor|/genres/comedy|/genres/biography|/genres/humor|/genres/funny|/genres/book-club|/genres/womens-fiction|/genres/chick-lit|/genres/biography|/genres/autobiography|/genres/writing|/genres/essays,dir36/40173.Are_You_There_Vodka_It_s_Me_Chelsea.html,101863,"Are You There, Vodka? It's Me, Chelsea" +4.19,917,0307738612,good_reads:book,https://www.goodreads.com/author/show/33467.Jonathan_Stroud,2010,/genres/fantasy|/genres/young-adult|/genres/adventure|/genres/humor|/genres/young-adult|/genres/young-adult-fantasy|/genres/young-adult|/genres/teen|/genres/historical-fiction|/genres/science-fiction-fantasy|/genres/fiction|/genres/childrens|/genres/middle-grade,dir36/7640705-the-ring-of-solomon.html,11659,"The Ring of Solomon (Bartimaeus, #0.5)" +3.72,2247,0738713708,good_reads:book,https://www.goodreads.com/author/show/1330292.Maggie_Stiefvater,2008,/genres/fantasy|/genres/young-adult|/genres/paranormal|/genres/fairies|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/fairies|/genres/fae|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic,dir36/3112850-lament.html,22666,"Lament (Books of Faerie, #1)" +4.41,459,,good_reads:book,https://www.goodreads.com/author/show/4134859.Jessica_Shirvington,2011,/genres/paranormal|/genres/angels|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/magic|/genres/fiction,dir36/10567183-emblaze.html,5643,"Emblaze (The Violet Eden Chapters, #3)" +3.72,1109,0718149122,good_reads:book,https://www.goodreads.com/author/show/6104.Marian_Keyes,2008,/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/romance|/genres/contemporary|/genres/european-literature|/genres/irish-literature|/genres/drama|/genres/cultural|/genres/ireland|/genres/adult|/genres/adult-fiction|/genres/humor|/genres/funny,dir36/2334751.This_Charming_Man.html,21675,This Charming Man +3.89,1186,0545178142,good_reads:book,https://www.goodreads.com/author/show/3131761.Kat_Falls,2010,/genres/young-adult|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/adventure|/genres/fiction|/genres/young-adult|/genres/teen,dir36/7027735-dark-life.html,8548,"Dark Life (Dark Life, #1)" +4.25,2220,0451419715,good_reads:book,https://www.goodreads.com/author/show/4167378.Samantha_Young,2013,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/new-adult|/genres/contemporary|/genres/adult|/genres/adult-fiction|/genres/erotica|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/erotic-romance|/genres/fiction|/genres/sociology|/genres/abuse,dir36/16140408-down-london-road.html,26502,"Down London Road (On Dublin Street, #2)" +4.39,340,0143039075,good_reads:book,https://www.goodreads.com/author/show/233619.Marcel_Proust,1913,/genres/fiction|/genres/cultural|/genres/france|/genres/literature|/genres/european-literature|/genres/french-literature|/genres/novels|/genres/classics|/genres/literary-fiction|/genres/literature|/genres/20th-century|/genres/philosophy|/genres/romance,dir36/28385.In_the_Shadow_of_Young_Girls_in_Flower.html,4286,"In the Shadow of Young Girls in Flower (In Search of Lost Time, #2)" +3.97,735,3453532988,good_reads:book,https://www.goodreads.com/author/show/3159299.Dmitry_Glukhovsky,2005,/genres/science-fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/horror|/genres/fiction|/genres/science-fiction|/genres/dystopia|/genres/cultural|/genres/russia|/genres/fantasy|/genres/science-fiction|/genres/apocalyptic|/genres/thriller|/genres/novels,dir36/5558786-metro-2033.html,10057,"Metro 2033 (METRO, #1)" +4.07,598,1560252480,good_reads:book,https://www.goodreads.com/author/show/26335.Hubert_Selby_Jr_,1978,/genres/fiction|/genres/thriller|/genres/contemporary|/genres/mystery|/genres/mystery|/genres/crime|/genres/literature|/genres/dark|/genres/novels|/genres/classics|/genres/adult-fiction,dir36/46945.Requiem_for_a_Dream.html,28640,Requiem for a Dream +3.61,979,0439919479,good_reads:book,https://www.goodreads.com/author/show/45465.Randa_Abdel_Fattah,2005,/genres/young-adult|/genres/fiction|/genres/realistic-fiction|/genres/religion|/genres/young-adult|/genres/teen|/genres/cultural|/genres/religion|/genres/islam|/genres/cultural|/genres/australia|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary,dir36/79876.Does_My_Head_Look_Big_In_This_.html,6094,Does My Head Look Big In This? +4.01,365,0345443586,good_reads:book,https://www.goodreads.com/author/show/9550.Laurell_K_Hamilton,2006,/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fairies|/genres/fae|/genres/fiction|/genres/adult-fiction|/genres/erotica|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic,dir36/30224.Mistral_s_Kiss.html,22311,"Mistral's Kiss (Merry Gentry, #5)" +4.04,335,1857987985,good_reads:book,https://www.goodreads.com/author/show/20560.Sheri_S_Tepper,1989,/genres/science-fiction|/genres/fantasy|/genres/fiction|/genres/science-fiction-fantasy|/genres/speculative-fiction|/genres/science-fiction|/genres/aliens|/genres/feminism|/genres/science-fiction|/genres/dystopia|/genres/religion|/genres/adult,dir36/104342.Grass.html,5789,"Grass (Arbai, #1)" +3.79,1468,0385729367,good_reads:book,https://www.goodreads.com/author/show/3681.Ann_Brashares,2007,/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/romance|/genres/young-adult|/genres/teen|/genres/contemporary|/genres/realistic-fiction|/genres/young-adult|/genres/coming-of-age|/genres/young-adult|/genres/high-school|/genres/childrens,dir36/5453.Forever_in_Blue.html,46617,"Forever in Blue (Sisterhood, #4)" +3.74,1426,0375990690,good_reads:book,https://www.goodreads.com/author/show/2905297.Lauren_Kate,2013,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/magic|/genres/fiction|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen,dir36/16070143-teardrop.html,11223,"Teardrop (Teardrop, #1)" +4.21,236,0850515025,good_reads:book,https://www.goodreads.com/author/show/22458.Machado_de_Assis,1880,/genres/fiction|/genres/classics|/genres/cultural|/genres/brazil|/genres/literature|/genres/novels|/genres/european-literature|/genres/portuguese-literature|/genres/romance|/genres/academic|/genres/school|/genres/literature|/genres/19th-century|/genres/cultural|/genres/latin-american,dir36/87264.Mem_rias_P_stumas_de_Br_s_Cubas.html,6142,Memórias Póstumas de Brás Cubas +3.87,1128,0571219357,good_reads:book,https://www.goodreads.com/author/show/6404.Jonathan_Lethem,2003,/genres/fiction|/genres/novels|/genres/contemporary|/genres/literature|/genres/new-york|/genres/literary-fiction|/genres/book-club|/genres/literature|/genres/american|/genres/adult-fiction|/genres/fantasy,dir36/9799.The_Fortress_of_Solitude.html,13948,The Fortress of Solitude +3.68,776,0718155181,good_reads:book,https://www.goodreads.com/author/show/4195533.Paul_Hoffman,2010,/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/dark-fantasy|/genres/adventure|/genres/science-fiction|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/mystery|/genres/science-fiction-fantasy,dir36/7116709-the-left-hand-of-god.html,8294,"The Left Hand of God (The Left Hand of God, #1)" +4.08,672,141650964X,good_reads:book,https://www.goodreads.com/author/show/874602.Ursula_K_Le_Guin,1972,/genres/fantasy|/genres/fiction|/genres/young-adult|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/classics|/genres/adventure|/genres/fantasy|/genres/epic-fantasy,dir36/13667.The_Farthest_Shore.html,48050,"The Farthest Shore (Earthsea Cycle, #3)" +3.78,1168,0307588920,good_reads:book,https://www.goodreads.com/author/show/3248211.John_Verdon,2010,/genres/mystery|/genres/thriller|/genres/mystery|/genres/crime|/genres/fiction|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/detective|/genres/adult|/genres/contemporary|/genres/adult-fiction,dir36/7853137-think-of-a-number.html,8755,"Think of a Number (Dave Gurney, #1)" +3.85,3089,1416963960,good_reads:book,https://www.goodreads.com/author/show/25422.Holly_Black,2010,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/fantasy|/genres/magic|/genres/mystery|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/young-adult|/genres/teen,dir36/6087756-white-cat.html,22917,"White Cat (Curse Workers, #1)" +4.14,2036,,good_reads:book,https://www.goodreads.com/author/show/7258437.M_Pierce,2013,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/erotica|/genres/bdsm|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/new-adult|/genres/adult|/genres/romance|/genres/erotic-romance|/genres/dark|/genres/love,dir36/18681804-night-owl.html,11243,"Night Owl (Night Owl, #1)" +4.16,505,0316905747,good_reads:book,https://www.goodreads.com/author/show/5816.Darren_Shan,2001,/genres/fantasy|/genres/young-adult|/genres/horror|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/teen,dir36/8960.Vampire_Mountain.html,19374,"Vampire Mountain (Cirque Du Freak, #4)" +4.44,286,1423134729,good_reads:book,https://www.goodreads.com/author/show/1562974.Katie_Alender,2012,/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/paranormal|/genres/ghosts|/genres/horror|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/mystery|/genres/fiction|/genres/death,dir36/12862611-as-dead-as-it-gets.html,3176,"As Dead As It Gets (Bad Girls Don't Die, #3)" +4.22,1024,031235164X,good_reads:book,https://www.goodreads.com/author/show/27847.Lisa_Kleypas,2008,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/adult|/genres/sociology|/genres/abuse|/genres/fiction,dir36/1756703.Blue_Eyed_Devil.html,18740,"Blue-Eyed Devil (Travises, #2)" +4.25,1261,0345503813,good_reads:book,https://www.goodreads.com/author/show/1405152.Peter_V_Brett,2010,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fiction|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/demons|/genres/science-fiction-fantasy,dir36/6736971-the-desert-spear.html,33209,"The Desert Spear (Demon Cycle, #2)" +4.03,140,0060815922,good_reads:book,https://www.goodreads.com/author/show/15890.Trudi_Canavan,2006,/genres/fantasy|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/high-fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/young-adult|/genres/romance|/genres/science-fiction-fantasy|/genres/mythology|/genres/gods|/genres/european-literature|/genres/german-literature,dir36/28247.Voice_of_the_Gods.html,6909,"Voice of the Gods (Age of the Five, #3)" +3.99,1452,0758266928,good_reads:book,https://www.goodreads.com/author/show/580315.Jennifer_Estep,2011,/genres/young-adult|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/magic|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/mystery|/genres/romance|/genres/paranormal-romance,dir36/9439989-touch-of-frost.html,16394,"Touch of Frost (Mythos Academy, #1)" +4.06,768,1423121295,good_reads:book,https://www.goodreads.com/author/show/21911.Melissa_de_la_Cruz,2011,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/paranormal|/genres/angels|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/fiction,dir36/9578590-lost-in-time.html,18906,"Lost in Time (Blue Bloods, #6)" +4.16,510,0743437322,good_reads:book,https://www.goodreads.com/author/show/74046.D_J_MacHale,2003,/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/adventure|/genres/fiction|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/young-adult-fantasy|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/science-fiction-fantasy,dir36/215543.The_Lost_City_of_Faar.html,19489,"The Lost City of Faar (Pendragon, #2)" +4.39,159,0805082743,good_reads:book,https://www.goodreads.com/author/show/8924.Lloyd_Alexander,1968,/genres/young-adult|/genres/fiction|/genres/childrens|/genres/classics|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/adventure|/genres/fantasy|/genres/high-fantasy,dir36/463063.The_Chronicles_of_Prydain_Boxed_Set.html,3354,The Chronicles of Prydain Boxed Set (The Chronicles of Prydain #1-5) +3.82,1729,1857231384,good_reads:book,https://www.goodreads.com/author/show/5807106.Iain_M_Banks,1987,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/space-opera|/genres/science-fiction-fantasy|/genres/space,dir36/8935689-consider-phlebas.html,30893,"Consider Phlebas (Culture, #1)" +4.53,1190,0425263991,good_reads:book,https://www.goodreads.com/author/show/71688.Nalini_Singh,2013,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/shapeshifters|/genres/adult|/genres/science-fiction,dir36/15781026-heart-of-obsidian.html,8249,"Heart of Obsidian (Psy-Changeling, #12)" +4.27,742,0312369492,good_reads:book,https://www.goodreads.com/author/show/4430.Sherrilyn_Kenyon,2009,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/shapeshifters|/genres/adult|/genres/fantasy|/genres/mythology|/genres/paranormal|/genres/demons,dir36/6058042-bad-moon-rising.html,18168,"Bad Moon Rising (Were-Hunter, #4)" +4.08,859,0743287010,good_reads:book,https://www.goodreads.com/author/show/46097.Richard_Paul_Evans,2005,/genres/fiction|/genres/romance|/genres/book-club|/genres/womens-fiction|/genres/chick-lit|/genres/christian-fiction|/genres/adult-fiction|/genres/adult|/genres/historical-fiction|/genres/lds|/genres/lds-fiction|/genres/novels,dir36/133784.The_Sunflower.html,6039,The Sunflower +4.06,494,1590170571,good_reads:book,https://www.goodreads.com/author/show/3424060.Adolfo_Bioy_Casares,1940,/genres/fiction|/genres/science-fiction|/genres/cultural|/genres/latin-american|/genres/literature|/genres/classics|/genres/novels|/genres/european-literature|/genres/spanish-literature|/genres/fantasy|/genres/magical-realism|/genres/literature|/genres/20th-century,dir36/94486.The_Invention_of_Morel.html,6147,The Invention of Morel +3.75,368,0395941164,good_reads:book,https://www.goodreads.com/author/show/150701.Jack_Schaefer,1949,/genres/western|/genres/fiction|/genres/classics|/genres/historical-fiction|/genres/young-adult|/genres/novels|/genres/academic|/genres/school|/genres/adventure|/genres/literature|/genres/american|/genres/childrens,dir36/257837.Shane.html,5491,Shane +3.89,803,0689851324,good_reads:book,https://www.goodreads.com/author/show/7540.Cynthia_Voigt,1981,/genres/young-adult|/genres/fiction|/genres/realistic-fiction|/genres/childrens|/genres/classics|/genres/contemporary|/genres/family|/genres/young-adult|/genres/teen|/genres/adventure|/genres/childrens|/genres/middle-grade,dir36/12125.Homecoming.html,13835,"Homecoming (Tillerman Cycle, #1)" +4.02,659,1414315716,good_reads:book,https://www.goodreads.com/author/show/6492.Francine_Rivers,1998,/genres/christian-fiction|/genres/fiction|/genres/christian|/genres/historical-fiction|/genres/book-club|/genres/novels|/genres/inspirational|/genres/adult-fiction|/genres/adult|/genres/religion,dir36/95622.The_Last_Sin_Eater.html,15753,The Last Sin Eater +3.99,949,1600963773,good_reads:book,https://www.goodreads.com/author/show/2098.Elizabeth_von_Arnim,1922,/genres/fiction|/genres/classics|/genres/cultural|/genres/italy|/genres/historical-fiction|/genres/book-club|/genres/romance|/genres/european-literature|/genres/british-literature|/genres/travel|/genres/womens-fiction|/genres/chick-lit|/genres/adult-fiction,dir36/3077.The_Enchanted_April.html,5873,The Enchanted April +3.81,596,0373802544,good_reads:book,https://www.goodreads.com/author/show/7031278.Michelle_Sagara,2005,/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/dragons|/genres/fiction|/genres/romance|/genres/adult|/genres/mystery|/genres/science-fiction-fantasy,dir36/9542.Cast_in_Shadow.html,9517,"Cast in Shadow (Chronicles of Elantra, #1)" +4.36,442,141993600X,good_reads:book,https://www.goodreads.com/author/show/3190846.Laurann_Dohner,2011,/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/paranormal|/genres/shapeshifters|/genres/fantasy|/genres/science-fiction|/genres/adult|/genres/romance|/genres/erotic-romance|/genres/fantasy|/genres/supernatural,dir36/12432550-valiant.html,9033,"Valiant (New Species, #3)" +4.03,662,0752852612,good_reads:book,https://www.goodreads.com/author/show/16927.Dashiell_Hammett,1929,/genres/mystery|/genres/fiction|/genres/mystery|/genres/crime|/genres/mystery|/genres/noir|/genres/classics|/genres/mystery|/genres/detective|/genres/mystery|/genres/hard-boiled|/genres/novels|/genres/thriller|/genres/mystery-thriller|/genres/literature|/genres/20th-century,dir36/30005.Red_Harvest.html,12419,Red Harvest +4.05,975,0689845367,good_reads:book,https://www.goodreads.com/author/show/874602.Ursula_K_Le_Guin,1970,/genres/fantasy|/genres/fiction|/genres/young-adult|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/science-fiction|/genres/classics|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/fantasy|/genres/epic-fantasy,dir36/13662.The_Tombs_of_Atuan.html,49933,"The Tombs of Atuan (Earthsea Cycle, #2)" +3.74,497,0440975344,good_reads:book,https://www.goodreads.com/author/show/762707.S_E_Hinton,1975,/genres/young-adult|/genres/fiction|/genres/classics|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/coming-of-age|/genres/realistic-fiction|/genres/drama|/genres/childrens|/genres/academic|/genres/read-for-school|/genres/novels,dir36/759960.Rumble_Fish.html,11082,Rumble Fish +4.31,666,074347418X,good_reads:book,https://www.goodreads.com/author/show/6251.Julie_Garwood,1999,/genres/romance|/genres/historical-romance|/genres/romance|/genres/historical-fiction|/genres/medieval|/genres/historical-fiction|/genres/cultural|/genres/scotland|/genres/fiction|/genres/adult|/genres/historical-romance|/genres/medieval-romance|/genres/humor|/genres/funny|/genres/mystery,dir36/107776.Ransom.html,16386,"Ransom (Highlands' Lairds, #2)" +3.91,999,0679750533,good_reads:book,https://www.goodreads.com/author/show/3354.Haruki_Murakami,1991,/genres/fiction|/genres/short-stories|/genres/cultural|/genres/japan|/genres/asian-literature|/genres/japanese-literature|/genres/magical-realism|/genres/literature|/genres/fantasy|/genres/contemporary,dir36/9555.The_Elephant_Vanishes.html,18332,The Elephant Vanishes +3.71,494,1416926836,good_reads:book,https://www.goodreads.com/author/show/363405.Elizabeth_Scott,2007,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/young-adult|/genres/teen|/genres/realistic-fiction|/genres/young-adult|/genres/high-school|/genres/young-adult|/genres/young-adult-romance|/genres/love,dir36/678891.Bloom.html,10707,Bloom +3.75,454,0679436545,good_reads:book,https://www.goodreads.com/author/show/7577.Anne_Rice,1994,/genres/horror|/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/adult|/genres/fantasy|/genres/magic,dir36/119091.Taltos.html,36442,"Taltos (Lives of the Mayfair Witches, #3)" +4.23,460,0679735259,good_reads:book,https://www.goodreads.com/author/show/2996.Michael_Herr,1977,/genres/non-fiction|/genres/history|/genres/war|/genres/writing|/genres/journalism|/genres/autobiography|/genres/memoir|/genres/war|/genres/military|/genres/cultural|/genres/asia|/genres/military|/genres/military-history|/genres/biography|/genres/history|/genres/american-history,dir36/4339.Dispatches.html,6925,Dispatches +4.37,1639,,good_reads:book,https://www.goodreads.com/author/show/2958084.Kristen_Ashley,2014,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/adult|/genres/sociology|/genres/abuse,dir36/20332278-the-will.html,10113,"The Will (Magdalene, #1)" +3.97,529,0441013678,good_reads:book,https://www.goodreads.com/author/show/9226.William_Gibson,1986,/genres/science-fiction|/genres/science-fiction|/genres/cyberpunk|/genres/fiction|/genres/science-fiction-fantasy|/genres/novels|/genres/fantasy|/genres/speculative-fiction|/genres/science|/genres/technology|/genres/cultural|/genres/canada|/genres/literature|/genres/american,dir36/22200.Count_Zero.html,24581,"Count Zero (Sprawl, #2)" +3.85,813,0441012396,good_reads:book,https://www.goodreads.com/author/show/5339.Robin_McKinley,1993,/genres/fantasy|/genres/fantasy|/genres/fairy-tales|/genres/young-adult|/genres/fiction|/genres/romance|/genres/science-fiction-fantasy|/genres/retellings|/genres/fantasy|/genres/magic|/genres/adult,dir37/8087.Deerskin.html,13243,Deerskin +3.83,439,0679745645,good_reads:book,https://www.goodreads.com/author/show/431149.Truman_Capote,1948,/genres/fiction|/genres/classics|/genres/literature|/genres/gothic|/genres/southern-gothic|/genres/literature|/genres/american|/genres/american|/genres/southern|/genres/novels|/genres/gothic|/genres/literature|/genres/20th-century|/genres/glbt,dir37/2287.Other_Voices_Other_Rooms.html,7184,"Other Voices, Other Rooms" +4.08,547,0800871863,good_reads:book,https://www.goodreads.com/author/show/14164.Sh_saku_End_,1966,/genres/fiction|/genres/cultural|/genres/japan|/genres/historical-fiction|/genres/asian-literature|/genres/japanese-literature|/genres/religion|/genres/literature|/genres/novels|/genres/classics|/genres/religion|/genres/christianity|/genres/cultural|/genres/asia,dir37/25200.Silence.html,4589,Silence +4.19,617,1591164419,good_reads:book,https://www.goodreads.com/author/show/1977.Tite_Kubo,2002,/genres/sequential-art|/genres/manga|/genres/fantasy|/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/media-tie-in|/genres/anime|/genres/young-adult|/genres/action|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural,dir37/2880.Bleach_Volume_01.html,73483,"Bleach Volume 01 (Bleach, #1)" +3.47,1176,0060541830,good_reads:book,https://www.goodreads.com/author/show/5194.Michael_Crichton,1980,/genres/fiction|/genres/science-fiction|/genres/thriller|/genres/adventure|/genres/mystery|/genres/suspense|/genres/horror|/genres/cultural|/genres/africa|/genres/science-fiction-fantasy|/genres/thriller|/genres/mystery-thriller,dir37/7672.Congo.html,99859,Congo +3.88,1203,0545060427,good_reads:book,https://www.goodreads.com/author/show/2130.Gordon_Korman,2008,/genres/mystery|/genres/adventure|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/fantasy|/genres/childrens|/genres/juvenile|/genres/action|/genres/realistic-fiction,dir37/3552023-one-false-note.html,32024,"One False Note (The 39 Clues, #2)" +4.05,1260,,good_reads:book,https://www.goodreads.com/author/show/6540645.Michelle_A_Valentine,2012,/genres/romance|/genres/new-adult|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/music|/genres/adult-fiction|/genres/erotica|/genres/adult|/genres/romance|/genres/erotic-romance|/genres/music|/genres/musicians|/genres/womens-fiction|/genres/chick-lit,dir37/16047244-rock-the-heart.html,23536,"Rock the Heart (Black Falcon, #1)" +4.14,166,1406506583,good_reads:book,https://www.goodreads.com/author/show/228089.Honor_de_Balzac,1843,/genres/classics|/genres/fiction|/genres/european-literature|/genres/french-literature|/genres/literature|/genres/cultural|/genres/france|/genres/literature|/genres/19th-century|/genres/novels|/genres/literary-fiction|/genres/roman|/genres/classics|/genres/classic-literature,dir37/25932.Lost_Illusions.html,3960,Lost Illusions +3.87,791,0439443857,good_reads:book,https://www.goodreads.com/author/show/3502.Alice_Hoffman,2003,/genres/young-adult|/genres/fantasy|/genres/fiction|/genres/young-adult|/genres/teen|/genres/science-fiction|/genres/dystopia|/genres/magical-realism|/genres/science-fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fantasy|/genres/magic|/genres/family,dir37/410615.Green_Angel.html,6869,"Green Angel (Green Angel, #1)" +4.41,3660,0385523904,good_reads:book,https://www.goodreads.com/author/show/785914.Barbara_Demick,2009,/genres/non-fiction|/genres/history|/genres/cultural|/genres/asia|/genres/politics|/genres/book-club|/genres/biography|/genres/travel,dir37/6178648-nothing-to-envy.html,25134,Nothing to Envy +4.28,3153,0062208195,good_reads:book,https://www.goodreads.com/author/show/4637539.Tahereh_Mafi,2010,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/short-stories,dir37/13623150-destroy-me.html,25101,"Destroy Me (Shatter Me, #1.5)" +4.12,384,1597372552,good_reads:book,https://www.goodreads.com/author/show/74046.D_J_MacHale,2003,/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/adventure|/genres/fiction|/genres/science-fiction|/genres/time-travel|/genres/historical-fiction|/genres/childrens|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/young-adult-fantasy,dir37/536982.The_Never_War.html,18288,"The Never War (Pendragon, #3)" +4.02,702,0821780654,good_reads:book,https://www.goodreads.com/author/show/64364.Jacquelyn_Frank,2006,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/fiction|/genres/fantasy|/genres/magic,dir37/111306.Jacob.html,13900,"Jacob (Nightwalkers, #1)" +3.97,467,0553587579,good_reads:book,https://www.goodreads.com/author/show/16667.Isaac_Asimov,1984,/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/classics|/genres/science-fiction|/genres/space-opera,dir37/29582.Foundation_and_Earth.html,28586,"Foundation and Earth (Foundation, #5)" +4.10,952,,good_reads:book,https://www.goodreads.com/author/show/60177.Guy_Gavriel_Kay,2010,/genres/fantasy|/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/china|/genres/science-fiction-fantasy|/genres/cultural|/genres/canada|/genres/cultural|/genres/asia|/genres/fantasy|/genres/epic-fantasy|/genres/adult|/genres/speculative-fiction,dir37/9688286-under-heaven.html,6540,"Under Heaven (Under Heaven, #1)" +4.38,216,142310420X,good_reads:book,https://www.goodreads.com/author/show/33467.Jonathan_Stroud,2006,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/young-adult|/genres/young-adult-fantasy|/genres/fantasy|/genres/magic|/genres/adventure|/genres/science-fiction-fantasy|/genres/humor|/genres/childrens|/genres/kids,dir37/59268.The_Bartimaeus_Trilogy_Boxed_Set.html,3413,"The Bartimaeus Trilogy Boxed Set (Bartimaeus, #1-3)" +3.86,739,0060519592,good_reads:book,https://www.goodreads.com/author/show/13957.Scott_Westerfeld,2005,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/magic|/genres/horror,dir37/24769.Blue_Noon.html,12627,"Blue Noon (Midnighters, #3)" +3.78,419,,good_reads:book,https://www.goodreads.com/author/show/9068.Sidney_Sheldon,1994,/genres/fiction|/genres/thriller|/genres/mystery|/genres/romance|/genres/suspense|/genres/novels|/genres/drama|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery-thriller|/genres/contemporary,dir37/43325.Nothing_Lasts_Forever.html,17425,Nothing Lasts Forever +4.11,558,0312947062,good_reads:book,https://www.goodreads.com/author/show/4430.Sherrilyn_Kenyon,2008,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/mythology|/genres/adult|/genres/paranormal|/genres/demons,dir37/3122173-one-silent-night.html,17928,"One Silent Night (Dark-Hunter, #9)" +4.15,298,0142300608,good_reads:book,https://www.goodreads.com/author/show/32665.David_Clement_Davies,1999,/genres/fantasy|/genres/young-adult|/genres/animals|/genres/fiction|/genres/adventure|/genres/childrens|/genres/animals|/genres/animal-fiction|/genres/science-fiction-fantasy|/genres/young-adult|/genres/young-adult-fantasy|/genres/childrens|/genres/middle-grade,dir37/58087.Fire_Bringer.html,7942,Fire Bringer +4.14,236,0425208915,good_reads:book,https://www.goodreads.com/author/show/17015.P_C_Cast,2006,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/mythology|/genres/greek-mythology|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/womens-fiction|/genres/chick-lit,dir37/30193.Goddess_of_the_Rose.html,4286,"Goddess of the Rose (Goddess Summoning, #4)" +3.88,2488,1402262272,good_reads:book,https://www.goodreads.com/author/show/4506073.Miranda_Kenneally,2011,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/sports-and-games|/genres/sports|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/high-school|/genres/realistic-fiction,dir37/9888775-catching-jordan.html,35022,Catching Jordan +4.20,438,0141183225,good_reads:book,https://www.goodreads.com/author/show/5152.Vladimir_Nabokov,1951,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/biography|/genres/classics|/genres/cultural|/genres/russia|/genres/biography|/genres/autobiography|/genres/literature|/genres/biography-memoir,dir37/30594.Speak_Memory.html,6697,"Speak, Memory" +3.85,374,014240652X,good_reads:book,https://www.goodreads.com/author/show/4106.Pamela_Dean,1991,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/fairy-tales|/genres/young-adult|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/science-fiction-fantasy|/genres/retellings|/genres/fairy-tales|/genres/fairy-tale-retellings|/genres/paranormal|/genres/fairies,dir37/51106.Tam_Lin.html,3710,Tam Lin +3.88,348,0802150616,good_reads:book,https://www.goodreads.com/author/show/3439713.Kenzabur_e,1964,/genres/fiction|/genres/cultural|/genres/japan|/genres/asian-literature|/genres/japanese-literature|/genres/literature|/genres/novels|/genres/nobel-prize|/genres/classics|/genres/contemporary|/genres/cultural|/genres/asia|/genres/literature|/genres/asian-literature,dir37/25191.A_Personal_Matter.html,4420,A Personal Matter +4.08,1223,0375724508,good_reads:book,https://www.goodreads.com/author/show/6538289.David_Mitchell,1999,/genres/fiction|/genres/contemporary|/genres/literature|/genres/fantasy|/genres/literary-fiction|/genres/european-literature|/genres/british-literature|/genres/science-fiction|/genres/mystery|/genres/magical-realism|/genres/novels,dir37/6819.Ghostwritten.html,12557,Ghostwritten +3.76,2290,0689818769,good_reads:book,https://www.goodreads.com/author/show/63095.Andrew_Clements,1996,/genres/realistic-fiction|/genres/childrens|/genres/fiction|/genres/young-adult|/genres/academic|/genres/school|/genres/childrens|/genres/middle-grade|/genres/humor|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/chapter-books,dir37/439173.Frindle.html,64723,Frindle +4.23,124,0345379071,good_reads:book,https://www.goodreads.com/author/show/11586.David_Gemmell,1986,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/heroic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/heroic-fantasy|/genres/sword-and-sorcery|/genres/epic|/genres/science-fiction-fantasy|/genres/novels,dir37/568099.Waylander.html,10053,"Waylander (Drenai Saga, #3)" +4.12,1563,0380800829,good_reads:book,https://www.goodreads.com/author/show/63898.Julia_Quinn,2000,/genres/romance|/genres/historical-romance|/genres/romance|/genres/historical-fiction|/genres/regency|/genres/fiction|/genres/historical-romance|/genres/regency-romance|/genres/adult|/genres/womens-fiction|/genres/chick-lit|/genres/humor|/genres/european-literature|/genres/british-literature,dir37/110391.The_Duke_and_I.html,37427,"The Duke and I (Bridgertons, #1)" +4.32,1112,1849234752,good_reads:book,https://www.goodreads.com/author/show/2958084.Kristen_Ashley,2009,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/romance|/genres/romantic-suspense|/genres/humor|/genres/funny|/genres/womens-fiction|/genres/chick-lit|/genres/adult|/genres/suspense|/genres/humor|/genres/adult-fiction|/genres/erotica,dir37/7405450-rock-chick-rescue.html,17699,"Rock Chick Rescue (Rock Chick, #2)" +3.94,629,0007151667,good_reads:book,https://www.goodreads.com/author/show/123715.Agatha_Christie,1924,/genres/mystery|/genres/fiction|/genres/mystery|/genres/crime|/genres/classics|/genres/mystery|/genres/detective|/genres/thriller|/genres/mystery-thriller|/genres/adventure|/genres/romance|/genres/thriller|/genres/suspense,dir37/209194.The_Man_in_the_Brown_Suit.html,34544,The Man in the Brown Suit +3.85,552,0142001821,good_reads:book,https://www.goodreads.com/author/show/11075.Susan_Vreeland,2001,/genres/fiction|/genres/art|/genres/cultural|/genres/italy|/genres/art|/genres/art-history|/genres/book-club|/genres/historical-fiction|/genres/adult-fiction|/genres/literature|/genres/literature|/genres/17th-century|/genres/novels,dir37/98048.The_Passion_of_Artemisia.html,10250,The Passion of Artemisia +3.87,1039,0373210027,good_reads:book,https://www.goodreads.com/author/show/48192.Gena_Showalter,2009,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/romance|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/ghosts,dir37/6344423-intertwined.html,13812,"Intertwined (Intertwined, #1)" +4.03,331,0671019759,good_reads:book,https://www.goodreads.com/author/show/16961.Linda_Howard,1994,/genres/romance|/genres/romance|/genres/romantic-suspense|/genres/contemporary|/genres/suspense|/genres/romance|/genres/contemporary-romance|/genres/mystery|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/thriller,dir37/72623.Dream_Man.html,11092,Dream Man +4.20,712,0142301515,good_reads:book,https://www.goodreads.com/author/show/12350.Sherwood_Smith,1997,/genres/young-adult|/genres/fantasy|/genres/romance|/genres/young-adult|/genres/young-adult-fantasy|/genres/adventure|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/historical-fiction|/genres/young-adult|/genres/teen,dir37/21060.Crown_Duel.html,15124,Crown Duel (Crown & Court #1-2) +3.99,490,0553293389,good_reads:book,https://www.goodreads.com/author/show/16667.Isaac_Asimov,1982,/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/classics|/genres/science-fiction|/genres/space-opera|/genres/fantasy|/genres/novels|/genres/speculative-fiction|/genres/space|/genres/mystery,dir37/76683.Foundation_s_Edge.html,31356,"Foundation's Edge (Foundation, #4)" +3.69,1333,0446698873,good_reads:book,https://www.goodreads.com/author/show/2887.James_Ellroy,1987,/genres/mystery|/genres/mystery|/genres/crime|/genres/fiction|/genres/mystery|/genres/noir|/genres/thriller|/genres/historical-fiction|/genres/crime|/genres/true-crime|/genres/book-club,dir37/21704.The_Black_Dahlia.html,44267,"The Black Dahlia (L.A. Quartet, #1)" +3.80,177,1841953199,good_reads:book,https://www.goodreads.com/author/show/13792.Howard_Marks,1996,/genres/biography|/genres/non-fiction|/genres/biography|/genres/autobiography|/genres/mystery|/genres/crime|/genres/crime|/genres/true-crime|/genres/autobiography|/genres/memoir|/genres/biography-memoir|/genres/writing|/genres/journalism|/genres/contemporary|/genres/literary-fiction,dir37/230543.Mr_Nice.html,3757,Mr. Nice +3.64,2568,033039780X,good_reads:book,https://www.goodreads.com/author/show/12942.Judy_Blume,1975,/genres/young-adult|/genres/romance|/genres/fiction|/genres/young-adult|/genres/teen|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/realistic-fiction|/genres/young-adult|/genres/coming-of-age|/genres/literature|/genres/banned-books|/genres/classics,dir37/37743.Forever.html,36722,Forever +4.25,575,186046095X,good_reads:book,https://www.goodreads.com/author/show/1285555.Jos_Saramago,1991,/genres/fiction|/genres/religion|/genres/historical-fiction|/genres/literature|/genres/european-literature|/genres/portuguese-literature|/genres/cultural|/genres/portugal|/genres/novels|/genres/nobel-prize|/genres/classics|/genres/magical-realism,dir37/28859.The_Gospel_According_to_Jesus_Christ.html,10206,The Gospel According to Jesus Christ +4.14,740,1400079322,good_reads:book,https://www.goodreads.com/author/show/2313.Louis_de_Berni_res,2004,/genres/fiction|/genres/historical-fiction|/genres/war|/genres/book-club|/genres/literature|/genres/novels|/genres/literary-fiction|/genres/adult-fiction|/genres/european-literature|/genres/british-literature|/genres/contemporary,dir37/3399.Birds_Without_Wings.html,5909,Birds Without Wings +4.15,804,0446612766,good_reads:book,https://www.goodreads.com/author/show/12577.Douglas_Preston,2003,/genres/mystery|/genres/fiction|/genres/horror|/genres/thriller|/genres/mystery-thriller|/genres/suspense|/genres/thriller|/genres/mystery|/genres/crime|/genres/adventure|/genres/mystery|/genres/detective|/genres/fantasy,dir37/39033.Still_Life_With_Crows.html,16962,"Still Life With Crows (Pendergast, #4)" +3.90,1083,0446676438,good_reads:book,https://www.goodreads.com/author/show/3780.James_Patterson,1998,/genres/mystery|/genres/fiction|/genres/thriller|/genres/fantasy|/genres/suspense|/genres/science-fiction|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/crime|/genres/adventure,dir37/13162.When_the_Wind_Blows.html,34450,"When the Wind Blows (When the Wind Blows, #1)" +,None,None,None,None,NA,,dir37/9658936-harry-potter.html,None,None +4.28,632,0826412769,good_reads:book,https://www.goodreads.com/author/show/41108.Paulo_Freire,1967,/genres/education|/genres/philosophy|/genres/non-fiction|/genres/politics|/genres/teaching|/genres/social-movements|/genres/social-justice|/genres/philosophy|/genres/theory|/genres/sociology|/genres/academic|/genres/history,dir37/72657.Pedagogy_of_the_Oppressed.html,10431,Pedagogy of the Oppressed +4.06,873,0142406147,good_reads:book,https://www.goodreads.com/author/show/32590.Anthony_Horowitz,2002,/genres/young-adult|/genres/adventure|/genres/spy-thriller|/genres/espionage|/genres/action|/genres/fiction|/genres/mystery|/genres/thriller|/genres/childrens,dir37/103983.Skeleton_Key.html,26030,"Skeleton Key (Alex Rider, #3)" +4.10,522,0142300276,good_reads:book,https://www.goodreads.com/author/show/50786.Elizabeth_Goudge,1946,/genres/fantasy|/genres/childrens|/genres/fiction|/genres/classics|/genres/young-adult|/genres/childrens|/genres/middle-grade|/genres/historical-fiction|/genres/fantasy|/genres/magic,dir37/420180.The_Little_White_Horse.html,5509,The Little White Horse +4.01,1634,0440228654,good_reads:book,https://www.goodreads.com/author/show/3878.Adeline_Yen_Mah,1999,/genres/non-fiction|/genres/biography|/genres/autobiography|/genres/memoir|/genres/cultural|/genres/china|/genres/academic|/genres/school|/genres/biography|/genres/autobiography|/genres/cultural|/genres/asia|/genres/history|/genres/childrens|/genres/academic|/genres/read-for-school,dir37/82751.Chinese_Cinderella.html,16344,Chinese Cinderella +4.27,802,0880801484,good_reads:book,https://www.goodreads.com/author/show/138426.W_Cleon_Skousen,1981,/genres/politics|/genres/non-fiction|/genres/history|/genres/philosophy|/genres/history|/genres/american-history|/genres/classics|/genres/religion|/genres/politics|/genres/government|/genres/book-club|/genres/politics|/genres/political-science,dir37/1217881.The_5000_Year_Leap.html,4309,The 5000 Year Leap +4.28,265,0060827645,good_reads:book,https://www.goodreads.com/author/show/27498.Erin_Hunter,2006,/genres/fantasy|/genres/animals|/genres/fiction|/genres/young-adult|/genres/animals|/genres/cats|/genres/childrens|/genres/adventure,dir37/252938.Twilight.html,11450,"Twilight (Warriors: The New Prophecy, #5)" +4.01,692,0553381571,good_reads:book,https://www.goodreads.com/author/show/6942.Pat_Conroy,1969,/genres/fiction|/genres/american|/genres/southern|/genres/book-club|/genres/education|/genres/biography-memoir|/genres/teaching|/genres/novels|/genres/literature|/genres/classics|/genres/adult,dir37/129947.The_Water_Is_Wide.html,9918,The Water Is Wide +4.27,555,0192123173,good_reads:book,https://www.goodreads.com/author/show/2448.Arthur_Conan_Doyle,1904,/genres/fiction|/genres/mystery|/genres/crime|/genres/classics|/genres/mystery|/genres/european-literature|/genres/british-literature|/genres/historical-fiction,dir37/194366.The_Return_of_Sherlock_Holmes.html,18952,"The Return of Sherlock Holmes (Sherlock Holmes, #6)" +4.41,1726,1250001544,good_reads:book,https://www.goodreads.com/author/show/4175419.Darynda_Jones,2012,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/mystery|/genres/fantasy|/genres/paranormal|/genres/ghosts|/genres/adult|/genres/paranormal|/genres/demons|/genres/humor,dir37/12043770-third-grave-dead-ahead.html,17725,"Third Grave Dead Ahead (Charley Davidson, #3)" +3.81,418,0156032899,good_reads:book,https://www.goodreads.com/author/show/9399.Jeanette_Winterson,2004,/genres/fiction|/genres/literature|/genres/contemporary|/genres/novels|/genres/glbt|/genres/queer|/genres/glbt|/genres/european-literature|/genres/british-literature|/genres/literary-fiction|/genres/fantasy|/genres/historical-fiction,dir37/15052.Lighthousekeeping.html,4772,Lighthousekeeping +4.17,319,0316000981,good_reads:book,https://www.goodreads.com/author/show/5816.Darren_Shan,2002,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/young-adult|/genres/horror|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/thriller,dir37/8963.Hunters_of_the_Dusk.html,15764,"Hunters of the Dusk (Cirque Du Freak, #7)" +4.19,251,1421501082,good_reads:book,https://www.goodreads.com/author/show/2881050.Ai_Yazawa,2000,/genres/sequential-art|/genres/manga|/genres/romance|/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fiction|/genres/young-adult|/genres/manga|/genres/josei|/genres/manga|/genres/shojo|/genres/drama|/genres/music,dir37/98413.Nana_Vol_1.html,19146,"Nana, Vol. 1 (Nana, #1)" +4.12,1808,,good_reads:book,https://www.goodreads.com/author/show/4930653.Raine_Miller,2012,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/erotic-romance|/genres/adult|/genres/contemporary|/genres/erotica|/genres/bdsm|/genres/romance|/genres/contemporary-romance|/genres/sociology|/genres/abuse|/genres/suspense|/genres/fiction,dir37/16001443-all-in.html,37983,"All In (The Blackstone Affair, #2)" +3.70,10801,0446563080,good_reads:book,https://www.goodreads.com/author/show/169377.Seth_Grahame_Smith,2010,/genres/fiction|/genres/fantasy|/genres/historical-fiction|/genres/horror|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/book-club|/genres/humor|/genres/adult,dir37/7108001-abraham-lincoln.html,96784,Abraham Lincoln +4.31,260,0060827696,good_reads:book,https://www.goodreads.com/author/show/27498.Erin_Hunter,2006,/genres/fantasy|/genres/animals|/genres/fiction|/genres/animals|/genres/cats|/genres/young-adult|/genres/childrens|/genres/adventure,dir37/197459.Sunset.html,14501,"Sunset (Warriors: The New Prophecy, #6)" +4.08,385,0380385880,good_reads:book,https://www.goodreads.com/author/show/88445.Kathleen_E_Woodiwiss,1977,/genres/romance|/genres/romance|/genres/historical-romance|/genres/historical-fiction|/genres/fiction|/genres/adult|/genres/regency|/genres/adventure|/genres/pirates|/genres/womens-fiction|/genres/chick-lit|/genres/literature|/genres/18th-century|/genres/love,dir37/896621.Shanna.html,6362,Shanna +3.96,346,0140077030,good_reads:book,https://www.goodreads.com/author/show/27500.Angela_Carter,1984,/genres/fiction|/genres/fantasy|/genres/magical-realism|/genres/historical-fiction|/genres/literature|/genres/classics|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/feminism|/genres/contemporary,dir37/653651.Nights_at_the_Circus.html,4775,Nights at the Circus +3.81,1077,0385333137,good_reads:book,https://www.goodreads.com/author/show/3500.Anna_Quindlen,1998,/genres/fiction|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/adult-fiction|/genres/drama|/genres/novels|/genres/book-club|/genres/sociology|/genres/abuse|/genres/adult|/genres/suspense,dir37/5157.Black_and_Blue.html,51697,Black and Blue +4.10,1904,038561926X,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,2011,/genres/fantasy|/genres/fiction|/genres/humor|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny,dir37/8785374-snuff.html,22493,"Snuff (Discworld, #39)" +4.19,3496,0061996181,good_reads:book,https://www.goodreads.com/author/show/3290920.Cynthia_Hand,2012,/genres/paranormal|/genres/angels|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/young-adult|/genres/young-adult-paranormal,dir37/11563110-hallowed.html,41779,"Hallowed (Unearthly, #2)" +4.42,1468,,good_reads:book,https://www.goodreads.com/author/show/7139136.Penelope_Douglas,2013,/genres/new-adult|/genres/romance|/genres/contemporary|/genres/young-adult|/genres/romance|/genres/contemporary-romance|/genres/sociology|/genres/abuse|/genres/young-adult|/genres/high-school|/genres/drama|/genres/love|/genres/adult-fiction|/genres/erotica,dir37/20803962-until-you.html,15597,"Until You (Fall Away, #1.5)" +3.59,1805,0312315732,good_reads:book,https://www.goodreads.com/author/show/15907.Tom_Perrotta,2004,/genres/fiction|/genres/book-club|/genres/contemporary|/genres/adult-fiction|/genres/novels|/genres/adult|/genres/literary-fiction,dir37/37426.Little_Children.html,21848,Little Children +3.68,637,0345405137,good_reads:book,https://www.goodreads.com/author/show/9355.Dean_Koontz,1991,/genres/horror|/genres/fiction|/genres/thriller|/genres/mystery|/genres/suspense|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/detective,dir37/281433.Tick_Tock.html,21915,Tick Tock +4.34,3600,0307267148,good_reads:book,https://www.goodreads.com/author/show/60441.Nicholas_D_Kristof,2008,/genres/non-fiction|/genres/feminism|/genres/book-club|/genres/womens|/genres/politics|/genres/social-movements|/genres/social-justice|/genres/sociology|/genres/cultural|/genres/africa|/genres/gender|/genres/education,dir37/6260997-half-the-sky.html,25818,Half the Sky +4.10,143,1416927077,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2002,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/mystery|/genres/young-adult|/genres/teen|/genres/womens-fiction|/genres/chick-lit|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/young-adult|/genres/young-adult-paranormal,dir37/199781.Sanctuary.html,8161,"Sanctuary (1-800-Where-R-You, #4)" +3.58,1116,0312629176,good_reads:book,https://www.goodreads.com/author/show/200317.Alyson_Noel,2010,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/ghosts|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/angels|/genres/romance|/genres/childrens|/genres/middle-grade|/genres/fantasy|/genres/magic,dir37/7886302-radiance.html,10760,"Radiance (Riley Bloom, #1)" +4.33,230,1574882864,good_reads:book,https://www.goodreads.com/author/show/59053.Guy_Sajer,1967,/genres/history|/genres/war|/genres/non-fiction|/genres/war|/genres/military|/genres/history|/genres/world-war-ii|/genres/military|/genres/military-history|/genres/biography|/genres/autobiography|/genres/memoir|/genres/cultural|/genres/germany|/genres/biography|/genres/autobiography,dir37/102305.The_Forgotten_Soldier.html,4084,The Forgotten Soldier +3.89,4349,0307932230,good_reads:book,https://www.goodreads.com/author/show/2384.Janet_Evanovich,2011,/genres/mystery|/genres/fiction|/genres/humor|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/humor|/genres/funny|/genres/mystery|/genres/crime|/genres/humor|/genres/comedy,dir37/9583508-smokin-seventeen.html,47356,"Smokin' Seventeen (Stephanie Plum, #17)" +4.31,90,0151904707,good_reads:book,https://www.goodreads.com/author/show/4116.Erich_Maria_Remarque,1954,/genres/classics|/genres/fiction|/genres/war|/genres/european-literature|/genres/german-literature|/genres/historical-fiction|/genres/novels|/genres/history|/genres/world-war-ii|/genres/cultural|/genres/germany,dir37/132749.A_Time_to_Love_and_a_Time_to_Die.html,3638,A Time to Love and a Time to Die +3.50,1659,0670061107,good_reads:book,https://www.goodreads.com/author/show/2987.Sarah_Dessen,1996,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/young-adult-contemporary|/genres/young-adult|/genres/coming-of-age|/genres/young-adult|/genres/high-school,dir37/104379.That_Summer.html,35435,That Summer +4.04,23,,good_reads:book,https://www.goodreads.com/author/show/6916215.Karena_Marie,2013,/genres/romance|/genres/adult-fiction|/genres/erotica,dir37/17313873-the-happy-spinster.html,68,The Happy Spinster +3.91,481,0689863624,good_reads:book,https://www.goodreads.com/author/show/7540.Cynthia_Voigt,1982,/genres/young-adult|/genres/fiction|/genres/realistic-fiction|/genres/childrens|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/middle-grade|/genres/young-adult|/genres/coming-of-age|/genres/family|/genres/young-adult|/genres/teen|/genres/academic|/genres/school,dir37/11831.Dicey_s_Song.html,12404,"Dicey's Song (Tillerman Cycle, #2)" +3.98,221,0449220605,good_reads:book,https://www.goodreads.com/author/show/31845.Marge_Piercy,1991,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/feminism|/genres/speculative-fiction|/genres/science-fiction-fantasy|/genres/romance|/genres/literature|/genres/jewish,dir37/788331.He_She_and_It.html,2756,"He, She and It" +3.91,1010,0373210302,good_reads:book,https://www.goodreads.com/author/show/4556932.Cara_Lynn_Shultz,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/magic|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/young-adult-paranormal,dir37/10118172-spellbound.html,9583,"Spellbound (Spellbound, #1)" +4.20,2230,1419702238,good_reads:book,https://www.goodreads.com/author/show/221559.Jeff_Kinney,2011,/genres/realistic-fiction|/genres/fiction|/genres/humor|/genres/funny|/genres/childrens|/genres/humor|/genres/comedy|/genres/childrens|/genres/middle-grade|/genres/sequential-art|/genres/graphic-novels|/genres/diary|/genres/humor|/genres/childrens|/genres/juvenile,dir37/11254250-cabin-fever.html,40880,"Cabin Fever (Diary of a Wimpy Kid, #6)" +4.17,2059,0205313426,good_reads:book,https://www.goodreads.com/author/show/6437238.William_Strunk_Jr_,1918,/genres/language|/genres/writing|/genres/non-fiction|/genres/reference|/genres/humanities|/genres/language|/genres/classics|/genres/education|/genres/academic|/genres/school|/genres/self-help|/genres/teaching|/genres/how-to,dir37/33514.The_Elements_of_Style.html,41846,The Elements of Style +3.99,1139,0525421556,good_reads:book,https://www.goodreads.com/author/show/2889003.Nina_LaCour,2009,/genres/young-adult|/genres/contemporary|/genres/realistic-fiction|/genres/fiction|/genres/young-adult|/genres/teen|/genres/romance|/genres/death|/genres/mental-health|/genres/mental-illness|/genres/health|/genres/mental-health|/genres/drama,dir37/6373717-hold-still.html,13380,Hold Still +4.11,478,0886773687,good_reads:book,https://www.goodreads.com/author/show/59060.John_Steakley,1984,/genres/science-fiction|/genres/fiction|/genres/war|/genres/military|/genres/fantasy|/genres/science-fiction-fantasy|/genres/war|/genres/science-fiction|/genres/military-science-fiction|/genres/novels|/genres/science-fiction|/genres/space-opera|/genres/action,dir37/102327.Armor.html,9516,Armor +4.39,1634,,good_reads:book,https://www.goodreads.com/author/show/6574132.R_K_Lilley,2013,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/contemporary-romance|/genres/new-adult|/genres/contemporary|/genres/adult|/genres/erotica|/genres/bdsm|/genres/romance|/genres/erotic-romance,dir37/17377032-bad-things.html,16495,"Bad Things (Tristan & Danika, #1)" +4.45,537,1563891069,good_reads:book,https://www.goodreads.com/author/show/1221698.Neil_Gaiman,1993,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fantasy|/genres/fiction|/genres/graphic-novels-comics|/genres/horror|/genres/comics|/genres/comic-book|/genres/fantasy|/genres/mythology,dir37/25106.The_Sandman_Vol_6.html,28693,"The Sandman, Vol. 6 (The Sandman #6)" +4.28,1051,0142004413,good_reads:book,https://www.goodreads.com/author/show/26957.Gerald_Durrell,1956,/genres/non-fiction|/genres/biography|/genres/autobiography|/genres/memoir|/genres/humor|/genres/animals|/genres/classics|/genres/travel|/genres/environment|/genres/nature|/genres/biography|/genres/autobiography|/genres/cultural|/genres/greece,dir37/48132.My_Family_and_Other_Animals.html,14417,"My Family and Other Animals (Corfu Trilogy, #1)" +4.41,323,0525444475,good_reads:book,https://www.goodreads.com/author/show/81466.A_A_Milne,1926,/genres/childrens|/genres/classics|/genres/fiction|/genres/fantasy|/genres/childrens|/genres/picture-books|/genres/childrens|/genres/juvenile|/genres/literature|/genres/young-adult|/genres/short-stories|/genres/animals,dir37/99111.The_World_of_Winnie_the_Pooh.html,26787,The World of Winnie-the-Pooh +4.26,294,0385720254,good_reads:book,https://www.goodreads.com/author/show/4379.Sylvia_Plath,2000,/genres/non-fiction|/genres/poetry|/genres/biography|/genres/autobiography|/genres/memoir|/genres/classics|/genres/biography|/genres/autobiography|/genres/mental-health|/genres/mental-illness|/genres/biography-memoir|/genres/diary|/genres/journal|/genres/diary,dir37/11623.The_Unabridged_Journals_of_Sylvia_Plath.html,9183,The Unabridged Journals of Sylvia Plath +3.94,7,0981734227,good_reads:book,https://www.goodreads.com/author/show/4577916.Macel_Ely_II,2010,/genres/music|/genres/history|/genres/biography,dir37/10757346-ain-t-no-grave.html,16,Ain't No Grave +4.53,9,,good_reads:book,https://www.goodreads.com/author/show/6440482.Jessica_Smith,2012,,dir37/15745506-the-oaks.html,19,"The Oaks (Royal Oaks, #1)" +3.71,517,,good_reads:book,https://www.goodreads.com/author/show/40416.Am_lie_Nothomb,1999,/genres/cultural|/genres/france|/genres/contemporary|/genres/european-literature|/genres/french-literature|/genres/literature|/genres/novels,dir37/71458.Stupeur_et_tremblements.html,7751,Stupeur et tremblements +4.02,215,0991723104,good_reads:book,https://www.goodreads.com/author/show/6833834.Sarah_Ann_Walker,2012,/genres/dark|/genres/romance|/genres/contemporary|/genres/sociology|/genres/abuse|/genres/fiction|/genres/romance|/genres/contemporary-romance|/genres/mental-health|/genres/mental-illness|/genres/adult|/genres/adult-fiction|/genres/erotica|/genres/suspense,dir37/17081593-i-am-her.html,607,"I Am Her... (I Am Her..., #1)" +3.77,331,037321054X,good_reads:book,https://www.goodreads.com/author/show/5386283.Karen_Ann_Hopkins,2012,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/realistic-fiction|/genres/romance|/genres/contemporary-romance|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/young-adult|/genres/young-adult-contemporary|/genres/category-romance|/genres/harlequin|/genres/young-adult|/genres/young-adult-romance,dir37/13223243-temptation.html,1222,"Temptation (Temptation, #1)" +4.21,19,0615801617,good_reads:book,https://www.goodreads.com/author/show/5366587.Amber_Lea_Easton,2013,/genres/romance|/genres/romantic-suspense|/genres/contemporary|/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/suspense|/genres/war|/genres/military|/genres/thriller|/genres/mystery,dir37/17796115-reckless-endangerment.html,182,Reckless Endangerment +4.03,1017,,good_reads:book,https://www.goodreads.com/author/show/7776521.Jason_Luke,2014,/genres/erotica|/genres/bdsm|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/adult|/genres/contemporary|/genres/romance|/genres/erotic-romance,dir37/20569957-interview-with-a-master.html,3920,"Interview with a Master (Interview with a Master, #1)" +4.44,21,,good_reads:book,https://www.goodreads.com/author/show/8073005.Jamie_A_Waters,2014,/genres/science-fiction|/genres/romance|/genres/science-fiction|/genres/dystopia,dir37/21520185-the-two-towers.html,39,The Two Towers (The Two Towers series) +4.40,52,,good_reads:book,https://www.goodreads.com/author/show/7086694.Bev_Stout,2013,/genres/historical-fiction|/genres/young-adult|/genres/coming-of-age|/genres/childrens|/genres/middle-grade|/genres/young-adult|/genres/action|/genres/adventure|/genres/pirates|/genres/adventure|/genres/young-adult|/genres/young-adult-historical-fiction,dir37/19183499-secrets-of-the-realm.html,172,Secrets of the Realm +4.39,281,0842356290,good_reads:book,https://www.goodreads.com/author/show/3159984.Karen_Kingsbury,2003,/genres/christian-fiction|/genres/christian|/genres/fiction|/genres/romance|/genres/inspirational|/genres/romance|/genres/christian-romance|/genres/drama|/genres/adult-fiction|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit,dir37/35332.Remember.html,12741,"Remember (Redemption, #2)" +3.69,24,,good_reads:book,https://www.goodreads.com/author/show/4564292.Joseph_Rinaldo,2010,/genres/fiction,dir37/8928799-a-spy-at-home.html,35,A Spy at Home +4.14,339,0345335708,good_reads:book,https://www.goodreads.com/author/show/8732.David_Eddings,1984,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/adventure|/genres/epic|/genres/science-fiction,dir37/645023.Castle_of_Wizardry.html,42795,"Castle of Wizardry (The Belgariad, #4)" +3.99,15,1483947823,good_reads:book,https://www.goodreads.com/author/show/6981057.Donna_K_Childree,2013,/genres/young-adult,dir37/17792558-the-wayward-gifted.html,74,"The Wayward Gifted (The Wayward Gifted, #1)" +4.13,550,0805081089,good_reads:book,https://www.goodreads.com/author/show/82467.Clare_B_Dunkle,2003,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/magic|/genres/fiction|/genres/fantasy|/genres/fairy-tales|/genres/historical-fiction|/genres/young-adult|/genres/young-adult-fantasy|/genres/adventure|/genres/paranormal|/genres/fairies,dir38/142776.The_Hollow_Kingdom.html,6003,"The Hollow Kingdom (The Hollow Kingdom Trilogy, #1)" +3.78,219,0679741925,good_reads:book,https://www.goodreads.com/author/show/3535.William_Faulkner,1962,/genres/fiction|/genres/classics|/genres/literature|/genres/historical-fiction|/genres/novels|/genres/american|/genres/southern|/genres/literature|/genres/american|/genres/humor|/genres/literary-fiction|/genres/nobel-prize,dir38/210825.The_Reivers.html,3824,The Reivers +3.95,324,0230704581,good_reads:book,https://www.goodreads.com/author/show/57462.Eva_Ibbotson,2008,/genres/historical-fiction|/genres/young-adult|/genres/childrens|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/childrens|/genres/middle-grade|/genres/history|/genres/world-war-ii|/genres/academic|/genres/school|/genres/war,dir38/2544359.The_Dragonfly_Pool.html,2356,The Dragonfly Pool +4.00,775,0812974417,good_reads:book,https://www.goodreads.com/author/show/9494.H_P_Lovecraft,1936,/genres/fiction|/genres/science-fiction|/genres/classics|/genres/fantasy|/genres/short-stories|/genres/horror|/genres/lovecraftian|/genres/literature|/genres/american|/genres/novels|/genres/literature|/genres/adventure,dir38/32767.At_the_Mountains_of_Madness.html,10762,At the Mountains of Madness +3.83,955,0060735457,good_reads:book,https://www.goodreads.com/author/show/16218.Christopher_Moore,1999,/genres/humor|/genres/fiction|/genres/fantasy|/genres/humor|/genres/comedy|/genres/humor|/genres/funny|/genres/fantasy|/genres/urban-fantasy|/genres/contemporary|/genres/adult|/genres/fantasy|/genres/paranormal|/genres/literary-fiction,dir38/33458.The_Lust_Lizard_of_Melancholy_Cove.html,21339,The Lust Lizard of Melancholy Cove +4.09,368,0425174409,good_reads:book,https://www.goodreads.com/author/show/92881.Helen_Hooven_Santmyer,1982,/genres/fiction|/genres/historical-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/classics|/genres/book-club|/genres/adult-fiction|/genres/novels|/genres/adult|/genres/contemporary|/genres/literature,dir38/576666.And_Ladies_of_the_Club.html,7753,And Ladies of the Club +3.65,1601,1400079497,good_reads:book,https://www.goodreads.com/author/show/463.Philip_Roth,2004,/genres/historical-fiction|/genres/science-fiction|/genres/alternate-history|/genres/fiction|/genres/book-club|/genres/literature|/genres/literature|/genres/american|/genres/novels|/genres/literature|/genres/jewish|/genres/literary-fiction|/genres/war,dir38/703.The_Plot_Against_America.html,20513,The Plot Against America +4.10,289,0345421450,good_reads:book,https://www.goodreads.com/author/show/1567394.Matthew_Woodring_Stover,1998,/genres/fantasy|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/dark-fantasy|/genres/fantasy|/genres/epic-fantasy,dir38/311864.Heroes_Die.html,4452,"Heroes Die (The Acts of Caine, #1)" +3.61,503,0061059919,good_reads:book,https://www.goodreads.com/author/show/50873.L_J_Smith,1991,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy,dir38/1169808.The_Fury.html,17172,"The Fury (The Vampire Diaries, #3)" +3.54,1293,0316002925,good_reads:book,https://www.goodreads.com/author/show/3780.James_Patterson,2007,/genres/young-adult|/genres/science-fiction|/genres/fantasy|/genres/fiction|/genres/science-fiction|/genres/aliens|/genres/adventure|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/paranormal|/genres/action|/genres/fantasy|/genres/supernatural,dir38/2235597.The_Dangerous_Days_of_Daniel_X.html,11649,"The Dangerous Days of Daniel X (Daniel X, #1)" +3.77,155,041330860X,good_reads:book,https://www.goodreads.com/author/show/5228.Jean_Anouilh,1944,/genres/plays|/genres/classics|/genres/cultural|/genres/france|/genres/drama|/genres/plays|/genres/theatre|/genres/academic|/genres/school|/genres/fiction|/genres/academic|/genres/read-for-school|/genres/literature|/genres/european-literature|/genres/french-literature,dir38/352383.Antigone.html,7618,Antigone +4.03,628,1569472025,good_reads:book,https://www.goodreads.com/author/show/10917.Stephen_Fry,1997,/genres/non-fiction|/genres/biography|/genres/biography|/genres/autobiography|/genres/autobiography|/genres/memoir|/genres/humor|/genres/european-literature|/genres/british-literature|/genres/glbt|/genres/humor|/genres/comedy|/genres/humor|/genres/funny|/genres/biography-memoir,dir38/66857.Moab_Is_My_Washpot.html,11115,Moab Is My Washpot +4.93,7,1781843457,good_reads:book,https://www.goodreads.com/author/show/5014793.Chris_Lange,2013,/genres/fantasy|/genres/romance|/genres/suspense|/genres/adventure|/genres/romance|/genres/fantasy-romance,dir38/18080358-blade-heart.html,15,Blade Heart +3.90,2106,0743418735,good_reads:book,https://www.goodreads.com/author/show/7128.Jodi_Picoult,2002,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/drama|/genres/adult-fiction|/genres/adult|/genres/mystery|/genres/mystery|/genres/crime|/genres/family|/genres/realistic-fiction,dir38/111180.Perfect_Match.html,40995,Perfect Match +4.13,1243,0446675504,good_reads:book,https://www.goodreads.com/author/show/29535.Octavia_E_Butler,1993,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/dystopia|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fantasy|/genres/speculative-fiction|/genres/science-fiction-fantasy|/genres/cultural|/genres/african-american|/genres/religion|/genres/book-club,dir38/52397.Parable_of_the_Sower.html,15300,"Parable of the Sower (Earthseed, #1)" +4.05,352,0345371135,good_reads:book,https://www.goodreads.com/author/show/130272.Charles_Palliser,1989,/genres/fiction|/genres/historical-fiction|/genres/mystery|/genres/gothic|/genres/literature|/genres/19th-century|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/thriller|/genres/mystery-thriller|/genres/literary-fiction,dir38/824986.The_Quincunx.html,3616,The Quincunx +4.26,298,0345494571,good_reads:book,https://www.goodreads.com/author/show/11586.David_Gemmell,2005,/genres/fantasy|/genres/historical-fiction|/genres/fiction|/genres/fantasy|/genres/mythology|/genres/war|/genres/fantasy|/genres/epic-fantasy|/genres/epic|/genres/adventure|/genres/war|/genres/military|/genres/fantasy|/genres/heroic-fantasy,dir38/257149.Lord_of_the_Silver_Bow.html,6550,"Lord of the Silver Bow (Troy, #1)" +4.17,2414,1434768511,good_reads:book,https://www.goodreads.com/author/show/1362751.Francis_Chan,2008,/genres/christian|/genres/non-fiction|/genres/religion|/genres/christianity|/genres/religion|/genres/faith|/genres/religion|/genres/religion|/genres/theology|/genres/spirituality,dir38/3206011-crazy-love.html,64275,Crazy Love +4.25,607,080508052X,good_reads:book,https://www.goodreads.com/author/show/8924.Lloyd_Alexander,1968,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/adventure|/genres/classics|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/middle-grade,dir38/24781.The_High_King.html,30400,The High King (The Chronicles of Prydain #5) +4.44,26,2259191746,good_reads:book,https://www.goodreads.com/author/show/57294.Maurice_Druon,1955,/genres/historical-fiction|/genres/cultural|/genres/france|/genres/classics|/genres/fiction|/genres/roman|/genres/european-literature|/genres/french-literature|/genres/literature|/genres/20th-century|/genres/literature|/genres/literature|/genres/14th-century|/genres/suspense,dir38/2653762-les-rois-maudits-vols-1-7.html,764,Les rois maudits Vols 1-7 +4.09,308,,good_reads:book,https://www.goodreads.com/author/show/32807.Romain_Gary,1975,/genres/cultural|/genres/france|/genres/novels|/genres/fiction|/genres/european-literature|/genres/french-literature|/genres/literature|/genres/classics|/genres/roman|/genres/academic|/genres/school|/genres/contemporary|/genres/literature|/genres/20th-century,dir38/416775._.html,4392,زندگی در پیش‌رو +4.18,1121,0312351666,good_reads:book,https://www.goodreads.com/author/show/27847.Lisa_Kleypas,2009,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/adult|/genres/fiction|/genres/humor|/genres/funny|/genres/love|/genres/romantic|/genres/romance|/genres/historical-romance,dir38/4066312-smooth-talking-stranger.html,22432,"Smooth Talking Stranger (Travises, #3)" +4.39,52,0865471975,good_reads:book,https://www.goodreads.com/author/show/8567.Wendell_Berry,1985,/genres/poetry|/genres/environment|/genres/nature|/genres/non-fiction|/genres/literature|/genres/american|/genres/southern|/genres/literature|/genres/american|/genres/biology|/genres/ecology|/genres/classics,dir38/76729.The_Collected_Poems_1957_1982.html,1240,"The Collected Poems, 1957-1982" +4.04,674,0374299218,good_reads:book,https://www.goodreads.com/author/show/2922229.Andr_Aciman,2007,/genres/fiction|/genres/glbt|/genres/glbt|/genres/gay|/genres/romance|/genres/glbt|/genres/queer|/genres/romance|/genres/m-m-romance|/genres/contemporary|/genres/young-adult|/genres/coming-of-age,dir38/98687.Call_Me_by_Your_Name.html,5441,Call Me by Your Name +4.11,1221,0140501827,good_reads:book,https://www.goodreads.com/author/show/29671.Ezra_Jack_Keats,1962,/genres/childrens|/genres/picture-books|/genres/childrens|/genres/fiction|/genres/classics|/genres/realistic-fiction|/genres/cultural|/genres/cultural|/genres/african-american|/genres/childrens|/genres/storytime|/genres/kids|/genres/childrens|/genres/juvenile,dir38/310258.The_Snowy_Day.html,59629,The Snowy Day +4.00,285,0689860064,good_reads:book,https://www.goodreads.com/author/show/26.Anne_McCaffrey,1979,/genres/fantasy|/genres/science-fiction|/genres/fantasy|/genres/dragons|/genres/fiction|/genres/science-fiction-fantasy|/genres/young-adult,dir38/28553.Dragondrums.html,21724,"Dragondrums (Harper Hall, #3)" +4.46,117,0755327144,good_reads:book,https://www.goodreads.com/author/show/81961.Harry_Thompson,2005,/genres/historical-fiction|/genres/fiction|/genres/adventure|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/modern|/genres/religion,dir38/142050.This_Thing_of_Darkness.html,787,This Thing of Darkness +3.75,444,0312254997,good_reads:book,https://www.goodreads.com/author/show/3299.Salman_Rushdie,1999,/genres/fiction|/genres/cultural|/genres/india|/genres/magical-realism|/genres/literature|/genres/music|/genres/romance|/genres/contemporary|/genres/literary-fiction|/genres/asian-literature|/genres/indian-literature|/genres/novels,dir38/9864.The_Ground_Beneath_Her_Feet.html,7591,The Ground Beneath Her Feet +3.92,474,0312265050,good_reads:book,https://www.goodreads.com/author/show/7927.Norman_Mailer,1948,/genres/war|/genres/historical-fiction|/genres/literature|/genres/novels|/genres/classics|/genres/war|/genres/military|/genres/literature|/genres/american|/genres/literature|/genres/banned-books|/genres/literary-fiction,dir38/12467.The_Naked_and_the_Dead.html,15292,The Naked and the Dead +3.97,436,0809260956,good_reads:book,https://www.goodreads.com/author/show/7316981.S_seki_Natsume,1914,/genres/cultural|/genres/japan|/genres/fiction|/genres/asian-literature|/genres/japanese-literature|/genres/classics|/genres/literature|/genres/novels|/genres/cultural|/genres/asia|/genres/literature|/genres/asian-literature|/genres/literature|/genres/20th-century|/genres/historical-fiction,dir38/762476.Kokoro.html,5998,Kokoro +3.88,343,0439845823,good_reads:book,https://www.goodreads.com/author/show/179712.Chris_d_Lacey,2005,/genres/fantasy|/genres/fantasy|/genres/dragons|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/magic|/genres/childrens|/genres/adventure|/genres/science-fiction-fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/childrens|/genres/middle-grade,dir38/551536.Fire_Star.html,10537,"Fire Star (The Last Dragon Chronicles, #3)" +4.18,197,1934169005,good_reads:book,https://www.goodreads.com/author/show/13661.Victor_Hugo,1860,/genres/fiction|/genres/cultural|/genres/france|/genres/european-literature|/genres/french-literature|/genres/classics|/genres/historical-fiction|/genres/literature|/genres/novels|/genres/literature|/genres/19th-century|/genres/romance,dir38/63038.The_Man_Who_Laughs.html,4122,The Man Who Laughs +3.77,82,1426891431,good_reads:book,https://www.goodreads.com/author/show/4564349.Amanda_E_Alvarez,2011,/genres/romance|/genres/paranormal-romance|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/shapeshifters|/genres/animals|/genres/wolves|/genres/fantasy|/genres/supernatural|/genres/suspense|/genres/fantasy|/genres/fiction,dir38/10147914-hunting-human.html,247,"Hunting Human (Prime Legacy, #1)" +4.17,1801,0425241505,good_reads:book,https://www.goodreads.com/author/show/4443809.Thea_Harrison,2011,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/dragons|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/shapeshifters|/genres/fantasy|/genres/magic|/genres/adult|/genres/fairies|/genres/fae,dir38/9637479-dragon-bound.html,19871,"Dragon Bound (Elder Races, #1)" +3.99,3085,0312649614,good_reads:book,https://www.goodreads.com/author/show/338705.Catherynne_M_Valente,2011,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/fantasy|/genres/fairy-tales|/genres/science-fiction-fantasy,dir38/9591398-the-girl-who-circumnavigated-fairyland-in-a-ship-of-her-own-making.html,15870,"The Girl Who Circumnavigated Fairyland in a Ship of Her Own Making (Fairyland, #1)" +3.71,805,1416953558,good_reads:book,https://www.goodreads.com/author/show/363405.Elizabeth_Scott,2008,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/high-school|/genres/fiction|/genres/young-adult|/genres/young-adult-romance|/genres/young-adult|/genres/young-adult-contemporary,dir38/1754206.Perfect_You.html,17522,Perfect You +4.19,288,0316106534,good_reads:book,https://www.goodreads.com/author/show/5816.Darren_Shan,2002,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/young-adult|/genres/horror|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/thriller,dir38/8966.Allies_of_the_Night.html,15180,"Allies of the Night (Cirque du Freak, #8)" +3.95,556,0060595183,good_reads:book,https://www.goodreads.com/author/show/3487.Aldous_Huxley,1956,/genres/philosophy|/genres/non-fiction|/genres/psychology|/genres/classics|/genres/writing|/genres/essays|/genres/spirituality|/genres/religion|/genres/literature|/genres/science|/genres/european-literature|/genres/british-literature,dir38/5128.The_Doors_of_Perception_Heaven_and_Hell.html,19241,The Doors of Perception & Heaven and Hell +2.00,368,0983650322,good_reads:book,https://www.goodreads.com/author/show/9414.Victoria_Foyt,2011,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/romance|/genres/science-fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fiction|/genres/young-adult|/genres/teen|/genres/adventure|/genres/young-adult|/genres/young-adult-fantasy,dir38/12393909-revealing-eden.html,688,"Revealing Eden (Save the Pearls, #1)" +4.13,1112,0439706408,good_reads:book,https://www.goodreads.com/author/show/5951.Jeff_Smith,1993,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fantasy|/genres/fiction|/genres/adventure|/genres/young-adult|/genres/humor|/genres/childrens,dir38/106134.Bone_Vol_1.html,39869,"Bone, Vol. 1 (Bone, #1)" +4.10,1998,1480114480,good_reads:book,https://www.goodreads.com/author/show/6546441.Katie_Ashley,2012,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/adult|/genres/adult-fiction|/genres/erotica|/genres/womens-fiction|/genres/chick-lit|/genres/new-adult|/genres/romance|/genres/erotic-romance|/genres/humor|/genres/funny|/genres/adult-fiction,dir38/16062211-the-proposition.html,36641,"The Proposition (The Proposition, #1)" +4.00,104,0989121879,good_reads:book,https://www.goodreads.com/author/show/6889132.B_Kristin_McMichael,2014,/genres/young-adult|/genres/science-fiction|/genres/time-travel|/genres/fantasy|/genres/romance|/genres/science-fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/academic|/genres/college|/genres/fantasy|/genres/magic|/genres/romance|/genres/paranormal-romance,dir38/20512062-carnelian.html,209,"Carnelian (Chalcedony Chronicles, #1)" +3.95,1243,0553588249,good_reads:book,https://www.goodreads.com/author/show/9355.Dean_Koontz,2000,/genres/horror|/genres/fiction|/genres/thriller|/genres/mystery|/genres/suspense|/genres/fantasy|/genres/thriller|/genres/mystery-thriller|/genres/humor|/genres/fantasy|/genres/paranormal|/genres/adult-fiction,dir38/16435.Life_Expectancy.html,21036,Life Expectancy +4.31,267,006089217X,good_reads:book,https://www.goodreads.com/author/show/27498.Erin_Hunter,2009,/genres/fantasy|/genres/animals|/genres/fiction|/genres/animals|/genres/cats|/genres/young-adult|/genres/childrens|/genres/adventure|/genres/animals|/genres/animal-fiction|/genres/childrens|/genres/middle-grade|/genres/kids,dir38/5269697-sunrise.html,7553,"Sunrise (Warriors: Power of Three, #6)" +3.80,269,0140436146,good_reads:book,https://www.goodreads.com/author/show/239579.Charles_Dickens,1844,/genres/classics|/genres/fiction|/genres/literature|/genres/19th-century|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/english-literature,dir38/1990.Martin_Chuzzlewit.html,8567,Martin Chuzzlewit +3.66,630,0451460758,good_reads:book,https://www.goodreads.com/author/show/121825.Rob_Thurman,2006,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/demons|/genres/horror|/genres/adult|/genres/shapeshifters|/genres/werewolves,dir38/421007.Nightlife.html,8475,Nightlife (Cal Leandros #1) +4.58,2,,good_reads:book,https://www.goodreads.com/author/show/234088.Jay_Lake,2010,/genres/science-fiction|/genres/steampunk|/genres/fiction|/genres/science-fiction|/genres/alternate-history,dir38/9452244-the-baby-killers.html,24,The Baby Killers +4.36,56,,good_reads:book,https://www.goodreads.com/author/show/7701589.Angie_Martin,2014,/genres/mystery|/genres/thriller|/genres/fiction,dir38/20986629-conduit.html,129,Conduit +3.42,2958,0060747226,good_reads:book,https://www.goodreads.com/author/show/7025.Gregory_Maguire,2005,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/fairy-tales|/genres/science-fiction-fantasy|/genres/adult|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/witches|/genres/adult-fiction|/genres/adventure|/genres/novels,dir38/13521.Son_of_a_Witch.html,43782,Son of a Witch (The Wicked Years #2) +4.42,61,0451211243,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,2002,/genres/fantasy|/genres/fiction|/genres/horror|/genres/science-fiction|/genres/fantasy|/genres/epic-fantasy|/genres/anthologies|/genres/collections|/genres/science-fiction|/genres/dystopia,dir38/5092.Dark_Towers_Boxed_Set.html,2921,Dark Towers Boxed Set +4.05,613,0425134350,good_reads:book,https://www.goodreads.com/author/show/3892.Tom_Clancy,1987,/genres/fiction|/genres/thriller|/genres/suspense|/genres/spy-thriller|/genres/espionage|/genres/mystery|/genres/action|/genres/adventure|/genres/war|/genres/military|/genres/thriller|/genres/mystery-thriller|/genres/contemporary,dir38/32682.Patriot_Games.html,89951,"Patriot Games (Jack Ryan, #1)" +4.12,18,0956161510,good_reads:book,https://www.goodreads.com/author/show/4400967.Iain_Parke,2010,/genres/fiction,dir38/9477999-heavy-duty-people.html,112,Heavy Duty People (Brethren Trilogy #1) +3.92,91,,good_reads:book,https://www.goodreads.com/author/show/5184237.Veronica_Blade,2012,/genres/fantasy|/genres/young-adult|/genres/paranormal|/genres/vampires|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/shapeshifters|/genres/fantasy|/genres/fairy-tales|/genres/paranormal|/genres/witches,dir38/13139100-a-bite-s-tale.html,306,A Bite's Tale +3.69,226,0140445501,good_reads:book,https://www.goodreads.com/author/show/11029.Fran_ois_Rabelais,1532,/genres/classics|/genres/fiction|/genres/cultural|/genres/france|/genres/literature|/genres/european-literature|/genres/french-literature|/genres/humor|/genres/fantasy,dir38/18266.Gargantua_and_Pantagruel.html,7441,Gargantua and Pantagruel +3.75,2498,0307353133,good_reads:book,https://www.goodreads.com/author/show/210456.Timothy_Ferriss,2007,/genres/non-fiction|/genres/self-help|/genres/self-help|/genres/personal-development|/genres/productivity|/genres/business,dir38/368593.The_4_Hour_Work_Week.html,40163,The 4-Hour Work Week +3.89,958,0425227723,good_reads:book,https://www.goodreads.com/author/show/9550.Laurell_K_Hamilton,2009,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/horror|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/shapeshifters|/genres/werewolves|/genres/paranormal|/genres/shapeshifters,dir38/5215879-skin-trade.html,24891,"Skin Trade (Anita Blake, Vampire Hunter #17)" +4.06,397,0345335082,good_reads:book,https://www.goodreads.com/author/show/26.Anne_McCaffrey,1971,/genres/fantasy|/genres/science-fiction|/genres/fantasy|/genres/dragons|/genres/fiction|/genres/science-fiction-fantasy|/genres/young-adult|/genres/adult|/genres/fantasy|/genres/epic-fantasy|/genres/adventure|/genres/fantasy|/genres/high-fantasy,dir38/127584.Dragonquest.html,26428,"Dragonquest (Pern, #2)" +3.82,364,0872206033,good_reads:book,https://www.goodreads.com/author/show/1011.Aristophanes,-411,/genres/plays|/genres/classics|/genres/drama|/genres/fiction|/genres/plays|/genres/theatre|/genres/humor|/genres/literature|/genres/humor|/genres/comedy|/genres/academic|/genres/school|/genres/war,dir38/1591.Lysistrata.html,18070,Lysistrata +4.15,417,0345300785,good_reads:book,https://www.goodreads.com/author/show/8732.David_Eddings,1984,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/adventure|/genres/young-adult|/genres/epic|/genres/science-fiction,dir38/44687.Enchanters_End_Game.html,56783,"Enchanters' End Game (The Belgariad, #5)" +3.91,51,1620070936,good_reads:book,https://www.goodreads.com/author/show/6525721.Lisa_Collicutt,2012,/genres/young-adult|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/witches,dir38/16004807-the-gathering-darkness.html,113,The Gathering Darkness +3.91,961,,good_reads:book,https://www.goodreads.com/author/show/2965489.Jennifer_Probst,2012,/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/contemporary-romance|/genres/romance|/genres/new-adult|/genres/humor|/genres/funny|/genres/love|/genres/romance|/genres/erotic-romance|/genres/marriage,dir38/14165516-the-marriage-trap.html,19329,"The Marriage Trap (Marriage to a Billionaire, #2)" +4.18,159,0060933089,good_reads:book,https://www.goodreads.com/author/show/16839.James_Thurber,1900,/genres/humor|/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/biography|/genres/classics|/genres/writing|/genres/essays|/genres/short-stories|/genres/humor|/genres/comedy|/genres/humor|/genres/funny|/genres/biography-memoir,dir38/72995.My_Life_and_Hard_Times.html,1898,My Life and Hard Times +3.94,348,0007169922,good_reads:book,https://www.goodreads.com/author/show/61105.Dr_Seuss,1937,/genres/childrens|/genres/childrens|/genres/picture-books|/genres/fiction|/genres/classics|/genres/poetry|/genres/humor|/genres/kids,dir38/28351.And_to_Think_That_I_Saw_it_on_Mulberry_Street.html,13513,And to Think That I Saw it on Mulberry Street +4.01,2119,0525950125,good_reads:book,https://www.goodreads.com/author/show/24689.Harlan_Coben,2007,/genres/mystery|/genres/fiction|/genres/thriller|/genres/mystery|/genres/crime|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/adult|/genres/book-club|/genres/adult-fiction|/genres/mystery|/genres/murder-mystery,dir38/43931.The_Woods.html,34053,The Woods +4.42,359,160751351X,good_reads:book,https://www.goodreads.com/author/show/1370283.Brent_Weeks,2009,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fiction|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/dark-fantasy|/genres/science-fiction-fantasy|/genres/adventure|/genres/adult|/genres/epic|/genres/romance,dir38/6122735-the-night-angel-trilogy.html,12062,"The Night Angel Trilogy (Night Angel, #1-3)" +4.16,653,0312934327,good_reads:book,https://www.goodreads.com/author/show/4430.Sherrilyn_Kenyon,2005,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/fantasy|/genres/mythology|/genres/paranormal|/genres/demons|/genres/fiction,dir38/84135.Sins_of_the_Night.html,23069,"Sins of the Night (Dark-Hunter, #6)" +4.24,302,1416914188,good_reads:book,https://www.goodreads.com/author/show/74046.D_J_MacHale,2008,/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/adventure|/genres/fiction|/genres/young-adult|/genres/teen|/genres/childrens|/genres/young-adult|/genres/young-adult-fantasy|/genres/science-fiction|/genres/time-travel|/genres/childrens|/genres/middle-grade,dir38/1729146.Raven_Rise.html,12315,"Raven Rise (Pendragon, #9)" +3.88,488,0099461099,good_reads:book,https://www.goodreads.com/author/show/3354.Haruki_Murakami,1997,/genres/non-fiction|/genres/cultural|/genres/japan|/genres/history|/genres/asian-literature|/genres/japanese-literature|/genres/cultural|/genres/asia|/genres/crime|/genres/true-crime|/genres/religion|/genres/politics|/genres/war|/genres/terrorism|/genres/biography,dir38/17801.Underground.html,6832,Underground +4.17,1827,1442444924,good_reads:book,https://www.goodreads.com/author/show/1383409.Andrew_Smith,2013,/genres/young-adult|/genres/contemporary|/genres/realistic-fiction|/genres/humor|/genres/fiction|/genres/romance|/genres/young-adult|/genres/teen|/genres/sports-and-games|/genres/sports|/genres/young-adult|/genres/coming-of-age|/genres/school-stories|/genres/boarding-school,dir38/11861815-winger.html,7431,"Winger (Winger, #1)" +3.93,264,1419122126,good_reads:book,https://www.goodreads.com/author/show/1315.Louisa_May_Alcott,1869,/genres/classics|/genres/romance|/genres/young-adult|/genres/historical-fiction|/genres/childrens|/genres/literature|/genres/19th-century|/genres/fiction|/genres/literature|/genres/american|/genres/childrens|/genres/childrens-classics|/genres/novels,dir38/78960.Good_Wives.html,9287,Good Wives +4.40,380,1933550147,good_reads:book,https://www.goodreads.com/author/show/89275.Fr_d_ric_Bastiat,1849,/genres/politics|/genres/philosophy|/genres/economics|/genres/non-fiction|/genres/law|/genres/classics|/genres/history|/genres/politics|/genres/government|/genres/politics|/genres/political-science,dir38/1609224.The_Law.html,4662,The Law +3.77,1173,0553584502,good_reads:book,https://www.goodreads.com/author/show/9355.Dean_Koontz,2004,/genres/horror|/genres/fiction|/genres/thriller|/genres/suspense|/genres/mystery|/genres/science-fiction|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/thriller|/genres/mystery-thriller,dir38/16434.The_Taking.html,25102,The Taking +3.70,452,9799625726,good_reads:book,https://www.goodreads.com/author/show/164478.Dee,2002,/genres/fiction|/genres/novels|/genres/asian-literature|/genres/indonesian-literature|/genres/literature|/genres/fantasy|/genres/science-fiction|/genres/romance|/genres/philosophy|/genres/adventure|/genres/adult,dir38/1300350.Supernova.html,5852,"Supernova (Supernova, #2)" +3.96,1104,1426858329,good_reads:book,https://www.goodreads.com/author/show/2995873.Julie_Kagawa,2010,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/fairies|/genres/fairies|/genres/fae|/genres/short-stories|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/fiction,dir38/8070049-winter-s-passage.html,15747,"Winter's Passage (Iron Fey, #1.5)" +4.15,469,0553575376,good_reads:book,https://www.goodreads.com/author/show/5807106.Iain_M_Banks,1996,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/space-opera|/genres/culture|/genres/fantasy|/genres/science-fiction-fantasy|/genres/speculative-fiction|/genres/space|/genres/novels|/genres/science-fiction|/genres/aliens,dir38/12013.Excession.html,11681,"Excession (Culture, #5)" +4.28,954,0316002585,good_reads:book,https://www.goodreads.com/author/show/99650.Wendy_Mass,2010,/genres/mystery|/genres/fiction|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/realistic-fiction|/genres/fantasy|/genres/young-adult|/genres/adventure|/genres/childrens|/genres/juvenile|/genres/humor,dir38/8112318-the-candymakers.html,9368,The Candymakers +4.64,10,,good_reads:book,https://www.goodreads.com/author/show/5808070.Cynthia_Collins,2012,/genres/fiction|/genres/fantasy|/genres/young-adult,dir38/13583118-the-unicorn-tree.html,25,The Unicorn Tree +3.79,668,039397166X,good_reads:book,https://www.goodreads.com/author/show/228089.Honor_de_Balzac,1834,/genres/classics|/genres/fiction|/genres/cultural|/genres/france|/genres/european-literature|/genres/french-literature|/genres/literature|/genres/literature|/genres/19th-century|/genres/novels|/genres/academic|/genres/school|/genres/academic|/genres/read-for-school|/genres/classics|/genres/classic-literature,dir38/59145.P_re_Goriot.html,21918,Père Goriot +4.13,1002,0451203267,good_reads:book,https://www.goodreads.com/author/show/9678.Ann_Rule,1980,/genres/crime|/genres/true-crime|/genres/non-fiction|/genres/mystery|/genres/crime|/genres/autobiography|/genres/memoir|/genres/mystery|/genres/horror|/genres/history|/genres/psychology,dir38/15654.The_Stranger_Beside_Me.html,25317,The Stranger Beside Me +3.48,592,057122539X,good_reads:book,https://www.goodreads.com/author/show/4280.Kazuo_Ishiguro,1995,/genres/fiction|/genres/contemporary|/genres/literature|/genres/literary-fiction|/genres/fantasy|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/asian-literature|/genres/japanese-literature|/genres/music|/genres/cultural|/genres/japan,dir38/40117.The_Unconsoled.html,4798,The Unconsoled +4.00,670,1843607247,good_reads:book,https://www.goodreads.com/author/show/2614.Lora_Leigh,2003,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/paranormal|/genres/shapeshifters|/genres/fantasy|/genres/romance|/genres/erotic-romance|/genres/adult|/genres/fiction|/genres/science-fiction,dir38/592806.Tempting_the_Beast.html,12314,"Tempting the Beast (Breeds, #1)" +4.12,159,3492049370,good_reads:book,https://www.goodreads.com/author/show/34878.Walter_Moers,2007,/genres/fantasy|/genres/fiction|/genres/european-literature|/genres/german-literature|/genres/humor|/genres/young-adult|/genres/adventure|/genres/fantasy|/genres/high-fantasy|/genres/animals|/genres/novels|/genres/science-fiction-fantasy,dir38/1491117.Der_Schrecksenmeister.html,2578,"Der Schrecksenmeister (Zamonien, #5)" +3.91,481,0618344586,good_reads:book,https://www.goodreads.com/author/show/59713.Jon_McGregor,2002,/genres/fiction|/genres/contemporary|/genres/novels|/genres/european-literature|/genres/british-literature|/genres/poetry|/genres/literary-fiction|/genres/book-club|/genres/mystery|/genres/modern|/genres/literature,dir38/103345.If_Nobody_Speaks_of_Remarkable_Things.html,4083,If Nobody Speaks of Remarkable Things +4.47,183,0007144350,good_reads:book,https://www.goodreads.com/author/show/3565.Oscar_Wilde,1927,/genres/classics|/genres/fiction|/genres/poetry|/genres/plays|/genres/short-stories|/genres/literature|/genres/writing|/genres/essays|/genres/novels|/genres/literature|/genres/english-literature|/genres/humor,dir38/5289.Complete_Works_of_Oscar_Wilde.html,9436,Complete Works of Oscar Wilde +4.35,27,,good_reads:book,https://www.goodreads.com/author/show/5039646.Chelsea_Bellingeri,2013,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy,dir38/17830325-all-hallows-eve.html,239,All Hallows Eve (New England Witch Chronicles #4) +3.83,1951,0062217135,good_reads:book,https://www.goodreads.com/author/show/50568.Robyn_Schneider,2013,/genres/young-adult|/genres/contemporary|/genres/romance|/genres/realistic-fiction|/genres/fiction,dir38/13522285-the-beginning-of-everything.html,15356,The Beginning of Everything +4.00,4,,good_reads:book,https://www.goodreads.com/author/show/7843984.Erez_Aharoni,2014,,dir38/22049639-the-eagle-s-secret.html,28,The Eagle's Secret +3.93,422,1582349177,good_reads:book,https://www.goodreads.com/author/show/23138.Mary_Hoffman,2002,/genres/fantasy|/genres/young-adult|/genres/historical-fiction|/genres/science-fiction|/genres/time-travel|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/magic|/genres/romance|/genres/childrens|/genres/cultural|/genres/italy,dir38/86737.City_of_Masks.html,9002,"City of Masks (Stravaganza, #1)" +3.28,167,0140432159,good_reads:book,https://www.goodreads.com/author/show/17505.Samuel_Richardson,1748,/genres/classics|/genres/fiction|/genres/literature|/genres/18th-century|/genres/literature|/genres/novels|/genres/romance|/genres/literature|/genres/english-literature,dir38/529243.Clarissa_or_the_History_of_a_Young_Lady.html,4310,"Clarissa, or, the History of a Young Lady" +4.01,8083,0316143472,good_reads:book,https://www.goodreads.com/author/show/2849.David_Sedaris,2007,/genres/humor|/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/writing|/genres/essays|/genres/short-stories|/genres/humor|/genres/comedy|/genres/humor|/genres/funny|/genres/biography|/genres/book-club|/genres/biography-memoir,dir38/1044355.When_You_Are_Engulfed_in_Flames.html,121148,When You Are Engulfed in Flames +3.68,1282,0345515579,good_reads:book,https://www.goodreads.com/author/show/1045593.Stacia_Kane,2010,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/ghosts|/genres/fantasy|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/witches|/genres/adult|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy|/genres/supernatural,dir38/6261189-unholy-ghosts.html,9478,"Unholy Ghosts (Downside Ghosts, #1)" +3.84,3276,0060839783,good_reads:book,https://www.goodreads.com/author/show/14053.Simon_Winchester,1998,/genres/non-fiction|/genres/history|/genres/biography|/genres/humanities|/genres/language|/genres/writing|/genres/books-about-books|/genres/book-club|/genres/biography-memoir|/genres/adult|/genres/european-literature|/genres/british-literature|/genres/crime|/genres/true-crime,dir38/25019.The_Professor_and_the_Madman.html,48347,The Professor and the Madman +4.43,10,1477494383,good_reads:book,https://www.goodreads.com/author/show/6271954.Jim_L_Wright,2012,/genres/fiction,dir38/15232939-new-yesterdays.html,37,New Yesterdays +3.76,2921,031619008X,good_reads:book,https://www.goodreads.com/author/show/2891665.Gail_Carriger,2013,/genres/science-fiction|/genres/steampunk|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/historical-fiction|/genres/paranormal|/genres/vampires|/genres/fiction|/genres/mystery|/genres/science-fiction,dir38/10874177-etiquette-espionage.html,17177,"Etiquette & Espionage (Finishing School, #1)" +4.47,4,,good_reads:book,https://www.goodreads.com/author/show/2908379.Teresa_Garcia,2006,/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/coming-of-age|/genres/science-fiction|/genres/time-travel|/genres/romance|/genres/adventure|/genres/young-adult|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/dragons,dir38/18281102-taming-the-blowing-wind.html,17,Taming the Blowing Wind (Dragon Shaman #1) +3.76,55,,good_reads:book,https://www.goodreads.com/author/show/3001574.Lisa_Gillis,2013,/genres/romance|/genres/music|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/music|/genres/rock-n-roll|/genres/new-adult|/genres/adult-fiction|/genres/erotica|/genres/adult|/genres/womens-fiction|/genres/chick-lit,dir38/18402055-jack-who.html,680,"Jack Who? (Silver Strings G, #1)" +3.96,1013,0812504690,good_reads:book,https://www.goodreads.com/author/show/6989.Rudyard_Kipling,1894,/genres/classics|/genres/fiction|/genres/childrens|/genres/fantasy|/genres/adventure|/genres/young-adult|/genres/short-stories|/genres/literature|/genres/animals|/genres/cultural|/genres/india,dir38/77270.The_Jungle_Book.html,49481,The Jungle Book +4.13,784,0380014300,good_reads:book,https://www.goodreads.com/author/show/3619.Roger_Zelazny,1970,/genres/fantasy|/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/classics|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy,dir38/92121.Nine_Princes_in_Amber.html,26806,"Nine Princes in Amber (Amber Chronicles, #1)" +3.83,921,160684038X,good_reads:book,https://www.goodreads.com/author/show/2973783.Alexandra_Bracken,2010,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/fiction|/genres/young-adult|/genres/young-adult-fantasy|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/teen,dir38/6580510-brightly-woven.html,6432,Brightly Woven +4.38,919,0778303764,good_reads:book,https://www.goodreads.com/author/show/48192.Gena_Showalter,2010,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/paranormal|/genres/angels|/genres/adult|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural,dir38/6758331-the-darkest-passion.html,25473,"The Darkest Passion (Lords of the Underworld, #5)" +4.27,1807,1416971777,good_reads:book,https://www.goodreads.com/author/show/13957.Scott_Westerfeld,2011,/genres/science-fiction|/genres/steampunk|/genres/young-adult|/genres/fantasy|/genres/science-fiction|/genres/historical-fiction|/genres/adventure|/genres/fiction|/genres/science-fiction|/genres/alternate-history|/genres/romance|/genres/young-adult|/genres/teen,dir39/9918083-goliath.html,16491,"Goliath (Leviathan, #3)" +3.58,258,0553384163,good_reads:book,https://www.goodreads.com/author/show/184516.Alan_Campbell,2006,/genres/fantasy|/genres/science-fiction|/genres/steampunk|/genres/fiction|/genres/fantasy|/genres/dark-fantasy|/genres/paranormal|/genres/angels|/genres/science-fiction|/genres/horror|/genres/science-fiction-fantasy|/genres/fantasy|/genres/paranormal|/genres/dark,dir39/627204.Scar_Night.html,2556,"Scar Night (Deepgate Codex, #1)" +3.72,120,0340766182,good_reads:book,https://www.goodreads.com/author/show/6417.James_Clavell,1986,/genres/fiction|/genres/adventure|/genres/thriller|/genres/cultural|/genres/iran|/genres/cultural|/genres/asia|/genres/politics|/genres/novels|/genres/contemporary|/genres/literature|/genres/war,dir39/42932.Whirlwind.html,3804,"Whirlwind (Asian Saga, #5)" +3.98,8,1608622835,good_reads:book,https://www.goodreads.com/author/show/4875841.Patricia_H_Graham,2011,,dir39/11451865-hillbilly-tales-from-the-smoky-mountains---and-other-homespun-remedies.html,40,"Hillbilly Tales from the Smoky Mountains - And Other Homespun Remedies, Proverbs, and Poetry" +3.95,821,0802721826,good_reads:book,https://www.goodreads.com/author/show/2921810.Jessica_Warman,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/mystery|/genres/paranormal|/genres/ghosts|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/death|/genres/contemporary|/genres/fiction,dir39/10397655-between.html,5924,Between +4.33,376,1419937561,good_reads:book,https://www.goodreads.com/author/show/3190846.Laurann_Dohner,2011,/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/paranormal|/genres/shapeshifters|/genres/science-fiction|/genres/fantasy|/genres/romance|/genres/erotic-romance|/genres/adult,dir39/12961307-justice.html,8210,"Justice (New Species, #4)" +3.96,3,,good_reads:book,https://www.goodreads.com/author/show/4875841.Patricia_H_Graham,2012,/genres/fantasy,dir39/16091522-southern-mystical-moments.html,27,Southern Mystical Moments +4.32,90,0816491216,good_reads:book,https://www.goodreads.com/author/show/1159886.Arkady_Strugatsky,1964,/genres/fiction|/genres/fantasy|/genres/literature|/genres/russian-literature|/genres/science-fiction|/genres/classics|/genres/cultural|/genres/russia,dir39/759517.Hard_to_be_a_God.html,2698,Hard to Be a God +4.32,265,0593046315,good_reads:book,https://www.goodreads.com/author/show/31232.Steven_Erikson,2007,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fiction|/genres/epic|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/dark-fantasy|/genres/science-fiction-fantasy|/genres/adventure|/genres/war|/genres/adult,dir39/459064.Reaper_s_Gale.html,9927,"Reaper's Gale (Malazan Book of the Fallen, #7)" +4.26,285,8370540791,good_reads:book,https://www.goodreads.com/author/show/38569.Andrzej_Sapkowski,1993,/genres/fantasy|/genres/european-literature|/genres/polish-literature|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/dark-fantasy|/genres/fantasy|/genres/magic,dir39/68458.Krew_elf_w.html,10241,"Krew elfów (Saga o Wiedźminie, #3)" +4.04,500,0749934581,good_reads:book,https://www.goodreads.com/author/show/16961.Linda_Howard,2003,/genres/romance|/genres/romance|/genres/romantic-suspense|/genres/suspense|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/mystery|/genres/fiction|/genres/adult|/genres/thriller|/genres/mystery|/genres/crime,dir39/187500.Cry_No_More.html,7957,Cry No More +3.87,466,1906427305,good_reads:book,https://www.goodreads.com/author/show/347385.Rachel_Ward,2010,/genres/young-adult|/genres/fantasy|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/thriller|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/supernatural,dir39/7248435-the-chaos.html,4274,"The Chaos (Numbers, #2)" +4.14,1035,0763665665,good_reads:book,https://www.goodreads.com/author/show/6441917.Leslye_Walton,2014,/genres/young-adult|/genres/fantasy|/genres/magical-realism|/genres/romance|/genres/fiction|/genres/historical-fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/contemporary|/genres/young-adult|/genres/teen,dir39/18166936-the-strange-and-beautiful-sorrows-of-ava-lavender.html,3733,The Strange and Beautiful Sorrows of Ava Lavender +3.83,1072,1400044618,good_reads:book,https://www.goodreads.com/author/show/3354.Haruki_Murakami,1995,/genres/short-stories|/genres/fiction|/genres/cultural|/genres/japan|/genres/asian-literature|/genres/japanese-literature|/genres/literature|/genres/contemporary|/genres/magical-realism|/genres/literature|/genres/asian-literature|/genres/fantasy|/genres/literary-fiction,dir39/9833.Blind_Willow_Sleeping_Woman.html,15838,"Blind Willow, Sleeping Woman" +3.77,658,1849163944,good_reads:book,https://www.goodreads.com/author/show/4118351.Cat_Clarke,2011,/genres/young-adult|/genres/contemporary|/genres/romance|/genres/mystery|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/thriller,dir39/8579933-entangled.html,4177,Entangled +3.74,491,1585676772,good_reads:book,https://www.goodreads.com/author/show/8587.R_Scott_Bakker,2003,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/dark-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction-fantasy|/genres/epic|/genres/philosophy,dir39/301538.The_Darkness_That_Comes_Before.html,9523,"The Darkness That Comes Before (The Prince of Nothing, #1)" +3.79,432,0684836270,good_reads:book,https://www.goodreads.com/author/show/9558.Poppy_Z_Brite,1996,/genres/horror|/genres/fiction|/genres/mystery|/genres/crime|/genres/glbt|/genres/romance|/genres/m-m-romance|/genres/thriller|/genres/glbt|/genres/queer|/genres/glbt|/genres/gay|/genres/dark|/genres/contemporary,dir39/15320.Exquisite_Corpse.html,5882,Exquisite Corpse +3.90,392,9770909998,good_reads:book,https://www.goodreads.com/author/show/353145.Tawfiq_Al_Hakim,1937,/genres/novels|/genres/literature|/genres/cultural|/genres/egypt|/genres/fiction|/genres/politics|/genres/media-tie-in|/genres/movies|/genres/social|/genres/plays|/genres/african-literature|/genres/egyptian-literature|/genres/mystery,dir39/3482579.html,4409,يوميات نائب فى الأرياف +3.85,534,0061709555,good_reads:book,https://www.goodreads.com/author/show/99642.Rachel_Hawthorne,2009,/genres/young-adult|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/shapeshifters|/genres/fiction|/genres/animals|/genres/wolves,dir39/3567200-moonlight.html,9279,"Moonlight (Dark Guardian, #1)" +3.93,2108,0375865861,good_reads:book,https://www.goodreads.com/author/show/1651879.A_S_King,2010,/genres/young-adult|/genres/contemporary|/genres/fiction|/genres/realistic-fiction|/genres/mystery|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/coming-of-age|/genres/death|/genres/romance|/genres/sociology|/genres/abuse,dir39/6665671-please-ignore-vera-dietz.html,16097,Please Ignore Vera Dietz +4.10,561,,good_reads:book,https://www.goodreads.com/author/show/4728994.Rachel_Higginson,2011,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/young-adult-paranormal,dir39/10830285-reckless-magic.html,6904,"Reckless Magic (Star-Crossed, #1)" +4.18,1530,0747538352,good_reads:book,https://www.goodreads.com/author/show/31933.Gavin_de_Becker,1997,/genres/non-fiction|/genres/psychology|/genres/self-help|/genres/science|/genres/mystery|/genres/crime|/genres/book-club|/genres/crime|/genres/true-crime|/genres/reference|/genres/adventure|/genres/survival|/genres/sociology,dir39/56465.The_Gift_of_Fear.html,10752,The Gift of Fear +3.82,8177,0451191153,good_reads:book,https://www.goodreads.com/author/show/432.Ayn_Rand,1943,/genres/fiction|/genres/classics|/genres/philosophy|/genres/literature|/genres/novels|/genres/politics|/genres/architecture|/genres/adult|/genres/literature|/genres/american|/genres/adult-fiction,dir39/2122.The_Fountainhead.html,196432,The Fountainhead +3.65,348,0786848812,good_reads:book,https://www.goodreads.com/author/show/10896.Eoin_Colfer,2007,/genres/fantasy|/genres/sequential-art|/genres/graphic-novels|/genres/young-adult|/genres/sequential-art|/genres/comics|/genres/fiction|/genres/science-fiction|/genres/adventure|/genres/sequential-art|/genres/manga|/genres/fantasy|/genres/magic|/genres/childrens,dir39/114725.Artemis_Fowl.html,4399,"Artemis Fowl (Artemis Fowl: The Graphic Novels, #1)" +3.86,343,0006490018,good_reads:book,https://www.goodreads.com/author/show/47499.Paullina_Simons,1994,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/drama|/genres/contemporary|/genres/historical-fiction|/genres/adult|/genres/modern|/genres/novels|/genres/young-adult|/genres/coming-of-age|/genres/book-club,dir39/83146.Tully.html,4859,Tully +3.88,79,0811213269,good_reads:book,https://www.goodreads.com/author/show/30055.Ezra_Pound,1964,/genres/poetry|/genres/classics|/genres/literature|/genres/literature|/genres/american|/genres/literature|/genres/20th-century|/genres/modern|/genres/fiction|/genres/epic|/genres/literary-fiction|/genres/canon,dir39/269589.The_Cantos.html,3604,The Cantos +3.92,902,034525855X,good_reads:book,https://www.goodreads.com/author/show/8516.Piers_Anthony,1976,/genres/fantasy|/genres/fiction|/genres/humor|/genres/science-fiction-fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/science-fiction|/genres/adventure|/genres/fantasy|/genres/high-fantasy|/genres/humor|/genres/comedy,dir39/76664.A_Spell_for_Chameleon.html,24273,"A Spell for Chameleon (Xanth, #1)" +4.11,1250,1847371663,good_reads:book,https://www.goodreads.com/author/show/10758.Nikki_Sixx,2005,/genres/music|/genres/non-fiction|/genres/biography|/genres/autobiography|/genres/memoir|/genres/biography|/genres/autobiography|/genres/biography-memoir|/genres/adult|/genres/music|/genres/rock-n-roll|/genres/book-club|/genres/music|/genres/musicians,dir39/1883838.The_Heroin_Diaries.html,15830,The Heroin Diaries +4.12,1768,015204566X,good_reads:book,https://www.goodreads.com/author/show/36122.Patricia_C_Wrede,1990,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/dragons|/genres/fiction|/genres/childrens|/genres/fantasy|/genres/magic|/genres/humor|/genres/adventure|/genres/childrens|/genres/middle-grade,dir39/150739.Dealing_with_Dragons.html,48348,"Dealing with Dragons (Enchanted Forest Chronicles, #1)" +3.69,911,0440779030,good_reads:book,https://www.goodreads.com/author/show/7549.Elizabeth_George_Speare,1983,/genres/historical-fiction|/genres/fiction|/genres/young-adult|/genres/childrens|/genres/classics|/genres/academic|/genres/school|/genres/adventure|/genres/academic|/genres/read-for-school|/genres/adventure|/genres/survival|/genres/childrens|/genres/middle-grade,dir39/207569.The_Sign_of_the_Beaver.html,17158,The Sign of the Beaver +4.34,290,1569714983,good_reads:book,https://www.goodreads.com/author/show/53559.Katsuhiro_Otomo,1984,/genres/sequential-art|/genres/manga|/genres/sequential-art|/genres/comics|/genres/sequential-art|/genres/graphic-novels|/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/cyberpunk|/genres/cultural|/genres/japan|/genres/science-fiction|/genres/dystopia|/genres/graphic-novels-comics|/genres/comics|/genres/comic-book,dir39/93371.Akira_Vol_1.html,8720,"Akira, Vol. 1 (Akira, #1)" +4.13,1853,1416990674,good_reads:book,https://www.goodreads.com/author/show/3351454.Morgan_Matson,2012,/genres/young-adult|/genres/contemporary|/genres/romance|/genres/realistic-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/young-adult-contemporary|/genres/fiction|/genres/death|/genres/family|/genres/young-adult|/genres/teen,dir39/11071466-second-chance-summer.html,16936,Second Chance Summer +3.99,1449,1423170288,good_reads:book,https://www.goodreads.com/author/show/5804715.Melissa_Landers,2014,/genres/young-adult|/genres/science-fiction|/genres/science-fiction|/genres/aliens|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/paranormal,dir39/13574417-alienated.html,7766,"Alienated (Alienated, #1)" +4.19,3842,1476746583,good_reads:book,https://www.goodreads.com/author/show/28186.Anthony_Doerr,2014,/genres/historical-fiction|/genres/fiction|/genres/book-club|/genres/history|/genres/world-war-ii|/genres/war|/genres/adult|/genres/cultural|/genres/france|/genres/adult-fiction|/genres/literary-fiction|/genres/cultural|/genres/germany,dir39/18143977-all-the-light-we-cannot-see.html,24387,All the Light We Cannot See +3.88,1115,1416524355,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,2002,/genres/horror|/genres/short-stories|/genres/fiction|/genres/fantasy|/genres/thriller|/genres/anthologies|/genres/literature|/genres/american|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/paranormal|/genres/anthologies|/genres/collections,dir39/10579.Everything_s_Eventual.html,45595,Everything's Eventual +4.06,1046,0399155813,good_reads:book,https://www.goodreads.com/author/show/625.Nora_Roberts,2009,/genres/romance|/genres/romance|/genres/romantic-suspense|/genres/fiction|/genres/mystery|/genres/suspense|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/womens-fiction|/genres/chick-lit|/genres/adult|/genres/thriller,dir39/6013511-black-hills.html,22254,Black Hills +4.10,182,0312940661,good_reads:book,https://www.goodreads.com/author/show/4043.Wilbur_Smith,1964,/genres/historical-fiction|/genres/fiction|/genres/thriller|/genres/cultural|/genres/africa|/genres/adventure|/genres/action|/genres/mystery|/genres/novels|/genres/adult-fiction|/genres/book-club,dir39/16951.When_the_Lion_Feeds.html,5759,"When the Lion Feeds (Courtney, #1)" +4.52,73,5968901748,good_reads:book,https://www.goodreads.com/author/show/4034102.Mariam_Petrosyan,2009,/genres/cultural|/genres/russia|/genres/fantasy|/genres/contemporary|/genres/literature|/genres/russian-literature|/genres/magical-realism|/genres/fiction,dir39/7931881.html,718,"Дом, в котором..." +4.14,825,0440242177,good_reads:book,https://www.goodreads.com/author/show/48206.Karen_Marie_Moning,1999,/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/historical-romance|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/science-fiction|/genres/time-travel|/genres/historical-fiction|/genres/adult|/genres/fiction|/genres/cultural|/genres/scotland,dir39/112756.To_Tame_A_Highland_Warrior.html,20754,To Tame A Highland Warrior (Highlander #2) +3.65,1057,1594482306,good_reads:book,https://www.goodreads.com/author/show/25334.Sarah_Waters,2006,/genres/fiction|/genres/historical-fiction|/genres/glbt|/genres/glbt|/genres/queer|/genres/glbt|/genres/lesbian|/genres/war|/genres/history|/genres/world-war-ii|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/literature,dir39/550720.The_Night_Watch.html,12042,The Night Watch +3.77,3715,0749942010,good_reads:book,https://www.goodreads.com/author/show/3953740.Rosamund_Lupton,2010,/genres/thriller|/genres/book-club|/genres/mystery|/genres/crime|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/contemporary|/genres/adult-fiction|/genres/adult|/genres/mystery|/genres/family,dir39/8196732-sister.html,29383,Sister +4.00,1016,0060885386,good_reads:book,https://www.goodreads.com/author/show/5300.Laura_Ingalls_Wilder,1933,/genres/childrens|/genres/young-adult|/genres/classics|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/chapter-books|/genres/childrens|/genres/middle-grade|/genres/historical-fiction|/genres/family|/genres/childrens|/genres/childrens-classics|/genres/fiction,dir39/8252.Farmer_Boy.html,29916,"Farmer Boy (Little House, #3)" +4.02,1394,0803737203,good_reads:book,https://www.goodreads.com/author/show/3415819.Jess_Rothenberg,2012,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/paranormal|/genres/ghosts|/genres/fantasy|/genres/supernatural|/genres/death|/genres/womens-fiction|/genres/chick-lit|/genres/fiction,dir39/11387392-the-catastrophic-history-of-you-and-me.html,8885,The Catastrophic History of You and Me +4.32,3008,,good_reads:book,https://www.goodreads.com/author/show/4907787.Rebecca_Donovan,2013,/genres/romance|/genres/new-adult|/genres/young-adult|/genres/contemporary|/genres/sociology|/genres/abuse|/genres/romance|/genres/contemporary-romance|/genres/academic|/genres/college|/genres/drama|/genres/fiction|/genres/love,dir39/13638570-out-of-breath.html,27327,"Out of Breath (Breathing, #3)" +4.45,28,1450236723,good_reads:book,https://www.goodreads.com/author/show/4499762.Asa_Don_Brown,2010,/genres/spirituality|/genres/self-help|/genres/psychology|/genres/inspirational,dir39/8694331-waiting-to-live.html,56,Waiting to Live +3.89,556,0385736649,good_reads:book,https://www.goodreads.com/author/show/1233886.Brian_Katcher,2009,/genres/young-adult|/genres/glbt|/genres/romance|/genres/realistic-fiction|/genres/fiction|/genres/contemporary|/genres/trans|/genres/transgender|/genres/young-adult|/genres/teen|/genres/glbt|/genres/queer|/genres/glbt|/genres/trans,dir39/5982474-almost-perfect.html,4916,Almost Perfect +4.16,714,0439636485,good_reads:book,https://www.goodreads.com/author/show/8080.Michael_Morpurgo,2003,/genres/historical-fiction|/genres/young-adult|/genres/war|/genres/fiction|/genres/childrens|/genres/academic|/genres/school|/genres/romance|/genres/classics|/genres/academic|/genres/read-for-school|/genres/european-literature|/genres/british-literature,dir39/1048645.Private_Peaceful.html,9230,Private Peaceful +3.89,367,0316037834,good_reads:book,https://www.goodreads.com/author/show/15890.Trudi_Canavan,2010,/genres/fantasy|/genres/fantasy|/genres/magic|/genres/fiction|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/young-adult|/genres/adventure|/genres/romance|/genres/science-fiction-fantasy|/genres/fantasy|/genres/paranormal,dir39/7165405-the-ambassador-s-mission.html,8990,"The Ambassador's Mission (Traitor Spy Trilogy, #1)" +4.10,765,0230017916,good_reads:book,https://www.goodreads.com/author/show/8649.Juliet_Marillier,2009,/genres/fantasy|/genres/romance|/genres/young-adult|/genres/fantasy|/genres/fairy-tales|/genres/historical-fiction|/genres/fantasy|/genres/magic|/genres/fiction|/genres/paranormal|/genres/ghosts,dir39/6278019-heart-s-blood.html,7338,Heart's Blood +4.12,11,1606191896,good_reads:book,https://www.goodreads.com/author/show/2941486.Stephanie_Osborn,2011,/genres/mystery|/genres/science-fiction|/genres/science-fiction|/genres/time-travel,dir39/13374593-the-case-of-the-displaced-detective.html,65,"The Case of the Displaced Detective (Displaced Detective, #1)" +4.36,8,,good_reads:book,https://www.goodreads.com/author/show/8190017.Oren_Sanderson,2014,/genres/thriller|/genres/romance|/genres/mystery|/genres/thriller|/genres/mystery-thriller|/genres/romance|/genres/contemporary-romance,dir39/22047125-dancing-bear.html,25,Dancing Bear +4.60,53,1595547339,good_reads:book,https://www.goodreads.com/author/show/1441.Ted_Dekker,2009,/genres/christian-fiction|/genres/thriller|/genres/fantasy|/genres/adult-fiction|/genres/fiction,dir39/6323302-the-complete-circle-series.html,828,"The Complete Circle Series (The Circle, #0-3)" +3.98,372,0312664877,good_reads:book,https://www.goodreads.com/author/show/200317.Alyson_Noel,2012,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/demons|/genres/fiction|/genres/fantasy|/genres/mythology,dir39/12439057-echo.html,3881,"Echo (Soul Seekers, #2)" +3.51,773,0060759968,good_reads:book,https://www.goodreads.com/author/show/3489.Rebecca_Wells,1992,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/american|/genres/southern|/genres/adult-fiction|/genres/contemporary|/genres/novels|/genres/adult,dir39/6697.Little_Altars_Everywhere.html,22577,Little Altars Everywhere +3.70,1548,0340893613,good_reads:book,https://www.goodreads.com/author/show/190887.Catherine_Fisher,2008,/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/science-fiction|/genres/steampunk|/genres/fiction|/genres/adventure|/genres/young-adult|/genres/teen|/genres/mystery|/genres/young-adult|/genres/young-adult-fantasy,dir39/4499214-sapphique.html,15569,"Sapphique (Incarceron, #2)" +4.46,167,0375413316,good_reads:book,https://www.goodreads.com/author/show/5835922.Naguib_Mahfouz,1957,/genres/fiction|/genres/cultural|/genres/egypt|/genres/classics|/genres/historical-fiction|/genres/cultural|/genres/africa|/genres/literature|/genres/novels|/genres/modern,dir39/5488.The_Cairo_Trilogy.html,2259,The Cairo Trilogy (The Cairo Trilogy #1-3) +3.83,878,0385333781,good_reads:book,https://www.goodreads.com/author/show/2778055.Kurt_Vonnegut,1952,/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/novels|/genres/humor|/genres/literature|/genres/american|/genres/contemporary|/genres/literary-fiction|/genres/fiction|/genres/modern|/genres/classics,dir39/9597.Player_Piano.html,26817,Player Piano +3.79,214,0393315630,good_reads:book,https://www.goodreads.com/author/show/5687.Irvine_Welsh,1995,/genres/fiction|/genres/contemporary|/genres/novels|/genres/cultural|/genres/scotland|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/dark|/genres/thriller|/genres/mystery|/genres/crime|/genres/short-stories,dir39/23961.Marabou_Stork_Nightmares.html,6099,Marabou Stork Nightmares +3.89,351,0452272971,good_reads:book,https://www.goodreads.com/author/show/9144.S_bastien_Japrisot,1991,/genres/historical-fiction|/genres/cultural|/genres/france|/genres/war|/genres/romance|/genres/mystery|/genres/fiction|/genres/book-club|/genres/literature|/genres/european-literature|/genres/french-literature|/genres/adult,dir39/588002.A_Very_Long_Engagement.html,3472,A Very Long Engagement +3.57,1325,0316027421,good_reads:book,https://www.goodreads.com/author/show/2232265.Michelle_Zink,2009,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/historical-fiction|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/mystery|/genres/romance|/genres/young-adult|/genres/teen,dir39/5271066-prophecy-of-the-sisters.html,11414,"Prophecy of the Sisters (Prophecy of the Sisters, #1)" +4.17,117,9681311884,good_reads:book,https://www.goodreads.com/author/show/37748.Torcuato_Luca_de_Tena,1979,/genres/european-literature|/genres/spanish-literature|/genres/fiction|/genres/mystery|/genres/drama|/genres/contemporary|/genres/psychology|/genres/cultural|/genres/spain|/genres/thriller|/genres/literature|/genres/novels,dir39/67006.Los_renglones_torcidos_de_Dios.html,2349,Los renglones torcidos de Dios +4.47,3,,good_reads:book,https://www.goodreads.com/author/show/2941486.Stephanie_Osborn,2012,/genres/mystery,dir39/16217729-the-case-of-the-cosmological-killer.html,30,"The Case of the Cosmological Killer (Displaced Detective, #4)" +4.25,316,0671720147,good_reads:book,https://www.goodreads.com/author/show/16094.Lois_McMaster_Bujold,1990,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/space-opera|/genres/science-fiction-fantasy|/genres/adventure|/genres/war|/genres/military,dir39/68483.The_Vor_Game.html,10443,"The Vor Game (Vorkosigan Saga, #6)" +4.61,93,9754700114,good_reads:book,https://www.goodreads.com/author/show/139434.O_uz_Atay,1971,/genres/asian-literature|/genres/turkish-literature|/genres/cultural|/genres/turkish|/genres/novels|/genres/fiction|/genres/roman|/genres/literature|/genres/classics|/genres/literary-fiction,dir39/758901.Tutunamayanlar.html,3099,Tutunamayanlar +4.17,128,0140150625,good_reads:book,https://www.goodreads.com/author/show/1938.Friedrich_Nietzsche,1954,/genres/philosophy|/genres/non-fiction|/genres/classics|/genres/european-literature|/genres/german-literature,dir39/80447.The_Portable_Nietzsche.html,6113,The Portable Nietzsche +4.31,399,0553813145,good_reads:book,https://www.goodreads.com/author/show/31232.Steven_Erikson,2004,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fiction|/genres/epic|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/dark-fantasy|/genres/science-fiction-fantasy|/genres/war|/genres/fantasy|/genres/magic|/genres/adventure,dir39/345299.Midnight_Tides.html,12617,"Midnight Tides (Malazan Book of the Fallen, #5)" +4.04,415,0142003344,good_reads:book,https://www.goodreads.com/author/show/3915.Steven_Pinker,2002,/genres/science|/genres/psychology|/genres/non-fiction|/genres/philosophy|/genres/science|/genres/biology|/genres/biology|/genres/evolution|/genres/sociology|/genres/science|/genres/popular-science|/genres/anthropology|/genres/politics,dir39/5752.The_Blank_Slate.html,11169,The Blank Slate +4.24,37,1564782158,good_reads:book,https://www.goodreads.com/author/show/15248.Flann_O_Brien,1968,/genres/european-literature|/genres/irish-literature|/genres/fiction|/genres/humor|/genres/writing|/genres/essays|/genres/writing|/genres/journalism|/genres/literature|/genres/cultural|/genres/ireland|/genres/sequential-art|/genres/comics,dir39/59647.The_Best_of_Myles.html,442,The Best of Myles +4.43,1,1606191934,good_reads:book,https://www.goodreads.com/author/show/2941486.Stephanie_Osborn,2012,,dir39/15894829-the-case-of-the-cosmological-killer.html,30,"The Case of the Cosmological Killer (Displaced Detective, #3)" +4.42,131,0811201848,good_reads:book,https://www.goodreads.com/author/show/72605.Arthur_Rimbaud,1875,/genres/poetry|/genres/cultural|/genres/france|/genres/classics|/genres/european-literature|/genres/french-literature|/genres/literature|/genres/literature|/genres/19th-century|/genres/philosophy|/genres/glbt|/genres/queer|/genres/fiction|/genres/academic|/genres/read-for-school,dir39/565149.Illuminations.html,4144,Illuminations +3.93,265,0375700889,good_reads:book,https://www.goodreads.com/author/show/19916.Jonathan_Coe,1997,/genres/fiction|/genres/contemporary|/genres/european-literature|/genres/british-literature|/genres/thriller|/genres/romance|/genres/literature|/genres/novels|/genres/psychology|/genres/book-club|/genres/drama,dir39/89055.The_House_of_Sleep.html,4623,The House of Sleep +4.26,14920,0374500010,good_reads:book,https://www.goodreads.com/author/show/1049.Elie_Wiesel,1958,/genres/classics|/genres/world-war-ii|/genres/holocaust|/genres/academic|/genres/school|/genres/autobiography|/genres/memoir|/genres/war|/genres/academic|/genres/read-for-school|/genres/history|/genres/world-war-ii|/genres/biography|/genres/autobiography|/genres/literature|/genres/biography-memoir,dir39/1617.Night.html,459003,"Night (The Night Trilogy, #1)" +4.37,216,1421506262,good_reads:book,https://www.goodreads.com/author/show/1978.Tsugumi_Ohba,2005,/genres/sequential-art|/genres/graphic-novels|/genres/fantasy|/genres/sequential-art|/genres/comics|/genres/fiction|/genres/sequential-art|/genres/manga|/genres/horror|/genres/mystery|/genres/young-adult|/genres/fantasy|/genres/supernatural|/genres/thriller,dir39/13617.Death_Note_Vol_5.html,10371,"Death Note, Vol. 5 (Death Note, #5)" +3.83,1157,0141439882,good_reads:book,https://www.goodreads.com/author/show/1413437.Elizabeth_Gaskell,1851,/genres/classics|/genres/fiction|/genres/historical-fiction|/genres/literature|/genres/19th-century|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/novels|/genres/classics|/genres/classic-literature|/genres/book-club|/genres/literature|/genres/english-literature,dir39/182381.Cranford.html,18068,Cranford +4.12,273,0061689424,good_reads:book,https://www.goodreads.com/author/show/153734.Ellen_Schreiber,2010,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen|/genres/fiction|/genres/fantasy|/genres/urban-fantasy,dir39/6937878-love-bites.html,14372,"Love Bites (Vampire Kisses, #7)" +4.43,1337,0451461894,good_reads:book,https://www.goodreads.com/author/show/10746.Jim_Butcher,2008,/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/mystery|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/science-fiction-fantasy|/genres/paranormal|/genres/vampires,dir39/927979.Small_Favor.html,49643,"Small Favor (The Dresden Files, #10)" +4.10,446,0553560719,good_reads:book,https://www.goodreads.com/author/show/12479.Timothy_Zahn,1992,/genres/media-tie-in|/genres/star-wars|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/space-opera|/genres/adventure|/genres/novels|/genres/media-tie-in|/genres/space,dir39/216442.Dark_Force_Rising.html,27376,"Dark Force Rising (Star Wars: The Thrawn Trilogy, #2)" +4.13,1450,0451234863,good_reads:book,https://www.goodreads.com/author/show/1857564.Chloe_Neill,2011,/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy|/genres/magic|/genres/adult|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/witches,dir39/9815702-drink-deep.html,16064,"Drink Deep (Chicagoland Vampires, #5)" +3.90,718,0744549515,good_reads:book,https://www.goodreads.com/author/show/3565.Oscar_Wilde,1887,/genres/classics|/genres/fiction|/genres/fantasy|/genres/short-stories|/genres/humor|/genres/paranormal|/genres/ghosts|/genres/gothic|/genres/mystery|/genres/literature|/genres/19th-century|/genres/literature,dir39/45685.The_Canterville_Ghost.html,16443,The Canterville Ghost +4.29,395,0765348810,good_reads:book,https://www.goodreads.com/author/show/31232.Steven_Erikson,2002,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fiction|/genres/fantasy|/genres/high-fantasy|/genres/epic|/genres/science-fiction-fantasy|/genres/fantasy|/genres/dark-fantasy,dir39/55398.House_of_Chains.html,16552,"House of Chains (The Malazan Book of the Fallen, #4)" +4.03,138,1596541369,good_reads:book,https://www.goodreads.com/author/show/29952.Jean_Genet,1943,/genres/fiction|/genres/cultural|/genres/france|/genres/literature|/genres/classics|/genres/glbt|/genres/queer|/genres/european-literature|/genres/french-literature|/genres/glbt|/genres/glbt|/genres/gay|/genres/novels|/genres/philosophy,dir39/53003.Our_Lady_of_the_Flowers.html,2879,Our Lady of the Flowers +4.05,264,0415254086,good_reads:book,https://www.goodreads.com/author/show/7672.Ludwig_Wittgenstein,1921,/genres/philosophy|/genres/non-fiction|/genres/philosophy|/genres/logic|/genres/humanities|/genres/language|/genres/philosophy|/genres/theory|/genres/european-literature|/genres/german-literature|/genres/classics|/genres/philosophy|/genres/metaphysics|/genres/science|/genres/mathematics|/genres/literature|/genres/20th-century,dir39/12075.Tractatus_Logico_Philosophicus.html,8075,Tractatus Logico-Philosophicus +3.88,573,0679772669,good_reads:book,https://www.goodreads.com/author/show/4030.Michael_Ondaatje,1987,/genres/fiction|/genres/cultural|/genres/canada|/genres/historical-fiction|/genres/literature|/genres/novels|/genres/contemporary|/genres/literary-fiction|/genres/literature|/genres/canadian-literature|/genres/academic|/genres/school|/genres/book-club,dir39/5946.In_the_Skin_of_a_Lion.html,8912,In the Skin of a Lion +4.36,42,1577314719,good_reads:book,https://www.goodreads.com/author/show/20105.Joseph_Campbell,2004,/genres/fantasy|/genres/mythology|/genres/psychology|/genres/non-fiction|/genres/philosophy|/genres/spirituality|/genres/religion|/genres/self-help|/genres/history|/genres/self-help|/genres/personal-development,dir39/35511.Pathways_to_Bliss.html,1215,Pathways to Bliss +4.23,692,0312194390,good_reads:book,https://www.goodreads.com/author/show/6599.Margaret_George,1986,/genres/historical-fiction|/genres/fiction|/genres/european-literature|/genres/british-literature,dir39/10108.The_Autobiography_of_Henry_VIII.html,18971,The Autobiography of Henry VIII +3.82,919,0316094625,good_reads:book,https://www.goodreads.com/author/show/4254441.Cat_Patrick,2012,/genres/young-adult|/genres/science-fiction|/genres/romance|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/death|/genres/contemporary|/genres/mystery|/genres/fiction,dir39/12681233-revived.html,6423,Revived +4.24,437,0060555661,good_reads:book,https://www.goodreads.com/author/show/755.Benjamin_Graham,1949,/genres/business|/genres/non-fiction|/genres/economics,dir39/106835.The_Intelligent_Investor.html,11094,The Intelligent Investor +4.03,279,0451459245,good_reads:book,https://www.goodreads.com/author/show/4841825.Marion_Zimmer_Bradley,1987,/genres/historical-fiction|/genres/fiction|/genres/fantasy|/genres/mythology|/genres/science-fiction-fantasy|/genres/cultural|/genres/greece|/genres/science-fiction|/genres/feminism|/genres/novels|/genres/literature|/genres/ancient|/genres/war,dir39/84544.The_Firebrand.html,6668,The Firebrand +3.91,346,0525421343,good_reads:book,https://www.goodreads.com/author/show/1051591.Tera_Lynn_Childs,2009,/genres/fantasy|/genres/mythology|/genres/young-adult|/genres/fantasy|/genres/romance|/genres/mythology|/genres/greek-mythology|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/teen|/genres/fiction,dir39/5927462-goddess-boot-camp.html,9228,"Goddess Boot Camp (Oh. My. Gods, #2)" +4.08,3684,0618724834,good_reads:book,https://www.goodreads.com/author/show/96375.Gary_D_Schmidt,2007,/genres/young-adult|/genres/historical-fiction|/genres/fiction|/genres/realistic-fiction|/genres/childrens|/genres/middle-grade|/genres/book-club|/genres/humor|/genres/childrens|/genres/young-adult|/genres/teen|/genres/childrens|/genres/juvenile,dir39/556136.The_Wednesday_Wars.html,19112,The Wednesday Wars +4.39,79,030793067X,good_reads:book,https://www.goodreads.com/author/show/8349.Christopher_Paolini,1990,/genres/fantasy|/genres/fantasy|/genres/dragons|/genres/young-adult|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/magic|/genres/childrens|/genres/fantasy|/genres/high-fantasy,dir39/10859323-inheritance-cycle-4-book-hard-cover-boxed-set-eragon-eldest-brisingr.html,2660,"Inheritance Cycle 4-Book Hard Cover Boxed Set (Eragon, Eldest, Brisingr, Inheritance)" +4.42,1208,,good_reads:book,https://www.goodreads.com/author/show/2958084.Kristen_Ashley,2012,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/love,dir39/15742039-breathe.html,17566,"Breathe (Colorado Mountain, #4)" +3.69,775,0679721886,good_reads:book,https://www.goodreads.com/author/show/17290.Maxine_Hong_Kingston,1975,/genres/autobiography|/genres/memoir|/genres/non-fiction|/genres/cultural|/genres/china|/genres/classics|/genres/academic|/genres/school|/genres/biography|/genres/feminism|/genres/literature|/genres/womens|/genres/academic|/genres/read-for-school,dir39/30852.The_Woman_Warrior.html,13414,The Woman Warrior +4.06,653,0689839057,good_reads:book,https://www.goodreads.com/author/show/14617.Margaret_Peterson_Haddix,2002,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fiction|/genres/childrens|/genres/fantasy|/genres/adventure,dir39/303460.Among_the_Betrayed.html,15880,"Among the Betrayed (Shadow Children, #3)" +4.31,82,0804834679,good_reads:book,https://www.goodreads.com/author/show/5847865.Luo_Guanzhong,1522,/genres/classics|/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/china|/genres/literature|/genres/asian-literature|/genres/chinese-literature|/genres/epic|/genres/literature|/genres/asian-literature|/genres/cultural|/genres/asia|/genres/literature|/genres/14th-century,dir39/158771.Romance_of_the_Three_Kingdoms_Vol_1.html,921,"Romance of the Three Kingdoms, Vol. 1" +3.65,1688,0062124366,good_reads:book,https://www.goodreads.com/author/show/2936493.Lauren_Oliver,2011,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/short-stories|/genres/romance|/genres/fantasy,dir39/12663646-hana.html,16871,"Hana (Delirium, #1.5)" +4.20,514,0349102627,good_reads:book,https://www.goodreads.com/author/show/50071.Bohumil_Hrabal,1976,/genres/fiction|/genres/european-literature|/genres/czech-literature|/genres/novels|/genres/literature|/genres/writing|/genres/books-about-books|/genres/classics|/genres/literary-fiction|/genres/literature|/genres/20th-century|/genres/literature|/genres/european-literature|/genres/contemporary,dir39/87280.Too_Loud_a_Solitude.html,5654,Too Loud a Solitude +3.96,729,0806501901,good_reads:book,https://www.goodreads.com/author/show/6466154.Khalil_Gibran,1912,/genres/novels|/genres/poetry|/genres/literature|/genres/philosophy|/genres/fiction|/genres/classics|/genres/spirituality,dir39/291.The_Broken_Wings.html,7291,The Broken Wings +4.48,7,1606191918,good_reads:book,https://www.goodreads.com/author/show/2941486.Stephanie_Osborn,2011,/genres/mystery|/genres/fantasy|/genres/science-fiction,dir39/14461892-the-case-of-the-displaced-detective.html,44,"The Case of the Displaced Detective (Displaced Detective, #2)" +4.29,473,0141186372,good_reads:book,https://www.goodreads.com/author/show/10427.James_Baldwin,1962,/genres/fiction|/genres/classics|/genres/glbt|/genres/cultural|/genres/african-american|/genres/novels|/genres/literature|/genres/glbt|/genres/queer|/genres/literature|/genres/american|/genres/glbt|/genres/gay|/genres/american|/genres/african-american-literature,dir39/38474.Another_Country.html,5809,Another Country +4.25,782,0375814698,good_reads:book,https://www.goodreads.com/author/show/8596.Tamora_Pierce,2009,/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/fantasy|/genres/magic|/genres/mystery|/genres/adventure|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/young-adult-fantasy|/genres/romance|/genres/fantasy|/genres/high-fantasy,dir40/153779.Bloodhound.html,23076,"Bloodhound (Beka Cooper, #2)" +3.77,1134,0375713271,good_reads:book,https://www.goodreads.com/author/show/3354.Haruki_Murakami,2000,/genres/short-stories|/genres/fiction|/genres/cultural|/genres/japan|/genres/asian-literature|/genres/japanese-literature|/genres/literature|/genres/contemporary|/genres/fantasy|/genres/cultural|/genres/asia|/genres/magical-realism|/genres/literature|/genres/asian-literature,dir40/11299.After_the_Quake.html,17156,After the Quake +3.84,1606,061858532X,good_reads:book,https://www.goodreads.com/author/show/87534.Laura_Whitcomb,2005,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/paranormal|/genres/ghosts|/genres/romance|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/young-adult|/genres/teen|/genres/death,dir40/289601.A_Certain_Slant_of_Light.html,14493,"A Certain Slant of Light (Light, #1)" +3.85,682,0330398121,good_reads:book,https://www.goodreads.com/author/show/12942.Judy_Blume,1981,/genres/young-adult|/genres/fiction|/genres/childrens|/genres/young-adult|/genres/teen|/genres/realistic-fiction|/genres/romance|/genres/contemporary|/genres/young-adult|/genres/coming-of-age|/genres/classics|/genres/literature|/genres/banned-books,dir40/143555.Tiger_Eyes.html,9832,Tiger Eyes +4.35,2096,1419953249,good_reads:book,https://www.goodreads.com/author/show/1077176.Katherine_Allred,2005,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/new-adult|/genres/adult|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult,dir40/2761356-the-sweet-gum-tree.html,15313,The Sweet Gum Tree +4.26,332,034547581X,good_reads:book,https://www.goodreads.com/author/show/23897.Harold_G_Moore,1991,/genres/history|/genres/non-fiction|/genres/war|/genres/military|/genres/war|/genres/military|/genres/military-history|/genres/biography|/genres/autobiography|/genres/memoir|/genres/history|/genres/american-history|/genres/leadership|/genres/cultural|/genres/asia,dir40/42512.We_Were_Soldiers_Once_and_Young.html,13600,We Were Soldiers Once... and Young +4.39,6,,good_reads:book,https://www.goodreads.com/author/show/5391254.Shannon_McRoberts,2012,/genres/fantasy|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/fairy-tales,dir40/15781600-the-daughter-of-ares-chronicles.html,23,The Daughter of Ares Chronicles +4.02,598,1416927832,good_reads:book,https://www.goodreads.com/author/show/10652.Marguerite_Henry,1947,/genres/childrens|/genres/fiction|/genres/animals|/genres/horses|/genres/classics|/genres/animals|/genres/young-adult|/genres/historical-fiction,dir40/17461.Misty_of_Chincoteague.html,27731,"Misty of Chincoteague (Misty, #1)" +4.30,51,1577312023,good_reads:book,https://www.goodreads.com/author/show/20105.Joseph_Campbell,2001,/genres/non-fiction|/genres/fantasy|/genres/mythology|/genres/religion|/genres/philosophy|/genres/psychology|/genres/spirituality|/genres/religion|/genres/theology|/genres/anthropology|/genres/history|/genres/religion|/genres/christianity,dir40/324205.Thou_Art_That.html,610,Thou Art That +4.38,194,0525444467,good_reads:book,https://www.goodreads.com/author/show/81466.A_A_Milne,1927,/genres/childrens|/genres/classics|/genres/fiction|/genres/childrens|/genres/childrens-classics|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/picture-books|/genres/poetry|/genres/animals|/genres/european-literature|/genres/british-literature|/genres/fantasy,dir40/821000.Now_We_Are_Six.html,11817,Now We Are Six +3.96,1109,1416900314,good_reads:book,https://www.goodreads.com/author/show/94091.Kate_Brian,2005,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/teen|/genres/realistic-fiction|/genres/young-adult|/genres/high-school|/genres/young-adult|/genres/young-adult-romance|/genres/fiction|/genres/humor|/genres/funny,dir40/238360.Megan_Meade_s_Guide_to_the_McGowan_Boys.html,24752,Megan Meade's Guide to the McGowan Boys +4.02,1566,1573226068,good_reads:book,https://www.goodreads.com/author/show/55215.Junot_D_az,1996,/genres/short-stories|/genres/fiction|/genres/contemporary|/genres/literature|/genres/literary-fiction|/genres/literature|/genres/american|/genres/young-adult|/genres/coming-of-age|/genres/adult-fiction|/genres/academic|/genres/school|/genres/short-stories|/genres/short-story-collection,dir40/531989.Drown.html,16276,Drown +3.97,8032,0141439580,good_reads:book,https://www.goodreads.com/author/show/1265.Jane_Austen,1815,/genres/classics|/genres/fiction|/genres/romance|/genres/literature|/genres/historical-fiction|/genres/european-literature|/genres/british-literature|/genres/classics|/genres/classic-literature|/genres/literature|/genres/19th-century,dir40/6969.Emma.html,344893,Emma +4.07,219,068483118X,good_reads:book,https://www.goodreads.com/author/show/1069006.C_S_Lewis,1945,/genres/science-fiction|/genres/fantasy|/genres/christian|/genres/classics|/genres/christian-fiction|/genres/science-fiction-fantasy|/genres/fiction|/genres/religion|/genres/novels|/genres/adventure,dir40/30628.Out_of_the_Silent_Planet_Perelandra_That_Hideous_Strength.html,5307,"Out of the Silent Planet / Perelandra / That Hideous Strength (Space Trilogy, #1-3)" +3.63,232,905759305X,good_reads:book,https://www.goodreads.com/author/show/5840966.Ray_Kluun,2003,/genres/fiction|/genres/european-literature|/genres/dutch-literature|/genres/literature|/genres/roman|/genres/drama|/genres/novels|/genres/contemporary|/genres/adult|/genres/romance|/genres/academic|/genres/read-for-school,dir40/587887.Komt_een_vrouw_bij_de_dokter.html,3563,Komt een vrouw bij de dokter +3.84,475,0140367357,good_reads:book,https://www.goodreads.com/author/show/7935185.E_Nesbit,1902,/genres/childrens|/genres/classics|/genres/young-adult|/genres/fantasy|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/fantasy|/genres/magic|/genres/literature|/genres/science-fiction-fantasy,dir40/45181.Five_Children_and_It.html,11294,"Five Children and It (Five Children, #1)" +3.87,1795,0312569033,good_reads:book,https://www.goodreads.com/author/show/5241601.Emmy_Laybourne,2012,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/adventure|/genres/survival|/genres/fiction|/genres/science-fiction|/genres/apocalyptic|/genres/young-adult|/genres/teen|/genres/adventure|/genres/fantasy,dir40/12753231-monument-14.html,10861,"Monument 14 (Monument 14, #1)" +3.60,1373,0316044776,good_reads:book,https://www.goodreads.com/author/show/815.Carlos_Ruiz_Zaf_n,1986,/genres/young-adult|/genres/fantasy|/genres/mystery|/genres/fiction|/genres/horror|/genres/historical-fiction|/genres/fantasy|/genres/paranormal,dir40/7128341-the-prince-of-mist.html,12103,"The Prince of Mist (Niebla, #1)" +4.23,125,1420104233,good_reads:book,https://www.goodreads.com/author/show/64364.Jacquelyn_Frank,2009,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/adult|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/demons|/genres/fiction|/genres/adult-fiction|/genres/erotica|/genres/fantasy|/genres/supernatural,dir40/6056519-rapture.html,4572,"Rapture (Shadowdwellers, #2)" +4.19,761,0439791464,good_reads:book,https://www.goodreads.com/author/show/153394.Suzanne_Collins,2006,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/science-fiction-fantasy|/genres/young-adult|/genres/young-adult-fantasy|/genres/action,dir40/319644.Gregor_and_the_Marks_of_Secret.html,16805,"Gregor and the Marks of Secret (Underland Chronicles, #4)" +3.98,769,0060082097,good_reads:book,https://www.goodreads.com/author/show/27379.Philip_Reeve,2001,/genres/science-fiction|/genres/steampunk|/genres/young-adult|/genres/fantasy|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/fiction|/genres/adventure|/genres/apocalyptic|/genres/post-apocalyptic|/genres/young-adult|/genres/teen|/genres/childrens,dir40/287861.Mortal_Engines.html,8612,"Mortal Engines (The Hungry City Chronicles, #1)" +4.32,626,,good_reads:book,https://www.goodreads.com/author/show/2958084.Kristen_Ashley,2011,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/romance|/genres/romantic-suspense|/genres/suspense|/genres/mystery|/genres/adult|/genres/adult-fiction|/genres/erotica|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/erotic-romance,dir40/12012999-golden-trail.html,10183,"Golden Trail (The 'Burg, #3)" +4.16,2606,1442436646,good_reads:book,https://www.goodreads.com/author/show/4428.Kresley_Cole,2012,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/science-fiction|/genres/dystopia|/genres/romance|/genres/paranormal-romance|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural,dir40/13450339-poison-princess.html,17923,"Poison Princess (The Arcana Chronicles, #1)" +4.23,199,0394719859,good_reads:book,https://www.goodreads.com/author/show/1938.Friedrich_Nietzsche,1882,/genres/philosophy|/genres/non-fiction|/genres/poetry|/genres/european-literature|/genres/german-literature|/genres/classics|/genres/writing|/genres/essays|/genres/literature|/genres/academic|/genres/college,dir40/94578.The_Gay_Science.html,6759,The Gay Science +4.09,609,0375870458,good_reads:book,https://www.goodreads.com/author/show/34765.Mark_Frost,2012,/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/mystery|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/supernatural,dir40/13354420-the-paladin-prophecy.html,4532,"The Paladin Prophecy (The Paladin Prophecy, #1)" +4.17,153,0140447873,good_reads:book,https://www.goodreads.com/author/show/5031025.Anton_Chekhov,1888,/genres/classics|/genres/fiction|/genres/cultural|/genres/russia|/genres/literature|/genres/literature|/genres/russian-literature|/genres/literature|/genres/19th-century|/genres/short-stories|/genres/literature|/genres/20th-century|/genres/classics|/genres/classic-literature|/genres/literary-fiction,dir40/114599.The_Lady_With_the_Little_Dog_and_Other_Stories_1896_1904.html,3500,"The Lady With the Little Dog and Other Stories, 1896-1904" +4.05,315,0345428838,good_reads:book,https://www.goodreads.com/author/show/1567394.Matthew_Woodring_Stover,2004,/genres/media-tie-in|/genres/star-wars|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/adventure|/genres/space|/genres/media-tie-in|/genres/science-fiction|/genres/space-opera|/genres/novels,dir40/35458.Star_Wars_Episode_III.html,6903,"Star Wars, Episode III (Star Wars, #3)" +4.05,146,0385093799,good_reads:book,https://www.goodreads.com/author/show/5029521.Cao_Xueqin,1791,/genres/classics|/genres/fiction|/genres/cultural|/genres/china|/genres/literature|/genres/asian-literature|/genres/chinese-literature|/genres/cultural|/genres/asia|/genres/romance|/genres/historical-fiction|/genres/literature|/genres/asian-literature|/genres/literature|/genres/18th-century,dir40/535739.Dream_of_the_Red_Chamber.html,1547,Dream of the Red Chamber +4.25,196,1416994629,good_reads:book,https://www.goodreads.com/author/show/53574.Elizabeth_Chandler,2010,/genres/young-adult|/genres/mystery|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/ghosts|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/death,dir40/6744949-no-time-to-die-the-deep-end-of-fear.html,6686,"No Time to Die & The Deep End of Fear (Dark Secrets, #3-4)" +3.82,209,1552787311,good_reads:book,https://www.goodreads.com/author/show/80075.C_C_Humphreys,2008,/genres/historical-fiction|/genres/horror|/genres/fiction|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/thriller|/genres/fantasy|/genres/paranormal|/genres/gothic|/genres/historical-fiction|/genres/medieval|/genres/horror|/genres/gothic-horror,dir40/4712458-vlad.html,1652,Vlad +4.28,554,0399256180,good_reads:book,https://www.goodreads.com/author/show/34049.John_Flanagan,2011,/genres/fantasy|/genres/young-adult|/genres/adventure|/genres/fiction|/genres/historical-fiction|/genres/action|/genres/historical-fiction|/genres/medieval|/genres/young-adult|/genres/teen|/genres/short-stories|/genres/childrens|/genres/middle-grade,dir40/11309018-the-lost-stories.html,9591,"The Lost Stories (Ranger's Apprentice, #11)" +3.95,4180,0547887205,good_reads:book,https://www.goodreads.com/author/show/2493.Lois_Lowry,2012,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/fiction|/genres/fantasy|/genres/science-fiction|/genres/young-adult|/genres/teen|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/classics|/genres/adventure,dir40/13324841-son.html,27325,"Son (The Giver, #4)" +3.55,2838,0375851798,good_reads:book,https://www.goodreads.com/author/show/321382.Tim_Tharp,2008,/genres/young-adult|/genres/contemporary|/genres/fiction|/genres/romance|/genres/realistic-fiction|/genres/young-adult|/genres/coming-of-age|/genres/young-adult|/genres/teen|/genres/media-tie-in|/genres/movies|/genres/young-adult|/genres/high-school|/genres/book-club,dir40/3798703-the-spectacular-now.html,22680,The Spectacular Now +4.32,397,140120113X,good_reads:book,https://www.goodreads.com/author/show/1221698.Neil_Gaiman,2003,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fantasy|/genres/fiction|/genres/graphic-novels-comics|/genres/horror|/genres/comics|/genres/comic-book|/genres/fantasy|/genres/mythology|/genres/short-stories|/genres/science-fiction-fantasy,dir40/47720.The_Sandman.html,15894,"The Sandman (The Sandman, #12)" +4.05,1127,0061259349,good_reads:book,https://www.goodreads.com/author/show/27847.Lisa_Kleypas,2004,/genres/romance|/genres/historical-romance|/genres/romance|/genres/historical-fiction|/genres/regency|/genres/adult|/genres/fiction|/genres/historical-romance|/genres/regency-romance|/genres/womens-fiction|/genres/chick-lit|/genres/european-literature|/genres/british-literature|/genres/adult-fiction,dir40/114162.Secrets_of_a_Summer_Night.html,22689,"Secrets of a Summer Night (Wallflowers, #1)" +3.65,804,0739464469,good_reads:book,https://www.goodreads.com/author/show/15543.Alan_Hollinghurst,2004,/genres/fiction|/genres/glbt|/genres/glbt|/genres/gay|/genres/contemporary|/genres/glbt|/genres/queer|/genres/european-literature|/genres/british-literature|/genres/literary-fiction,dir40/139087.The_Line_of_Beauty.html,12834,The Line of Beauty +3.86,2436,0007423292,good_reads:book,https://www.goodreads.com/author/show/4721536.Mark_Lawrence,2011,/genres/fantasy|/genres/fantasy|/genres/dark-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fiction|/genres/young-adult|/genres/fantasy|/genres/high-fantasy|/genres/apocalyptic|/genres/post-apocalyptic|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/dark,dir40/9579634-prince-of-thorns.html,28035,"Prince of Thorns (The Broken Empire, #1)" +4.00,151,0440237971,good_reads:book,https://www.goodreads.com/author/show/17082.Amelia_Atwater_Rhodes,2002,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/horror|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/young-adult|/genres/teen|/genres/romance,dir40/30337.Midnight_Predator.html,6341,"Midnight Predator (Den of Shadows, #4)" +4.09,377,0440220424,good_reads:book,https://www.goodreads.com/author/show/4915810.Sarah_L_Delany,1993,/genres/non-fiction|/genres/biography|/genres/autobiography|/genres/memoir|/genres/history|/genres/book-club|/genres/biography|/genres/autobiography|/genres/cultural|/genres/african-american|/genres/biography-memoir|/genres/womens|/genres/adult,dir40/792938.Having_Our_Say.html,8713,Having Our Say +3.91,203,0330311735,good_reads:book,https://www.goodreads.com/author/show/16904.Richard_Bach,1988,/genres/fiction|/genres/philosophy|/genres/spirituality|/genres/fantasy|/genres/romance|/genres/novels|/genres/inspirational|/genres/philosophy|/genres/metaphysics|/genres/adventure|/genres/literature,dir40/265264.One.html,8084,One +4.04,2988,0618773479,good_reads:book,https://www.goodreads.com/author/show/40820.Timothy_Egan,2005,/genres/history|/genres/american-history|/genres/adult|/genres/history|/genres/literature|/genres/american|/genres/environment|/genres/nature|/genres/non-fiction|/genres/book-club|/genres/adventure|/genres/survival|/genres/economics|/genres/united-states,dir40/72223.The_Worst_Hard_Time.html,21748,The Worst Hard Time +4.14,319,1573920398,good_reads:book,https://www.goodreads.com/author/show/1244.Mark_Twain,1916,/genres/classics|/genres/fiction|/genres/literature|/genres/fantasy|/genres/short-stories|/genres/literature|/genres/american|/genres/philosophy|/genres/novels|/genres/religion,dir40/102564.The_Mysterious_Stranger.html,4236,The Mysterious Stranger +3.85,891,,good_reads:book,https://www.goodreads.com/author/show/636118._,2006,/genres/novels|/genres/cultural|/genres/egypt|/genres/fiction|/genres/historical-fiction|/genres/literature|/genres/cultural|/genres/africa|/genres/contemporary,dir40/3240691.html,7618,واحة الغروب +4.18,327,0880386525,good_reads:book,https://www.goodreads.com/author/show/869.Margaret_Weis,1985,/genres/fantasy|/genres/dungeons-and-dragons|/genres/dragonlance|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/dragons|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/novels|/genres/epic,dir40/68380.Dragonlance_Chronicles.html,11595,Dragonlance Chronicles (Dragonlance #1-3) +3.84,1995,0373210337,good_reads:book,https://www.goodreads.com/author/show/4308706.Kady_Cross,2011,/genres/science-fiction|/genres/steampunk|/genres/young-adult|/genres/fantasy|/genres/historical-fiction|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/mystery|/genres/fiction|/genres/young-adult|/genres/teen,dir40/9166877-the-girl-in-the-steel-corset.html,13477,"The Girl in the Steel Corset (Steampunk Chronicles, #1)" +4.02,881,0064408191,good_reads:book,https://www.goodreads.com/author/show/14233.Gloria_Whelan,2000,/genres/young-adult|/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/india|/genres/realistic-fiction|/genres/childrens|/genres/cultural|/genres/childrens|/genres/middle-grade|/genres/academic|/genres/school|/genres/young-adult|/genres/teen,dir40/243229.Homeless_Bird.html,6908,Homeless Bird +4.34,175,0593052250,good_reads:book,https://www.goodreads.com/author/show/11586.David_Gemmell,2007,/genres/fantasy|/genres/historical-fiction|/genres/fiction|/genres/fantasy|/genres/mythology|/genres/war|/genres/fantasy|/genres/heroic-fantasy|/genres/adventure|/genres/fantasy|/genres/epic-fantasy|/genres/epic|/genres/adult,dir40/870807.Fall_of_Kings.html,4271,"Fall of Kings (Troy, #3)" +3.82,5298,0062041266,good_reads:book,https://www.goodreads.com/author/show/1041872.Patrick_deWitt,2011,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/western|/genres/cultural|/genres/canada|/genres/humor|/genres/adventure|/genres/mystery|/genres/crime|/genres/literary-fiction|/genres/novels,dir40/9850443-the-sisters-brothers.html,39703,The Sisters Brothers +3.80,1276,0553375938,good_reads:book,https://www.goodreads.com/author/show/3681.Ann_Brashares,2005,/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/romance|/genres/young-adult|/genres/teen|/genres/contemporary|/genres/realistic-fiction|/genres/young-adult|/genres/coming-of-age|/genres/childrens|/genres/young-adult|/genres/high-school,dir40/5452.Girls_In_Pants.html,51733,"Girls In Pants (Sisterhood, #3)" +4.00,498,0451412621,good_reads:book,https://www.goodreads.com/author/show/38066.Karen_Chance,2008,/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy|/genres/magic|/genres/adult|/genres/fairies|/genres/fae|/genres/fiction,dir40/3072254-midnight-s-daughter.html,12223,"Midnight's Daughter (Dorina Basarab, #1)" +4.03,728,0689868200,good_reads:book,https://www.goodreads.com/author/show/25422.Holly_Black,2007,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/fairies|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fiction|/genres/fairies|/genres/fae|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/teen,dir40/283494.Ironside.html,24473,"Ironside (Modern Faerie Tales, #3)" +4.13,1087,078683787X,good_reads:book,https://www.goodreads.com/author/show/6245.Dave_Barry,2006,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/adventure|/genres/childrens|/genres/fantasy|/genres/magic|/genres/childrens|/genres/middle-grade,dir40/9531.Peter_and_the_Shadow_Thieves.html,23181,"Peter and the Shadow Thieves (Peter and the Starcatchers, #2)" +4.50,169,,good_reads:book,https://www.goodreads.com/author/show/233619.Marcel_Proust,1927,/genres/fiction|/genres/cultural|/genres/france|/genres/european-literature|/genres/french-literature|/genres/literature|/genres/novels|/genres/classics|/genres/literary-fiction|/genres/literature|/genres/20th-century|/genres/philosophy|/genres/classics|/genres/classic-literature,dir40/28405.Time_Regained.html,2102,"Time Regained (In Search of Lost Time, #7)" +4.27,1167,,good_reads:book,https://www.goodreads.com/author/show/5416410.A_Meredith_Walters,2013,/genres/romance|/genres/new-adult|/genres/young-adult|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/high-school|/genres/dark|/genres/mental-health|/genres/mental-illness|/genres/drama|/genres/health|/genres/mental-health,dir40/17155039-light-in-the-shadows.html,12458,"Light in the Shadows (Find You in the Dark, #2)" +4.04,211,0802130860,good_reads:book,https://www.goodreads.com/author/show/92018.Wu_Cheng_en,1592,/genres/classics|/genres/fiction|/genres/cultural|/genres/china|/genres/fantasy|/genres/fantasy|/genres/mythology|/genres/cultural|/genres/asia|/genres/asian-literature|/genres/chinese-literature|/genres/literature|/genres/philosophy|/genres/literature|/genres/asian-literature,dir40/100237.Monkey.html,2548,Monkey +3.69,1104,1907411518,good_reads:book,https://www.goodreads.com/author/show/618846.Johan_Harstad,2008,/genres/young-adult|/genres/science-fiction|/genres/horror|/genres/mystery|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/space,dir40/12810834-172-hours-on-the-moon.html,4078,172 Hours on the Moon +3.64,371,1400043336,good_reads:book,https://www.goodreads.com/author/show/13450.Gabriel_Garc_a_M_rquez,1989,/genres/fiction|/genres/historical-fiction|/genres/classics|/genres/literature|/genres/magical-realism|/genres/novels|/genres/cultural|/genres/latin-american|/genres/european-literature|/genres/spanish-literature|/genres/literature|/genres/latin-american-literature|/genres/literary-fiction,dir40/23884.The_General_in_His_Labyrinth.html,9192,The General in His Labyrinth +3.68,819,0297852841,good_reads:book,https://www.goodreads.com/author/show/17421.Abigail_Thomas,2006,/genres/autobiography|/genres/memoir|/genres/non-fiction|/genres/animals|/genres/dogs|/genres/animals|/genres/book-club|/genres/biography|/genres/biography-memoir|/genres/family|/genres/medical|/genres/biography|/genres/autobiography,dir40/251789.A_Three_Dog_Life.html,4664,A Three Dog Life +3.77,473,0156028794,good_reads:book,https://www.goodreads.com/author/show/1285555.Jos_Saramago,2000,/genres/fiction|/genres/literature|/genres/european-literature|/genres/portuguese-literature|/genres/novels|/genres/science-fiction|/genres/dystopia|/genres/nobel-prize|/genres/cultural|/genres/portugal|/genres/philosophy|/genres/classics|/genres/literary-fiction,dir40/2531.The_Cave.html,5985,The Cave +3.72,438,1582344159,good_reads:book,https://www.goodreads.com/author/show/1886.Douglas_Coupland,2003,/genres/fiction|/genres/cultural|/genres/canada|/genres/contemporary|/genres/thriller|/genres/novels|/genres/dark|/genres/literature|/genres/culture|/genres/young-adult|/genres/drama,dir40/3381.Hey_Nostradamus_.html,11133,Hey Nostradamus! +4.26,451,0446676101,good_reads:book,https://www.goodreads.com/author/show/29535.Octavia_E_Butler,1987,/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/apocalyptic|/genres/post-apocalyptic|/genres/science-fiction|/genres/aliens|/genres/feminism|/genres/speculative-fiction|/genres/science-fiction|/genres/dystopia|/genres/gender,dir40/60926.Lilith_s_Brood.html,5758,"Lilith's Brood (Xenogenesis, #1-3)" +4.17,417,0553564927,good_reads:book,https://www.goodreads.com/author/show/12479.Timothy_Zahn,1993,/genres/media-tie-in|/genres/star-wars|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/space-opera|/genres/adventure|/genres/novels|/genres/space|/genres/media-tie-in,dir40/216422.The_Last_Command.html,24051,"The Last Command (Star Wars: The Thrawn Trilogy, #3)" +3.79,176,0141182245,good_reads:book,https://www.goodreads.com/author/show/38658.Arthur_Schnitzler,1926,/genres/fiction|/genres/classics|/genres/european-literature|/genres/german-literature|/genres/literature|/genres/novels|/genres/literature|/genres/20th-century|/genres/short-stories|/genres/romance|/genres/cultural|/genres/germany|/genres/contemporary,dir40/157409.Dream_Story.html,3619,Dream Story +4.15,345,0820324019,good_reads:book,https://www.goodreads.com/author/show/14403.Ambrose_Bierce,1906,/genres/humor|/genres/non-fiction|/genres/classics|/genres/reference|/genres/humanities|/genres/language|/genres/literature|/genres/humor|/genres/comedy|/genres/humor|/genres/funny|/genres/philosophy|/genres/reference|/genres/dictionaries,dir40/49256.The_Unabridged_Devil_s_Dictionary.html,5908,The Unabridged Devil's Dictionary +4.34,211,0811806960,good_reads:book,https://www.goodreads.com/author/show/28699.Nick_Bantock,1994,/genres/fiction|/genres/fantasy|/genres/art|/genres/sequential-art|/genres/graphic-novels|/genres/literature|/genres/romance|/genres/modern|/genres/young-adult|/genres/mystery|/genres/love,dir40/51061.The_Griffin_Sabine_Trilogy.html,2111,The Griffin & Sabine Trilogy +4.32,1587,,good_reads:book,https://www.goodreads.com/author/show/1446194._,2010,/genres/novels,dir40/8239301.html,7594,الطنطورية +4.16,1253,059306173X,good_reads:book,https://www.goodreads.com/author/show/1194.Richard_Dawkins,2009,/genres/science|/genres/non-fiction|/genres/biology|/genres/evolution|/genres/science|/genres/biology|/genres/religion|/genres/religion|/genres/atheism|/genres/philosophy|/genres/science|/genres/popular-science|/genres/history,dir40/6117055-the-greatest-show-on-earth.html,25665,The Greatest Show on Earth +4.20,307,0140186255,good_reads:book,https://www.goodreads.com/author/show/142899.Bruno_Schulz,1934,/genres/fiction|/genres/short-stories|/genres/european-literature|/genres/polish-literature|/genres/classics|/genres/cultural|/genres/poland|/genres/literature|/genres/magical-realism|/genres/literature|/genres/jewish,dir40/244261.The_Street_of_Crocodiles.html,3372,The Street of Crocodiles +4.06,1256,0330411969,good_reads:book,https://www.goodreads.com/author/show/80212.C_J_Sansom,2003,/genres/historical-fiction|/genres/mystery|/genres/fiction|/genres/mystery|/genres/crime|/genres/mystery|/genres/historical-mystery|/genres/european-literature|/genres/british-literature|/genres/thriller|/genres/thriller|/genres/mystery-thriller|/genres/literature|/genres/16th-century|/genres/historical-fiction|/genres/medieval,dir40/138685.Dissolution.html,15398,"Dissolution (Matthew Shardlake, #1)" +4.32,865,141654707X,good_reads:book,https://www.goodreads.com/author/show/4428.Kresley_Cole,2007,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/ghosts|/genres/adult|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/magic,dir40/1611656.Dark_Needs_at_Night_s_Edge.html,27001,"Dark Needs at Night's Edge (Immortals After Dark, #5)" +4.17,2033,1932664084,good_reads:book,https://www.goodreads.com/author/show/16807.Bryan_Lee_O_Malley,2004,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fiction|/genres/sequential-art|/genres/manga|/genres/young-adult|/genres/humor|/genres/fantasy|/genres/graphic-novels-comics|/genres/romance|/genres/comics|/genres/comic-book,dir40/29800.Scott_Pilgrim_s_Precious_Little_Life.html,80181,"Scott Pilgrim's Precious Little Life (Scott Pilgrim, #1)" +3.56,317,0060956852,good_reads:book,https://www.goodreads.com/author/show/12542.Bernard_Cornwell,1999,/genres/historical-fiction|/genres/fiction|/genres/fantasy|/genres/adventure|/genres/european-literature|/genres/british-literature|/genres/romance|/genres/historical-fiction|/genres/prehistoric|/genres/history|/genres/prehistory|/genres/historical-fiction|/genres/medieval|/genres/mystery,dir40/101086.Stonehenge.html,5319,Stonehenge +3.70,445,0393318680,good_reads:book,https://www.goodreads.com/author/show/5687.Irvine_Welsh,1998,/genres/fiction|/genres/contemporary|/genres/mystery|/genres/crime|/genres/thriller|/genres/dark|/genres/novels,dir40/23966.Filth.html,10790,Filth +3.99,888,222109073X,good_reads:book,https://www.goodreads.com/author/show/5237.Hunter_S_Thompson,1966,/genres/non-fiction|/genres/writing|/genres/journalism|/genres/history|/genres/mystery|/genres/crime|/genres/autobiography|/genres/memoir|/genres/biography|/genres/sociology|/genres/crime|/genres/true-crime|/genres/culture|/genres/classics,dir40/10882.Hell_s_Angels.html,24372,Hell's Angels +3.91,531,1569714029,good_reads:book,https://www.goodreads.com/author/show/15085.Frank_Miller,1998,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/historical-fiction|/genres/fiction|/genres/graphic-novels-comics|/genres/fantasy|/genres/war|/genres/comics|/genres/comic-book|/genres/media-tie-in|/genres/movies|/genres/sequential-art|/genres/comix,dir40/59952.300.html,31910,300 +4.09,1110,006156608X,good_reads:book,https://www.goodreads.com/author/show/93970.Sara_Shepard,2008,/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/romance|/genres/realistic-fiction,dir40/3047850-wicked.html,31374,"Wicked (Pretty Little Liars, #5)" +4.34,408,0809182491,good_reads:book,https://www.goodreads.com/author/show/55572.Trina_Paulus,1972,/genres/fiction|/genres/childrens|/genres/inspirational|/genres/classics|/genres/philosophy|/genres/childrens|/genres/picture-books|/genres/young-adult|/genres/spirituality|/genres/self-help|/genres/sequential-art|/genres/graphic-novels,dir40/96629.Hope_for_the_Flowers.html,4587,Hope for the Flowers +3.81,1586,0452283868,good_reads:book,https://www.goodreads.com/author/show/3534.Toni_Morrison,1973,/genres/fiction|/genres/classics|/genres/cultural|/genres/african-american|/genres/literature|/genres/novels|/genres/historical-fiction|/genres/academic|/genres/school|/genres/literary-fiction|/genres/literature|/genres/american|/genres/contemporary,dir40/11346.Sula.html,28970,Sula +3.75,4371,0743291476,good_reads:book,https://www.goodreads.com/author/show/963811.A_J_Jacobs,2007,/genres/religion|/genres/humor|/genres/autobiography|/genres/memoir|/genres/non-fiction|/genres/book-club|/genres/biography|/genres/spirituality|/genres/biography-memoir|/genres/religion|/genres/christianity|/genres/humor|/genres/funny,dir40/495395.The_Year_of_Living_Biblically.html,39489,The Year of Living Biblically +4.09,234,0156031965,good_reads:book,https://www.goodreads.com/author/show/36686.Luther_Blissett,1999,/genres/historical-fiction|/genres/fiction|/genres/european-literature|/genres/italian-literature|/genres/mystery|/genres/religion|/genres/cultural|/genres/italy|/genres/thriller|/genres/literature|/genres/novels|/genres/classics,dir40/94034.Q.html,2937,Q +3.95,428,0545060478,good_reads:book,https://www.goodreads.com/author/show/17216.Peter_Lerangis,2010,/genres/mystery|/genres/adventure|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/fantasy|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/action|/genres/realistic-fiction,dir40/6393047-the-viper-s-nest.html,28510,"The Viper's Nest (39 Clues, #7)" +3.97,1678,,good_reads:book,https://www.goodreads.com/author/show/6519108.Emily_Snow,2012,/genres/romance|/genres/new-adult|/genres/contemporary|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/contemporary-romance|/genres/adult|/genres/erotica|/genres/bdsm|/genres/music|/genres/romance|/genres/erotic-romance|/genres/fiction,dir40/15981894-devoured.html,31435,"Devoured (Devoured, #1)" +4.57,573,,good_reads:book,https://www.goodreads.com/author/show/4134859.Jessica_Shirvington,2012,/genres/paranormal|/genres/angels|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/magic,dir40/12369942-endless.html,4623,"Endless (The Violet Eden Chapters, #4)" +3.95,1268,0151012741,good_reads:book,https://www.goodreads.com/author/show/1285555.Jos_Saramago,2005,/genres/fiction|/genres/fantasy|/genres/literature|/genres/magical-realism|/genres/cultural|/genres/portugal|/genres/novels|/genres/book-club|/genres/european-literature|/genres/portuguese-literature|/genres/contemporary|/genres/nobel-prize,dir40/3018539-death-with-interruptions.html,12106,Death with Interruptions +3.75,795,1400033888,good_reads:book,https://www.goodreads.com/author/show/1728.Orhan_Pamuk,1991,/genres/biography|/genres/cultural|/genres/turkish|/genres/autobiography|/genres/memoir|/genres/asian-literature|/genres/turkish-literature|/genres/literature|/genres/biography-memoir|/genres/contemporary|/genres/cultural|/genres/asia|/genres/book-club|/genres/non-fiction,dir40/11690.Istanbul.html,7861,Istanbul +4.14,171,0140065504,good_reads:book,https://www.goodreads.com/author/show/1064072.T_C_Boyle,1981,/genres/fiction|/genres/historical-fiction|/genres/cultural|/genres/africa|/genres/literature|/genres/adventure|/genres/novels|/genres/book-club|/genres/contemporary|/genres/humor|/genres/literature|/genres/american,dir40/24726.Water_Music.html,2367,Water Music +4.20,843,0670035386,good_reads:book,https://www.goodreads.com/author/show/14635.Robert_McCloskey,1941,/genres/childrens|/genres/picture-books|/genres/childrens|/genres/classics|/genres/fiction|/genres/animals|/genres/childrens|/genres/juvenile|/genres/family|/genres/animals|/genres/birds|/genres/kids|/genres/young-adult,dir40/29291.Make_Way_for_Ducklings.html,55901,Make Way for Ducklings +3.59,521,0060871024,good_reads:book,https://www.goodreads.com/author/show/4431689.Allan_Frewin_Jones,2007,/genres/fantasy|/genres/young-adult|/genres/paranormal|/genres/fairies|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/fairies|/genres/fae|/genres/young-adult|/genres/teen|/genres/fiction|/genres/young-adult|/genres/young-adult-fantasy,dir40/501909.The_Faerie_Path.html,7987,"The Faerie Path (Faerie Path, #1)" +3.86,1019,0439405572,good_reads:book,https://www.goodreads.com/author/show/4735.Kathryn_Lasky,2003,/genres/fantasy|/genres/animals|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile,dir40/35805.The_Capture.html,13371,"The Capture (Guardians of Ga'Hoole, #1)" +3.99,561,1595546073,good_reads:book,https://www.goodreads.com/author/show/271685.Andrew_Klavan,2009,/genres/young-adult|/genres/mystery|/genres/fiction|/genres/adventure|/genres/thriller|/genres/christian|/genres/action|/genres/suspense|/genres/young-adult|/genres/teen|/genres/christian-fiction,dir40/6002005-the-last-thing-i-remember.html,4129,The Last Thing I Remember (The Homelanders #1) +3.46,1755,8129115301,good_reads:book,https://www.goodreads.com/author/show/61124.Chetan_Bhagat,2009,/genres/romance|/genres/asian-literature|/genres/indian-literature|/genres/fiction|/genres/humor|/genres/novels,dir40/6969361-2-states.html,43696,2 States +3.94,4587,0312595670,good_reads:book,https://www.goodreads.com/author/show/3163298.Chevy_Stevens,2010,/genres/fiction|/genres/mystery|/genres/suspense|/genres/thriller|/genres/book-club|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/crime|/genres/contemporary|/genres/adult-fiction|/genres/adult,dir40/7159515-still-missing.html,30692,Still Missing +4.19,673,1407104993,good_reads:book,https://www.goodreads.com/author/show/982805.Sally_Nicholls,2008,/genres/young-adult|/genres/fiction|/genres/realistic-fiction|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/contemporary|/genres/novels|/genres/death|/genres/childrens|/genres/juvenile|/genres/health|/genres/illness,dir40/2164318.Ways_to_Live_Forever.html,3748,Ways to Live Forever +3.95,576,0007235801,good_reads:book,https://www.goodreads.com/author/show/566.Paulo_Coelho,2005,/genres/fiction|/genres/inspirational|/genres/short-stories|/genres/spirituality|/genres/novels|/genres/philosophy|/genres/contemporary|/genres/self-help|/genres/realistic-fiction|/genres/slice-of-life|/genres/literature,dir40/587666.Like_the_Flowing_River.html,10173,Like the Flowing River +3.72,1662,,good_reads:book,https://www.goodreads.com/author/show/767547.Lisa_McMann,2010,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/mystery|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance,dir40/7124095-gone.html,20810,"Gone (Dream Catcher, #3)" +4.13,1542,1402245793,good_reads:book,https://www.goodreads.com/author/show/4062698.Olivia_Cunning,2011,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/romance|/genres/erotic-romance|/genres/adult|/genres/music|/genres/erotica|/genres/bdsm|/genres/music|/genres/musicians|/genres/fiction,dir40/9442157-rock-hard.html,28015,"Rock Hard (Sinners on Tour, #2)" +4.30,644,1434764311,good_reads:book,https://www.goodreads.com/author/show/73754.Lisa_Tawn_Bergren,2011,/genres/science-fiction|/genres/time-travel|/genres/young-adult|/genres/historical-fiction|/genres/romance|/genres/fantasy|/genres/christian-fiction|/genres/christian|/genres/adventure|/genres/fiction|/genres/romance|/genres/historical-romance,dir40/9368401-cascade.html,5688,"Cascade (River of Time, #2)" +4.06,2419,0061962783,good_reads:book,https://www.goodreads.com/author/show/4106652.Thanhha_Lai,2011,/genres/historical-fiction|/genres/poetry|/genres/young-adult|/genres/childrens|/genres/middle-grade|/genres/fiction|/genres/childrens|/genres/cultural|/genres/realistic-fiction|/genres/childrens|/genres/juvenile|/genres/war,dir40/8537327-inside-out-back-again.html,14537,Inside Out & Back Again +3.96,203,0449911446,good_reads:book,https://www.goodreads.com/author/show/96196.Connie_May_Fowler,1996,/genres/fiction|/genres/american|/genres/southern|/genres/book-club|/genres/historical-fiction|/genres/novels|/genres/womens|/genres/sociology|/genres/abuse|/genres/drama|/genres/literature|/genres/young-adult|/genres/coming-of-age,dir40/470587.Before_Women_Had_Wings.html,2083,Before Women Had Wings +4.05,1451,0380789027,good_reads:book,https://www.goodreads.com/author/show/1221698.Neil_Gaiman,1998,/genres/fantasy|/genres/short-stories|/genres/fiction|/genres/horror|/genres/fantasy|/genres/urban-fantasy|/genres/science-fiction-fantasy|/genres/anthologies|/genres/science-fiction|/genres/poetry,dir40/16790.Smoke_and_Mirrors.html,39735,Smoke and Mirrors +4.12,907,034545894X,good_reads:book,https://www.goodreads.com/author/show/18149.Tess_Gerritsen,2004,/genres/mystery|/genres/mystery|/genres/crime|/genres/thriller|/genres/fiction|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/murder-mystery|/genres/mystery|/genres/detective|/genres/adult|/genres/contemporary|/genres/medical,dir41/32258.Body_Double.html,22133,"Body Double (Rizzoli & Isles, #4)" +4.17,1064,0434018422,good_reads:book,https://www.goodreads.com/author/show/1100593.Nick_Harkaway,2008,/genres/fiction|/genres/science-fiction|/genres/fantasy|/genres/apocalyptic|/genres/post-apocalyptic|/genres/science-fiction|/genres/dystopia|/genres/humor|/genres/science-fiction-fantasy|/genres/novels|/genres/speculative-fiction|/genres/book-club,dir41/3007704-the-gone-away-world.html,5760,The Gone-Away World +4.33,132,0765349647,good_reads:book,https://www.goodreads.com/author/show/37766.Gary_Jennings,1984,/genres/historical-fiction|/genres/fiction|/genres/adventure|/genres/travel|/genres/cultural|/genres/asia|/genres/cultural|/genres/china|/genres/science-fiction-fantasy|/genres/epic|/genres/literature|/genres/asian-literature|/genres/cultural|/genres/italy,dir41/79155.The_Journeyer.html,1775,The Journeyer +3.76,1056,031238369X,good_reads:book,https://www.goodreads.com/author/show/1487748.Courtney_Summers,2008,/genres/young-adult|/genres/contemporary|/genres/realistic-fiction|/genres/romance|/genres/fiction|/genres/young-adult|/genres/high-school|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/teen|/genres/drama|/genres/mystery,dir41/3521484-cracked-up-to-be.html,10198,Cracked Up to Be +4.05,1508,,good_reads:book,https://www.goodreads.com/author/show/3306075.Essam_Youssef,2008,/genres/novels|/genres/fiction|/genres/cultural|/genres/egypt,dir41/3692091.html,12256,١/٤ جرام +3.91,627,1416939156,good_reads:book,https://www.goodreads.com/author/show/14617.Margaret_Peterson_Haddix,2008,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/fairy-tales|/genres/romance|/genres/fiction|/genres/fairy-tales|/genres/princesses|/genres/adventure|/genres/childrens|/genres/young-adult|/genres/teen|/genres/fairy-tales|/genres/fairy-tale-retellings,dir41/2208767.Palace_of_Mirrors.html,8468,"Palace of Mirrors (The Palace Chronicles, #2)" +4.20,71,0449912493,good_reads:book,https://www.goodreads.com/author/show/4116.Erich_Maria_Remarque,1961,/genres/fiction|/genres/novels|/genres/european-literature|/genres/german-literature|/genres/historical-fiction|/genres/romance,dir41/397507.Heaven_Has_No_Favorites.html,2795,Heaven Has No Favorites +3.90,3493,0374193681,good_reads:book,https://www.goodreads.com/author/show/11664.David_Levithan,2010,/genres/romance|/genres/fiction|/genres/young-adult|/genres/contemporary|/genres/adult|/genres/adult-fiction|/genres/poetry|/genres/realistic-fiction|/genres/love|/genres/book-club,dir41/9279177-the-lover-s-dictionary.html,25444,The Lover's Dictionary +4.08,411,0760704066,good_reads:book,https://www.goodreads.com/author/show/6208.Dodie_Smith,1956,/genres/childrens|/genres/classics|/genres/fiction|/genres/animals|/genres/fantasy|/genres/adventure|/genres/animals|/genres/dogs|/genres/young-adult|/genres/childrens|/genres/middle-grade|/genres/european-literature|/genres/british-literature,dir41/511614.The_Hundred_and_One_Dalmatians.html,21540,"The Hundred and One Dalmatians (The Hundred and One Dalmatians, #1)" +4.43,3618,147677143X,good_reads:book,https://www.goodreads.com/author/show/5430144.Colleen_Hoover,2013,/genres/romance|/genres/new-adult|/genres/young-adult|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/short-stories|/genres/young-adult|/genres/high-school|/genres/fiction|/genres/humor|/genres/funny|/genres/womens-fiction|/genres/chick-lit,dir41/18593175-finding-cinderella.html,24892,"Finding Cinderella (Hopeless, #2.5)" +4.12,215,081121687X,good_reads:book,https://www.goodreads.com/author/show/50071.Bohumil_Hrabal,1971,/genres/fiction|/genres/european-literature|/genres/czech-literature|/genres/literature|/genres/historical-fiction|/genres/novels|/genres/classics|/genres/humor|/genres/comedy|/genres/literature|/genres/20th-century|/genres/war|/genres/academic|/genres/school,dir41/397503.I_Served_the_King_of_England.html,2905,I Served the King of England +3.95,848,0140283358,good_reads:book,https://www.goodreads.com/author/show/4128.J_M_Coetzee,1980,/genres/fiction|/genres/cultural|/genres/africa|/genres/literature|/genres/novels|/genres/historical-fiction|/genres/literature|/genres/african-literature|/genres/contemporary|/genres/literature|/genres/20th-century|/genres/book-club|/genres/academic|/genres/school,dir41/6194.Waiting_for_the_Barbarians.html,11960,Waiting for the Barbarians +4.21,576,0060266864,good_reads:book,https://www.goodreads.com/author/show/87184.Laura_Joffe_Numeroff,1998,/genres/childrens|/genres/picture-books|/genres/childrens|/genres/animals|/genres/fiction|/genres/food-and-drink|/genres/food|/genres/humor|/genres/kids|/genres/fantasy|/genres/childrens|/genres/storytime|/genres/humor|/genres/funny,dir41/826585.If_You_Give_a_Pig_a_Pancake.html,41354,If You Give a Pig a Pancake +4.12,391,014095144X,good_reads:book,https://www.goodreads.com/author/show/27397.Benjamin_Hoff,1992,/genres/philosophy|/genres/non-fiction|/genres/religion|/genres/spirituality|/genres/religion|/genres/taoism|/genres/psychology|/genres/humor|/genres/self-help|/genres/inspirational|/genres/classics,dir41/89370.Tao_of_Pooh_and_Te_of_Piglet_Boxed_Set.html,7705,Tao of Pooh and Te of Piglet Boxed Set +3.48,3066,1594488800,good_reads:book,https://www.goodreads.com/author/show/25334.Sarah_Waters,2009,/genres/fiction|/genres/historical-fiction|/genres/horror|/genres/mystery|/genres/gothic|/genres/paranormal|/genres/ghosts|/genres/book-club|/genres/european-literature|/genres/british-literature|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural,dir41/6065182-the-little-stranger.html,18360,The Little Stranger +4.20,434,0553280406,good_reads:book,https://www.goodreads.com/author/show/858.Louis_L_Amour,1984,/genres/historical-fiction|/genres/fiction|/genres/western|/genres/adventure|/genres/book-club|/genres/classics|/genres/historical-fiction|/genres/medieval|/genres/fantasy|/genres/action|/genres/literature,dir41/327548.The_Walking_Drum.html,4524,The Walking Drum +4.17,570,,good_reads:book,https://www.goodreads.com/author/show/164187.Jennifer_Lynn_Barnes,2012,/genres/shapeshifters|/genres/werewolves|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/animals|/genres/wolves|/genres/paranormal|/genres/shapeshifters|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/ghosts,dir41/12499005-taken-by-storm.html,4759,"Taken by Storm (Raised by Wolves, #3)" +4.41,495,,good_reads:book,https://www.goodreads.com/author/show/5286855.Amy_A_Bartol,2012,/genres/paranormal|/genres/angels|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/magic|/genres/new-adult,dir41/13502963-indebted.html,12293,"Indebted (The Premonition, #3)" +4.35,15801,1416914307,good_reads:book,https://www.goodreads.com/author/show/150038.Cassandra_Clare,2009,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/shapeshifters|/genres/werewolves,dir41/3777732-city-of-glass.html,409527,"City of Glass (The Mortal Instruments, #3)" +3.79,20747,1416524797,good_reads:book,https://www.goodreads.com/author/show/630.Dan_Brown,2000,/genres/fiction|/genres/mystery|/genres/thriller|/genres/suspense|/genres/adventure|/genres/thriller|/genres/mystery-thriller|/genres/historical-fiction|/genres/mystery|/genres/crime|/genres/novels|/genres/adult,dir41/960.Angels_Demons.html,1297716,"Angels & Demons (Robert Langdon, #1)" +3.80,251,0060828587,good_reads:book,https://www.goodreads.com/author/show/38030.Matilde_Asensi,2001,/genres/fiction|/genres/historical-fiction|/genres/thriller|/genres/mystery|/genres/adventure|/genres/religion|/genres/european-literature|/genres/spanish-literature|/genres/contemporary|/genres/fantasy|/genres/novels,dir41/361938.The_Last_Cato.html,3220,The Last Cato +3.79,199,1858817692,good_reads:book,https://www.goodreads.com/author/show/1388082.Jostein_Gaarder,1993,/genres/philosophy|/genres/young-adult|/genres/novels|/genres/childrens|/genres/contemporary|/genres/literature|/genres/fiction|/genres/asian-literature|/genres/indonesian-literature|/genres/religion|/genres/roman,dir41/25405.Through_a_Glass_Darkly.html,3573,"Through a Glass, Darkly" +4.16,909,0061566152,good_reads:book,https://www.goodreads.com/author/show/93970.Sara_Shepard,2010,/genres/young-adult|/genres/mystery|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/contemporary|/genres/romance|/genres/young-adult|/genres/teen|/genres/realistic-fiction|/genres/thriller|/genres/drama,dir41/3047848-heartless.html,26416,"Heartless (Pretty Little Liars, #7)" +3.87,860,1579125697,good_reads:book,https://www.goodreads.com/author/show/2001717.Daphne_du_Maurier,1951,/genres/classics|/genres/fiction|/genres/mystery|/genres/gothic|/genres/historical-fiction|/genres/romance|/genres/suspense|/genres/european-literature|/genres/british-literature|/genres/book-club|/genres/literature,dir41/50239.My_Cousin_Rachel.html,10531,My Cousin Rachel +3.86,894,0545135702,good_reads:book,https://www.goodreads.com/author/show/17216.Peter_Lerangis,2009,/genres/mystery|/genres/adventure|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/fantasy|/genres/childrens|/genres/juvenile,dir41/5861926-the-sword-thief.html,31905,"The Sword Thief (The 39 Clues, #3)" +4.02,1388,0441017800,good_reads:book,https://www.goodreads.com/author/show/21748.Ilona_Andrews,2009,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/magic|/genres/adult|/genres/fiction|/genres/paranormal|/genres/shapeshifters|/genres/fantasy|/genres/supernatural,dir41/6329547-on-the-edge.html,17323,"On the Edge (The Edge, #1)" +4.40,1037,1439136807,good_reads:book,https://www.goodreads.com/author/show/4428.Kresley_Cole,2011,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/demons|/genres/adult|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/magic,dir41/8534799-dreams-of-a-dark-warrior.html,21137,"Dreams of a Dark Warrior (Immortals After Dark, #11)" +4.23,9,0980133882,good_reads:book,https://www.goodreads.com/author/show/5130924.Michael_West,2009,/genres/horror|/genres/short-stories,dir41/7602367-skull-full-of-kisses.html,39,Skull Full of Kisses +3.86,423,0874774241,good_reads:book,https://www.goodreads.com/author/show/42010.Betty_Edwards,1979,/genres/art|/genres/non-fiction|/genres/art|/genres/drawing|/genres/reference|/genres/psychology|/genres/design|/genres/how-to|/genres/education,dir41/627206.The_New_Drawing_on_the_Right_Side_of_the_Brain.html,82182,The New Drawing on the Right Side of the Brain +4.19,526,0060885432,good_reads:book,https://www.goodreads.com/author/show/5300.Laura_Ingalls_Wilder,1941,/genres/classics|/genres/historical-fiction|/genres/childrens|/genres/fiction|/genres/young-adult|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/middle-grade|/genres/literature|/genres/american|/genres/family|/genres/childrens|/genres/chapter-books,dir41/8253.Little_Town_on_the_Prairie.html,48775,"Little Town on the Prairie (Little House, #7)" +3.90,1199,0450042685,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1978,/genres/horror|/genres/fiction|/genres/short-stories|/genres/thriller|/genres/fantasy|/genres/mystery|/genres/anthologies|/genres/fantasy|/genres/supernatural|/genres/suspense|/genres/literature|/genres/american,dir41/10628.Night_Shift.html,78483,Night Shift +4.16,207,,good_reads:book,https://www.goodreads.com/author/show/1516687.Hector_Malot,1878,/genres/classics|/genres/childrens|/genres/cultural|/genres/france|/genres/historical-fiction|/genres/adventure|/genres/novels|/genres/literature,dir41/1500209.Nobody_s_Boy.html,4829,Nobody's Boy +3.83,487,0375706682,good_reads:book,https://www.goodreads.com/author/show/49111.Samuel_R_Delany,1974,/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/classics|/genres/apocalyptic|/genres/post-apocalyptic|/genres/novels|/genres/speculative-fiction|/genres/science-fiction|/genres/dystopia,dir41/85867.Dhalgren.html,4518,Dhalgren +3.74,1358,0375838813,good_reads:book,https://www.goodreads.com/author/show/505695.N_D_Wilson,2007,/genres/fiction|/genres/fantasy|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/adventure|/genres/mystery|/genres/young-adult|/genres/childrens|/genres/juvenile|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy,dir41/1661390.100_Cupboards.html,7913,"100 Cupboards (100 Cupboards, #1)" +4.63,227,0062240080,good_reads:book,https://www.goodreads.com/author/show/4039811.Veronica_Roth,2012,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/romance|/genres/fiction|/genres/fantasy|/genres/action|/genres/media-tie-in|/genres/movies|/genres/young-adult|/genres/teen|/genres/adventure,dir41/15743078-the-divergent-series-2-book-collection.html,9388,"The Divergent Series 2-Book Collection (Divergent, #1-2)" +4.17,22,9602790598,good_reads:book,https://www.goodreads.com/author/show/2899790.Menelaos_Lountemis,1956,/genres/literature|/genres/classics|/genres/childrens,dir41/6622256.html,756,"Ένα παιδί μετράει τ' άστρα (Τετραλογία του Μέλιου, #2)" +4.01,130,1582349827,good_reads:book,https://www.goodreads.com/author/show/23138.Mary_Hoffman,2003,/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/time-travel|/genres/historical-fiction|/genres/fiction|/genres/adventure|/genres/romance|/genres/fantasy|/genres/magic|/genres/childrens|/genres/cultural|/genres/italy,dir41/250026.City_of_Stars.html,4755,"City of Stars (Stravaganza, #2)" +4.35,273,0140118594,good_reads:book,https://www.goodreads.com/author/show/23129.Robertson_Davies,1977,/genres/fiction|/genres/cultural|/genres/canada|/genres/fantasy|/genres/novels|/genres/literature|/genres/classics|/genres/mystery|/genres/literary-fiction|/genres/adult-fiction|/genres/literature|/genres/canadian-literature,dir41/74403.The_Deptford_Trilogy.html,4722,The Deptford Trilogy +4.20,1343,0375714669,good_reads:book,https://www.goodreads.com/author/show/6238.Marjane_Satrapi,2002,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/biography|/genres/history|/genres/cultural|/genres/iran|/genres/graphic-novels-comics|/genres/biography|/genres/autobiography|/genres/biography-memoir,dir41/9517.Persepolis_2.html,30785,"Persepolis 2 (Persepolis, #3-4)" +3.77,1276,0375955712,good_reads:book,https://www.goodreads.com/author/show/2347.Jeanne_DuPrau,2008,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/science-fiction|/genres/fiction|/genres/childrens|/genres/apocalyptic|/genres/post-apocalyptic|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile,dir41/2493973.The_Diamond_of_Darkhold.html,14302,"The Diamond of Darkhold (Book of Ember, #4)" +3.79,818,0330418874,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2004,/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/fiction|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/adult|/genres/young-adult|/genres/humor|/genres/adult-fiction,dir41/93723.Boy_Meets_Girl.html,15525,"Boy Meets Girl (Boy, #2)" +3.69,470,1936850168,good_reads:book,https://www.goodreads.com/author/show/4629065.Amber_Argyle,2011,/genres/fantasy|/genres/young-adult|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/romance|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/adventure|/genres/young-adult|/genres/young-adult-fantasy,dir41/10400575-witch-song.html,2489,"Witch Song (Witch Song, #1)" +3.99,1303,076534825X,good_reads:book,https://www.goodreads.com/author/show/27276.Robert_Charles_Wilson,2005,/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/time-travel|/genres/fantasy|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/aliens|/genres/speculative-fiction|/genres/science-fiction|/genres/apocalyptic|/genres/book-club,dir41/910863.Spin.html,18008,"Spin (Spin, #1)" +3.44,4392,074349671X,good_reads:book,https://www.goodreads.com/author/show/7128.Jodi_Picoult,2006,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/adult-fiction|/genres/drama|/genres/adult|/genres/realistic-fiction|/genres/mystery|/genres/book-club|/genres/novels,dir41/10909.The_Tenth_Circle.html,83814,The Tenth Circle +4.03,317,0425202054,good_reads:book,https://www.goodreads.com/author/show/37202.Irene_Hunt,1966,/genres/young-adult|/genres/fiction|/genres/historical-fiction|/genres/childrens|/genres/young-adult|/genres/coming-of-age|/genres/classics|/genres/realistic-fiction|/genres/romance|/genres/young-adult|/genres/teen|/genres/childrens|/genres/middle-grade,dir41/65954.Up_a_Road_Slowly.html,3705,Up a Road Slowly +3.55,1601,,good_reads:book,https://www.goodreads.com/author/show/3388918.Mira_Lyn_Kelly,2012,/genres/romance|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/womens-fiction|/genres/chick-lit|/genres/adult|/genres/fiction|/genres/category-romance|/genres/harlequin|/genres/new-adult|/genres/adult-fiction|/genres/romance|/genres/category-romance,dir41/16124019-waking-up-married.html,19919,Waking Up Married +4.01,1220,,good_reads:book,https://www.goodreads.com/author/show/341493.Craig_Silvey,2009,/genres/young-adult|/genres/mystery|/genres/fiction|/genres/historical-fiction|/genres/cultural|/genres/australia|/genres/book-club|/genres/realistic-fiction|/genres/young-adult|/genres/coming-of-age|/genres/young-adult|/genres/teen|/genres/contemporary,dir41/8407173-jasper-jones.html,8852,Jasper Jones +4.58,1711,1250029880,good_reads:book,https://www.goodreads.com/author/show/4430.Sherrilyn_Kenyon,2013,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/demons|/genres/adult|/genres/fantasy|/genres/supernatural,dir41/15767586-styxx.html,9588,"Styxx (Dark-Hunter, #12)" +4.06,230,0060825197,good_reads:book,https://www.goodreads.com/author/show/5548.Simone_de_Beauvoir,1958,/genres/non-fiction|/genres/biography|/genres/autobiography|/genres/memoir|/genres/cultural|/genres/france|/genres/feminism|/genres/biography|/genres/autobiography|/genres/philosophy|/genres/classics|/genres/european-literature|/genres/french-literature|/genres/biography-memoir,dir41/164006.Memoirs_of_a_Dutiful_Daughter.html,3281,Memoirs of a Dutiful Daughter +3.87,515,0446359203,good_reads:book,https://www.goodreads.com/author/show/2687.Dan_Simmons,1989,/genres/horror|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/thriller|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/suspense|/genres/adventure,dir41/11286.Carrion_Comfort.html,9744,Carrion Comfort +4.12,520,0805080511,good_reads:book,https://www.goodreads.com/author/show/8924.Lloyd_Alexander,1967,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/adventure|/genres/science-fiction-fantasy|/genres/classics|/genres/childrens|/genres/juvenile|/genres/fantasy|/genres/high-fantasy|/genres/childrens|/genres/middle-grade,dir41/24782.Taran_Wanderer.html,21723,Taran Wanderer (The Chronicles of Prydain #4) +4.22,625,0195007778,good_reads:book,https://www.goodreads.com/author/show/43828.Aldo_Leopold,1949,/genres/non-fiction|/genres/environment|/genres/nature|/genres/science|/genres/classics|/genres/philosophy|/genres/environment|/genres/science|/genres/natural-history|/genres/biology|/genres/ecology|/genres/autobiography|/genres/memoir|/genres/history,dir41/210404.A_Sand_County_Almanac_with_Other_Essays_on_Conservation_from_Round_River.html,13446,A Sand County Almanac with Other Essays on Conservation from Round River +3.82,1938,1442409096,good_reads:book,https://www.goodreads.com/author/show/4103366.Lauren_DeStefano,2013,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/romance|/genres/science-fiction|/genres/fantasy|/genres/fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/young-adult|/genres/teen|/genres/science-fiction|/genres/apocalyptic|/genres/fantasy|/genres/paranormal,dir41/12383869-sever.html,14216,"Sever (The Chemical Garden, #3)" +4.33,5933,0804139024,good_reads:book,https://www.goodreads.com/author/show/6540057.Andy_Weir,2012,/genres/science-fiction|/genres/fiction|/genres/thriller|/genres/adventure|/genres/space|/genres/science-fiction-fantasy|/genres/adventure|/genres/survival|/genres/adult|/genres/book-club|/genres/humor,dir41/18007564-the-martian.html,30237,The Martian +4.16,185,0140447555,good_reads:book,https://www.goodreads.com/author/show/13879.Snorri_Sturluson,1220,/genres/fantasy|/genres/mythology|/genres/classics|/genres/history|/genres/poetry|/genres/historical-fiction|/genres/medieval|/genres/religion|/genres/literature|/genres/non-fiction|/genres/european-literature|/genres/scandinavian-literature|/genres/folklore,dir41/24658.The_Prose_Edda.html,4948,The Prose Edda +3.83,705,0061020672,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,1988,/genres/fantasy|/genres/humor|/genres/fiction|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny|/genres/fantasy|/genres/magic|/genres/science-fiction|/genres/novels|/genres/paranormal|/genres/wizards,dir41/34499.Sourcery.html,38638,"Sourcery (Discworld, #5)" +3.44,623,0375703845,good_reads:book,https://www.goodreads.com/author/show/2751.Bret_Easton_Ellis,1998,/genres/fiction|/genres/thriller|/genres/contemporary|/genres/classics|/genres/cult-classics|/genres/literature|/genres/american|/genres/literary-fiction|/genres/horror|/genres/novels|/genres/literature|/genres/adult,dir41/9913.Glamorama.html,12825,Glamorama +4.54,307,0007426194,good_reads:book,https://www.goodreads.com/author/show/165168.Derek_Landy,2011,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/adventure|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/mystery,dir41/10221341-death-bringer.html,5690,"Death Bringer (Skulduggery Pleasant, #6)" +4.13,568,9793269065,good_reads:book,https://www.goodreads.com/author/show/2911935.Torey_L_Hayden,1980,/genres/non-fiction|/genres/psychology|/genres/autobiography|/genres/memoir|/genres/education|/genres/true-story|/genres/biography|/genres/sociology|/genres/abuse|/genres/asian-literature|/genres/indonesian-literature|/genres/mental-health|/genres/mental-illness|/genres/contemporary,dir41/1243569.Sheila.html,6191,Sheila +3.88,493,0679601597,good_reads:book,https://www.goodreads.com/author/show/463.Philip_Roth,1959,/genres/short-stories|/genres/classics|/genres/fiction|/genres/literature|/genres/american|/genres/literature|/genres/jewish|/genres/novels|/genres/literary-fiction,dir41/29744.Goodbye_Columbus_and_Five_Short_Stories.html,9048,"Goodbye, Columbus and Five Short Stories" +4.24,182,0886774268,good_reads:book,https://www.goodreads.com/author/show/8685.Mercedes_Lackey,1990,/genres/fantasy|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/romance|/genres/romance|/genres/m-m-romance|/genres/glbt|/genres/fantasy|/genres/epic-fantasy|/genres/young-adult|/genres/fantasy|/genres/high-fantasy,dir41/28734.Magic_s_Price.html,13439,Magic's Price (Valdemar: Last Herald-Mage #3) +4.17,61,1407102842,good_reads:book,https://www.goodreads.com/author/show/16143.Kate_Forsyth,2009,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/science-fiction|/genres/time-travel|/genres/fiction|/genres/adventure|/genres/historical-fiction|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/mystery,dir41/6889348-the-puzzle-ring.html,430,The Puzzle Ring +3.73,1064,0670011460,good_reads:book,https://www.goodreads.com/author/show/410418.Susane_Colasanti,2010,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/high-school|/genres/fiction|/genres/young-adult|/genres/young-adult-romance|/genres/young-adult|/genres/young-adult-contemporary,dir41/6621143-something-like-fate.html,14098,Something Like Fate +4.24,871,0743474155,good_reads:book,https://www.goodreads.com/author/show/9885.Judith_McNaught,1989,/genres/romance|/genres/historical-romance|/genres/romance|/genres/historical-fiction|/genres/historical-fiction|/genres/medieval|/genres/adult|/genres/fiction|/genres/historical-romance|/genres/medieval-romance|/genres/womens-fiction|/genres/chick-lit|/genres/cultural|/genres/scotland|/genres/european-literature|/genres/british-literature,dir41/129619.A_Kingdom_of_Dreams.html,24246,"A Kingdom of Dreams (Westmoreland, #1)" +3.71,1712,,good_reads:book,https://www.goodreads.com/author/show/3486415.Amanda_Hocking,2012,/genres/young-adult|/genres/fantasy|/genres/mermaids|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/romance|/genres/paranormal-romance|/genres/young-adult|/genres/teen,dir41/10586539-wake.html,13106,Wake (Watersong #1) +3.94,4361,0316322407,good_reads:book,https://www.goodreads.com/author/show/7064545.Malala_Yousafzai,2012,/genres/non-fiction|/genres/biography|/genres/autobiography|/genres/memoir|/genres/book-club|/genres/biography|/genres/autobiography|/genres/biography-memoir|/genres/feminism|/genres/history|/genres/politics|/genres/education,dir41/17851885-i-am-malala.html,43801,I Am Malala +4.35,4832,,good_reads:book,https://www.goodreads.com/author/show/5430144.Colleen_Hoover,2014,/genres/new-adult|/genres/romance|/genres/contemporary|/genres/romance|/genres/contemporary-romance,dir41/17788401-ugly-love.html,26691,Ugly Love +3.71,1017,0385339666,good_reads:book,https://www.goodreads.com/author/show/721.John_Grisham,1994,/genres/fiction|/genres/mystery|/genres/thriller|/genres/suspense|/genres/mystery|/genres/crime|/genres/thriller|/genres/legal-thriller|/genres/thriller|/genres/mystery-thriller|/genres/law|/genres/drama|/genres/adult-fiction,dir41/5355.The_Chamber.html,83705,The Chamber +4.26,855,0312599064,good_reads:book,https://www.goodreads.com/author/show/4430.Sherrilyn_Kenyon,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/paranormal|/genres/demons|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/magic,dir41/8677937-invincible.html,14453,"Invincible (Chronicles of Nick, #2)" +4.14,770,044024417X,good_reads:book,https://www.goodreads.com/author/show/48206.Karen_Marie_Moning,2000,/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/science-fiction|/genres/time-travel|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/historical-romance|/genres/fantasy|/genres/historical-fiction|/genres/fairies|/genres/fae|/genres/adult|/genres/cultural|/genres/scotland,dir41/815150.The_Highlander_s_Touch.html,17730,"The Highlander's Touch (Highlander, #3)" +4.27,365,0385339526,good_reads:book,https://www.goodreads.com/author/show/119121.Conn_Iggulden,2008,/genres/historical-fiction|/genres/fiction|/genres/war|/genres/fantasy|/genres/cultural|/genres/asia|/genres/adventure|/genres/novels|/genres/war|/genres/military|/genres/action|/genres/cultural|/genres/china,dir41/1632833.Genghis.html,7870,"Genghis (Conqueror, #2)" +4.29,1642,,good_reads:book,https://www.goodreads.com/author/show/3980637.Tina_Reber,2012,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/new-adult|/genres/adult|/genres/womens-fiction|/genres/chick-lit|/genres/love|/genres/adult-fiction|/genres/erotica|/genres/drama|/genres/romance|/genres/erotic-romance,dir41/12647642-love-unrehearsed.html,33796,"Love Unrehearsed (Love, #2)" +3.95,3602,1594487561,good_reads:book,https://www.goodreads.com/author/show/3246397.Jean_Kwok,2010,/genres/fiction|/genres/book-club|/genres/historical-fiction|/genres/young-adult|/genres/contemporary|/genres/adult-fiction|/genres/cultural|/genres/china|/genres/adult|/genres/young-adult|/genres/coming-of-age|/genres/realistic-fiction,dir41/7362158-girl-in-translation.html,25824,Girl in Translation +4.07,139,0142501549,good_reads:book,https://www.goodreads.com/author/show/5329.Brian_Jacques,2001,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/animals|/genres/adventure|/genres/science-fiction-fantasy|/genres/childrens|/genres/middle-grade|/genres/fantasy|/genres/high-fantasy|/genres/childrens|/genres/juvenile,dir41/7976.Taggerung.html,9041,"Taggerung (Redwall, #14)" +4.03,606,0747545251,good_reads:book,https://www.goodreads.com/author/show/12540.Robert_Bloch,1959,/genres/horror|/genres/fiction|/genres/thriller|/genres/classics|/genres/mystery|/genres/mystery|/genres/crime|/genres/suspense|/genres/media-tie-in|/genres/movies,dir41/156427.Psycho.html,23572,Psycho +4.34,578,0441016383,good_reads:book,https://www.goodreads.com/author/show/10746.Jim_Butcher,2005,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/epic|/genres/adventure|/genres/adult|/genres/war,dir41/2903736-princeps-fury.html,29537,"Princeps' Fury (Codex Alera, #5)" +4.09,1402,0061779849,good_reads:book,https://www.goodreads.com/author/show/2755160.Kimberly_Derting,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/mystery|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/paranormal|/genres/ghosts|/genres/young-adult|/genres/teen,dir41/7827221-desires-of-the-dead.html,16501,"Desires of the Dead (The Body Finder, #2)" +3.94,2334,0062235656,good_reads:book,https://www.goodreads.com/author/show/5027236.Kasie_West,2013,/genres/young-adult|/genres/contemporary|/genres/romance|/genres/realistic-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/contemporary-romance,dir41/15283043-the-distance-between-us.html,20229,The Distance Between Us +3.58,553,0451528239,good_reads:book,https://www.goodreads.com/author/show/58634.Kamala_Markandaya,1954,/genres/fiction|/genres/cultural|/genres/india|/genres/classics|/genres/historical-fiction|/genres/academic|/genres/school|/genres/academic|/genres/read-for-school|/genres/literature|/genres/cultural|/genres/asia|/genres/novels|/genres/asian-literature|/genres/indian-literature,dir41/101509.Nectar_in_a_Sieve.html,5337,Nectar in a Sieve +3.78,5484,1582346186,good_reads:book,https://www.goodreads.com/author/show/20357.Chelsea_Handler,2004,/genres/humor|/genres/comedy|/genres/humor|/genres/funny|/genres/womens-fiction|/genres/chick-lit|/genres/biography|/genres/autobiography|/genres/book-club|/genres/humor|/genres/non-fiction|/genres/biography|/genres/biography-memoir|/genres/sexuality,dir41/35982.My_Horizontal_Life.html,71482,My Horizontal Life +3.62,944,0722534876,good_reads:book,https://www.goodreads.com/author/show/566.Paulo_Coelho,1987,/genres/fiction|/genres/spirituality|/genres/philosophy|/genres/novels|/genres/travel|/genres/inspirational|/genres/religion|/genres/literature|/genres/self-help|/genres/contemporary,dir41/4004.The_Pilgrimage.html,23358,The Pilgrimage +4.09,1701,1416591052,good_reads:book,https://www.goodreads.com/author/show/4090011.S_C_Gwynne,2010,/genres/history|/genres/non-fiction|/genres/history|/genres/american-history|/genres/biography|/genres/book-club|/genres/western|/genres/war|/genres/literature|/genres/american|/genres/war|/genres/military|/genres/literature|/genres/19th-century,dir41/7648269-empire-of-the-summer-moon.html,12750,Empire of the Summer Moon +4.22,1101,044657449X,good_reads:book,https://www.goodreads.com/author/show/375143.Larissa_Ione,2011,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/demons|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/adult|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/adult-fiction|/genres/erotica,dir41/8843801-eternal-rider.html,14277,"Eternal Rider (Lords of Deliverance, #1, Demonica, #6)" +4.02,34,0679601112,good_reads:book,https://www.goodreads.com/author/show/45882.Percy_Bysshe_Shelley,1904,/genres/poetry|/genres/classics|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/fiction|/genres/literature|/genres/english-literature|/genres/romantic|/genres/literature|/genres/19th-century|/genres/literary-fiction|/genres/classics|/genres/classic-literature,dir41/223394.The_Complete_Poems.html,5609,The Complete Poems +4.75,72,1401210856,good_reads:book,https://www.goodreads.com/author/show/1221698.Neil_Gaiman,2008,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fantasy|/genres/fiction|/genres/graphic-novels-comics|/genres/horror|/genres/comics|/genres/comic-book|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/urban-fantasy|/genres/science-fiction-fantasy,dir41/3375878-the-absolute-sandman-vol-4.html,3661,"The Absolute Sandman, Vol. 4" +4.05,966,0385515995,good_reads:book,https://www.goodreads.com/author/show/51589.Chitra_Banerjee_Divakaruni,2008,/genres/cultural|/genres/india|/genres/fiction|/genres/historical-fiction|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/asian-literature|/genres/indian-literature|/genres/cultural|/genres/asia|/genres/novels|/genres/magical-realism|/genres/book-club,dir41/1774836.The_Palace_of_Illusions.html,8153,The Palace of Illusions +3.81,2066,0553803190,good_reads:book,https://www.goodreads.com/author/show/14032.Connie_Willis,2010,/genres/science-fiction|/genres/science-fiction|/genres/time-travel|/genres/historical-fiction|/genres/fiction|/genres/fantasy|/genres/history|/genres/world-war-ii|/genres/science-fiction-fantasy|/genres/war|/genres/speculative-fiction|/genres/science-fiction|/genres/alternate-history,dir41/6506307-blackout.html,10910,Blackout +3.84,337,0140447970,good_reads:book,https://www.goodreads.com/author/show/1461.Gustave_Flaubert,1869,/genres/classics|/genres/fiction|/genres/cultural|/genres/france|/genres/european-literature|/genres/french-literature|/genres/literature|/genres/19th-century|/genres/literature|/genres/literary-fiction|/genres/novels|/genres/modern|/genres/contemporary,dir41/2183.Sentimental_Education.html,8998,Sentimental Education +4.17,266,0451451805,good_reads:book,https://www.goodreads.com/author/show/60177.Guy_Gavriel_Kay,1986,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/cultural|/genres/canada|/genres/fantasy|/genres/magic,dir41/290628.The_Darkest_Road.html,9499,"The Darkest Road (The Fionavar Tapestry, #3)" +4.15,371,0374505241,good_reads:book,https://www.goodreads.com/author/show/22694.Flannery_O_Connor,1955,/genres/fiction|/genres/classics|/genres/novels|/genres/literature|/genres/gothic|/genres/southern-gothic|/genres/american|/genres/southern|/genres/gothic|/genres/literary-fiction|/genres/literature|/genres/american|/genres/book-club,dir41/48468.The_Violent_Bear_it_Away.html,5112,The Violent Bear it Away +4.14,1195,0618001905,good_reads:book,https://www.goodreads.com/author/show/15402.Adam_Hochschild,1998,/genres/history|/genres/non-fiction|/genres/cultural|/genres/africa|/genres/biography|/genres/politics|/genres/history|/genres/world-history|/genres/academic|/genres/school|/genres/history|/genres/european-history|/genres/cultural|/genres/belgium|/genres/literature|/genres/19th-century,dir41/347610.King_Leopold_s_Ghost.html,15451,King Leopold's Ghost +4.13,364,0316070521,good_reads:book,https://www.goodreads.com/author/show/32168.Catherine_Hardwicke,2009,/genres/paranormal|/genres/vampires|/genres/non-fiction|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/media-tie-in|/genres/movies|/genres/shapeshifters|/genres/werewolves|/genres/young-adult|/genres/teen|/genres/reference|/genres/romance|/genres/paranormal-romance,dir41/6202690-twilight-director-s-notebook.html,57034,Twilight Director's Notebook +3.88,1100,0385738382,good_reads:book,https://www.goodreads.com/author/show/3505204.Alexandra_Monir,2011,/genres/young-adult|/genres/science-fiction|/genres/time-travel|/genres/fantasy|/genres/romance|/genres/historical-fiction|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/fiction|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural,dir41/8100422-timeless.html,7922,"Timeless (Timeless, #1)" +3.85,382,0689857705,good_reads:book,https://www.goodreads.com/author/show/53974.Alex_Sanchez,2001,/genres/young-adult|/genres/glbt|/genres/fiction|/genres/glbt|/genres/gay|/genres/romance|/genres/romance|/genres/m-m-romance|/genres/glbt|/genres/queer|/genres/young-adult|/genres/teen|/genres/realistic-fiction|/genres/contemporary,dir41/94064.Rainbow_Boys.html,8682,"Rainbow Boys (Rainbow Trilogy, #1)" +4.27,251,1577483421,good_reads:book,https://www.goodreads.com/author/show/2821124.Elizabeth_Payson_Prentiss,1860,/genres/christian|/genres/fiction|/genres/christian-fiction|/genres/classics|/genres/historical-fiction|/genres/religion|/genres/christianity|/genres/religion|/genres/faith|/genres/spirituality|/genres/young-adult|/genres/inspirational,dir41/722737.Stepping_Heavenward.html,3513,Stepping Heavenward +3.66,2229,0803730020,good_reads:book,https://www.goodreads.com/author/show/63983.Nancy_Werlin,2008,/genres/young-adult|/genres/fantasy|/genres/romance|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/fairy-tales|/genres/paranormal|/genres/fairies,dir41/3188580-impossible.html,14120,"Impossible (Impossible, #1)" +4.02,804,1420103733,good_reads:book,https://www.goodreads.com/author/show/1395810.G_A_Aiken,2004,/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/dragons|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/shapeshifters|/genres/fantasy|/genres/magic|/genres/adult|/genres/romance|/genres/fantasy-romance|/genres/humor|/genres/funny,dir41/3295695-dragon-actually.html,13022,"Dragon Actually (Dragon Kin, #1)" +4.09,529,159420120X,good_reads:book,https://www.goodreads.com/author/show/235.Thomas_Pynchon,2006,/genres/fiction|/genres/literature|/genres/historical-fiction|/genres/science-fiction|/genres/steampunk|/genres/novels|/genres/science-fiction|/genres/literature|/genres/american,dir41/409.Against_the_Day.html,3893,Against the Day +3.80,3442,0743272501,good_reads:book,https://www.goodreads.com/author/show/9987.Philippa_Gregory,2006,/genres/fiction|/genres/historical-fiction|/genres/romance|/genres/european-literature|/genres/british-literature|/genres/adult|/genres/romance|/genres/historical-romance|/genres/adult-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/book-club|/genres/literature|/genres/16th-century,dir41/16180.The_Boleyn_Inheritance.html,55210,"The Boleyn Inheritance (The Tudor Court, #3)" +3.91,406,0152017682,good_reads:book,https://www.goodreads.com/author/show/22543.Meredith_Ann_Pierce,1982,/genres/fantasy|/genres/young-adult|/genres/paranormal|/genres/vampires|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/angels|/genres/science-fiction-fantasy|/genres/young-adult|/genres/young-adult-fantasy,dir41/92717.The_Darkangel.html,5792,"The Darkangel (Darkangel Trilogy, #1)" +3.84,432,0821779354,good_reads:book,https://www.goodreads.com/author/show/40881.Alexandra_Ivy,2007,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/urban-fantasy|/genres/adult,dir42/72286.When_Darkness_Comes.html,8994,"When Darkness Comes (Guardians of Eternity, #1)" +4.49,530,038531177X,good_reads:book,https://www.goodreads.com/author/show/1795488.Victor_Villase_or,1991,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/magical-realism|/genres/novels|/genres/literature|/genres/classics|/genres/literature|/genres/american|/genres/academic|/genres/school|/genres/culture,dir42/14345.Rain_of_Gold.html,4114,Rain of Gold +4.19,687,0007136358,good_reads:book,https://www.goodreads.com/author/show/9388.Louise_Erdrich,2000,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/adult-fiction|/genres/novels|/genres/literary-fiction|/genres/magical-realism|/genres/literature|/genres/contemporary|/genres/religion,dir42/63837.The_Last_Report_On_The_Miracles_At_Little_No_Horse.html,5557,The Last Report On The Miracles At Little No Horse +3.80,1148,0312575939,good_reads:book,https://www.goodreads.com/author/show/51118.Jenna_Black,2010,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/fairies|/genres/romance|/genres/fairies|/genres/fae|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/magic|/genres/romance|/genres/paranormal-romance|/genres/fiction,dir42/7234828-glimmerglass.html,15379,"Glimmerglass (Faeriewalker, #1)" +3.94,2095,0765328666,good_reads:book,https://www.goodreads.com/author/show/4086715.Kendare_Blake,2012,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/horror|/genres/paranormal|/genres/ghosts|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/magic,dir42/12507214-girl-of-nightmares.html,12743,"Girl of Nightmares (Anna, #2)" +4.05,1183,1250003334,good_reads:book,https://www.goodreads.com/author/show/504038.Anna_Banks,2013,/genres/young-adult|/genres/fantasy|/genres/mermaids|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/mythology|/genres/romance|/genres/paranormal-romance,dir42/15513156-of-triton.html,11473,"Of Triton (The Syrena Legacy, #2)" +4.04,625,0679747192,good_reads:book,https://www.goodreads.com/author/show/4178.Cormac_McCarthy,1998,/genres/fiction|/genres/western|/genres/literature|/genres/novels|/genres/historical-fiction|/genres/adventure|/genres/literature|/genres/american|/genres/contemporary,dir42/40470.Cities_of_the_Plain.html,10969,"Cities of the Plain (The Border Trilogy, #3)" +4.16,293,0345483855,good_reads:book,https://www.goodreads.com/author/show/66700.Robert_E_Howard,2002,/genres/fantasy|/genres/fiction|/genres/heroic-fantasy|/genres/sword-and-sorcery|/genres/adventure|/genres/pulp|/genres/short-stories|/genres/classics|/genres/science-fiction-fantasy,dir42/33482.The_Coming_of_Conan_the_Cimmerian.html,6764,"The Coming of Conan the Cimmerian (Conan the Cimmerian, #1)" +4.16,548,0060244054,good_reads:book,https://www.goodreads.com/author/show/87184.Laura_Joffe_Numeroff,1991,/genres/childrens|/genres/picture-books|/genres/childrens|/genres/animals|/genres/fiction|/genres/humor|/genres/kids|/genres/food-and-drink|/genres/food|/genres/fantasy|/genres/childrens|/genres/storytime|/genres/classics,dir42/826584.If_You_Give_a_Moose_a_Muffin.html,43093,If You Give a Moose a Muffin +4.10,483,,good_reads:book,https://www.goodreads.com/author/show/1270552._,1963,/genres/travel|/genres/non-fiction|/genres/history|/genres/biography|/genres/literature|/genres/short-stories,dir42/3491072-200.html,7000,حول العالم في 200 يوم +3.97,1023,0439632501,good_reads:book,https://www.goodreads.com/author/show/14617.Margaret_Peterson_Haddix,1995,/genres/young-adult|/genres/fiction|/genres/science-fiction|/genres/childrens|/genres/historical-fiction|/genres/mystery|/genres/adventure|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/realistic-fiction,dir42/227658.Running_Out_of_Time.html,14805,Running Out of Time +4.06,135,0810112000,good_reads:book,https://www.goodreads.com/author/show/8121659.Venedikt_Erofeev,1970,/genres/cultural|/genres/russia|/genres/literature|/genres/russian-literature|/genres/classics|/genres/literature|/genres/humor|/genres/novels|/genres/literature|/genres/20th-century|/genres/modern|/genres/poetry|/genres/philosophy,dir42/117896.Moscow_to_the_End_of_the_Line.html,3358,Moscow to the End of the Line +4.18,591,0553588184,good_reads:book,https://www.goodreads.com/author/show/7581.Kelley_Armstrong,2006,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/paranormal|/genres/vampires|/genres/adult,dir42/11915.Broken.html,20714,Broken (Women of the Otherworld #6) +3.76,414,0060002107,good_reads:book,https://www.goodreads.com/author/show/6343.Milan_Kundera,2000,/genres/fiction|/genres/european-literature|/genres/czech-literature|/genres/literature|/genres/novels|/genres/philosophy|/genres/contemporary|/genres/cultural|/genres/france,dir42/78728.Ignorance.html,8452,Ignorance +3.90,1323,1416950583,good_reads:book,https://www.goodreads.com/author/show/29011.Kathi_Appelt,2008,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/childrens|/genres/juvenile|/genres/animals|/genres/dogs,dir42/2768169-the-underneath.html,5870,The Underneath +3.78,724,0330418882,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2004,/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/fiction|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/adult|/genres/young-adult|/genres/humor|/genres/adult-fiction|/genres/humor|/genres/funny,dir42/23223.Every_Boy_s_Got_One.html,16873,"Every Boy's Got One (Boy, #3)" +3.93,475,0449210820,good_reads:book,https://www.goodreads.com/author/show/31845.Marge_Piercy,1976,/genres/fiction|/genres/science-fiction|/genres/feminism|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/time-travel|/genres/fantasy|/genres/science-fiction-fantasy|/genres/gender|/genres/speculative-fiction|/genres/womens,dir42/772888.Woman_on_the_Edge_of_Time.html,7776,Woman on the Edge of Time +3.95,2035,0316154857,good_reads:book,https://www.goodreads.com/author/show/10015.Kate_Atkinson,2008,/genres/fiction|/genres/mystery|/genres/crime|/genres/mystery|/genres/thriller|/genres/european-literature|/genres/british-literature|/genres/thriller|/genres/mystery-thriller,dir42/3289281-when-will-there-be-good-news.html,19078,"When Will There Be Good News? (Jackson Brodie, #3)" +4.25,1244,0671869205,good_reads:book,https://www.goodreads.com/author/show/6281688.David_McCullough,1992,/genres/history|/genres/non-fiction|/genres/history|/genres/american-history|/genres/politics|/genres/presidents|/genres/biography|/genres/politics|/genres/biography-memoir|/genres/presidents|/genres/us-presidents,dir42/2279.Truman.html,30812,Truman +3.85,133,0374521352,good_reads:book,https://www.goodreads.com/author/show/89330.P_r_Lagerkvist,1944,/genres/classics|/genres/european-literature|/genres/swedish-literature|/genres/historical-fiction|/genres/literature|/genres/european-literature|/genres/scandinavian-literature|/genres/fiction|/genres/cultural|/genres/sweden|/genres/philosophy|/genres/novels|/genres/nobel-prize,dir42/214805.The_Dwarf.html,2093,The Dwarf +3.85,370,0743253426,good_reads:book,https://www.goodreads.com/author/show/1455.Ernest_Hemingway,1970,/genres/fiction|/genres/classics|/genres/literature|/genres/literature|/genres/american|/genres/novels|/genres/adventure|/genres/literary-fiction|/genres/war|/genres/classics|/genres/classic-literature|/genres/nobel-prize,dir42/4633.Islands_in_the_Stream.html,7572,Islands in the Stream +3.76,1936,0743454510,good_reads:book,https://www.goodreads.com/author/show/7128.Jodi_Picoult,2002,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/mystery|/genres/fantasy|/genres/paranormal|/genres/drama|/genres/romance|/genres/contemporary|/genres/adult-fiction|/genres/paranormal|/genres/ghosts|/genres/adult,dir42/10911.Second_Glance.html,28292,Second Glance +4.19,723,1416983309,good_reads:book,https://www.goodreads.com/author/show/2821144.Ellen_Hopkins,2012,/genres/young-adult|/genres/poetry|/genres/contemporary|/genres/realistic-fiction|/genres/fiction|/genres/romance|/genres/young-adult|/genres/teen|/genres/glbt|/genres/love|/genres/family,dir42/11133791-tilt.html,7842,Tilt +3.87,451,0316252999,good_reads:book,https://www.goodreads.com/author/show/2001717.Daphne_du_Maurier,1968,/genres/fiction|/genres/historical-fiction|/genres/classics|/genres/science-fiction|/genres/time-travel|/genres/science-fiction|/genres/mystery|/genres/gothic|/genres/fantasy|/genres/suspense|/genres/european-literature|/genres/british-literature,dir42/18869972-the-house-on-the-strand.html,4786,The House on the Strand +4.02,1767,0758272812,good_reads:book,https://www.goodreads.com/author/show/4629194.Brigid_Kemmerer,2012,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance,dir42/10401084-storm.html,15287,"Storm (Elemental, #1)" +3.95,838,0399153721,good_reads:book,https://www.goodreads.com/author/show/625.Nora_Roberts,2006,/genres/romance|/genres/romance|/genres/romantic-suspense|/genres/mystery|/genres/fiction|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/suspense|/genres/womens-fiction|/genres/chick-lit|/genres/thriller|/genres/adult,dir42/26050.Angels_Fall.html,30035,Angels Fall +4.25,377,0060892013,good_reads:book,https://www.goodreads.com/author/show/27498.Erin_Hunter,2007,/genres/fantasy|/genres/animals|/genres/fiction|/genres/animals|/genres/cats|/genres/young-adult|/genres/adventure|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/animals|/genres/animal-fiction|/genres/young-adult|/genres/teen,dir42/197457.The_Sight.html,11129,"The Sight (Warriors: Power of Three, #1)" +4.10,495,0553296345,good_reads:book,https://www.goodreads.com/author/show/1630.Ray_Bradbury,1987,/genres/language|/genres/writing|/genres/non-fiction|/genres/reference|/genres/writing|/genres/essays|/genres/autobiography|/genres/memoir|/genres/philosophy|/genres/buddhism|/genres/zen|/genres/art|/genres/humanities|/genres/language|/genres/biography,dir42/103761.Zen_in_the_Art_of_Writing.html,5990,Zen in the Art of Writing +4.08,201,0552148067,good_reads:book,https://www.goodreads.com/author/show/8732.David_Eddings,1991,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/fantasy|/genres/magic|/genres/epic|/genres/young-adult,dir42/110694.Seeress_of_Kell.html,24819,"Seeress of Kell (The Malloreon, #5)" +4.31,427,0345350804,good_reads:book,https://www.goodreads.com/author/show/9494.H_P_Lovecraft,1963,/genres/horror|/genres/fiction|/genres/short-stories|/genres/fantasy|/genres/classics|/genres/science-fiction|/genres/horror|/genres/lovecraftian|/genres/literature|/genres/anthologies|/genres/gothic,dir42/36315.The_Best_of_H_P_Lovecraft.html,20190,The Best of H.P. Lovecraft +4.19,429,0679752552,good_reads:book,https://www.goodreads.com/author/show/1260.Michel_Foucault,1975,/genres/philosophy|/genres/non-fiction|/genres/history|/genres/philosophy|/genres/theory|/genres/sociology|/genres/politics|/genres/academic|/genres/cultural|/genres/france|/genres/anthropology|/genres/psychology,dir42/80369.Discipline_and_Punish.html,12587,Discipline and Punish +4.34,1072,0373210329,good_reads:book,https://www.goodreads.com/author/show/415967.Rachel_Vincent,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/ghosts|/genres/young-adult|/genres/young-adult-paranormal,dir42/8803932-if-i-die.html,11354,"If I Die (Soul Screamers, #5)" +3.99,298,1416989803,good_reads:book,https://www.goodreads.com/author/show/14617.Margaret_Peterson_Haddix,2011,/genres/science-fiction|/genres/science-fiction|/genres/time-travel|/genres/historical-fiction|/genres/young-adult|/genres/fantasy|/genres/adventure|/genres/fiction|/genres/mystery|/genres/childrens|/genres/middle-grade|/genres/young-adult|/genres/teen,dir42/9758788-torn.html,4631,"Torn (The Missing, #4)" +4.52,1791,1937007588,good_reads:book,https://www.goodreads.com/author/show/21748.Ilona_Andrews,2013,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/shapeshifters|/genres/romance|/genres/paranormal-romance|/genres/adult|/genres/shapeshifters|/genres/werewolves,dir42/11544421-magic-rises.html,15521,"Magic Rises (Kate Daniels, #6)" +3.79,3554,,good_reads:book,https://www.goodreads.com/author/show/3162181._,2009,/genres/novels|/genres/romance|/genres/love|/genres/romantic|/genres/fiction|/genres/drama|/genres/literature,dir42/7119070-1.html,25147,أحببتك أكثر مما ينبغي #1 +4.02,1684,0375701907,good_reads:book,https://www.goodreads.com/author/show/7844.Richard_Russo,1997,/genres/fiction|/genres/humor|/genres/book-club|/genres/novels|/genres/contemporary|/genres/literature|/genres/academic|/genres/academia|/genres/literary-fiction|/genres/humor|/genres/funny,dir42/414298.Straight_Man.html,15239,Straight Man +3.83,174,1564781313,good_reads:book,https://www.goodreads.com/author/show/3487.Aldous_Huxley,1928,/genres/fiction|/genres/classics|/genres/literature|/genres/novels|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/20th-century|/genres/philosophy,dir42/5135.Point_Counter_Point.html,6126,Point Counter Point +3.81,596,0099471434,good_reads:book,https://www.goodreads.com/author/show/7577.Anne_Rice,1992,/genres/horror|/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/gothic,dir42/31340.Lasher.html,40689,"Lasher (Lives of the Mayfair Witches, #2)" +3.51,698,0061375802,good_reads:book,https://www.goodreads.com/author/show/145926.Gillian_Shields,2009,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/magic|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/ghosts|/genres/paranormal|/genres/witches|/genres/mystery,dir42/5266655-immortal.html,8800,"Immortal (Immortal, #1)" +4.02,1172,0316058297,good_reads:book,https://www.goodreads.com/author/show/99650.Wendy_Mass,2006,/genres/young-adult|/genres/realistic-fiction|/genres/fiction|/genres/mystery|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/adventure|/genres/contemporary|/genres/childrens|/genres/juvenile|/genres/young-adult|/genres/teen,dir42/363851.Jeremy_Fink_and_the_Meaning_of_Life.html,11618,Jeremy Fink and the Meaning of Life +3.93,398,0061452297,good_reads:book,https://www.goodreads.com/author/show/239476.Rob_Reger,2002,/genres/young-adult|/genres/fantasy|/genres/mystery|/genres/fiction|/genres/sequential-art|/genres/graphic-novels|/genres/young-adult|/genres/teen|/genres/humor|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/fantasy|/genres/supernatural,dir42/5355769-the-lost-days.html,3490,"The Lost Days (Emily the Strange Novels, #1)" +4.05,1409,,good_reads:book,https://www.goodreads.com/author/show/6553058.L_A_Fiore,2012,/genres/romance|/genres/new-adult|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/sociology|/genres/abuse|/genres/adult-fiction|/genres/erotica|/genres/adult|/genres/mystery|/genres/suspense|/genres/romance|/genres/romantic-suspense,dir42/16079228-beautifully-damaged.html,20017,"Beautifully Damaged (Beautifully Damaged, #1)" +3.74,668,0099478471,good_reads:book,https://www.goodreads.com/author/show/2533.Graham_Greene,1938,/genres/fiction|/genres/classics|/genres/mystery|/genres/crime|/genres/literature|/genres/mystery|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/20th-century|/genres/novels,dir42/48862.Brighton_Rock.html,10997,Brighton Rock +4.13,2423,1476759545,good_reads:book,https://www.goodreads.com/author/show/4464118.Jamie_McGuire,2013,/genres/romance|/genres/contemporary|/genres/new-adult|/genres/young-adult|/genres/academic|/genres/college|/genres/short-stories|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/adult|/genres/romance|/genres/contemporary-romance,dir42/18528454-a-beautiful-wedding.html,25683,"A Beautiful Wedding (Beautiful, #2.5)" +3.87,2609,0800759494,good_reads:book,https://www.goodreads.com/author/show/39054.Don_Piper,2004,/genres/non-fiction|/genres/religion|/genres/spirituality|/genres/biography|/genres/autobiography|/genres/memoir|/genres/religion|/genres/christianity|/genres/religion|/genres/faith|/genres/book-club|/genres/biography|/genres/autobiography|/genres/adult,dir42/89375.90_Minutes_in_Heaven.html,53990,90 Minutes in Heaven +3.58,468,0061059927,good_reads:book,https://www.goodreads.com/author/show/50873.L_J_Smith,1991,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/horror,dir42/395875.Dark_Reunion.html,14890,"Dark Reunion (The Vampire Diaries, #4)" +3.75,3215,0312652917,good_reads:book,https://www.goodreads.com/author/show/2384.Janet_Evanovich,2009,/genres/mystery|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/fantasy|/genres/humor|/genres/fantasy|/genres/supernatural|/genres/humor|/genres/funny|/genres/fantasy|/genres/urban-fantasy,dir42/8205669-wicked-appetite.html,29597,Wicked Appetite (Lizzy & Diesel #1) +3.90,1190,,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2012,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/mythology|/genres/greek-mythology|/genres/fiction|/genres/young-adult|/genres/teen,dir42/10799881-underworld.html,14299,"Underworld (Abandon Trilogy, #2)" +4.23,63,0520227042,good_reads:book,https://www.goodreads.com/author/show/5805417.Vyasa,1973,/genres/classics|/genres/religion|/genres/fiction|/genres/poetry|/genres/fantasy|/genres/mythology|/genres/cultural|/genres/india|/genres/philosophy|/genres/literature|/genres/spirituality|/genres/religion|/genres/hinduism,dir42/118247.Mahabharata.html,1149,Mahabharata +4.18,133,0571066720,good_reads:book,https://www.goodreads.com/author/show/5668.Nikos_Kazantzakis,1953,/genres/fiction|/genres/classics|/genres/literature|/genres/novels|/genres/cultural|/genres/greece|/genres/philosophy|/genres/religion|/genres/literature|/genres/20th-century,dir42/82531.Christ_Recrucified.html,2437,Christ Recrucified +4.10,350,0440229774,good_reads:book,https://www.goodreads.com/author/show/237194.Victoria_Hanley,2000,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/adventure|/genres/fiction|/genres/young-adult|/genres/young-adult-fantasy|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/high-fantasy|/genres/historical-fiction|/genres/medieval,dir42/420415.The_Seer_and_the_Sword.html,7033,"The Seer and the Sword (Healer and Seer, #1)" +4.18,1156,0060975776,good_reads:book,https://www.goodreads.com/author/show/6468.Denis_Johnson,1992,/genres/short-stories|/genres/fiction|/genres/contemporary|/genres/literature|/genres/literary-fiction|/genres/literature|/genres/american|/genres/adult-fiction|/genres/academic|/genres/school|/genres/novels|/genres/adult,dir42/608287.Jesus_Son.html,15773,Jesus' Son +3.60,477,0007165161,good_reads:book,https://www.goodreads.com/author/show/9068.Sidney_Sheldon,2004,/genres/fiction|/genres/thriller|/genres/mystery|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/novels|/genres/romance|/genres/mystery|/genres/crime|/genres/drama|/genres/contemporary,dir42/43324.Are_You_Afraid_of_the_Dark_.html,15645,Are You Afraid of the Dark? +3.76,1001,0060735449,good_reads:book,https://www.goodreads.com/author/show/16218.Christopher_Moore,1997,/genres/fiction|/genres/humor|/genres/fantasy|/genres/humor|/genres/comedy|/genres/humor|/genres/funny|/genres/adventure,dir42/33455.Island_of_the_Sequined_Love_Nun.html,20524,Island of the Sequined Love Nun +3.96,711,0812521390,good_reads:book,https://www.goodreads.com/author/show/13026.Glen_Cook,1984,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/dark-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/war|/genres/military|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction-fantasy|/genres/war|/genres/science-fiction|/genres/epic,dir42/140671.The_Black_Company.html,16989,"The Black Company (The Chronicle of the Black Company, #1)" +3.90,1062,1560974273,good_reads:book,https://www.goodreads.com/author/show/5129.Daniel_Clowes,1998,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fiction|/genres/graphic-novels-comics|/genres/young-adult|/genres/sequential-art|/genres/comix|/genres/comics|/genres/comic-book,dir42/62953.Ghost_World.html,35069,Ghost World +4.05,40,0965073580,good_reads:book,https://www.goodreads.com/author/show/3534.Toni_Morrison,2003,/genres/fiction|/genres/literature|/genres/classics|/genres/cultural|/genres/african-american,dir42/11348.The_Bluest_Eye_Sula_Song_Of_Solomon.html,679,The Bluest Eye; Sula ; Song Of Solomon +3.18,1080,034550254X,good_reads:book,https://www.goodreads.com/author/show/292656.Alexandra_Potter,2007,/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/fiction|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/adult|/genres/fantasy|/genres/adult-fiction|/genres/science-fiction|/genres/time-travel|/genres/historical-fiction,dir42/528710.Me_and_Mr_Darcy.html,9149,Me and Mr. Darcy +4.07,473,0689839103,good_reads:book,https://www.goodreads.com/author/show/14617.Margaret_Peterson_Haddix,2003,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/childrens|/genres/adventure|/genres/young-adult|/genres/teen|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile,dir42/298730.Among_the_Barons.html,13721,"Among the Barons (Shadow Children, #4)" +3.86,927,0618562036,good_reads:book,https://www.goodreads.com/author/show/686103.Anchee_Min,2003,/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/china|/genres/cultural|/genres/asia|/genres/literature|/genres/asian-literature|/genres/romance|/genres/book-club|/genres/cultural|/genres/adult|/genres/novels,dir42/139254.Empress_Orchid.html,14379,"Empress Orchid (Empress Orchid, #1)" +3.73,4381,038541305X,good_reads:book,https://www.goodreads.com/author/show/6942.Pat_Conroy,2009,/genres/fiction|/genres/book-club|/genres/american|/genres/southern|/genres/historical-fiction|/genres/adult|/genres/contemporary|/genres/adult-fiction|/genres/novels|/genres/literature|/genres/drama,dir42/6135237-south-of-broad.html,25717,South of Broad +4.37,737,1841591009,good_reads:book,https://www.goodreads.com/author/show/7963.P_G_Wodehouse,1938,/genres/fiction|/genres/humor|/genres/classics|/genres/humor|/genres/comedy|/genres/european-literature|/genres/british-literature|/genres/humor|/genres/funny,dir42/105986.The_Code_of_the_Woosters.html,11757,"The Code of the Woosters (Jeeves, #7)" +4.05,265,0439680018,good_reads:book,https://www.goodreads.com/author/show/32590.Anthony_Horowitz,2007,/genres/fantasy|/genres/young-adult|/genres/horror|/genres/fantasy|/genres/supernatural|/genres/adventure|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/fantasy|/genres/magic|/genres/thriller|/genres/mystery,dir42/107669.Nightrise.html,7471,"Nightrise (The Gatekeepers, #3)" +3.97,630,9626344245,good_reads:book,https://www.goodreads.com/author/show/2448.Arthur_Conan_Doyle,1914,/genres/mystery|/genres/classics|/genres/fiction|/genres/mystery|/genres/crime|/genres/mystery|/genres/detective|/genres/historical-fiction|/genres/european-literature|/genres/british-literature|/genres/thriller|/genres/literature|/genres/adventure,dir42/736131.The_Valley_of_Fear.html,11473,"The Valley of Fear (Sherlock Holmes, #7)" +3.91,6808,1781162646,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,2013,/genres/mystery|/genres/fiction|/genres/horror|/genres/mystery|/genres/crime|/genres/thriller|/genres/fantasy|/genres/paranormal|/genres/thriller|/genres/mystery-thriller|/genres/suspense|/genres/young-adult|/genres/coming-of-age|/genres/adult,dir42/13596166-joyland.html,43927,Joyland +3.94,375,0140260706,good_reads:book,https://www.goodreads.com/author/show/28785.Peter_Shaffer,1973,/genres/plays|/genres/drama|/genres/fiction|/genres/classics|/genres/plays|/genres/theatre|/genres/psychology|/genres/academic|/genres/school|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/20th-century,dir42/334286.Equus.html,12194,Equus +4.54,46,0739438034,good_reads:book,https://www.goodreads.com/author/show/8596.Tamora_Pierce,2003,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/fiction|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/dragons|/genres/childrens|/genres/romance|/genres/young-adult|/genres/teen,dir42/153797.The_Immortals.html,4872,"The Immortals (Immortals, #1-4)" +4.31,137,0593052226,good_reads:book,https://www.goodreads.com/author/show/11586.David_Gemmell,2006,/genres/fantasy|/genres/historical-fiction|/genres/fiction|/genres/fantasy|/genres/mythology|/genres/war|/genres/fantasy|/genres/heroic-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/epic|/genres/war|/genres/military|/genres/adventure,dir42/44011.Shield_of_Thunder.html,4530,"Shield of Thunder (Troy, #2)" +4.23,331,0553807889,good_reads:book,https://www.goodreads.com/author/show/7581.Kelley_Armstrong,2010,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/shapeshifters|/genres/werewolves|/genres/paranormal|/genres/vampires|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/anthologies|/genres/short-stories|/genres/paranormal|/genres/witches,dir42/6539105-tales-of-the-otherworld.html,7221,Tales of the Otherworld +3.87,311,026110215X,good_reads:book,https://www.goodreads.com/author/show/656983.J_R_R_Tolkien,1980,/genres/fantasy|/genres/fiction|/genres/classics|/genres/fantasy|/genres/high-fantasy|/genres/literature|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/short-stories|/genres/european-literature|/genres/british-literature|/genres/adventure,dir42/7329.Unfinished_Tales_of_N_menor_and_Middle_Earth.html,16387,Unfinished Tales of Númenor and Middle-Earth +3.52,2974,1451635753,good_reads:book,https://www.goodreads.com/author/show/7128.Jodi_Picoult,2012,/genres/young-adult|/genres/fantasy|/genres/romance|/genres/fiction|/genres/fantasy|/genres/fairy-tales|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/womens-fiction|/genres/chick-lit|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/young-adult-fantasy,dir42/12283261-between-the-lines.html,17834,Between the Lines +4.12,787,,good_reads:book,https://www.goodreads.com/author/show/6216688.Erica_Stevens,2012,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/dystopia,dir42/15059301-captured.html,9304,"Captured (The Captive, #1)" +3.76,478,0140135154,good_reads:book,https://www.goodreads.com/author/show/29919.John_Berger,1972,/genres/art|/genres/non-fiction|/genres/philosophy|/genres/art|/genres/art-history|/genres/art|/genres/photography|/genres/philosophy|/genres/theory|/genres/writing|/genres/essays|/genres/design|/genres/culture|/genres/criticism,dir42/2784.Ways_of_Seeing.html,78423,Ways of Seeing +4.17,641,0615487424,good_reads:book,https://www.goodreads.com/author/show/4464118.Jamie_McGuire,2011,/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/angels|/genres/young-adult|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/new-adult|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/demons|/genres/academic|/genres/college,dir42/11532160-requiem.html,14532,"Requiem (Providence, #2)" +4.12,1035,1416503463,good_reads:book,https://www.goodreads.com/author/show/298611.Bethany_Hamilton,2004,/genres/biography|/genres/christian|/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/biography|/genres/autobiography|/genres/sports-and-games|/genres/sports|/genres/inspirational|/genres/young-adult|/genres/teen|/genres/biography-memoir|/genres/spirituality,dir42/542712.Soul_Surfer.html,6469,Soul Surfer +4.08,432,0385340044,good_reads:book,https://www.goodreads.com/author/show/26024.Simon_Beckett,2006,/genres/thriller|/genres/mystery|/genres/fiction|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery-thriller|/genres/suspense|/genres/european-literature|/genres/british-literature|/genres/european-literature|/genres/german-literature|/genres/horror|/genres/adult,dir42/46465.The_Chemistry_of_Death.html,6468,"The Chemistry of Death (David Hunter, #1)" +3.38,2102,0670021474,good_reads:book,https://www.goodreads.com/author/show/43393.Danielle_Trussoni,2010,/genres/fantasy|/genres/fiction|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/paranormal|/genres/thriller|/genres/fantasy|/genres/urban-fantasy|/genres/mystery|/genres/fantasy|/genres/supernatural|/genres/adult|/genres/historical-fiction,dir42/6691426-angelology.html,11532,"Angelology (Angelology, #1)" +3.82,798,0060533994,good_reads:book,https://www.goodreads.com/author/show/28707.Sue_Townsend,1982,/genres/fiction|/genres/young-adult|/genres/humor|/genres/humor|/genres/comedy|/genres/childrens|/genres/humor|/genres/funny|/genres/european-literature|/genres/british-literature|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/diary,dir42/51070.The_Secret_Diary_of_Adrian_Mole_Aged_13_3_4.html,22743,"The Secret Diary of Adrian Mole, Aged 13 3/4 (Adrian Mole, #1)" +4.54,1718,1250014409,good_reads:book,https://www.goodreads.com/author/show/4175419.Darynda_Jones,2013,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/mystery|/genres/fantasy|/genres/paranormal|/genres/ghosts|/genres/adult|/genres/paranormal|/genres/demons|/genres/humor,dir42/15813668-fifth-grave-past-the-light.html,12405,"Fifth Grave Past the Light (Charley Davidson, #5)" +3.87,1714,0689856407,good_reads:book,https://www.goodreads.com/author/show/51527.Cynthia_Kadohata,2004,/genres/young-adult|/genres/historical-fiction|/genres/fiction|/genres/realistic-fiction|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/cultural|/genres/family|/genres/childrens|/genres/juvenile|/genres/death,dir42/89731.Kira_Kira.html,12444,Kira-Kira +4.11,599,0778325555,good_reads:book,https://www.goodreads.com/author/show/415967.Rachel_Vincent,2008,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/shapeshifters|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/adult|/genres/fantasy|/genres/supernatural|/genres/fiction,dir42/2314315.Rogue.html,12616,"Rogue (Shifters, #2)" +4.42,136,0060955503,good_reads:book,https://www.goodreads.com/author/show/72605.Arthur_Rimbaud,1870,/genres/poetry|/genres/cultural|/genres/france|/genres/classics|/genres/literature|/genres/european-literature|/genres/french-literature|/genres/fiction|/genres/glbt|/genres/queer|/genres/anthologies|/genres/glbt|/genres/literature|/genres/19th-century,dir42/128453.Complete_Works.html,5575,Complete Works +4.27,3031,,good_reads:book,https://www.goodreads.com/author/show/4882127.Rachel_Van_Dyken,2013,/genres/new-adult|/genres/romance|/genres/contemporary|/genres/academic|/genres/college|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/sports-and-games|/genres/sports|/genres/love|/genres/drama|/genres/womens-fiction|/genres/chick-lit,dir42/18134249-ruin.html,23939,"Ruin (Ruin, #1)" +4.06,68,1564784509,good_reads:book,https://www.goodreads.com/author/show/6530.Max_Frisch,1954,/genres/european-literature|/genres/german-literature|/genres/fiction|/genres/philosophy|/genres/classics|/genres/literature|/genres/mystery|/genres/novels|/genres/literary-fiction|/genres/cultural|/genres/germany|/genres/psychology,dir42/265102.I_m_Not_Stiller.html,1701,I'm Not Stiller +3.78,144,0393008312,good_reads:book,https://www.goodreads.com/author/show/10017.Sigmund_Freud,1927,/genres/psychology|/genres/philosophy|/genres/religion|/genres/non-fiction|/genres/science|/genres/religion|/genres/atheism|/genres/philosophy|/genres/theory|/genres/european-literature|/genres/german-literature|/genres/academic|/genres/sociology,dir42/80458.The_Future_of_an_Illusion_The_Standard_Edition_.html,3147,The Future of an Illusion (The Standard Edition) +3.89,987,0553588451,good_reads:book,https://www.goodreads.com/author/show/7742.Keri_Arthur,2006,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/romance|/genres/shapeshifters|/genres/werewolves|/genres/paranormal|/genres/shapeshifters|/genres/adult|/genres/fiction,dir42/172764.Full_Moon_Rising.html,21298,Full Moon Rising (Riley Jenson Guardian #1) +3.62,2749,141694740X,good_reads:book,https://www.goodreads.com/author/show/6842.Greg_Behrendt,2004,/genres/non-fiction|/genres/self-help|/genres/womens-fiction|/genres/chick-lit|/genres/relationships|/genres/humor|/genres/psychology|/genres/romance|/genres/humor|/genres/funny|/genres/adult,dir42/10412.He_s_Just_Not_That_Into_You.html,41483,He's Just Not That Into You +3.85,635,972212076X,good_reads:book,https://www.goodreads.com/author/show/1285555.Jos_Saramago,2009,/genres/religion|/genres/historical-fiction|/genres/european-literature|/genres/portuguese-literature|/genres/literature|/genres/novels|/genres/cultural|/genres/portugal|/genres/romance,dir42/7011225-caim.html,6806,Caim +4.28,599,,good_reads:book,https://www.goodreads.com/author/show/4134859.Jessica_Shirvington,2011,/genres/paranormal|/genres/angels|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/young-adult-paranormal,dir42/9671126-enticed.html,8203,"Enticed (The Violet Eden Chapters, #2)" +4.19,230,1590172000,good_reads:book,https://www.goodreads.com/author/show/25573.Stefan_Zweig,1939,/genres/fiction|/genres/classics|/genres/european-literature|/genres/german-literature|/genres/novels|/genres/literature|/genres/literature|/genres/20th-century|/genres/historical-fiction,dir42/59149.Beware_of_Pity.html,2280,Beware of Pity +3.98,301,0425147584,good_reads:book,https://www.goodreads.com/author/show/3892.Tom_Clancy,1994,/genres/fiction|/genres/thriller|/genres/war|/genres/military|/genres/spy-thriller|/genres/espionage|/genres/adventure|/genres/suspense|/genres/mystery|/genres/action|/genres/politics|/genres/war,dir42/19670.Debt_of_Honor.html,26242,"Debt of Honor (Jack Ryan, #7)" +4.68,78,108543401X,good_reads:book,https://www.goodreads.com/author/show/1367163.The_Church_of_Jesus_Christ_of_Latter_day_Saints,1835,/genres/religion|/genres/christianity|/genres/lds|/genres/music|/genres/religion|/genres/church|/genres/non-fiction|/genres/inspirational|/genres/reference|/genres/lds|/genres/mormonism|/genres/spirituality|/genres/lds|/genres/lds-non-fiction,dir42/2389938.Hymns_of_The_Church_of_Jesus_Christ_of_Latter_day_Saints.html,5579,Hymns of The Church of Jesus Christ of Latter-day Saints +4.25,248,0060892056,good_reads:book,https://www.goodreads.com/author/show/27498.Erin_Hunter,2007,/genres/fantasy|/genres/animals|/genres/animals|/genres/cats|/genres/fiction|/genres/young-adult|/genres/adventure|/genres/childrens|/genres/animals|/genres/animal-fiction|/genres/childrens|/genres/middle-grade|/genres/young-adult|/genres/teen,dir42/1231511.Dark_River.html,9617,"Dark River (Warriors: Power of Three, #2)" +3.66,918,042523567X,good_reads:book,https://www.goodreads.com/author/show/9550.Laurell_K_Hamilton,2010,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fiction|/genres/horror|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/shapeshifters,dir42/6726595-flirt.html,22272,"Flirt (Anita Blake, Vampire Hunter #18)" +3.73,464,037570924X,good_reads:book,https://www.goodreads.com/author/show/28345.Vikram_Seth,1999,/genres/fiction|/genres/music|/genres/romance|/genres/cultural|/genres/india|/genres/contemporary|/genres/novels|/genres/literature|/genres/book-club|/genres/asian-literature|/genres/indian-literature|/genres/literary-fiction,dir42/50366.An_Equal_Music.html,5683,An Equal Music +3.58,6463,0575096578,good_reads:book,https://www.goodreads.com/author/show/17061.Charlaine_Harris,2012,/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/mystery|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy|/genres/supernatural,dir42/10407279-deadlocked.html,63779,"Deadlocked (Sookie Stackhouse, #12)" +4.11,780,,good_reads:book,https://www.goodreads.com/author/show/21911.Melissa_de_la_Cruz,2013,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/paranormal|/genres/angels|/genres/romance|/genres/fantasy|/genres/supernatural,dir42/10814946-gates-of-paradise.html,7817,"Gates of Paradise (Blue Bloods, #7)" +3.59,3027,1400047463,good_reads:book,https://www.goodreads.com/author/show/3509.Chris_Bohjalian,2007,/genres/fiction|/genres/book-club|/genres/mystery|/genres/contemporary|/genres/adult-fiction|/genres/adult|/genres/novels|/genres/literature|/genres/drama|/genres/literary-fiction,dir42/126807.The_Double_Bind.html,18237,The Double Bind +3.39,1248,,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1987,/genres/horror|/genres/fiction|/genres/science-fiction|/genres/thriller|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/science-fiction|/genres/aliens|/genres/novels|/genres/suspense|/genres/fantasy|/genres/paranormal,dir42/17660.The_Tommyknockers.html,67104,The Tommyknockers +4.11,82,0595321801,good_reads:book,https://www.goodreads.com/author/show/27.Zilpha_Keatley_Snyder,1970,/genres/fiction|/genres/fantasy|/genres/young-adult|/genres/childrens|/genres/childrens|/genres/juvenile|/genres/mystery|/genres/novels|/genres/kids|/genres/literature|/genres/american|/genres/literature|/genres/20th-century,dir42/61.The_Changeling.html,926,The Changeling +4.00,1075,0224064908,good_reads:book,https://www.goodreads.com/author/show/4273.Roald_Dahl,1981,/genres/childrens|/genres/fiction|/genres/fantasy|/genres/young-adult|/genres/classics|/genres/humor|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/european-literature|/genres/british-literature|/genres/childrens|/genres/chapter-books,dir43/74532.George_s_Marvellous_Medicine.html,37892,George's Marvellous Medicine +4.21,992,0330493310,good_reads:book,https://www.goodreads.com/author/show/25375.Peter_F_Hamilton,2004,/genres/science-fiction|/genres/science-fiction|/genres/space-opera|/genres/fiction|/genres/science-fiction-fantasy|/genres/space,dir43/45252.Pandora_s_Star.html,20033,"Pandora's Star (Commonwealth Saga, #1)" +4.12,1404,0061659258,good_reads:book,https://www.goodreads.com/author/show/175855.Melissa_Marr,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fairies|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/fairies|/genres/fae|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/magic|/genres/fiction,dir43/6368611-darkest-mercy.html,23170,"Darkest Mercy (Wicked Lovely, #5)" +4.16,2506,,good_reads:book,https://www.goodreads.com/author/show/223343.Joanna_Wylde,2013,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/romance|/genres/erotic-romance|/genres/adult,dir43/17375956-reaper-s-property.html,28404,"Reaper's Property (Reapers MC, #1)" +4.08,254,0671038540,good_reads:book,https://www.goodreads.com/author/show/18719.Peter_Hedges,1991,/genres/fiction|/genres/classics|/genres/media-tie-in|/genres/movies|/genres/adult|/genres/contemporary|/genres/drama|/genres/young-adult|/genres/coming-of-age|/genres/family|/genres/young-adult|/genres/book-club,dir43/152662.What_s_Eating_Gilbert_Grape.html,7753,What's Eating Gilbert Grape +3.74,2138,1416528636,good_reads:book,https://www.goodreads.com/author/show/9212.Jennifer_Weiner,2004,/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/romance|/genres/adult-fiction|/genres/book-club|/genres/contemporary|/genres/adult|/genres/humor|/genres/novels|/genres/humor|/genres/funny,dir43/80536.Little_Earthquakes.html,64664,Little Earthquakes +3.74,852,0394895894,good_reads:book,https://www.goodreads.com/author/show/3618.Philip_Pullman,1985,/genres/young-adult|/genres/mystery|/genres/historical-fiction|/genres/fiction|/genres/fantasy|/genres/adventure|/genres/young-adult|/genres/teen|/genres/childrens|/genres/mystery|/genres/crime|/genres/european-literature|/genres/british-literature,dir43/114982.The_Ruby_in_the_Smoke.html,14201,"The Ruby in the Smoke (Sally Lockhart, #1)" +4.10,1085,9770810185,good_reads:book,https://www.goodreads.com/author/show/871358._,1970,/genres/religion|/genres/religion|/genres/islam|/genres/non-fiction,dir43/3338544.html,11407,رحلتي من الشك إلى الإيمان +4.32,534,0525422439,good_reads:book,https://www.goodreads.com/author/show/293603.Heather_Brewer,2010,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/horror|/genres/young-adult|/genres/teen|/genres/romance,dir43/6681333-eleventh-grade-burns.html,11886,"Eleventh Grade Burns (The Chronicles of Vladimir Tod, #4)" +4.16,547,1416978976,good_reads:book,https://www.goodreads.com/author/show/1290625.Jessica_Verday,2011,/genres/young-adult|/genres/paranormal|/genres/ghosts|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/mystery|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/young-adult-paranormal,dir43/9918128-the-hidden.html,6227,"The Hidden (The Hollow, #3)" +3.95,1663,0062107062,good_reads:book,https://www.goodreads.com/author/show/2728589.Chris_Kyle,2011,/genres/non-fiction|/genres/war|/genres/military|/genres/biography|/genres/history|/genres/war|/genres/biography|/genres/autobiography|/genres/autobiography|/genres/memoir|/genres/military|/genres/military-history|/genres/biography-memoir|/genres/action,dir43/11887020-american-sniper.html,18037,American Sniper +3.56,2174,1594489173,good_reads:book,https://www.goodreads.com/author/show/3681.Ann_Brashares,2007,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/young-adult|/genres/contemporary|/genres/adult|/genres/adult-fiction|/genres/book-club|/genres/realistic-fiction|/genres/new-adult,dir43/296302.The_Last_Summer.html,22603,The Last Summer +4.00,1516,,good_reads:book,https://www.goodreads.com/author/show/6089757.Sandi_Lynn,2013,/genres/romance|/genres/new-adult|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/adult-fiction|/genres/erotica|/genres/adult|/genres/romance|/genres/erotic-romance,dir43/17286162-forever-black.html,19855,"Forever Black (Forever, #1)" +4.08,297,0553565079,good_reads:book,https://www.goodreads.com/author/show/16667.Isaac_Asimov,1993,/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/classics|/genres/speculative-fiction|/genres/science-fiction|/genres/space-opera|/genres/novels|/genres/space|/genres/adventure,dir43/76679.Forward_the_Foundation.html,22700,"Forward the Foundation (Foundation: Prequel, #2)" +4.15,2745,0770436420,good_reads:book,https://www.goodreads.com/author/show/5989255.Anthony_Marra,2013,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/war|/genres/cultural|/genres/russia|/genres/literary-fiction|/genres/literature|/genres/adult-fiction|/genres/contemporary|/genres/adult,dir43/18428067-a-constellation-of-vital-phenomena.html,13935,A Constellation of Vital Phenomena +4.05,601,0061869740,good_reads:book,https://www.goodreads.com/author/show/93970.Sara_Shepard,2012,/genres/young-adult|/genres/mystery|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/fiction,dir43/9266794-two-truths-and-a-lie.html,8608,"Two Truths and a Lie (The Lying Game, #3)" +3.90,103,9735004100,good_reads:book,https://www.goodreads.com/author/show/14521.Mircea_Eliade,1933,/genres/european-literature|/genres/romanian-literature|/genres/classics|/genres/romance|/genres/fiction|/genres/academic|/genres/school|/genres/literature|/genres/cultural|/genres/romania|/genres/cultural|/genres/india|/genres/academic|/genres/read-for-school|/genres/philosophy,dir43/817199.Maitreyi.html,7252,Maitreyi +4.37,274,142150331X,good_reads:book,https://www.goodreads.com/author/show/1978.Tsugumi_Ohba,2004,/genres/sequential-art|/genres/manga|/genres/sequential-art|/genres/graphic-novels|/genres/fantasy|/genres/sequential-art|/genres/comics|/genres/fiction|/genres/horror|/genres/mystery|/genres/young-adult,dir43/13616.Death_Note_Vol_4.html,10802,"Death Note, Vol. 4 (Death Note, #4)" +4.21,436,1400098033,good_reads:book,https://www.goodreads.com/author/show/691.Trevanian,1979,/genres/fiction|/genres/thriller|/genres/mystery|/genres/spy-thriller|/genres/espionage|/genres/adventure|/genres/cultural|/genres/japan|/genres/thriller|/genres/mystery-thriller|/genres/novels|/genres/humor,dir43/1059.Shibumi.html,5831,"Shibumi (Nicholai Hel, #1)" +4.08,218,0786931582,good_reads:book,https://www.goodreads.com/author/show/869.Margaret_Weis,1986,/genres/fantasy|/genres/dungeons-and-dragons|/genres/dragonlance|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/dragons|/genres/fantasy|/genres/magic,dir43/29187.Time_of_the_Twins.html,19395,"Time of the Twins (Dragonlance: Legends, #1)" +3.71,2223,1400063841,good_reads:book,https://www.goodreads.com/author/show/3075.John_Irving,2009,/genres/fiction|/genres/contemporary|/genres/historical-fiction|/genres/literary-fiction|/genres/novels|/genres/book-club|/genres/literature,dir43/6323821-last-night-in-twisted-river.html,15453,Last Night in Twisted River +3.45,2041,0061020001,good_reads:book,https://www.goodreads.com/author/show/50873.L_J_Smith,1991,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/horror,dir43/395922.The_Awakening.html,36466,"The Awakening (The Vampire Diaries, #1)" +3.91,624,0375701230,good_reads:book,https://www.goodreads.com/author/show/29611.James_Agee,1957,/genres/fiction|/genres/classics|/genres/literature|/genres/novels|/genres/historical-fiction|/genres/literature|/genres/american|/genres/family|/genres/american|/genres/southern|/genres/literary-fiction|/genres/literature|/genres/20th-century,dir43/113091.A_Death_in_the_Family.html,8356,A Death in the Family +3.99,372,1406923044,good_reads:book,https://www.goodreads.com/author/show/20524.Anthony_Trollope,1857,/genres/classics|/genres/fiction|/genres/literature|/genres/literature|/genres/19th-century|/genres/historical-fiction|/genres/european-literature|/genres/british-literature|/genres/classics|/genres/classic-literature,dir43/125321.Barchester_Towers.html,6895,Barchester Towers (Barchester Chronicles #2) +4.10,611,0965900584,good_reads:book,https://www.goodreads.com/author/show/509.Brian_Greene,2003,/genres/science|/genres/non-fiction|/genres/science|/genres/physics|/genres/science|/genres/popular-science|/genres/science|/genres/astronomy|/genres/philosophy,dir43/22435.The_Fabric_of_the_Cosmos.html,16957,The Fabric of the Cosmos +4.21,883,,good_reads:book,https://www.goodreads.com/author/show/2958084.Kristen_Ashley,2011,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/romance|/genres/romantic-suspense|/genres/suspense|/genres/mystery|/genres/adult|/genres/adult-fiction|/genres/erotica|/genres/womens-fiction|/genres/chick-lit|/genres/mystery|/genres/crime,dir43/10813480-for-you.html,13747,"For You (The 'Burg, #1)" +4.18,776,0553805592,good_reads:book,https://www.goodreads.com/author/show/4049.Janette_Oke,1979,/genres/christian-fiction|/genres/romance|/genres/christian|/genres/historical-fiction|/genres/fiction|/genres/romance|/genres/christian-romance|/genres/romance|/genres/historical-romance|/genres/inspirational|/genres/western|/genres/adult,dir43/65497.Love_Comes_Softly.html,21340,"Love Comes Softly (Love Comes Softly, #1)" +4.01,167,006200395X,good_reads:book,https://www.goodreads.com/author/show/50873.L_J_Smith,2011,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/witches|/genres/fiction,dir43/8430908-the-craving.html,5961,"The Craving (The Vampire Diaries: Stefan's Diaries, #3)" +3.79,614,140006161X,good_reads:book,https://www.goodreads.com/author/show/3529.Elizabeth_Berg,2006,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/historical-fiction|/genres/book-club|/genres/adult-fiction|/genres/contemporary|/genres/womens-fiction|/genres/adult|/genres/novels|/genres/drama,dir43/237231.We_Are_All_Welcome_Here.html,6071,We Are All Welcome Here +3.72,470,0425209423,good_reads:book,https://www.goodreads.com/author/show/21701.Mari_Mancusi,2006,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/young-adult|/genres/teen,dir43/38564.Boys_that_Bite.html,8350,"Boys that Bite (Blood Coven Vampire, #1)" +3.83,2418,0152063110,good_reads:book,https://www.goodreads.com/author/show/1318.Susan_Beth_Pfeffer,2008,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fiction|/genres/young-adult|/genres/teen|/genres/science-fiction|/genres/apocalyptic|/genres/adventure|/genres/survival,dir43/2169506.The_Dead_and_the_Gone.html,22133,"The Dead and the Gone (Last Survivors, #2)" +4.22,449,0316043133,good_reads:book,https://www.goodreads.com/author/show/61939.Mark_Cotta_Vaz,2008,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fiction|/genres/romance|/genres/paranormal-romance|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/supernatural,dir43/3609760-twilight.html,236858,Twilight +4.26,2124,,good_reads:book,https://www.goodreads.com/author/show/2958084.Kristen_Ashley,2013,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/adult-fiction|/genres/erotica|/genres/adult|/genres/new-adult|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/erotic-romance|/genres/fiction|/genres/suspense,dir43/16163690-own-the-wind.html,23904,"Own the Wind (Chaos, #1)" +3.88,662,0312990960,good_reads:book,https://www.goodreads.com/author/show/296961.Paul_Auster,2002,/genres/fiction|/genres/contemporary|/genres/mystery|/genres/literature|/genres/literature|/genres/american|/genres/novels|/genres/literary-fiction|/genres/drama|/genres/book-club|/genres/american|/genres/american-fiction,dir43/50618.The_Book_of_Illusions.html,11887,The Book of Illusions +3.97,519,1860464181,good_reads:book,https://www.goodreads.com/author/show/8880.William_Maxwell,1979,/genres/fiction|/genres/historical-fiction|/genres/novels|/genres/book-club|/genres/classics|/genres/literature|/genres/literary-fiction|/genres/literature|/genres/american|/genres/family|/genres/adult-fiction,dir43/14276.So_Long_See_You_Tomorrow.html,3472,"So Long, See You Tomorrow" +4.07,378,0805210601,good_reads:book,https://www.goodreads.com/author/show/77190.Simon_Wiesenthal,1969,/genres/non-fiction|/genres/world-war-ii|/genres/holocaust|/genres/philosophy|/genres/history|/genres/religion|/genres/history|/genres/world-war-ii|/genres/spirituality|/genres/academic|/genres/school|/genres/academic|/genres/read-for-school|/genres/autobiography|/genres/memoir,dir43/133782.The_Sunflower.html,3608,The Sunflower +3.61,627,2266127748,good_reads:book,https://www.goodreads.com/author/show/1357577.Fran_oise_Sagan,1953,/genres/fiction|/genres/cultural|/genres/france|/genres/classics|/genres/european-literature|/genres/french-literature|/genres/novels|/genres/romance|/genres/literature|/genres/literature|/genres/20th-century,dir43/61672.Bonjour_Tristesse.html,9342,Bonjour Tristesse +4.27,197,0060892145,good_reads:book,https://www.goodreads.com/author/show/27498.Erin_Hunter,2008,/genres/fantasy|/genres/animals|/genres/fiction|/genres/animals|/genres/cats|/genres/young-adult|/genres/childrens|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/animals|/genres/animal-fiction|/genres/kids,dir43/3342493-long-shadows.html,7876,"Long Shadows (Warriors: Power of Three, #5)" +4.07,249,0756402972,good_reads:book,https://www.goodreads.com/author/show/6587.Tad_Williams,1990,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/epic|/genres/adventure|/genres/fantasy|/genres/magic|/genres/speculative-fiction|/genres/science-fiction,dir43/28689.Stone_of_Farewell.html,25365,"Stone of Farewell (Memory, Sorrow, and Thorn, #2)" +3.89,677,0307279952,good_reads:book,https://www.goodreads.com/author/show/12505.Scott_B_Smith,1993,/genres/fiction|/genres/thriller|/genres/mystery|/genres/mystery|/genres/crime|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/novels|/genres/horror|/genres/drama|/genres/adventure,dir43/21727.A_Simple_Plan.html,11456,A Simple Plan +3.94,64,8432216941,good_reads:book,https://www.goodreads.com/author/show/163.Marguerite_Duras,1960,/genres/fiction|/genres/cultural|/genres/france|/genres/culture|/genres/film|/genres/drama|/genres/plays|/genres/literature|/genres/romance|/genres/classics|/genres/european-literature|/genres/french-literature|/genres/historical-fiction,dir43/53044.Hiroshima_mon_amour.html,1829,Hiroshima mon amour +4.11,593,,good_reads:book,https://www.goodreads.com/author/show/5441556.Chanda_Hahn,2012,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/fairy-tales|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/paranormal|/genres/fairies|/genres/young-adult|/genres/teen,dir43/14745338-fairest.html,8441,"Fairest (An Unfortunate Fairy Tale, #2)" +3.96,543,0486410226,good_reads:book,https://www.goodreads.com/author/show/7935185.E_Nesbit,1906,/genres/classics|/genres/childrens|/genres/fiction|/genres/young-adult|/genres/adventure|/genres/historical-fiction,dir43/164531.The_Railway_Children.html,24461,The Railway Children +4.08,155,0142402451,good_reads:book,https://www.goodreads.com/author/show/5329.Brian_Jacques,1997,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/adventure|/genres/animals|/genres/science-fiction-fantasy|/genres/childrens|/genres/middle-grade|/genres/fantasy|/genres/high-fantasy|/genres/young-adult|/genres/teen,dir43/7981.The_Long_Patrol.html,12020,"The Long Patrol (Redwall, #10)" +3.82,260,0385312377,good_reads:book,https://www.goodreads.com/author/show/47391.Patrick_McCabe,1992,/genres/literary-fiction|/genres/literature|/genres/dark|/genres/mystery|/genres/crime|/genres/novels|/genres/contemporary|/genres/adult-fiction,dir43/82965.The_Butcher_Boy.html,4055,The Butcher Boy +4.35,215,0310257719,good_reads:book,https://www.goodreads.com/author/show/3159984.Karen_Kingsbury,2004,/genres/christian-fiction|/genres/christian|/genres/fiction|/genres/romance|/genres/inspirational|/genres/historical-fiction|/genres/romance|/genres/christian-romance|/genres/contemporary,dir43/97863.Beyond_Tuesday_Morning.html,5801,"Beyond Tuesday Morning (9/11 Series, #2)" +4.02,605,1599982714,good_reads:book,https://www.goodreads.com/author/show/65137.Shelly_Laurenston,2006,/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/paranormal|/genres/shapeshifters|/genres/adult-fiction|/genres/erotica|/genres/fantasy|/genres/shapeshifters|/genres/werewolves|/genres/adult|/genres/fantasy|/genres/urban-fantasy|/genres/humor|/genres/funny,dir43/112539.Pack_Challenge.html,10803,"Pack Challenge (Magnus Pack, #1)" +4.04,909,0689839081,good_reads:book,https://www.goodreads.com/author/show/14617.Margaret_Peterson_Haddix,2001,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fiction|/genres/childrens|/genres/adventure|/genres/fantasy,dir43/303472.Among_the_Impostors.html,17802,"Among the Impostors (Shadow Children, #2)" +3.78,1317,0553804790,good_reads:book,https://www.goodreads.com/author/show/9355.Dean_Koontz,2006,/genres/fiction|/genres/thriller|/genres/horror|/genres/mystery|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/crime|/genres/criticism|/genres/adult|/genres/drama,dir43/16429.The_Husband.html,30895,The Husband +3.99,1493,0843955287,good_reads:book,https://www.goodreads.com/author/show/6268.Christine_Feehan,1999,/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/vampires|/genres/fiction|/genres/adult|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/adult-fiction|/genres/erotica,dir43/28866.Dark_Prince.html,29668,"Dark Prince (Dark, #1)" +4.06,1825,1423157311,good_reads:book,https://www.goodreads.com/author/show/3099544.Victoria_Schwab,2013,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/mystery|/genres/paranormal|/genres/ghosts|/genres/romance|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/fantasy|/genres/supernatural,dir43/10929432-the-archived.html,8431,"The Archived (The Archived, #1)" +3.73,1914,0060525118,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2005,/genres/womens-fiction|/genres/chick-lit|/genres/mystery|/genres/fiction|/genres/romance|/genres/contemporary|/genres/young-adult|/genres/adult-fiction|/genres/humor|/genres/funny|/genres/romance|/genres/contemporary-romance|/genres/mystery|/genres/crime,dir43/23220.Size_12_Is_Not_Fat.html,49443,"Size 12 Is Not Fat (Heather Wells, #1)" +4.19,84,014043089X,good_reads:book,https://www.goodreads.com/author/show/3565.Oscar_Wilde,1897,/genres/classics|/genres/non-fiction|/genres/writing|/genres/essays|/genres/literature|/genres/poetry|/genres/autobiography|/genres/memoir|/genres/philosophy|/genres/biography|/genres/glbt|/genres/history,dir43/5304.De_Profundis_and_Other_Writings.html,1929,De Profundis and Other Writings +4.25,408,0786715103,good_reads:book,https://www.goodreads.com/author/show/11102.Rom_o_Dallaire,2003,/genres/non-fiction|/genres/history|/genres/cultural|/genres/africa|/genres/biography|/genres/war|/genres/politics|/genres/cultural|/genres/canada|/genres/autobiography|/genres/memoir|/genres/war|/genres/military|/genres/biography|/genres/autobiography,dir43/215758.Shake_Hands_with_the_Devil.html,5636,Shake Hands with the Devil +3.97,1362,055380555X,good_reads:book,https://www.goodreads.com/author/show/458771.Linwood_Barclay,2007,/genres/mystery|/genres/thriller|/genres/mystery|/genres/crime|/genres/fiction|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/book-club|/genres/cultural|/genres/canada|/genres/adult|/genres/adventure,dir43/1225261.No_Time_for_Goodbye.html,13137,No Time for Goodbye +4.34,270,072325804X,good_reads:book,https://www.goodreads.com/author/show/11593.Beatrix_Potter,1986,/genres/childrens|/genres/classics|/genres/fiction|/genres/childrens|/genres/picture-books|/genres/fantasy|/genres/short-stories|/genres/animals|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/childrens|/genres/juvenile,dir43/19330.The_Complete_Tales.html,45973,The Complete Tales +3.70,494,0670012246,good_reads:book,https://www.goodreads.com/author/show/410418.Susane_Colasanti,2011,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/realistic-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/young-adult|/genres/young-adult-romance,dir43/8492805-so-much-closer.html,6716,So Much Closer +4.27,2403,1476731535,good_reads:book,https://www.goodreads.com/author/show/6556689.Christina_Lauren,2013,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/adult|/genres/new-adult|/genres/romance|/genres/erotic-romance|/genres/humor|/genres/funny|/genres/womens-fiction|/genres/chick-lit|/genres/fiction,dir43/16117506-beautiful-stranger.html,37765,"Beautiful Stranger (Beautiful Bastard, #2)" +4.16,624,1416548483,good_reads:book,https://www.goodreads.com/author/show/7031.James_Lee_Burke,2007,/genres/mystery|/genres/fiction|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery-thriller|/genres/thriller|/genres/suspense|/genres/mystery|/genres/detective|/genres/american|/genres/southern|/genres/mystery|/genres/noir|/genres/book-club,dir43/55018.The_Tin_Roof_Blowdown.html,8582,"The Tin Roof Blowdown (Dave Robicheaux, #16)" +3.67,619,0380821214,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,1990,/genres/fantasy|/genres/humor|/genres/fiction|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny|/genres/adult|/genres/fantasy|/genres/magic|/genres/science-fiction|/genres/paranormal|/genres/wizards,dir43/64218.Eric.html,28837,"Eric (Discworld, #9)" +3.96,756,074326603X,good_reads:book,https://www.goodreads.com/author/show/575.Robert_Harris,2006,/genres/historical-fiction|/genres/fiction|/genres/thriller|/genres/cultural|/genres/italy|/genres/roman|/genres/politics|/genres/novels|/genres/mystery|/genres/literature|/genres/literature|/genres/ancient,dir43/243601.Imperium.html,9288,"Imperium (Cicero, #1)" +3.75,389,1568650949,good_reads:book,https://www.goodreads.com/author/show/9068.Sidney_Sheldon,1978,/genres/fiction|/genres/thriller|/genres/mystery|/genres/suspense|/genres/romance|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/crime|/genres/contemporary|/genres/novels|/genres/drama,dir43/300225.Bloodline.html,17783,Bloodline +4.18,200,0552142743,good_reads:book,https://www.goodreads.com/author/show/26.Anne_McCaffrey,1998,/genres/science-fiction|/genres/fantasy|/genres/dragons|/genres/fantasy|/genres/fiction|/genres/science-fiction-fantasy,dir43/24870.The_Masterharper_of_Pern.html,16406,"The Masterharper of Pern (Pern, #15)" +4.29,902,0373773102,good_reads:book,https://www.goodreads.com/author/show/48192.Gena_Showalter,2008,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/adult|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/paranormal|/genres/angels|/genres/romance,dir43/2712967-the-darkest-pleasure.html,30435,The Darkest Pleasure (Lords of the Underworld #3) +3.90,1221,0785268839,good_reads:book,https://www.goodreads.com/author/show/1236.John_Eldredge,1977,/genres/christian|/genres/non-fiction|/genres/religion|/genres/christianity|/genres/religion|/genres/spirituality|/genres/religion|/genres/faith|/genres/religion|/genres/theology|/genres/self-help|/genres/relationships|/genres/inspirational,dir43/1846.Wild_at_Heart.html,35875,Wild at Heart +3.93,949,0812550285,good_reads:book,https://www.goodreads.com/author/show/6252.Robert_Jordan,1996,/genres/fantasy|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/epic|/genres/adventure|/genres/fantasy|/genres/magic|/genres/adult|/genres/science-fiction|/genres/novels,dir43/13890.A_Crown_of_Swords.html,59530,"A Crown of Swords (Wheel of Time, #7)" +3.57,344,042518160X,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1978,/genres/horror|/genres/non-fiction|/genres/language|/genres/writing|/genres/reference|/genres/writing|/genres/essays|/genres/criticism|/genres/culture|/genres/film|/genres/writing|/genres/books-about-books,dir43/11563.Danse_Macabre.html,15594,Danse Macabre +4.05,733,1551924013,good_reads:book,https://www.goodreads.com/author/show/28699.Nick_Bantock,1991,/genres/fiction|/genres/art|/genres/fantasy|/genres/romance|/genres/sequential-art|/genres/graphic-novels|/genres/mystery|/genres/adult-fiction|/genres/contemporary|/genres/adult|/genres/childrens|/genres/picture-books,dir43/381102.Griffin_and_Sabine.html,26399,Griffin and Sabine (Griffin & Sabine Trilogy #1) +4.11,150,8510053065,good_reads:book,https://www.goodreads.com/author/show/52683.Jorge_Amado,1937,/genres/classics|/genres/fiction|/genres/romance|/genres/cultural|/genres/brazil|/genres/european-literature|/genres/portuguese-literature|/genres/literature|/genres/academic|/genres/school|/genres/novels|/genres/adventure|/genres/drama,dir43/723456.Capit_es_da_Areia.html,5037,Capitães da Areia +4.38,219,1421506289,good_reads:book,https://www.goodreads.com/author/show/1978.Tsugumi_Ohba,2005,/genres/sequential-art|/genres/graphic-novels|/genres/fantasy|/genres/sequential-art|/genres/comics|/genres/sequential-art|/genres/manga|/genres/mystery|/genres/fiction|/genres/horror|/genres/young-adult|/genres/thriller|/genres/fantasy|/genres/supernatural,dir43/13621.Death_Note_Vol_7.html,9038,"Death Note, Vol. 7 (Death Note, #7)" +3.95,468,0140055770,good_reads:book,https://www.goodreads.com/author/show/4273.Roald_Dahl,1979,/genres/fiction|/genres/humor|/genres/short-stories|/genres/humor|/genres/comedy|/genres/european-literature|/genres/british-literature|/genres/adult-fiction|/genres/erotica|/genres/book-club|/genres/novels|/genres/classics|/genres/childrens,dir43/6691.My_Uncle_Oswald.html,5337,My Uncle Oswald +3.73,470,0451076451,good_reads:book,https://www.goodreads.com/author/show/5858.Richard_Bachman,1977,/genres/horror|/genres/thriller|/genres/fiction|/genres/short-stories|/genres/novels|/genres/suspense|/genres/drama|/genres/literature|/genres/american|/genres/fantasy|/genres/young-adult|/genres/coming-of-age,dir43/66370.Rage.html,12233,Rage +4.47,2486,0988489112,good_reads:book,https://www.goodreads.com/author/show/5131072.Aleatha_Romig,2012,/genres/romance|/genres/dark|/genres/contemporary|/genres/suspense|/genres/thriller|/genres/adult|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/contemporary-romance|/genres/sociology|/genres/abuse|/genres/mystery,dir43/16070018-truth.html,19060,"Truth (Consequences, #2)" +4.48,296,0525467262,good_reads:book,https://www.goodreads.com/author/show/81466.A_A_Milne,1961,/genres/childrens|/genres/classics|/genres/fiction|/genres/poetry|/genres/fantasy|/genres/childrens|/genres/picture-books|/genres/literature|/genres/short-stories|/genres/animals|/genres/young-adult,dir43/99110.The_Complete_Tales_and_Poems_of_Winnie_the_Pooh.html,34307,The Complete Tales and Poems of Winnie-the-Pooh +4.12,10,0425125939,good_reads:book,https://www.goodreads.com/author/show/457.Anne_Tyler,1990,/genres/fiction,dir43/946516.Anne_Tyler.html,477,Anne Tyler +4.24,41,0679601406,good_reads:book,https://www.goodreads.com/author/show/1377.Raymond_Chandler,1939,/genres/fiction|/genres/mystery|/genres/mystery|/genres/crime|/genres/mystery|/genres/noir|/genres/literature|/genres/american|/genres/book-club|/genres/thriller|/genres/mystery-thriller,dir43/105704.The_Big_Sleep_Farewell_My_Lovely.html,485,"The Big Sleep & Farewell, My Lovely" +4.18,314,0451166604,good_reads:book,https://www.goodreads.com/author/show/9678.Ann_Rule,1987,/genres/crime|/genres/true-crime|/genres/non-fiction|/genres/mystery|/genres/crime|/genres/mystery|/genres/adult|/genres/biography|/genres/true-story|/genres/thriller|/genres/history|/genres/suspense,dir43/231585.Small_Sacrifices.html,12534,Small Sacrifices +4.21,289,0688163653,good_reads:book,https://www.goodreads.com/author/show/4260.Diana_Wynne_Jones,1988,/genres/fantasy|/genres/young-adult|/genres/childrens|/genres/fiction|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/young-adult-fantasy|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/science-fiction-fantasy|/genres/childrens|/genres/juvenile,dir43/519933.The_Lives_of_Christopher_Chant.html,14381,"The Lives of Christopher Chant (Chrestomanci, #2)" +3.95,799,0060563494,good_reads:book,https://www.goodreads.com/author/show/46162.Frank_Delaney,2004,/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/ireland|/genres/european-literature|/genres/irish-literature|/genres/travel|/genres/literature|/genres/book-club|/genres/adult-fiction|/genres/novels|/genres/folklore,dir43/90360.Ireland.html,4795,Ireland +4.04,1957,141699792X,good_reads:book,https://www.goodreads.com/author/show/25052.Brandon_Mull,2011,/genres/fantasy|/genres/adventure|/genres/young-adult|/genres/childrens|/genres/middle-grade|/genres/fantasy|/genres/magic|/genres/fiction|/genres/childrens|/genres/young-adult|/genres/young-adult-fantasy,dir43/8306745-a-world-without-heroes.html,18182,"A World Without Heroes (Beyonders, #1)" +3.09,1491,0307476103,good_reads:book,https://www.goodreads.com/author/show/4616903.The_Harvard_Lampoon,2009,/genres/humor|/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/humor|/genres/comedy|/genres/romance|/genres/humor|/genres/funny|/genres/fantasy|/genres/supernatural,dir43/6638377-nightlight.html,7627,Nightlight +4.13,390,2266071289,good_reads:book,https://www.goodreads.com/author/show/37449.Lorenzo_Carcaterra,1995,/genres/fiction|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery|/genres/crime|/genres/true-crime,dir43/292740.Sleepers.html,7896,Sleepers +4.36,289,0935216588,good_reads:book,https://www.goodreads.com/author/show/248952.Th_r_se_de_Lisieux,1896,/genres/religion|/genres/christianity|/genres/catholic|/genres/non-fiction|/genres/spirituality|/genres/biography|/genres/christian|/genres/religion|/genres/theology|/genres/religion|/genres/faith|/genres/religion|/genres/christianity|/genres/autobiography|/genres/memoir,dir43/754771.Story_of_a_Soul.html,5580,Story of a Soul +4.17,162,0553137522,good_reads:book,https://www.goodreads.com/author/show/1040250.M_M_Kaye,1957,/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/india|/genres/romance|/genres/adventure|/genres/cultural|/genres/asia|/genres/adult-fiction|/genres/epic|/genres/mystery|/genres/classics,dir43/560535.Shadow_of_the_Moon.html,2217,Shadow of the Moon +4.22,218,0060892080,good_reads:book,https://www.goodreads.com/author/show/27498.Erin_Hunter,2008,/genres/fantasy|/genres/animals|/genres/animals|/genres/cats|/genres/fiction|/genres/young-adult|/genres/childrens|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/animals|/genres/animal-fiction|/genres/novels,dir43/2237117.Outcast.html,8955,"Outcast (Warriors: Power of Three, #3)" +3.67,1380,1416928065,good_reads:book,https://www.goodreads.com/author/show/125984.Obert_Skye,2005,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/adventure|/genres/childrens|/genres/fantasy|/genres/magic|/genres/childrens|/genres/middle-grade|/genres/young-adult|/genres/teen,dir43/214856.Leven_Thumps_and_the_Gateway_to_Foo.html,13815,"Leven Thumps and the Gateway to Foo (Leven Thumps, #1)" +3.75,1158,0312380968,good_reads:book,https://www.goodreads.com/author/show/1628012.Lisa_Mantchev,2009,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/paranormal|/genres/fairies|/genres/fantasy|/genres/magic|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/young-adult-fantasy|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/urban-fantasy,dir43/3817859-eyes-like-stars.html,9108,"Eyes Like Stars (Théâtre Illuminata, #1)" +4.58,864,,good_reads:book,https://www.goodreads.com/author/show/2958084.Kristen_Ashley,2011,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/romance|/genres/romantic-suspense|/genres/humor|/genres/funny|/genres/adult|/genres/womens-fiction|/genres/chick-lit|/genres/suspense|/genres/humor|/genres/adult-fiction|/genres/erotica,dir43/13184992-rock-chick-regret.html,14830,"Rock Chick Regret (Rock Chick, #7)" +4.21,1356,,good_reads:book,https://www.goodreads.com/author/show/2958084.Kristen_Ashley,2011,/genres/romance|/genres/contemporary|/genres/romance|/genres/romantic-suspense|/genres/adult-fiction|/genres/erotica|/genres/adult|/genres/suspense|/genres/romance|/genres/contemporary-romance|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/erotic-romance|/genres/fiction,dir43/12881141-wild-man.html,22284,"Wild Man (Dream Man, #2)" +4.19,116,0060935499,good_reads:book,https://www.goodreads.com/author/show/28785.Peter_Shaffer,1979,/genres/plays|/genres/drama|/genres/historical-fiction|/genres/fiction|/genres/plays|/genres/theatre|/genres/classics|/genres/music|/genres/literature|/genres/literature|/genres/20th-century|/genres/academic|/genres/school,dir43/84927.Amadeus.html,11320,Amadeus +4.04,2322,0385340583,good_reads:book,https://www.goodreads.com/author/show/5091.Lee_Child,2010,/genres/thriller|/genres/fiction|/genres/mystery|/genres/mystery|/genres/crime|/genres/suspense|/genres/action|/genres/thriller|/genres/mystery-thriller|/genres/war|/genres/military|/genres/adventure|/genres/spy-thriller|/genres/espionage,dir43/6977769-61-hours.html,29502,"61 Hours (Jack Reacher, #14)" +4.28,204,0060892110,good_reads:book,https://www.goodreads.com/author/show/27498.Erin_Hunter,2008,/genres/fantasy|/genres/animals|/genres/animals|/genres/cats|/genres/fiction|/genres/young-adult|/genres/childrens|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/animals|/genres/animal-fiction|/genres/kids,dir43/2801577-eclipse.html,8321,"Eclipse (Warriors: Power of Three, #4)" +3.79,398,0062017683,good_reads:book,https://www.goodreads.com/author/show/50873.L_J_Smith,2011,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/magic,dir43/8607205-phantom.html,9403,"Phantom (The Vampire Diaries: The Hunters, #1)" +4.13,857,0345476980,good_reads:book,https://www.goodreads.com/author/show/18149.Tess_Gerritsen,2005,/genres/mystery|/genres/thriller|/genres/mystery|/genres/crime|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/fiction,dir43/32255.Vanish.html,25043,"Vanish (Rizzoli & Isles, #5)" +4.12,506,0345335651,good_reads:book,https://www.goodreads.com/author/show/8732.David_Eddings,1982,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/adventure|/genres/epic|/genres/science-fiction,dir43/587582.Queen_of_Sorcery.html,36475,"Queen of Sorcery (The Belgariad, #2)" +4.52,1076,,good_reads:book,https://www.goodreads.com/author/show/2958084.Kristen_Ashley,2011,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/romance|/genres/romantic-suspense|/genres/suspense|/genres/adult|/genres/adult-fiction|/genres/erotica|/genres/mystery|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/erotic-romance,dir43/11665750-at-peace.html,13428,"At Peace (The 'Burg, #2)" +4.06,787,0446350982,good_reads:book,https://www.goodreads.com/author/show/2749.Scott_Turow,1986,/genres/mystery|/genres/thriller|/genres/law|/genres/novels|/genres/fiction|/genres/contemporary|/genres/adult-fiction|/genres/media-tie-in|/genres/movies|/genres/literature|/genres/american|/genres/adult,dir43/425029.Presumed_Innocent.html,69505,"Presumed Innocent (Kindle County Legal Thriller, #1)" +4.15,1129,,good_reads:book,https://www.goodreads.com/author/show/3213942.Linda_Kage,2013,/genres/new-adult|/genres/romance|/genres/contemporary|/genres/academic|/genres/college|/genres/romance|/genres/contemporary-romance|/genres/humor|/genres/funny|/genres/sociology|/genres/abuse|/genres/young-adult|/genres/adult-fiction|/genres/erotica|/genres/womens-fiction|/genres/chick-lit,dir43/17833099-price-of-a-kiss.html,12306,"Price of a Kiss (Forbidden Men, #1)" +4.37,771,0446556815,good_reads:book,https://www.goodreads.com/author/show/375143.Larissa_Ione,2010,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/demons|/genres/romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/shapeshifters|/genres/werewolves|/genres/adult-fiction|/genres/erotica,dir43/7715664-sin-undone.html,17426,"Sin Undone (Demonica, #5)" +3.86,140,0300082401,good_reads:book,https://www.goodreads.com/author/show/9632.Witold_Gombrowicz,1937,/genres/fiction|/genres/european-literature|/genres/polish-literature|/genres/classics|/genres/academic|/genres/school|/genres/cultural|/genres/poland|/genres/literature|/genres/novels|/genres/humor|/genres/literature|/genres/20th-century|/genres/literary-fiction,dir43/15581.Ferdydurke.html,4592,Ferdydurke +4.02,2692,0374275637,good_reads:book,https://www.goodreads.com/author/show/72401.Daniel_Kahneman,2010,/genres/non-fiction|/genres/psychology|/genres/science|/genres/economics|/genres/business|/genres/self-help|/genres/philosophy|/genres/biology|/genres/neuroscience|/genres/self-help|/genres/personal-development|/genres/social-science,dir44/11468377-thinking-fast-and-slow.html,56642,"Thinking, Fast and Slow" +4.53,508,,good_reads:book,https://www.goodreads.com/author/show/5014564.Quinn_Loftis,2012,/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/animals|/genres/wolves|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/witches,dir44/13489518-out-of-the-dark.html,9441,"Out of the Dark (The Grey Wolves, #4)" +4.20,124,0006479502,good_reads:book,https://www.goodreads.com/author/show/60177.Guy_Gavriel_Kay,1995,/genres/fantasy|/genres/fiction|/genres/cultural|/genres/canada|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/mythology|/genres/arthurian|/genres/speculative-fiction|/genres/epic|/genres/fantasy|/genres/mythology,dir44/1148721.The_Fionavar_Tapestry.html,3920,The Fionavar Tapestry (The Fionavar Tapestry #1-3) +4.51,962,,good_reads:book,https://www.goodreads.com/author/show/20248.J_R_Ward,2008,/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/adult|/genres/fantasy|/genres/urban-fantasy|/genres/short-stories|/genres/adult-fiction|/genres/erotica|/genres/fantasy|/genres/supernatural,dir44/5153799-father-mine.html,23842,"Father Mine (Black Dagger Brotherhood, #6.5)" +3.95,767,0061491888,good_reads:book,https://www.goodreads.com/author/show/63898.Julia_Quinn,2009,/genres/romance|/genres/romance|/genres/historical-romance|/genres/regency|/genres/historical-fiction|/genres/historical-romance|/genres/regency-romance|/genres/fiction,dir44/5500109-what-happens-in-london.html,9743,"What Happens in London (Bevelstoke, #2)" +3.76,4424,0385528043,good_reads:book,https://www.goodreads.com/author/show/721.John_Grisham,2010,/genres/fiction|/genres/mystery|/genres/thriller|/genres/mystery|/genres/crime|/genres/thriller|/genres/legal-thriller|/genres/suspense|/genres/law|/genres/thriller|/genres/mystery-thriller|/genres/book-club|/genres/adult-fiction,dir44/7933437-the-confession.html,34765,The Confession +4.08,443,0811216012,good_reads:book,https://www.goodreads.com/author/show/7751.Tennessee_Williams,1955,/genres/plays|/genres/classics|/genres/drama|/genres/fiction|/genres/plays|/genres/theatre|/genres/literature|/genres/american|/genres/literature|/genres/american|/genres/southern|/genres/academic|/genres/school|/genres/literature|/genres/20th-century,dir44/72159.Cat_on_a_Hot_Tin_Roof.html,33927,Cat on a Hot Tin Roof +3.99,2127,0066620996,good_reads:book,https://www.goodreads.com/author/show/2826.Jim_Collins,2001,/genres/business|/genres/non-fiction|/genres/leadership|/genres/management|/genres/self-help|/genres/economics|/genres/self-help|/genres/personal-development|/genres/education|/genres/reference|/genres/academic|/genres/school,dir44/76865.Good_to_Great.html,52321,Good to Great +4.10,677,0446576980,good_reads:book,https://www.goodreads.com/author/show/12577.Douglas_Preston,2006,/genres/thriller|/genres/mystery|/genres/fiction|/genres/horror|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/crime|/genres/adventure|/genres/fantasy|/genres/mystery|/genres/detective,dir44/30068.The_Book_of_the_Dead.html,17370,"The Book of the Dead (Pendergast, #7; Diogenes, #3)" +4.13,499,0446617091,good_reads:book,https://www.goodreads.com/author/show/12577.Douglas_Preston,1999,/genres/thriller|/genres/mystery|/genres/fiction|/genres/horror|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/crime|/genres/adventure|/genres/mystery|/genres/detective|/genres/fantasy,dir44/136638.Dance_of_Death.html,15054,"Dance of Death (Pendergast, #6; Diogenes, #2)" +4.37,318,0571068944,good_reads:book,https://www.goodreads.com/author/show/18540.T_S_Eliot,1943,/genres/poetry|/genres/classics|/genres/literature|/genres/fiction|/genres/philosophy|/genres/literature|/genres/20th-century,dir44/80410.Four_Quartets.html,8064,Four Quartets +3.56,746,006102001X,good_reads:book,https://www.goodreads.com/author/show/50873.L_J_Smith,1991,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/horror,dir44/395851.The_Struggle.html,20659,"The Struggle (The Vampire Diaries, #2)" +4.15,1254,0439650763,good_reads:book,https://www.goodreads.com/author/show/153394.Suzanne_Collins,2004,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/adventure|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile,dir44/385742.Gregor_and_the_Prophecy_of_Bane.html,20877,"Gregor and the Prophecy of Bane (Underland Chronicles, #2)" +3.97,119,0060815914,good_reads:book,https://www.goodreads.com/author/show/15890.Trudi_Canavan,2006,/genres/fantasy|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/high-fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/young-adult|/genres/romance|/genres/science-fiction-fantasy|/genres/adult|/genres/mythology|/genres/gods,dir44/28246.Last_of_the_Wilds.html,7038,"Last of the Wilds (Age of the Five, #2)" +4.20,773,141993595X,good_reads:book,https://www.goodreads.com/author/show/3190846.Laurann_Dohner,2011,/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/science-fiction|/genres/paranormal|/genres/shapeshifters|/genres/fantasy|/genres/adult|/genres/romance|/genres/erotic-romance|/genres/contemporary,dir44/12063467-fury.html,11173,"Fury (New Species, #1)" +3.66,623,0802140149,good_reads:book,https://www.goodreads.com/author/show/37613.Glen_Duncan,2002,/genres/fiction|/genres/fantasy|/genres/humor|/genres/religion|/genres/horror|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/contemporary|/genres/paranormal|/genres/angels|/genres/humor|/genres/comedy,dir44/66717.I_Lucifer.html,5664,"I, Lucifer" +4.38,1118,1250012899,good_reads:book,https://www.goodreads.com/author/show/4154802.C_C_Hunter,2013,/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/ghosts|/genres/paranormal|/genres/witches,dir44/15745371-chosen-at-nightfall.html,13970,"Chosen at Nightfall (Shadow Falls, #5)" +3.98,415,0385031149,good_reads:book,https://www.goodreads.com/author/show/285217.Johann_Wolfgang_von_Goethe,1832,/genres/classics|/genres/poetry|/genres/fiction|/genres/plays|/genres/drama|/genres/european-literature|/genres/german-literature|/genres/literature|/genres/philosophy|/genres/fantasy|/genres/academic|/genres/school,dir44/406373.Faust.html,9934,Faust +3.65,796,0349117624,good_reads:book,https://www.goodreads.com/author/show/18741.Max_Barry,2002,/genres/fiction|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/humor|/genres/science-fiction|/genres/cyberpunk|/genres/politics|/genres/thriller|/genres/fantasy|/genres/speculative-fiction|/genres/science-fiction-fantasy,dir44/33356.Jennifer_Government.html,8703,Jennifer Government +4.35,64,0712670408,good_reads:book,https://www.goodreads.com/author/show/875661.Rumi,1998,/genres/poetry|/genres/spirituality|/genres/classics|/genres/romance|/genres/love|/genres/literature|/genres/religion|/genres/philosophy|/genres/non-fiction|/genres/religion|/genres/islam,dir44/67377.The_Love_Poems_Of_Rumi.html,1486,The Love Poems Of Rumi +3.79,857,0140286276,good_reads:book,https://www.goodreads.com/author/show/3504.Jacquelyn_Mitchard,1996,/genres/fiction|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/mystery|/genres/adult-fiction|/genres/book-club|/genres/drama|/genres/novels|/genres/adult|/genres/family,dir44/5161.The_Deep_End_of_the_Ocean.html,77308,"The Deep End of the Ocean (Cappadora Family, #1)" +4.10,864,1421508222,good_reads:book,https://www.goodreads.com/author/show/153732.Matsuri_Hino,2005,/genres/paranormal|/genres/vampires|/genres/romance|/genres/fantasy|/genres/sequential-art|/genres/manga|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/media-tie-in|/genres/anime|/genres/fantasy|/genres/supernatural|/genres/sequential-art|/genres/comics|/genres/sequential-art|/genres/graphic-novels,dir44/263145.Vampire_Knight_Vol_01.html,57092,"Vampire Knight, Vol. 01 (Vampire Knight, #1)" +4.09,1300,0374324913,good_reads:book,https://www.goodreads.com/author/show/837219.Alexander_Gordon_Smith,2009,/genres/young-adult|/genres/horror|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fiction|/genres/thriller|/genres/fantasy|/genres/adventure|/genres/young-adult|/genres/teen|/genres/adventure|/genres/survival,dir44/6420846-lockdown.html,10201,"Lockdown (Escape From Furnace, #1)" +4.47,1174,0575100133,good_reads:book,https://www.goodreads.com/author/show/71688.Nalini_Singh,2011,/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/paranormal,dir44/8712343-kiss-of-snow.html,14011,"Kiss of Snow (Psy-Changeling, #10)" +4.28,698,0062002368,good_reads:book,https://www.goodreads.com/author/show/3220024.Courtney_Allison_Moulton,2012,/genres/paranormal|/genres/angels|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/paranormal|/genres/demons|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic,dir44/8501291-wings-of-the-wicked.html,9224,"Wings of the Wicked (Angelfire, #2)" +4.14,859,0142405787,good_reads:book,https://www.goodreads.com/author/show/32590.Anthony_Horowitz,2004,/genres/young-adult|/genres/adventure|/genres/action|/genres/spy-thriller|/genres/espionage|/genres/fiction|/genres/mystery|/genres/thriller|/genres/young-adult|/genres/teen,dir44/542414.Scorpia.html,34911,"Scorpia (Alex Rider, #5)" +3.65,379,0451530306,good_reads:book,https://www.goodreads.com/author/show/17623.D_H_Lawrence,1915,/genres/classics|/genres/fiction|/genres/literature|/genres/romance|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/literature|/genres/20th-century|/genres/historical-fiction|/genres/classics|/genres/classic-literature|/genres/literary-fiction,dir44/31491.The_Rainbow.html,10882,"The Rainbow (Brangwen Family, #1)" +4.11,802,0142407380,good_reads:book,https://www.goodreads.com/author/show/32590.Anthony_Horowitz,2005,/genres/young-adult|/genres/adventure|/genres/action|/genres/spy-thriller|/genres/espionage|/genres/mystery|/genres/fiction|/genres/thriller,dir44/94319.Ark_Angel.html,25527,"Ark Angel (Alex Rider, #6)" +4.17,141,142092706X,good_reads:book,https://www.goodreads.com/author/show/1438.Walt_Whitman,1856,/genres/poetry|/genres/classics|/genres/literature|/genres/american|/genres/literature|/genres/fiction|/genres/academic|/genres/school|/genres/literature|/genres/19th-century|/genres/academic|/genres/read-for-school|/genres/philosophy|/genres/academic|/genres/college,dir44/293918.Song_of_Myself.html,6716,Song of Myself +4.16,331,0689869118,good_reads:book,https://www.goodreads.com/author/show/74046.D_J_MacHale,2004,/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/adventure|/genres/fiction|/genres/young-adult|/genres/teen|/genres/childrens|/genres/young-adult|/genres/young-adult-fantasy|/genres/science-fiction|/genres/time-travel|/genres/science-fiction-fantasy,dir44/147801.Black_Water.html,15739,"Black Water (Pendragon, #5)" +3.65,589,0765340747,good_reads:book,https://www.goodreads.com/author/show/3441.Terry_Goodkind,2001,/genres/fantasy|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/adventure|/genres/womens|/genres/paranormal|/genres/wizards|/genres/fiction|/genres/science-fiction|/genres/fantasy|/genres/epic-fantasy|/genres/epic,dir44/5038.The_Pillars_of_Creation.html,34452,"The Pillars of Creation (Sword of Truth, #7)" +3.66,1372,000723368X,good_reads:book,https://www.goodreads.com/author/show/7116.Cecelia_Ahern,2008,/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/fiction|/genres/contemporary|/genres/fantasy|/genres/romance|/genres/contemporary-romance|/genres/adult|/genres/adult-fiction|/genres/european-literature|/genres/irish-literature|/genres/love,dir44/2410506.Thanks_for_the_Memories.html,23954,Thanks for the Memories +4.01,618,0446618470,good_reads:book,https://www.goodreads.com/author/show/16202.Elizabeth_Hoyt,2006,/genres/romance|/genres/historical-romance|/genres/romance|/genres/historical-fiction|/genres/regency|/genres/fiction|/genres/adult|/genres/historical-romance|/genres/regency-romance|/genres/historical-romance|/genres/georgian-romance|/genres/european-literature|/genres/british-literature|/genres/adult-fiction|/genres/erotica,dir44/28863.The_Raven_Prince.html,9764,"The Raven Prince (Princes Trilogy, #1)" +3.92,191,0141180676,good_reads:book,https://www.goodreads.com/author/show/18317.Knut_Hamsun,1894,/genres/fiction|/genres/classics|/genres/european-literature|/genres/scandinavian-literature|/genres/literature|/genres/literature|/genres/19th-century|/genres/novels|/genres/romance,dir44/32590.Pan.html,3261,Pan +4.15,847,0312949820,good_reads:book,https://www.goodreads.com/author/show/27847.Lisa_Kleypas,2009,/genres/romance|/genres/historical-romance|/genres/romance|/genres/historical-fiction|/genres/regency|/genres/adult|/genres/fiction|/genres/historical-romance|/genres/regency-romance|/genres/womens-fiction|/genres/chick-lit|/genres/family|/genres/european-literature|/genres/british-literature,dir44/6264710-tempt-me-at-twilight.html,15820,"Tempt Me at Twilight (The Hathaways, #3)" +3.84,2034,1442422017,good_reads:book,https://www.goodreads.com/author/show/2755160.Kimberly_Derting,2011,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen,dir44/10637748-the-pledge.html,19455,"The Pledge (The Pledge, #1)" +4.01,1127,0060837055,good_reads:book,https://www.goodreads.com/author/show/9388.Louise_Erdrich,2003,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/literary-fiction|/genres/adult-fiction|/genres/war|/genres/cultural|/genres/germany|/genres/novels|/genres/history|/genres/world-war-ii|/genres/literature,dir44/142900.The_Master_Butchers_Singing_Club.html,13080,The Master Butchers Singing Club +4.11,791,0006280935,good_reads:book,https://www.goodreads.com/author/show/1069006.C_S_Lewis,1940,/genres/non-fiction|/genres/religion|/genres/theology|/genres/religion|/genres/religion|/genres/christianity|/genres/philosophy|/genres/spirituality|/genres/religion|/genres/faith|/genres/classics|/genres/christian,dir44/26435.The_Problem_of_Pain.html,23538,The Problem of Pain +3.87,146,0312243111,good_reads:book,https://www.goodreads.com/author/show/337.Walker_Percy,1971,/genres/fiction|/genres/literature|/genres/novels|/genres/classics|/genres/christianity|/genres/catholic|/genres/american|/genres/southern|/genres/literature|/genres/american|/genres/literary-fiction|/genres/science-fiction,dir44/60403.Love_in_the_Ruins.html,1914,Love in the Ruins +4.07,1127,0061870935,good_reads:book,https://www.goodreads.com/author/show/22542.Megan_Whalen_Turner,2010,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/adventure|/genres/historical-fiction|/genres/young-adult|/genres/young-adult-fantasy|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/high-fantasy|/genres/romance|/genres/fantasy|/genres/mythology,dir44/6527841-a-conspiracy-of-kings.html,8892,"A Conspiracy of Kings (The Queen's Thief, #4)" +4.09,163,1416927069,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2002,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/mystery|/genres/young-adult|/genres/teen|/genres/womens-fiction|/genres/chick-lit|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/contemporary,dir44/187809.Safe_House.html,8624,"Safe House (1-800-Where-R-You, #3)" +3.79,640,0152059881,good_reads:book,https://www.goodreads.com/author/show/72678.Catherine_Jinks,2005,/genres/young-adult|/genres/science-fiction|/genres/fiction|/genres/mystery|/genres/young-adult|/genres/teen|/genres/adventure|/genres/fantasy|/genres/cultural|/genres/australia|/genres/humor|/genres/mystery|/genres/crime,dir44/295741.Evil_Genius.html,5615,"Evil Genius (Genius, #1)" +3.83,457,0002314576,good_reads:book,https://www.goodreads.com/author/show/123715.Agatha_Christie,1933,/genres/mystery|/genres/mystery|/genres/crime|/genres/mystery|/genres/detective|/genres/classics|/genres/thriller|/genres/mystery-thriller|/genres/european-literature|/genres/british-literature,dir44/215492.Lord_Edgware_Dies.html,11098,"Lord Edgware Dies (Hercule Poirot, #9)" +4.11,426,0786942460,good_reads:book,https://www.goodreads.com/author/show/1023510.R_A_Salvatore,1988,/genres/fantasy|/genres/dungeons-and-dragons|/genres/forgotten-realms|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/adventure|/genres/role-playing-games|/genres/dungeons-and-dragons|/genres/fantasy|/genres/magic|/genres/epic,dir44/66693.The_Crystal_Shard.html,24359,"The Crystal Shard (Forgotten Realms: Icewind Dale, #1; Legend of Drizzt, #4)" +3.91,214,1573225053,good_reads:book,https://www.goodreads.com/author/show/1742.Jack_Kerouac,1958,/genres/fiction|/genres/literature|/genres/classics|/genres/literature|/genres/american|/genres/novels|/genres/travel|/genres/literary-fiction|/genres/classics|/genres/modern-classics|/genres/cultural|/genres/counter-culture|/genres/contemporary,dir44/10461.Desolation_Angels.html,7349,Desolation Angels +3.93,711,0140184937,good_reads:book,https://www.goodreads.com/author/show/2533.Graham_Greene,1958,/genres/fiction|/genres/classics|/genres/literature|/genres/spy-thriller|/genres/espionage|/genres/humor|/genres/novels|/genres/mystery|/genres/thriller|/genres/book-club|/genres/european-literature|/genres/british-literature,dir44/133394.Our_Man_in_Havana.html,11676,Our Man in Havana +3.97,131,0142501093,good_reads:book,https://www.goodreads.com/author/show/5329.Brian_Jacques,1999,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/animals|/genres/adventure,dir44/7987.The_Legend_of_Luke.html,10048,"The Legend of Luke (Redwall, #12)" +3.97,639,0743493915,good_reads:book,https://www.goodreads.com/author/show/1025097.Patricia_Cornwell,1991,/genres/mystery|/genres/mystery|/genres/crime|/genres/fiction|/genres/thriller|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/murder-mystery|/genres/mystery|/genres/detective|/genres/adult|/genres/medical,dir44/132336.Body_of_Evidence.html,39985,"Body of Evidence (Kay Scarpetta, #2)" +4.19,167,0451224515,good_reads:book,https://www.goodreads.com/author/show/12695.Christina_Dodd,2008,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/shapeshifters|/genres/fantasy|/genres/adult|/genres/fiction|/genres/contemporary|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy,dir44/2440645.Into_The_Shadow.html,5671,"Into The Shadow (Darkness Chosen, #3)" +3.93,594,0061575402,good_reads:book,https://www.goodreads.com/author/show/1312879.Lesley_Livingston,2009,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fairies|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/magic|/genres/fairies|/genres/fae|/genres/fiction|/genres/romance|/genres/paranormal-romance,dir44/6543755-darklight.html,7285,"Darklight (Wondrous Strange, #2)" +3.83,186,2253152846,good_reads:book,https://www.goodreads.com/author/show/40416.Am_lie_Nothomb,2000,/genres/roman|/genres/european-literature|/genres/belgian|/genres/contemporary|/genres/fiction|/genres/european-literature|/genres/french-literature|/genres/cultural|/genres/france,dir44/75519.M_taphysique_des_tubes.html,3635,Métaphysique des tubes +4.06,184,1416927042,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2001,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/mystery|/genres/young-adult|/genres/teen|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/contemporary,dir44/199783.Code_Name_Cassandra.html,9461,"Code Name Cassandra (1-800-Where-R-You, #2)" +3.87,1431,0061914665,good_reads:book,https://www.goodreads.com/author/show/1051591.Tera_Lynn_Childs,2010,/genres/mermaids|/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/romance|/genres/paranormal-romance|/genres/young-adult|/genres/teen,dir44/6710476-forgive-my-fins.html,12851,"Forgive My Fins (Fins, #1)" +3.80,1478,0062105620,good_reads:book,https://www.goodreads.com/author/show/2238.Isabel_Allende,2003,/genres/fiction|/genres/book-club|/genres/young-adult|/genres/contemporary|/genres/young-adult|/genres/coming-of-age|/genres/adult,dir44/16248114-maya-s-notebook.html,10017,Maya's Notebook +3.88,1445,0545140315,good_reads:book,https://www.goodreads.com/author/show/2983974.Elizabeth_Eulberg,2009,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/young-adult|/genres/high-school|/genres/fiction|/genres/young-adult|/genres/teen|/genres/music|/genres/humor,dir44/6609714-the-lonely-hearts-club.html,14145,"The Lonely Hearts Club (The Lonely Hearts Club, #1)" +4.19,253,0689869126,good_reads:book,https://www.goodreads.com/author/show/74046.D_J_MacHale,2005,/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/adventure|/genres/fiction|/genres/young-adult|/genres/teen|/genres/childrens|/genres/science-fiction|/genres/time-travel|/genres/young-adult|/genres/young-adult-fantasy|/genres/childrens|/genres/middle-grade,dir44/215542.The_Rivers_of_Zadaa.html,16363,"The Rivers of Zadaa (Pendragon, #6)" +3.80,411,0765344300,good_reads:book,https://www.goodreads.com/author/show/3441.Terry_Goodkind,2003,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/epic|/genres/fantasy|/genres/high-fantasy|/genres/romance|/genres/adventure|/genres/literature|/genres/american,dir44/43893.Naked_Empire.html,31386,"Naked Empire (Sword of Truth, #8)" +3.89,3193,0385521227,good_reads:book,https://www.goodreads.com/author/show/3681.Ann_Brashares,2011,/genres/young-adult|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/romance|/genres/adult|/genres/adult-fiction|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/drama,dir44/9461872-sisterhood-everlasting.html,21530,"Sisterhood Everlasting (Sisterhood, #5)" +3.80,1325,0553560735,good_reads:book,https://www.goodreads.com/author/show/1858.Kim_Stanley_Robinson,1992,/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/space|/genres/speculative-fiction|/genres/science-fiction|/genres/space-opera|/genres/politics|/genres/science-fiction|/genres/hard-science-fiction|/genres/fantasy|/genres/novels,dir44/77507.Red_Mars.html,30483,"Red Mars (Mars Trilogy, #1)" +3.75,568,0439443369,good_reads:book,https://www.goodreads.com/author/show/10896.Eoin_Colfer,2000,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/childrens|/genres/adventure|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/urban-fantasy|/genres/humor,dir44/45436.The_Wish_List.html,10832,The Wish List +3.78,654,0425162443,good_reads:book,https://www.goodreads.com/author/show/3520.Sheri_Reynolds,1995,/genres/fiction|/genres/religion|/genres/adult-fiction|/genres/book-club|/genres/contemporary|/genres/historical-fiction|/genres/young-adult|/genres/coming-of-age|/genres/spirituality|/genres/literature|/genres/literary-fiction,dir44/5180.The_Rapture_of_Canaan.html,23946,The Rapture of Canaan +4.17,651,1406309354,good_reads:book,https://www.goodreads.com/author/show/32590.Anthony_Horowitz,2007,/genres/young-adult|/genres/adventure|/genres/action|/genres/spy-thriller|/genres/espionage|/genres/fiction|/genres/mystery|/genres/thriller|/genres/young-adult|/genres/teen|/genres/childrens|/genres/realistic-fiction,dir44/1821571.Snakehead.html,23187,"Snakehead (Alex Rider, #7)" +3.96,7341,0330419129,good_reads:book,https://www.goodreads.com/author/show/1235.Jon_Krakauer,2003,/genres/crime|/genres/true-crime|/genres/mystery|/genres/crime|/genres/biography|/genres/book-club|/genres/lds|/genres/mormonism,dir44/10847.Under_the_Banner_of_Heaven.html,89601,Under the Banner of Heaven +3.71,969,0141300515,good_reads:book,https://www.goodreads.com/author/show/10442.Robert_Cormier,1977,/genres/young-adult|/genres/fiction|/genres/mystery|/genres/classics|/genres/young-adult|/genres/teen|/genres/realistic-fiction|/genres/academic|/genres/school|/genres/thriller|/genres/childrens|/genres/literature|/genres/banned-books,dir44/48974.I_Am_the_Cheese.html,9680,I Am the Cheese +4.30,155,1421506297,good_reads:book,https://www.goodreads.com/author/show/1978.Tsugumi_Ohba,2005,/genres/sequential-art|/genres/manga|/genres/sequential-art|/genres/graphic-novels|/genres/fantasy|/genres/mystery|/genres/fiction|/genres/horror|/genres/young-adult|/genres/fantasy|/genres/supernatural,dir44/13614.Death_Note_Vol_8.html,10364,"Death Note, Vol. 8 (Death Note, #8)" +3.61,1302,0064403688,good_reads:book,https://www.goodreads.com/author/show/1949.Katherine_Paterson,1980,/genres/young-adult|/genres/fiction|/genres/childrens|/genres/historical-fiction|/genres/classics|/genres/realistic-fiction|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/middle-grade|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/coming-of-age,dir44/337058.Jacob_Have_I_Loved.html,19150,Jacob Have I Loved +4.15,1855,0385496095,good_reads:book,https://www.goodreads.com/author/show/7113.Anne_Lamott,1999,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/spirituality|/genres/religion|/genres/religion|/genres/faith|/genres/christian|/genres/writing|/genres/essays|/genres/biography|/genres/religion|/genres/christianity|/genres/religion|/genres/theology,dir44/10890.Traveling_Mercies.html,28933,Traveling Mercies +3.66,164,1857232526,good_reads:book,https://www.goodreads.com/author/show/7779.Arthur_C_Clarke,1993,/genres/science-fiction|/genres/fiction|/genres/womens,dir44/112517.Rama_Revealed.html,6887,"Rama Revealed (Rama, #4)" +3.85,383,0802135331,good_reads:book,https://www.goodreads.com/author/show/9738.Penelope_Lively,1987,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/literary-fiction|/genres/war|/genres/literature|/genres/modern|/genres/cultural|/genres/egypt,dir44/130028.Moon_Tiger.html,4689,Moon Tiger +3.90,1514,0778322858,good_reads:book,https://www.goodreads.com/author/show/45852.Elizabeth_Flock,2005,/genres/fiction|/genres/book-club|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/sociology|/genres/abuse|/genres/drama|/genres/psychology|/genres/adult-fiction|/genres/family|/genres/adult,dir44/80534.Me_Emma.html,14356,Me & Emma +4.04,1141,038549422X,good_reads:book,https://www.goodreads.com/author/show/54049.Erin_Gruwell,1999,/genres/non-fiction|/genres/education|/genres/autobiography|/genres/memoir|/genres/teaching|/genres/biography|/genres/academic|/genres/school|/genres/inspirational|/genres/book-club,dir44/47304.The_Freedom_Writers_Diary.html,8298,The Freedom Writers Diary +4.57,179,0375825649,good_reads:book,https://www.goodreads.com/author/show/8596.Tamora_Pierce,1997,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/magic|/genres/romance|/genres/adventure|/genres/young-adult|/genres/teen|/genres/childrens|/genres/young-adult|/genres/young-adult-fantasy|/genres/science-fiction-fantasy,dir44/492490.The_Song_of_the_Lioness_Quartet.html,8428,"The Song of the Lioness Quartet (Song of the Lioness, #1-4)" +4.13,108,1847382754,good_reads:book,https://www.goodreads.com/author/show/976887.Sophie_McKenzie,2008,/genres/young-adult|/genres/mystery|/genres/romance|/genres/science-fiction|/genres/action|/genres/adventure|/genres/thriller|/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/teen|/genres/fiction,dir44/2149388.Blood_Ties.html,2831,"Blood Ties (Blood Ties, #1)" +3.89,826,0307277747,good_reads:book,https://www.goodreads.com/author/show/6582.Antonia_Fraser,2001,/genres/non-fiction|/genres/history|/genres/biography|/genres/cultural|/genres/france|/genres/biography-memoir|/genres/european-history|/genres/french-revolution|/genres/history|/genres/european-history|/genres/literature|/genres/18th-century|/genres/adult|/genres/womens,dir44/17157.Marie_Antoinette.html,20697,Marie Antoinette +4.39,82,9788370541,good_reads:book,https://www.goodreads.com/author/show/38569.Andrzej_Sapkowski,1993,/genres/european-literature|/genres/polish-literature|/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/adventure|/genres/fantasy|/genres/dark-fantasy|/genres/fantasy|/genres/magic|/genres/novels|/genres/fantasy|/genres/high-fantasy|/genres/sci-fi-fantasy,dir44/1876770.Chrzest_ognia.html,6907,"Chrzest ognia (Saga o Wiedźminie, #5)" +3.75,316,0345316509,good_reads:book,https://www.goodreads.com/author/show/205.Robert_A_Heinlein,1984,/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/humor|/genres/religion|/genres/speculative-fiction|/genres/adventure|/genres/humor|/genres/comedy|/genres/novels,dir44/355.Job.html,11879,Job +3.85,374,0441102670,good_reads:book,https://www.goodreads.com/author/show/58.Frank_Herbert,1985,/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/classics|/genres/science-fiction|/genres/space-opera|/genres/adventure|/genres/speculative-fiction|/genres/novels|/genres/religion,dir44/105.Chapterhouse.html,26779,Chapterhouse (Dune Chronicles #6) +4.03,1953,,good_reads:book,https://www.goodreads.com/author/show/5410816.Tarryn_Fisher,2014,/genres/dark|/genres/new-adult|/genres/romance|/genres/adult|/genres/mystery|/genres/suspense|/genres/contemporary|/genres/thriller|/genres/romance|/genres/contemporary-romance|/genres/sociology|/genres/abuse,dir44/18246727-mud-vein.html,7886,Mud Vein +4.28,711,0803281781,good_reads:book,https://www.goodreads.com/author/show/9740.Ralph_Moody,1950,/genres/classics|/genres/biography|/genres/non-fiction|/genres/history|/genres/childrens|/genres/autobiography|/genres/memoir|/genres/book-club|/genres/western|/genres/adventure|/genres/biography|/genres/autobiography,dir44/233711.Little_Britches.html,5618,"Little Britches (Little Britches, #1)" +4.36,272,142151883X,good_reads:book,https://www.goodreads.com/author/show/919024.NisiOisiN,2006,/genres/sequential-art|/genres/manga|/genres/mystery|/genres/fiction|/genres/asian-literature|/genres/japanese-literature|/genres/thriller|/genres/mystery|/genres/crime|/genres/novels|/genres/light-novel|/genres/novels|/genres/young-adult|/genres/fantasy,dir44/2021816.Death_Note.html,4839,Death Note +3.95,211,0446676640,good_reads:book,https://www.goodreads.com/author/show/32279.Joan_D_Vinge,1980,/genres/science-fiction|/genres/fantasy|/genres/fiction|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/space-opera|/genres/fantasy|/genres/fairy-tales|/genres/speculative-fiction|/genres/romance|/genres/book-club|/genres/adult,dir44/139986.The_Snow_Queen.html,7163,"The Snow Queen (The Snow Queen Cycle, #1)" +3.65,108,,good_reads:book,https://www.goodreads.com/author/show/4846190.J_D_Stroube,2011,/genres/paranormal|/genres/witches|/genres/romance|/genres/young-adult|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/mystery,dir44/11342260-caged-in-darkness.html,574,"Caged in Darkness (Caged, #1)" +3.74,15,1616491213,good_reads:book,https://www.goodreads.com/author/show/5143595.Tom_Davis,2011,/genres/psychology|/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/mental-health|/genres/mental-illness|/genres/self-help|/genres/health|/genres/mental-health|/genres/health|/genres/biography,dir44/12397415-a-legacy-of-madness.html,93,A Legacy of Madness +4.29,2,,good_reads:book,https://www.goodreads.com/author/show/5077755.Jonathan_Culver,2011,,dir44/12260642-i-am-an-island.html,14,I am an Island +4.06,6,,good_reads:book,https://www.goodreads.com/author/show/5831594.Bernadette_Azizi,2012,,dir44/13638968-undying.html,32,"Undying (Undying, #1)" +4.20,69,0620525991,good_reads:book,https://www.goodreads.com/author/show/6541020.Leandi_Cameron,2012,/genres/paranormal|/genres/vampires|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/paranormal|/genres/shapeshifters|/genres/fiction|/genres/book-club,dir44/16048485-a-tale-of-the-other-kind.html,111,"A Tale of the Other Kind (Therian, #1)" +4.03,14,,good_reads:book,https://www.goodreads.com/author/show/6917576.Nicole_Banks,2013,/genres/romance|/genres/new-adult,dir44/17317590-shattered.html,113,"Shattered (Shattered Hearts, #1)" +4.36,5,1494884631,good_reads:book,https://www.goodreads.com/author/show/7754245.Ashley_Waelti,2014,,dir44/20497446-it-s-not-what-you-think.html,14,"It's Not What You Think (It's Not What You Think, #1)" +3.76,2934,0060878061,good_reads:book,https://www.goodreads.com/author/show/7128.Jodi_Picoult,1999,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/drama|/genres/adult-fiction|/genres/book-club|/genres/adult,dir44/10913.Keeping_Faith.html,54703,Keeping Faith +4.29,9,,good_reads:book,https://www.goodreads.com/author/show/7801640.Donnie_Smith,2013,,dir44/20578084-we-got-zombies-on-the-lawn-again-ma.html,14,"We Got Zombies On The Lawn Again, Ma (Ax Handel's Special Zombie Notebooks)" +3.80,990,0425234339,good_reads:book,https://www.goodreads.com/author/show/9550.Laurell_K_Hamilton,2010,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/horror|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/supernatural,dir44/7121598-bullet.html,21365,"Bullet (Anita Blake, Vampire Hunter #19)" +3.85,610,0060776242,good_reads:book,https://www.goodreads.com/author/show/153734.Ellen_Schreiber,2005,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen,dir44/263172.Kissing_Coffins.html,18057,"Kissing Coffins (Vampire Kisses, #2)" +3.64,128,0525952373,good_reads:book,https://www.goodreads.com/author/show/4711014.Trevor_Shane,2011,/genres/thriller|/genres/fiction|/genres/science-fiction|/genres/dystopia|/genres/mystery|/genres/young-adult|/genres/suspense|/genres/adult-fiction|/genres/science-fiction|/genres/speculative-fiction|/genres/novels,dir44/10768183-children-of-paranoia.html,491,"Children of Paranoia (Children of Paranoia, #1)" +4.18,1403,1462003923,good_reads:book,https://www.goodreads.com/author/show/4943235.Julie_Hockley,2011,/genres/romance|/genres/new-adult|/genres/contemporary|/genres/young-adult|/genres/romance|/genres/contemporary-romance|/genres/dark|/genres/suspense|/genres/academic|/genres/college|/genres/mystery|/genres/mystery|/genres/crime,dir44/12389310-crow-s-row.html,13283,"Crow's Row (Crow's Row, #1)" +3.92,1333,0345494857,good_reads:book,https://www.goodreads.com/author/show/6583.Alison_Weir,2006,/genres/historical-fiction|/genres/fiction|/genres/european-literature|/genres/british-literature,dir44/111218.Innocent_Traitor.html,19643,Innocent Traitor +3.99,67,0543954617,good_reads:book,https://www.goodreads.com/author/show/57639.Thomas_Paine,1791,/genres/philosophy|/genres/politics|/genres/non-fiction|/genres/history|/genres/classics|/genres/politics|/genres/political-science|/genres/history|/genres/american-history,dir44/177523.Rights_of_Man.html,5332,Rights of Man +4.33,28,0989312860,good_reads:book,https://www.goodreads.com/author/show/7276650.Sorin_Suciu,2013,/genres/fantasy|/genres/fiction|/genres/science-fiction,dir44/18517625-the-scriptlings.html,49,The Scriptlings +4.24,399,0340881542,good_reads:book,https://www.goodreads.com/author/show/268199.Robert_Muchamore,2004,/genres/young-adult|/genres/action|/genres/spy-thriller|/genres/espionage|/genres/adventure|/genres/fiction|/genres/young-adult|/genres/teen|/genres/mystery|/genres/mystery|/genres/crime|/genres/contemporary|/genres/thriller,dir44/1291211.Class_A.html,9794,"Class A (Cherub, #2)" +4.67,164,0836217357,good_reads:book,https://www.goodreads.com/author/show/13778.Bill_Watterson,1993,/genres/sequential-art|/genres/comics|/genres/humor|/genres/fiction|/genres/sequential-art|/genres/graphic-novels|/genres/comics|/genres/comic-book|/genres/humor|/genres/comedy|/genres/graphic-novels-comics|/genres/sequential-art|/genres/comic-strips|/genres/sequential-art|/genres/cartoon|/genres/humor|/genres/funny,dir44/24818.Calvin_and_Hobbes.html,15009,Calvin and Hobbes +4.33,224,0843960590,good_reads:book,https://www.goodreads.com/author/show/1310735.C_L_Wilson,2008,/genres/fantasy|/genres/romance|/genres/romance|/genres/fantasy-romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/fairies|/genres/fae|/genres/adult|/genres/fiction|/genres/paranormal|/genres/shapeshifters,dir44/3307144-king-of-sword-and-sky.html,4246,"King of Sword and Sky (Tairen Soul, #3)" +3.84,788,0553580221,good_reads:book,https://www.goodreads.com/author/show/9355.Dean_Koontz,1999,/genres/horror|/genres/fiction|/genres/thriller|/genres/mystery|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/psychology|/genres/science-fiction|/genres/mystery|/genres/detective|/genres/womens,dir45/182425.False_Memory.html,31378,False Memory +3.75,33,9881900298,good_reads:book,https://www.goodreads.com/author/show/4528549.Chris_Thrall,2011,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/mystery|/genres/crime|/genres/psychology|/genres/travel|/genres/mental-health|/genres/mental-illness|/genres/biography|/genres/sequential-art|/genres/graphic-novels|/genres/crime|/genres/true-crime|/genres/cultural|/genres/china,dir45/9992246-eating-smoke.html,242,Eating Smoke +3.99,516,0140449272,good_reads:book,https://www.goodreads.com/author/show/879.Plato,-370,/genres/non-fiction|/genres/classics|/genres/philosophy|/genres/academic|/genres/school|/genres/literature|/genres/ancient|/genres/literature|/genres/academic|/genres/college,dir45/81779.The_Symposium.html,18457,The Symposium +4.31,142,,good_reads:book,https://www.goodreads.com/author/show/7074909.Nikolas_Lee,2013,/genres/fantasy|/genres/fantasy|/genres/mythology|/genres/young-adult|/genres/childrens|/genres/middle-grade|/genres/mythology|/genres/gods|/genres/childrens,dir45/20438403-the-iron-jawed-boy.html,255,"The Iron-Jawed Boy (Guardians of Illyria, #1)" +4.63,30,1494318326,good_reads:book,https://www.goodreads.com/author/show/7074909.Nikolas_Lee,2014,/genres/fantasy|/genres/glbt|/genres/young-adult,dir45/20886702-the-iron-jawed-boy-and-the-hand-of-the-moon.html,86,"The Iron-Jawed Boy and the Hand of the Moon (Guardians of Illyria , #2)" +4.88,1,,good_reads:book,https://www.goodreads.com/author/show/8433703.Ahmad_Baari,2014,,dir45/22884686-my-two-cents.html,8,My Two Cents +4.10,416,0618150730,good_reads:book,https://www.goodreads.com/author/show/113844.Elizabeth_Marie_Pope,1974,/genres/fantasy|/genres/young-adult|/genres/historical-fiction|/genres/romance|/genres/fiction|/genres/fantasy|/genres/fairy-tales|/genres/adventure|/genres/fantasy|/genres/magic|/genres/childrens|/genres/middle-grade|/genres/paranormal|/genres/fairies,dir45/195381.The_Perilous_Gard.html,4895,The Perilous Gard +3.56,600,0760783209,good_reads:book,https://www.goodreads.com/author/show/27206.Nancy_Holder,2008,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/magic|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/teen,dir45/303200.Wicked.html,7529,"Wicked (Wicked, #1-2)" +3.94,377,0446353957,good_reads:book,https://www.goodreads.com/author/show/6218.Sandra_Brown,1990,/genres/romance|/genres/romantic-suspense|/genres/suspense|/genres/mystery|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/thriller|/genres/adult|/genres/thriller|/genres/mystery-thriller|/genres/romance|/genres/novels,dir45/685788.Mirror_Image.html,6829,Mirror Image +4.18,355,0756401933,good_reads:book,https://www.goodreads.com/author/show/85545.Kristen_Britain,2003,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/magic|/genres/adventure|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/young-adult|/genres/romance|/genres/adult,dir45/147844.First_Rider_s_Call.html,12267,"First Rider's Call (Green Rider, #2)" +4.37,11,,good_reads:book,https://www.goodreads.com/author/show/7380017.Jimmy_Perrin,2013,,dir45/18769784-hard-up-ardon-1.html,27,"Hard Up, Ardon #1" +4.26,71,0373828241,good_reads:book,https://www.goodreads.com/author/show/2983922.Carla_Capshaw,2009,/genres/romance|/genres/christian-fiction|/genres/historical-fiction|/genres/category-romance|/genres/love-inspired|/genres/christian|/genres/romance|/genres/historical-romance|/genres/romance|/genres/christian-romance|/genres/love-inspired|/genres/love-inspired-historical|/genres/inspirational|/genres/christian-fiction|/genres/christian-historical-fiction,dir45/6609581-the-gladiator.html,442,The Gladiator +4.56,11,1419690353,good_reads:book,https://www.goodreads.com/author/show/1402293.Janie_Pendleton,2008,/genres/war|/genres/military,dir45/3314550-the-gates-to-love-and-war.html,25,The Gates to Love and War +4.23,186,0811200175,good_reads:book,https://www.goodreads.com/author/show/7869.Louis_Ferdinand_C_line,1934,/genres/fiction|/genres/cultural|/genres/france|/genres/literature|/genres/classics|/genres/novels|/genres/european-literature|/genres/french-literature|/genres/literature|/genres/20th-century|/genres/philosophy|/genres/roman|/genres/literary-fiction,dir45/106096.Death_on_the_Installment_Plan.html,3641,Death on the Installment Plan +3.86,196,0760789401,good_reads:book,https://www.goodreads.com/author/show/27206.Nancy_Holder,2003,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/romance|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance,dir45/394749.Wicked_2.html,7006,"Wicked 2 (Wicked, #3-4)" +4.06,1511,0425193799,good_reads:book,https://www.goodreads.com/author/show/12942.Judy_Blume,1972,/genres/childrens|/genres/fiction|/genres/young-adult|/genres/realistic-fiction|/genres/humor|/genres/childrens|/genres/juvenile,dir45/37741.Tales_of_a_Fourth_Grade_Nothing.html,77218,"Tales of a Fourth Grade Nothing (Fudge, #1)" +3.84,779,1860499260,good_reads:book,https://www.goodreads.com/author/show/60609.Eve_Ensler,1996,/genres/feminism|/genres/plays|/genres/non-fiction|/genres/drama|/genres/womens|/genres/gender|/genres/plays|/genres/theatre|/genres/gender|/genres/gender-studies|/genres/sexuality,dir45/104734.The_Vagina_Monologues.html,13532,The Vagina Monologues +4.15,26,0615305733,good_reads:book,https://www.goodreads.com/author/show/3275595.T_Rafael_Cimino,2009,/genres/fiction|/genres/thriller|/genres/mystery-thriller,dir45/7443012-mid-ocean.html,150,Mid Ocean +3.92,211,0983392903,good_reads:book,https://www.goodreads.com/author/show/4784370.Deb_Apodaca,2011,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/young-adult-paranormal|/genres/mystery,dir45/11082489-captivated.html,1969,"Captivated (Affliction, #1)" +3.63,898,0440213460,good_reads:book,https://www.goodreads.com/author/show/5833.Annette_Curtis_Klause,1990,/genres/young-adult|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/horror,dir45/139418.The_Silver_Kiss.html,12545,The Silver Kiss +4.01,218,184149593X,good_reads:book,https://www.goodreads.com/author/show/15890.Trudi_Canavan,2011,/genres/fantasy|/genres/fantasy|/genres/magic|/genres/fiction|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/young-adult|/genres/adventure|/genres/romance|/genres/science-fiction-fantasy|/genres/adult,dir45/8411749-the-rogue.html,6663,"The Rogue (Traitor Spy Trilogy, #2)" +4.10,699,0609807919,good_reads:book,https://www.goodreads.com/author/show/79922.Megan_McCafferty,2003,/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/romance|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/realistic-fiction,dir45/199687.Second_Helpings.html,18975,"Second Helpings (Jessica Darling, #2)" +4.04,152,0374518793,good_reads:book,https://www.goodreads.com/author/show/6517.Elias_Canetti,1386,/genres/fiction|/genres/classics|/genres/european-literature|/genres/german-literature|/genres/literature|/genres/novels|/genres/nobel-prize|/genres/literature|/genres/20th-century|/genres/european-literature|/genres/bulgarian-literature|/genres/writing|/genres/books-about-books|/genres/cultural|/genres/bulgaria,dir45/205189.Auto_da_F_.html,1801,Auto-da-Fé +3.47,1850,0316910333,good_reads:book,https://www.goodreads.com/author/show/12665.Cecily_von_Ziegesar,2002,/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/romance|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/drama|/genres/realistic-fiction|/genres/young-adult|/genres/high-school|/genres/new-york,dir45/22188.Gossip_Girl.html,37356,"Gossip Girl (Gossip Girl, #1)" +3.95,130,,good_reads:book,https://www.goodreads.com/author/show/4507090.Jayde_Scott,2011,/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/angels|/genres/paranormal|/genres/vampires|/genres/romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/young-adult|/genres/young-adult-paranormal,dir45/11952268-doomed.html,1486,"Doomed (Ancient Legends, #2)" +4.34,32,3570304892,good_reads:book,https://www.goodreads.com/author/show/1284067.Lynn_Raven,2010,/genres/fantasy|/genres/romance|/genres/young-adult|/genres/european-literature|/genres/german-literature|/genres/fantasy|/genres/high-fantasy|/genres/adult|/genres/fiction,dir45/7683299-der-kuss-des-kjer.html,587,Der Kuss des Kjer +3.94,60,,good_reads:book,https://www.goodreads.com/author/show/5764521.Emily_Guido,2012,/genres/romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/angels|/genres/fiction|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/suspense,dir45/13509957-charmeine.html,124,"Charmeine (The Light-Bearer, #1)" +3.97,390,0765357054,good_reads:book,https://www.goodreads.com/author/show/20561.F_Paul_Wilson,1981,/genres/horror|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/thriller|/genres/mystery|/genres/historical-fiction|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy,dir45/62571.The_Keep.html,10404,"The Keep (Adversary Cycle, #1)" +3.93,560,0684862212,good_reads:book,https://www.goodreads.com/author/show/1455.Ernest_Hemingway,1961,/genres/fiction|/genres/classics|/genres/short-stories|/genres/literature|/genres/cultural|/genres/africa|/genres/literature|/genres/american|/genres/literature|/genres/20th-century|/genres/classics|/genres/classic-literature|/genres/literary-fiction|/genres/academic|/genres/school,dir45/4645.The_Snows_of_Kilimanjaro_and_Other_Stories.html,17071,The Snows of Kilimanjaro and Other Stories +3.45,276,0385316577,good_reads:book,https://www.goodreads.com/author/show/21930.Susanna_Tamaro,1994,/genres/fiction|/genres/novels|/genres/european-literature|/genres/italian-literature|/genres/cultural|/genres/italy|/genres/literature,dir45/38913.Follow_Your_Heart.html,3939,Follow Your Heart +4.09,599,0385264666,good_reads:book,https://www.goodreads.com/author/show/5835922.Naguib_Mahfouz,1956,/genres/fiction|/genres/cultural|/genres/egypt|/genres/historical-fiction|/genres/literature|/genres/novels|/genres/cultural|/genres/africa|/genres/nobel-prize|/genres/classics|/genres/book-club|/genres/literary-fiction,dir45/762134.Palace_Walk.html,6937,Palace Walk +3.82,549,1582346658,good_reads:book,https://www.goodreads.com/author/show/83085.Celia_Rees,2003,/genres/historical-fiction|/genres/young-adult|/genres/adventure|/genres/pirates|/genres/adventure|/genres/fiction|/genres/romance|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/young-adult|/genres/young-adult-historical-fiction|/genres/action,dir45/143727.Pirates_.html,9457,Pirates! +4.15,519,1607060922,good_reads:book,https://www.goodreads.com/author/show/18119.Joe_Kelly,2009,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/graphic-novels-comics|/genres/comics|/genres/comic-book|/genres/sequential-art|/genres/comix|/genres/young-adult|/genres/coming-of-age|/genres/comics-manga,dir45/6435893-i-kill-giants.html,6450,I Kill Giants +4.41,39,0978986423,good_reads:book,https://www.goodreads.com/author/show/5813307.Belzebuub,2010,/genres/philosophy|/genres/spirituality|/genres/non-fiction|/genres/psychology|/genres/religion,dir45/7387900-gazing-into-the-eternal.html,140,Gazing Into the Eternal +4.27,65,1846245915,good_reads:book,https://www.goodreads.com/author/show/4814169.Gabriella_Lepore,2011,/genres/fantasy|/genres/young-adult|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/romance,dir45/11213139-the-witches-of-the-glass-castle.html,147,The Witches of the Glass Castle +4.34,680,,good_reads:book,https://www.goodreads.com/author/show/4951964.Shelly_Crane,2011,/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/new-adult|/genres/young-adult|/genres/young-adult-paranormal|/genres/contemporary,dir45/12706435-defiance.html,16441,"Defiance (Significance, #3)" +3.99,204,0988491001,good_reads:book,https://www.goodreads.com/author/show/4340243.Ripley_Patton,2012,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/science-fiction|/genres/fantasy|/genres/urban-fantasy|/genres/action|/genres/fiction|/genres/thriller|/genres/romance|/genres/paranormal-romance,dir45/16137612-ghost-hand.html,505,"Ghost Hand (The PSS Chronicles, #1)" +4.52,31,,good_reads:book,https://www.goodreads.com/author/show/7701589.Angie_Martin,2013,/genres/romance|/genres/suspense,dir45/20310066-false-security.html,69,False Security +4.03,250,0811215059,good_reads:book,https://www.goodreads.com/author/show/71956.Javier_Mar_as,1991,/genres/fiction|/genres/european-literature|/genres/spanish-literature|/genres/cultural|/genres/spain|/genres/novels|/genres/literature|/genres/literature|/genres/20th-century|/genres/contemporary|/genres/book-club|/genres/literary-fiction|/genres/romance,dir45/529075.A_Heart_So_White.html,2811,A Heart So White +3.84,2241,0062280678,good_reads:book,https://www.goodreads.com/author/show/7305254.Danielle_Paige,2014,/genres/fantasy|/genres/young-adult|/genres/retellings|/genres/fantasy|/genres/magic|/genres/fiction|/genres/fantasy|/genres/fairy-tales|/genres/paranormal|/genres/witches|/genres/adventure|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/paranormal,dir45/18053060-dorothy-must-die.html,10565,"Dorothy Must Die (Dorothy Must Die, #1)" +3.98,3987,1439192561,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,2010,/genres/horror|/genres/fiction|/genres/short-stories|/genres/thriller|/genres/suspense|/genres/mystery|/genres/fantasy|/genres/literature|/genres/american|/genres/anthologies|/genres/mystery|/genres/crime,dir45/7912007-full-dark-no-stars.html,44091,"Full Dark, No Stars" +3.70,607,0099461889,good_reads:book,https://www.goodreads.com/author/show/11337.Martin_Amis,1984,/genres/contemporary|/genres/fiction|/genres/novels|/genres/european-literature|/genres/british-literature|/genres/classics|/genres/literature|/genres/thriller|/genres/literature|/genres/20th-century|/genres/literary-fiction|/genres/adult-fiction,dir45/18825.Money.html,11222,Money +4.22,109,0829423346,good_reads:book,https://www.goodreads.com/author/show/807271.A_J_Cronin,1941,/genres/fiction|/genres/classics|/genres/historical-fiction|/genres/cultural|/genres/china|/genres/religion|/genres/christianity|/genres/catholic|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/spirituality|/genres/novels,dir45/184803.The_Keys_of_the_Kingdom.html,1015,The Keys of the Kingdom +4.17,217,1599900475,good_reads:book,https://www.goodreads.com/author/show/109354.Kirsten_Miller,2007,/genres/young-adult|/genres/mystery|/genres/adventure|/genres/fiction|/genres/fantasy|/genres/young-adult|/genres/teen|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/realistic-fiction|/genres/contemporary,dir45/590125.The_Empress_s_Tomb.html,2279,"The Empress's Tomb (Kiki Strike, #2)" +4.12,1431,0747571775,good_reads:book,https://www.goodreads.com/author/show/6569.Louis_Sachar,1978,/genres/childrens|/genres/fiction|/genres/humor|/genres/young-adult|/genres/fantasy|/genres/short-stories|/genres/childrens|/genres/middle-grade|/genres/humor|/genres/funny|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/chapter-books,dir45/15779.Sideways_Stories_from_Wayside_School.html,58071,Sideways Stories from Wayside School (Wayside School #1) +4.40,43,1584741171,good_reads:book,https://www.goodreads.com/author/show/152080.E_D_E_N_Southworth,1850,/genres/fiction|/genres/classics|/genres/historical-fiction|/genres/christian-fiction|/genres/christian,dir45/343545.Ishmael.html,333,Ishmael +3.21,240,1841196843,good_reads:book,https://www.goodreads.com/author/show/3281340.Weihui_Zhou,1999,/genres/cultural|/genres/china|/genres/fiction|/genres/romance|/genres/asian-literature|/genres/chinese-literature|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/novels|/genres/literature|/genres/asian-literature|/genres/cultural|/genres/asia,dir45/261479.Shanghai_Baby.html,2904,Shanghai Baby +4.37,277,,good_reads:book,https://www.goodreads.com/author/show/4728994.Rachel_Higginson,2011,/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/paranormal|/genres/witches|/genres/young-adult|/genres/young-adult-paranormal|/genres/fantasy|/genres/supernatural|/genres/fiction,dir45/12334377-hopeless-magic.html,4131,"Hopeless Magic (Star-Crossed, #2)" +3.82,4867,1416563687,good_reads:book,https://www.goodreads.com/author/show/9987.Philippa_Gregory,2008,/genres/historical-fiction|/genres/fiction|/genres/romance|/genres/european-literature|/genres/british-literature|/genres/adult,dir45/5971165-the-white-queen.html,79593,"The White Queen (The Cousins' War, #1)" +3.93,37,9510024260,good_reads:book,https://www.goodreads.com/author/show/238401.V_in_Linna,1954,/genres/european-literature|/genres/finnish-literature|/genres/classics|/genres/fiction|/genres/historical-fiction|/genres/war|/genres/history|/genres/world-war-ii|/genres/academic|/genres/read-for-school|/genres/novels|/genres/european-literature|/genres/scandinavian-literature|/genres/literature,dir45/422728.The_Unknown_Soldier.html,1628,The Unknown Soldier +4.37,28,,good_reads:book,https://www.goodreads.com/author/show/6522996.Kevin_J_Howard,2012,/genres/horror|/genres/science-fiction,dir45/16194369-the-beginning.html,43,"The Beginning (Precipice, #1)" +3.67,3664,1620401398,good_reads:book,https://www.goodreads.com/author/show/5830526.Samantha_Shannon,2013,/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/fantasy|/genres/urban-fantasy|/genres/adult,dir45/17199504-the-bone-season.html,21765,"The Bone Season (The Bone Season, #1)" +4.63,2281,1619630656,good_reads:book,https://www.goodreads.com/author/show/3433047.Sarah_J_Maas,2014,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/romance|/genres/fantasy|/genres/high-fantasy,dir45/20613470-heir-of-fire.html,10076,"Heir of Fire (Throne of Glass, #3)" +4.02,1230,015205300X,good_reads:book,https://www.goodreads.com/author/show/36122.Patricia_C_Wrede,1988,/genres/fantasy|/genres/young-adult|/genres/historical-fiction|/genres/fiction|/genres/romance|/genres/fantasy|/genres/magic|/genres/mystery|/genres/regency|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/young-adult-fantasy,dir45/64207.Sorcery_Cecelia.html,10225,"Sorcery & Cecelia (Cecelia and Kate, #1)" +3.96,572,0802141900,good_reads:book,https://www.goodreads.com/author/show/4174.Sherman_Alexie,1995,/genres/fiction|/genres/literature|/genres/book-club|/genres/novels|/genres/magical-realism|/genres/literary-fiction|/genres/music|/genres/adult-fiction|/genres/contemporary|/genres/classics,dir45/6159.Reservation_Blues.html,7945,Reservation Blues +3.95,810,0060786469,good_reads:book,https://www.goodreads.com/author/show/9388.Louise_Erdrich,1984,/genres/fiction|/genres/historical-fiction|/genres/novels|/genres/short-stories|/genres/book-club|/genres/literature|/genres/literary-fiction|/genres/adult-fiction|/genres/contemporary|/genres/classics,dir45/91440.Love_Medicine.html,12043,Love Medicine +4.21,553,0446676977,good_reads:book,https://www.goodreads.com/author/show/29535.Octavia_E_Butler,1980,/genres/science-fiction|/genres/fantasy|/genres/fiction|/genres/speculative-fiction|/genres/science-fiction-fantasy|/genres/cultural|/genres/african-american|/genres/adult|/genres/feminism|/genres/fantasy|/genres/paranormal|/genres/cultural|/genres/africa,dir45/52318.Wild_Seed.html,6469,"Wild Seed (Patternmaster, #1)" +4.30,688,0446691097,good_reads:book,https://www.goodreads.com/author/show/8352.Joyce_Meyer,1995,/genres/non-fiction|/genres/self-help|/genres/religion|/genres/christianity|/genres/inspirational|/genres/religion|/genres/religion|/genres/faith|/genres/spirituality|/genres/psychology|/genres/christian,dir45/13360.Battlefield_of_the_Mind.html,27938,Battlefield of the Mind +4.14,771,0525951784,good_reads:book,https://www.goodreads.com/author/show/7581.Kelley_Armstrong,2010,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/romance|/genres/mystery,dir45/6725785-waking-the-witch.html,11573,"Waking the Witch (Women of the Otherworld, #11)" +3.88,1008,1423101952,good_reads:book,https://www.goodreads.com/author/show/37048.Perry_Moore,2007,/genres/young-adult|/genres/fantasy|/genres/glbt|/genres/fiction|/genres/comics|/genres/superheroes|/genres/romance|/genres/m-m-romance|/genres/glbt|/genres/queer|/genres/glbt|/genres/gay|/genres/science-fiction|/genres/romance,dir45/1251032.Hero.html,9619,Hero +3.89,121,098912181X,good_reads:book,https://www.goodreads.com/author/show/6889132.B_Kristin_McMichael,2013,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/supernatural|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/paranormal-romance|/genres/young-adult|/genres/young-adult-paranormal|/genres/fantasy|/genres/urban-fantasy,dir45/17559041-the-legend-of-the-blue-eyes.html,646,"The Legend of the Blue Eyes (Blue Eyes, #1)" +3.86,232,0743484274,good_reads:book,https://www.goodreads.com/author/show/99044.Mary_Higgins_Clark,1980,/genres/mystery|/genres/fiction|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/thriller|/genres/mystery|/genres/crime|/genres/adult|/genres/adult-fiction|/genres/romance|/genres/mystery|/genres/murder-mystery,dir45/512475.The_Cradle_Will_Fall.html,12531,The Cradle Will Fall +4.11,115,0345421434,good_reads:book,https://www.goodreads.com/author/show/1567394.Matthew_Woodring_Stover,2001,/genres/fantasy|/genres/science-fiction|/genres/fantasy|/genres/dark-fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/epic|/genres/fantasy|/genres/urban-fantasy|/genres/speculative-fiction|/genres/sequential-art|/genres/graphic-novels,dir45/304123.Blade_of_Tyshalle.html,1833,"Blade of Tyshalle (The Acts of Caine, #2)" +4.46,112,,good_reads:book,https://www.goodreads.com/author/show/445303.Maria_V_Snyder,2008,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/romance|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/science-fiction-fantasy|/genres/young-adult|/genres/young-adult-fantasy|/genres/adventure|/genres/young-adult|/genres/young-adult-romance,dir45/6139020-the-study-series-bundle.html,1680,"The Study Series Bundle (Study, #1-3)" +3.82,354,1933963840,good_reads:book,https://www.goodreads.com/author/show/758992.Jennifer_Laurens,2009,/genres/paranormal|/genres/angels|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/teen,dir45/6171732-heavenly.html,2290,"Heavenly (Heavenly, #1)" +3.96,327,0439755700,good_reads:book,https://www.goodreads.com/author/show/81096.Chris_Wooding,2003,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/paranormal|/genres/fairies|/genres/adventure|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/teen|/genres/horror|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/young-adult-fantasy,dir45/1060562.Poison.html,3938,Poison +4.17,824,0553564943,good_reads:book,https://www.goodreads.com/author/show/8588.Raymond_E_Feist,1982,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/adventure|/genres/science-fiction|/genres/epic|/genres/adult|/genres/fiction,dir45/13812.Magician.html,41277,"Magician (The Riftwar Saga, #1)" +4.15,227,0060011572,good_reads:book,https://www.goodreads.com/author/show/12397.Peter_Singer,1975,/genres/philosophy|/genres/non-fiction|/genres/animals|/genres/food-and-drink|/genres/vegan|/genres/politics|/genres/food-and-drink|/genres/food|/genres/science|/genres/environment|/genres/social-issues|/genres/activism|/genres/environment|/genres/nature,dir45/29380.Animal_Liberation.html,3157,Animal Liberation +4.22,284,0718015592,good_reads:book,https://www.goodreads.com/author/show/5158478.Anonymous,1982,/genres/religion|/genres/christian|/genres/non-fiction|/genres/classics|/genres/religion|/genres/christianity|/genres/reference|/genres/spirituality|/genres/philosophy|/genres/history|/genres/poetry,dir45/2284803.Holy_Bible.html,3915,Holy Bible +3.84,200,,good_reads:book,https://www.goodreads.com/author/show/5299577.Kelli_McCracken,2011,/genres/romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/new-adult|/genres/young-adult|/genres/contemporary|/genres/fantasy|/genres/romance|/genres/contemporary-romance|/genres/adult-fiction|/genres/erotica|/genres/fiction,dir45/13119818-what-the-heart-wants.html,1917,"What the Heart Wants (Soulmate, #1)" +4.71,3,1484889681,good_reads:book,https://www.goodreads.com/author/show/1107101.Joseph_Sweet,2013,/genres/horror|/genres/zombies,dir45/17906995-requiem-for-humanity.html,17,"Requiem for Humanity (Last Days, #1)" +4.44,337,0292760280,good_reads:book,https://www.goodreads.com/author/show/4026.Pablo_Neruda,1959,/genres/poetry|/genres/classics|/genres/romance|/genres/cultural|/genres/latin-american|/genres/european-literature|/genres/spanish-literature|/genres/literature|/genres/non-fiction|/genres/literature|/genres/latin-american-literature|/genres/adult|/genres/love,dir45/11339.100_Love_Sonnets.html,8782,100 Love Sonnets +4.79,5,,good_reads:book,https://www.goodreads.com/author/show/6585024.Ashley_Chappell,2013,,dir45/18081150-tilt.html,14,Tilt (Dreams of Chaos #2) +5.00,0,,good_reads:book,https://www.goodreads.com/author/show/6896621.Ronda_Paige,2012,,dir45/17259227-patience-s-love.html,7,Patience's Love +4.21,1728,,good_reads:book,https://www.goodreads.com/author/show/7215619.Aurora_Rose_Reynolds,2013,/genres/romance|/genres/new-adult|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/adult|/genres/adult-fiction|/genres/erotica|/genres/sociology|/genres/abuse,dir45/18341046-until-november.html,19236,"Until November (Until, #1)" +4.11,281,0865163480,good_reads:book,https://www.goodreads.com/author/show/879.Plato,-390,/genres/philosophy|/genres/classics|/genres/non-fiction|/genres/history|/genres/academic|/genres/school|/genres/literature|/genres/ancient|/genres/politics|/genres/literature|/genres/cultural|/genres/greece|/genres/academic|/genres/college,dir45/73945.Apology.html,11478,Apology +4.22,347,0060518650,good_reads:book,https://www.goodreads.com/author/show/1244.Mark_Twain,1938,/genres/fiction|/genres/humor|/genres/literature|/genres/short-stories|/genres/writing|/genres/essays|/genres/philosophy|/genres/classics|/genres/religion|/genres/literature|/genres/american,dir45/37813.Letters_from_the_Earth.html,5340,Letters from the Earth +4.21,763,1935192817,good_reads:book,https://www.goodreads.com/author/show/2892465.Jane_Seville,2009,/genres/romance|/genres/m-m-romance|/genres/romance|/genres/contemporary|/genres/mystery|/genres/suspense|/genres/glbt|/genres/gay|/genres/thriller|/genres/mystery|/genres/crime|/genres/glbt|/genres/romance|/genres/romantic-suspense,dir45/6382879-zero-at-the-bone.html,6299,"Zero at the Bone (Zero at the Bone, #1)" +4.16,662,0099543885,good_reads:book,https://www.goodreads.com/author/show/26372.Kathy_Reichs,2011,/genres/young-adult|/genres/mystery|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/adventure|/genres/fantasy|/genres/paranormal|/genres/mystery|/genres/crime,dir45/8709640-seizure.html,7532,"Seizure (Virals, #2)" +3.94,1191,0802797806,good_reads:book,https://www.goodreads.com/author/show/184987.Janette_Rallison,2009,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/fairy-tales|/genres/fantasy|/genres/magic|/genres/womens-fiction|/genres/chick-lit|/genres/science-fiction|/genres/time-travel|/genres/fiction|/genres/adventure|/genres/young-adult|/genres/teen,dir45/4346365-my-fair-godmother.html,8546,"My Fair Godmother (My Fair Godmother, #1)" +3.93,913,0062048546,good_reads:book,https://www.goodreads.com/author/show/1792350.Anna_Carey,2012,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/romance|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fantasy|/genres/science-fiction|/genres/fiction|/genres/young-adult|/genres/teen|/genres/adventure|/genres/science-fiction|/genres/apocalyptic,dir45/12924253-once.html,10008,"Once (Eve, #2)" +4.10,343,0765315009,good_reads:book,https://www.goodreads.com/author/show/10517.David_Weber,2007,/genres/science-fiction|/genres/fantasy|/genres/fiction|/genres/science-fiction|/genres/space-opera|/genres/science-fiction-fantasy|/genres/war|/genres/military|/genres/science-fiction|/genres/military-science-fiction|/genres/adventure|/genres/space|/genres/war,dir45/72199.Off_Armageddon_Reef.html,5307,"Off Armageddon Reef (Safehold, #1)" +4.61,69,1478703091,good_reads:book,https://www.goodreads.com/author/show/7221218.Jalpa_Williby,2013,/genres/romance|/genres/romantic-suspense,dir45/18329942-chaysing-dreams.html,107,Chaysing Dreams (Chaysing Trilogy #1) +3.83,921,0061626848,good_reads:book,https://www.goodreads.com/author/show/86778.Eloisa_James,2010,/genres/romance|/genres/historical-fiction|/genres/romance|/genres/historical-romance|/genres/fantasy|/genres/fairy-tales|/genres/regency|/genres/fiction|/genres/historical-romance|/genres/regency-romance|/genres/adult|/genres/fantasy|/genres/womens-fiction|/genres/chick-lit,dir45/6957682-a-kiss-at-midnight.html,8868,"A Kiss at Midnight (Fairy Tales, #1)" +4.13,1784,0142004030,good_reads:book,https://www.goodreads.com/author/show/4432.Jasper_Fforde,2002,/genres/mystery|/genres/fantasy|/genres/humor|/genres/science-fiction|/genres/writing|/genres/books-about-books|/genres/fiction|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/time-travel|/genres/science-fiction|/genres/alternate-history|/genres/european-literature|/genres/british-literature,dir45/27000.Lost_in_a_Good_Book.html,32309,"Lost in a Good Book (Thursday Next, #2)" +3.82,1300,9797591514,good_reads:book,https://www.goodreads.com/author/show/700880.Donny_Dhirgantoro,2005,/genres/novels|/genres/asian-literature|/genres/indonesian-literature|/genres/fiction|/genres/adventure|/genres/romance|/genres/travel|/genres/drama|/genres/young-adult|/genres/inspirational|/genres/love,dir45/1499340.5_cm.html,10079,5 cm +4.17,168,0886774012,good_reads:book,https://www.goodreads.com/author/show/8685.Mercedes_Lackey,1990,/genres/fantasy|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/glbt|/genres/romance|/genres/m-m-romance|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/young-adult|/genres/glbt|/genres/gay,dir45/28760.Magic_s_Promise.html,13143,Magic's Promise (Valdemar: Last Herald-Mage #2) +3.73,287,0764207806,good_reads:book,https://www.goodreads.com/author/show/3145809.Anne_Elisabeth_Stengl,2010,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/dragons|/genres/romance|/genres/christian|/genres/christian-fiction|/genres/fiction|/genres/fantasy|/genres/magic|/genres/adventure|/genres/fantasy|/genres/fairy-tales,dir45/7069751-heartless.html,1607,"Heartless (Tales of Goldstone Wood, #1)" +4.23,1055,0575095776,good_reads:book,https://www.goodreads.com/author/show/71688.Nalini_Singh,2011,/genres/paranormal|/genres/angels|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/adult|/genres/fantasy|/genres/supernatural|/genres/fiction,dir45/7307503-archangel-s-consort.html,18072,"Archangel's Consort (Guild Hunter, #3)" +4.17,303,1416503617,good_reads:book,https://www.goodreads.com/author/show/4428.Kresley_Cole,2007,/genres/romance|/genres/historical-romance|/genres/romance|/genres/historical-fiction|/genres/adult|/genres/fairy-tales|/genres/beauty-and-the-beast|/genres/cultural|/genres/scotland|/genres/fiction|/genres/romance|/genres/paranormal-romance|/genres/regency|/genres/fantasy|/genres/paranormal,dir45/420780.If_You_Deceive.html,7127,"If You Deceive (MacCarrick Brothers, #3)" +3.96,2255,,good_reads:book,https://www.goodreads.com/author/show/2958084.Kristen_Ashley,2012,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/contemporary-romance|/genres/erotica|/genres/bdsm|/genres/contemporary|/genres/adult|/genres/romance|/genres/erotic-romance|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/new-adult,dir45/13565914-knight.html,28693,"Knight (Unfinished Hero, #1)" +4.11,75,8467505591,good_reads:book,https://www.goodreads.com/author/show/228898.Laura_Gallego_Garc_a,2006,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/dragons|/genres/european-literature|/genres/spanish-literature|/genres/fantasy|/genres/magic|/genres/adventure|/genres/childrens|/genres/epic|/genres/paranormal|/genres/witches,dir45/1099263.Tr_ada.html,3099,"Tríada (Memorias de Idhún, #2)" +3.92,7435,0316175676,good_reads:book,https://www.goodreads.com/author/show/4823432.Eowyn_Ivey,2011,/genres/fiction|/genres/historical-fiction|/genres/fantasy|/genres/book-club|/genres/magical-realism|/genres/fantasy|/genres/fairy-tales|/genres/adult|/genres/adult-fiction,dir45/11250053-the-snow-child.html,48124,The Snow Child +3.60,819,2081208164,good_reads:book,https://www.goodreads.com/author/show/199626.Mathias_Malzieu,2007,/genres/romance|/genres/fantasy|/genres/young-adult|/genres/cultural|/genres/france|/genres/fiction|/genres/historical-fiction|/genres/magical-realism|/genres/science-fiction|/genres/steampunk|/genres/adult|/genres/love,dir45/2133827.La_M_canique_du_c_ur.html,6418,La Mécanique du cœur +3.67,1148,0307266761,good_reads:book,https://www.goodreads.com/author/show/1728.Orhan_Pamuk,2008,/genres/fiction|/genres/asian-literature|/genres/turkish-literature|/genres/novels|/genres/literature|/genres/romance|/genres/historical-fiction|/genres/book-club,dir45/6282753-the-museum-of-innocence.html,9376,The Museum of Innocence +4.22,506,0875791603,good_reads:book,https://www.goodreads.com/author/show/207452.Gerald_N_Lund,1983,/genres/science-fiction|/genres/fiction|/genres/lds|/genres/lds-fiction|/genres/book-club|/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/christianity|/genres/lds|/genres/fantasy|/genres/novels|/genres/adult-fiction,dir45/625605.The_Alliance.html,3234,The Alliance +3.86,744,0765342286,good_reads:book,https://www.goodreads.com/author/show/26906.Steven_Gould,1992,/genres/science-fiction|/genres/young-adult|/genres/fantasy|/genres/fiction|/genres/adventure|/genres/science-fiction-fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/thriller,dir45/47970.Jumper.html,7448,"Jumper (Jumper, #1)" +4.27,142,8466309896,good_reads:book,https://www.goodreads.com/author/show/25824.Julio_Cort_zar,1951,/genres/short-stories|/genres/fiction|/genres/european-literature|/genres/spanish-literature|/genres/fantasy|/genres/magical-realism|/genres/cultural|/genres/latin-american|/genres/literature|/genres/classics|/genres/literature|/genres/latin-american-literature|/genres/contemporary,dir45/191373.Bestiario.html,5323,Bestiario +3.61,2002,1857028155,good_reads:book,https://www.goodreads.com/author/show/7136914.Ann_Patchett,1997,/genres/fiction|/genres/book-club|/genres/literary-fiction|/genres/novels|/genres/contemporary|/genres/literature|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/adult-fiction|/genres/adult,dir45/16055.The_Magician_s_Assistant.html,17677,The Magician's Assistant +4.01,127,0451456890,good_reads:book,https://www.goodreads.com/author/show/16143.Kate_Forsyth,1997,/genres/fantasy|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/dragons|/genres/fiction|/genres/fantasy|/genres/high-fantasy|/genres/young-adult|/genres/science-fiction-fantasy|/genres/fantasy|/genres/paranormal|/genres/adventure,dir45/264069.The_Witches_of_Eileanan.html,3548,"The Witches of Eileanan (The Witches of Eileanan, #1)" +4.41,285,1585677256,good_reads:book,https://www.goodreads.com/author/show/34878.Walter_Moers,2003,/genres/fantasy|/genres/fiction|/genres/humor|/genres/european-literature|/genres/german-literature|/genres/adventure|/genres/science-fiction-fantasy|/genres/young-adult|/genres/novels|/genres/humor|/genres/funny|/genres/animals,dir46/62033.Rumo_His_Miraculous_Adventures.html,4371,"Rumo & His Miraculous Adventures (Zamonia, #3)" +3.74,425,0451231678,good_reads:book,https://www.goodreads.com/author/show/3409997.Elle_Jasper,2010,/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy|/genres/adult|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/fiction,dir46/7832325-afterlight.html,3000,"Afterlight (Dark Ink Chronicles, #1)" +3.86,819,0399156518,good_reads:book,https://www.goodreads.com/author/show/3253353.Neil_Pasricha,2010,/genres/non-fiction|/genres/humor|/genres/self-help|/genres/adult|/genres/humor|/genres/funny|/genres/inspirational|/genres/humor|/genres/comedy|/genres/reference|/genres/cultural|/genres/canada|/genres/culture|/genres/pop-culture,dir46/7381647-the-book-of-awesome.html,7057,The Book of Awesome +3.87,875,1937044459,good_reads:book,https://www.goodreads.com/author/show/4996736.Jus_Accardo,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/science-fiction|/genres/fantasy|/genres/urban-fantasy|/genres/science-fiction|/genres/dystopia|/genres/adventure,dir46/11882171-touch.html,10225,"Touch (Denazen, #1)" +4.11,21,,good_reads:book,https://www.goodreads.com/author/show/3301336.Michelle_Browne,2012,/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/short-stories|/genres/fiction,dir46/15982975-the-stolen.html,57,The Stolen +4.22,237,0345354907,good_reads:book,https://www.goodreads.com/author/show/9494.H_P_Lovecraft,1927,/genres/horror|/genres/fiction|/genres/fantasy|/genres/classics|/genres/horror|/genres/lovecraftian|/genres/mystery|/genres/science-fiction|/genres/lovecraftian|/genres/cthulhu-mythos|/genres/literature|/genres/literature|/genres/american,dir46/129327.The_Case_of_Charles_Dexter_Ward.html,7392,The Case of Charles Dexter Ward +4.20,1399,074347788X,good_reads:book,https://www.goodreads.com/author/show/5882.Stephen_E_Ambrose,1996,/genres/history|/genres/non-fiction|/genres/biography|/genres/history|/genres/american-history|/genres/adventure|/genres/travel|/genres/literature|/genres/american|/genres/biography-memoir|/genres/book-club|/genres/western,dir46/45546.Undaunted_Courage.html,24720,Undaunted Courage +4.02,525,0440235162,good_reads:book,https://www.goodreads.com/author/show/6098.Nicholas_Evans,2001,/genres/fiction|/genres/romance|/genres/drama|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/adult-fiction|/genres/romance|/genres/contemporary-romance|/genres/roman|/genres/book-club|/genres/adult,dir46/9282.The_Smoke_Jumper.html,18794,The Smoke Jumper +4.28,33,3596293251,good_reads:book,https://www.goodreads.com/author/show/4095.William_Saroyan,1951,/genres/fiction|/genres/classics|/genres/literature|/genres/american|/genres/short-stories|/genres/fantasy|/genres/childrens|/genres/mine,dir46/2479730.Tracy_s_Tiger.html,1123,Tracy's Tiger +3.97,6014,0060899220,good_reads:book,https://www.goodreads.com/author/show/1124.Anthony_Bourdain,2000,/genres/autobiography|/genres/memoir|/genres/non-fiction|/genres/food-and-drink|/genres/cooking|/genres/humor|/genres/biography|/genres/autobiography|/genres/food-and-drink|/genres/foodie|/genres/biography-memoir|/genres/book-club|/genres/food-and-drink|/genres/food,dir46/33313.Kitchen_Confidential.html,106972,Kitchen Confidential +3.84,804,1416918736,good_reads:book,https://www.goodreads.com/author/show/94091.Kate_Brian,2006,/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/mystery|/genres/contemporary|/genres/romance|/genres/young-adult|/genres/teen|/genres/school-stories|/genres/boarding-school|/genres/fiction|/genres/realistic-fiction|/genres/young-adult|/genres/high-school,dir46/381489.Private.html,13700,"Private (Private, #1)" +3.78,239,019280474X,good_reads:book,https://www.goodreads.com/author/show/228089.Honor_de_Balzac,1833,/genres/european-literature|/genres/french-literature|/genres/literature|/genres/literature|/genres/19th-century|/genres/classics|/genres/novels|/genres/roman,dir46/59142.Eug_nie_Grandet.html,8284,Eugénie Grandet +3.83,242,0375726632,good_reads:book,https://www.goodreads.com/author/show/12585.Allan_Gurganus,1984,/genres/fiction|/genres/historical-fiction|/genres/military-history|/genres/civil-war|/genres/war|/genres/american|/genres/southern|/genres/american-history|/genres/american-civil-war|/genres/literature|/genres/adult,dir46/95105.Oldest_Living_Confederate_Widow_Tells_All.html,3901,Oldest Living Confederate Widow Tells All +4.27,110,0545010098,good_reads:book,https://www.goodreads.com/author/show/10896.Eoin_Colfer,2003,/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/adventure|/genres/childrens|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/action|/genres/paranormal|/genres/fairies|/genres/fantasy|/genres/paranormal,dir46/2358870.Artemis_Fowl_Boxed_Set_Bks_1_5.html,7389,"Artemis Fowl Boxed Set, Bks 1-5 (Artemis Fowl, #1-5)" +4.54,103,,good_reads:book,https://www.goodreads.com/author/show/2528119.Emilie_Autumn,2009,/genres/non-fiction|/genres/mental-health|/genres/mental-illness|/genres/psychology|/genres/horror|/genres/biography|/genres/adult|/genres/gothic|/genres/health|/genres/mental-health|/genres/autobiography|/genres/memoir|/genres/biography|/genres/autobiography,dir46/7327100-the-asylum-for-wayward-victorian-girls.html,907,The Asylum for Wayward Victorian Girls +3.52,465,0803738730,good_reads:book,https://www.goodreads.com/author/show/4564410.Dayna_Lorentz,2012,/genres/young-adult|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/fiction|/genres/horror|/genres/adventure|/genres/survival|/genres/horror|/genres/zombies|/genres/young-adult|/genres/teen|/genres/realistic-fiction|/genres/contemporary,dir46/12971664-no-safety-in-numbers.html,2780,No Safety in Numbers +4.14,1017,0345460014,good_reads:book,https://www.goodreads.com/author/show/33918.China_Mi_ville,2000,/genres/fantasy|/genres/fiction|/genres/science-fiction|/genres/science-fiction|/genres/steampunk|/genres/weird-fiction|/genres/new-weird|/genres/science-fiction-fantasy|/genres/adventure|/genres/horror|/genres/fantasy|/genres/weird-fiction|/genres/fantasy|/genres/urban-fantasy,dir46/68497.The_Scar.html,16391,"The Scar (Bas-Lag, #2)" +4.17,442,0027436292,good_reads:book,https://www.goodreads.com/author/show/10652.Marguerite_Henry,1948,/genres/animals|/genres/horses|/genres/fiction|/genres/animals|/genres/historical-fiction|/genres/young-adult|/genres/classics|/genres/childrens|/genres/childrens|/genres/juvenile|/genres/adventure|/genres/childrens|/genres/middle-grade,dir46/423156.King_of_the_Wind.html,15352,King of the Wind +4.34,243,0802135064,good_reads:book,https://www.goodreads.com/author/show/134770._gota_Krist_f,1986,/genres/fiction|/genres/war|/genres/cultural|/genres/hungary|/genres/contemporary|/genres/novels|/genres/literature|/genres/cultural|/genres/france|/genres/european-literature|/genres/hungarian-literature|/genres/history|/genres/world-war-ii|/genres/drama,dir46/230514.The_Notebook_The_Proof_The_Third_Lie.html,2628,"The Notebook, The Proof, The Third Lie" +3.86,617,0743299426,good_reads:book,https://www.goodreads.com/author/show/162077.Kathleen_McGowan,2006,/genres/historical-fiction|/genres/fiction|/genres/mystery|/genres/religion|/genres/thriller|/genres/book-club|/genres/romance|/genres/thriller|/genres/mystery-thriller|/genres/fantasy|/genres/adult,dir46/278210.The_Expected_One.html,4508,"The Expected One (Magdalene Line Trilogy, #1)" +4.24,490,0060256710,good_reads:book,https://www.goodreads.com/author/show/435477.Shel_Silverstein,1976,/genres/poetry|/genres/childrens|/genres/childrens|/genres/picture-books|/genres/fiction|/genres/young-adult|/genres/classics|/genres/humor|/genres/childrens|/genres/juvenile|/genres/kids|/genres/inspirational,dir46/30122.The_Missing_Piece.html,16464,The Missing Piece +3.80,555,,good_reads:book,https://www.goodreads.com/author/show/164478.Dee,2008,/genres/fiction|/genres/asian-literature|/genres/indonesian-literature|/genres/romance|/genres/novels|/genres/short-stories|/genres/literature|/genres/love|/genres/young-adult|/genres/anthologies|/genres/poetry,dir46/4815886-rectoverso.html,4547,Rectoverso +3.71,643,031609918X,good_reads:book,https://www.goodreads.com/author/show/4605.Lisi_Harrison,2005,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/romance|/genres/shapeshifters|/genres/werewolves|/genres/fiction|/genres/young-adult|/genres/teen|/genres/womens-fiction|/genres/chick-lit|/genres/horror,dir46/7823524-monster-high.html,5513,"Monster High (Monster High, #1)" +4.15,950,0688156819,good_reads:book,https://www.goodreads.com/author/show/5773.Tim_Burton,1993,/genres/poetry|/genres/art|/genres/gothic|/genres/humor|/genres/childrens|/genres/young-adult|/genres/sequential-art|/genres/comics|/genres/sequential-art|/genres/graphic-novels|/genres/short-stories|/genres/literature|/genres/american,dir46/519112.The_Melancholy_Death_of_Oyster_Boy_and_Other_Stories.html,15404,The Melancholy Death of Oyster Boy and Other Stories +4.46,2,,good_reads:book,https://www.goodreads.com/author/show/4808225.Dennis_Sharpe,2011,,dir46/11187936-fresh.html,24,Fresh +4.37,235,0374521611,good_reads:book,https://www.goodreads.com/author/show/13084.Roland_Barthes,1977,/genres/philosophy|/genres/non-fiction|/genres/philosophy|/genres/theory|/genres/writing|/genres/essays|/genres/cultural|/genres/france|/genres/love|/genres/literature|/genres/romance|/genres/european-literature|/genres/french-literature|/genres/criticism|/genres/literary-criticism,dir46/380994.A_Lover_s_Discourse.html,3100,A Lover's Discourse +3.73,1541,0571215289,good_reads:book,https://www.goodreads.com/author/show/79510.Sebastian_Barry,1998,/genres/fiction|/genres/historical-fiction|/genres/cultural|/genres/ireland|/genres/book-club|/genres/european-literature|/genres/irish-literature|/genres/mystery|/genres/literary-fiction|/genres/contemporary,dir46/3419808-the-secret-scripture.html,8363,The Secret Scripture +3.87,531,0439087597,good_reads:book,https://www.goodreads.com/author/show/5817.Rodman_Philbrick,2000,/genres/young-adult|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/young-adult|/genres/teen|/genres/apocalyptic|/genres/post-apocalyptic|/genres/childrens|/genres/academic|/genres/school,dir46/924194.The_Last_Book_in_the_Universe.html,5407,The Last Book in the Universe +3.81,358,0743231511,good_reads:book,https://www.goodreads.com/author/show/1886.Douglas_Coupland,1994,/genres/fiction|/genres/short-stories|/genres/contemporary|/genres/cultural|/genres/canada|/genres/literature|/genres/novels|/genres/religion,dir46/22304.Life_After_God.html,8205,Life After God +3.67,304,0802137954,good_reads:book,https://www.goodreads.com/author/show/922006.J_P_Donleavy,1955,/genres/fiction|/genres/classics|/genres/humor|/genres/cultural|/genres/ireland|/genres/literature|/genres/european-literature|/genres/irish-literature|/genres/novels|/genres/classics|/genres/modern-classics|/genres/literary-fiction|/genres/contemporary,dir46/127020.The_Ginger_Man.html,5676,The Ginger Man +4.20,354,0505525836,good_reads:book,https://www.goodreads.com/author/show/17059.Lynsay_Sands,2004,/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/vampires|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/adult|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/contemporary|/genres/fantasy|/genres/supernatural|/genres/humor|/genres/funny,dir46/387061.Tall_Dark_Hungry.html,12359,"Tall, Dark & Hungry (Argeneau #4)" +4.16,1171,0060989157,good_reads:book,https://www.goodreads.com/author/show/10760.Tommy_Lee,2001,/genres/music|/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/biography|/genres/autobiography|/genres/biography|/genres/music|/genres/rock-n-roll|/genres/biography-memoir|/genres/book-club|/genres/adult|/genres/culture|/genres/pop-culture,dir46/25378.The_Dirt.html,16418,The Dirt +4.11,360,,good_reads:book,https://www.goodreads.com/author/show/71688.Nalini_Singh,2011,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/vampires|/genres/adult|/genres/romance|/genres/fantasy-romance|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/urban-fantasy,dir46/10802904-lord-of-the-abyss.html,4440,"Lord of the Abyss (Royal House of Shadows, #4)" +3.24,4,,good_reads:book,https://www.goodreads.com/author/show/6565957.Lana_Cordova,2012,/genres/adult-fiction|/genres/erotica|/genres/erotica|/genres/bdsm,dir46/16152079-binders-full-of-women.html,38,Binders Full of Women +3.88,343,0253200369,good_reads:book,https://www.goodreads.com/author/show/7929831.Lucius_Apuleius,158,/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/literature|/genres/classics|/genres/novels|/genres/literature|/genres/ancient|/genres/roman,dir46/80081.The_Golden_Ass.html,6201,The Golden Ass +4.11,680,0062318322,good_reads:book,https://www.goodreads.com/author/show/2987125.Kiera_Cass,2014,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/romance|/genres/short-stories|/genres/fantasy|/genres/fiction|/genres/young-adult|/genres/teen|/genres/science-fiction|/genres/contemporary|/genres/fairy-tales|/genres/princesses,dir46/18172471-the-selection-stories.html,6638,"The Selection Stories (The Selection, #0.5, #2.5)" +4.15,294,0671319647,good_reads:book,https://www.goodreads.com/author/show/10518.Elizabeth_Moon,1988,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction-fantasy|/genres/war|/genres/military|/genres/adventure|/genres/war|/genres/epic|/genres/science-fiction,dir46/96278.Sheepfarmer_s_Daughter.html,5750,"Sheepfarmer's Daughter (The Deed of Paksenarrion, #1)" +4.21,369,0062508342,good_reads:book,https://www.goodreads.com/author/show/60281.Sogyal_Rinpoche,1992,/genres/self-help|/genres/classics|/genres/religion|/genres/buddhism|/genres/spirituality|/genres/psychology|/genres/non-fiction|/genres/philosophy|/genres/philosophy|/genres/eastern-philosophy|/genres/death,dir46/206731.The_Tibetan_Book_of_Living_and_Dying.html,12446,The Tibetan Book of Living and Dying +4.24,782,0765310023,good_reads:book,https://www.goodreads.com/author/show/31232.Steven_Erikson,2000,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fiction|/genres/fantasy|/genres/high-fantasy|/genres/epic|/genres/science-fiction-fantasy|/genres/fantasy|/genres/dark-fantasy|/genres/war|/genres/fantasy|/genres/magic|/genres/war|/genres/military,dir46/55401.Deadhouse_Gates.html,20655,"Deadhouse Gates (The Malazan Book of the Fallen, #2)" +3.78,711,9799625734,good_reads:book,https://www.goodreads.com/author/show/164478.Dee,2006,/genres/short-stories|/genres/novels|/genres/fiction|/genres/literature|/genres/asian-literature|/genres/indonesian-literature|/genres/drama|/genres/poetry|/genres/philosophy|/genres/romance|/genres/contemporary,dir46/1244286.Filosofi_Kopi.html,6487,Filosofi Kopi +3.60,1252,0375509321,good_reads:book,https://www.goodreads.com/author/show/7130.Charles_Frazier,2006,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/american|/genres/southern|/genres/novels,dir46/33896.Thirteen_Moons.html,7787,Thirteen Moons +4.16,401,0451412702,good_reads:book,https://www.goodreads.com/author/show/38066.Karen_Chance,2009,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/ghosts|/genres/science-fiction|/genres/time-travel|/genres/adult,dir46/3556419-curse-the-dawn.html,14348,"Curse the Dawn (Cassandra Palmer, #4)" +3.35,3543,1934137197,good_reads:book,https://www.goodreads.com/author/show/4371731.Paul_Harding,2008,/genres/fiction|/genres/book-club|/genres/literature|/genres/novels|/genres/literary-fiction|/genres/contemporary,dir46/4957350-tinkers.html,18479,Tinkers +3.86,1443,0439925509,good_reads:book,https://www.goodreads.com/author/show/38550.Brandon_Sanderson,2007,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/humor|/genres/childrens|/genres/adventure|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/middle-grade|/genres/fantasy|/genres/urban-fantasy|/genres/science-fiction,dir46/623976.Alcatraz_Versus_the_Evil_Librarians.html,8081,"Alcatraz Versus the Evil Librarians (Alcatraz, #1)" +4.43,128,0810114844,good_reads:book,https://www.goodreads.com/author/show/4731222.Ilya_Ilf,1927,/genres/cultural|/genres/russia|/genres/classics|/genres/fiction|/genres/literature|/genres/russian-literature|/genres/humor|/genres/adventure|/genres/literature|/genres/20th-century|/genres/literature,dir46/158516.The_Twelve_Chairs.html,9484,The Twelve Chairs +4.39,395,0593046358,good_reads:book,https://www.goodreads.com/author/show/31232.Steven_Erikson,2011,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fiction|/genres/epic|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/dark-fantasy|/genres/science-fiction-fantasy|/genres/war|/genres/novels|/genres/adult,dir46/8447255-the-crippled-god.html,9115,"The Crippled God (The Malazan Book of the Fallen, #10)" +4.29,187,0060732806,good_reads:book,https://www.goodreads.com/author/show/22515.Mario_Vargas_Llosa,1969,/genres/fiction|/genres/classics|/genres/literature|/genres/novels|/genres/cultural|/genres/latin-american|/genres/literature|/genres/latin-american-literature|/genres/european-literature|/genres/spanish-literature|/genres/nobel-prize|/genres/historical-fiction|/genres/magical-realism,dir46/53970.Conversation_in_the_Cathedral.html,2816,Conversation in the Cathedral +3.45,866,1853260738,good_reads:book,https://www.goodreads.com/author/show/2007.Daniel_Defoe,1721,/genres/classics|/genres/fiction|/genres/literature|/genres/historical-fiction|/genres/literature|/genres/18th-century|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/classics|/genres/classic-literature|/genres/adventure|/genres/literature|/genres/english-literature,dir46/38262.Moll_Flanders.html,22382,Moll Flanders +3.96,1336,0553805371,good_reads:book,https://www.goodreads.com/author/show/1401.Stephen_Hawking,2010,/genres/science|/genres/non-fiction|/genres/science|/genres/physics|/genres/philosophy|/genres/science|/genres/astronomy|/genres/religion|/genres/religion|/genres/atheism|/genres/history|/genres/science|/genres/popular-science|/genres/space,dir46/8520362-the-grand-design.html,26624,The Grand Design +4.16,1000,0778314189,good_reads:book,https://www.goodreads.com/author/show/445303.Maria_V_Snyder,2012,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/romance|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/horror|/genres/zombies|/genres/adult,dir46/12027429-scent-of-magic.html,9723,"Scent of Magic (Healer, #2)" +3.91,965,1619698366,good_reads:book,https://www.goodreads.com/author/show/4919495.Chris_Colfer,2012,/genres/young-adult|/genres/contemporary|/genres/fiction|/genres/realistic-fiction|/genres/humor|/genres/young-adult|/genres/teen|/genres/humor|/genres/funny|/genres/young-adult|/genres/high-school|/genres/young-adult|/genres/coming-of-age|/genres/media-tie-in|/genres/movies,dir46/15789823-struck-by-lightning.html,6487,Struck By Lightning +4.44,2792,0385344430,good_reads:book,https://www.goodreads.com/author/show/3617.Diana_Gabaldon,2014,/genres/historical-fiction|/genres/romance|/genres/science-fiction|/genres/time-travel|/genres/fiction|/genres/fantasy|/genres/romance|/genres/historical-romance|/genres/adult|/genres/cultural|/genres/scotland|/genres/science-fiction|/genres/adventure,dir46/11710373-written-in-my-own-heart-s-blood.html,15623,"Written in My Own Heart's Blood (Outlander, #8)" +3.71,402,014013168X,good_reads:book,https://www.goodreads.com/author/show/13081.Hanif_Kureishi,1990,/genres/fiction|/genres/novels|/genres/contemporary|/genres/european-literature|/genres/british-literature|/genres/cultural|/genres/india,dir46/302998.The_Buddha_of_Suburbia.html,7097,The Buddha of Suburbia +4.18,251,0143039652,good_reads:book,https://www.goodreads.com/author/show/1305302.R_K_Narayan,1943,/genres/fiction|/genres/cultural|/genres/india|/genres/short-stories|/genres/classics|/genres/asian-literature|/genres/indian-literature|/genres/literature|/genres/humor,dir46/14082.Malgudi_Days.html,7778,Malgudi Days +4.05,221,,good_reads:book,https://www.goodreads.com/author/show/23284.Julian_May,1981,/genres/science-fiction|/genres/fantasy|/genres/fiction|/genres/science-fiction|/genres/time-travel|/genres/science-fiction-fantasy|/genres/speculative-fiction|/genres/adventure|/genres/science-fiction|/genres/aliens|/genres/philosophy|/genres/metaphysics|/genres/novels,dir46/378639.The_Many_Coloured_Land.html,6386,"The Many-Coloured Land (Saga of Pliocene Exile, #1)" +3.73,714,0060731486,good_reads:book,https://www.goodreads.com/author/show/6104.Marian_Keyes,2004,/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/romance|/genres/contemporary|/genres/european-literature|/genres/irish-literature|/genres/adult|/genres/humor,dir46/9302.The_Other_Side_of_the_Story.html,25532,The Other Side of the Story +3.96,486,0451461525,good_reads:book,https://www.goodreads.com/author/show/38066.Karen_Chance,2007,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy|/genres/magic|/genres/science-fiction|/genres/time-travel|/genres/adult|/genres/paranormal|/genres/ghosts,dir46/207365.Claimed_By_Shadow.html,13767,"Claimed By Shadow (Cassandra Palmer, #2)" +3.98,418,0312575955,good_reads:book,https://www.goodreads.com/author/show/51118.Jenna_Black,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fairies|/genres/fantasy|/genres/paranormal|/genres/fairies|/genres/fae|/genres/romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural,dir46/9720766-sirensong.html,6641,"Sirensong (Faeriewalker, #3)" +4.02,2443,0684853949,good_reads:book,https://www.goodreads.com/author/show/843200.Oliver_Sacks,1985,/genres/science|/genres/non-fiction|/genres/health|/genres/medicine|/genres/medical|/genres/biology|/genres/neuroscience|/genres/writing|/genres/essays|/genres/short-stories|/genres/science|/genres/popular-science|/genres/health,dir46/63697.The_Man_Who_Mistook_His_Wife_for_a_Hat_and_Other_Clinical_Tales.html,68622,The Man Who Mistook His Wife for a Hat and Other Clinical Tales +4.50,347,0330316117,good_reads:book,https://www.goodreads.com/author/show/4.Douglas_Adams,1986,/genres/science-fiction|/genres/fiction|/genres/humor|/genres/fantasy|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/classics,dir46/841628.The_Hitchhiker_s_Guide_to_the_Galaxy.html,20195,The Hitchhiker's Guide to the Galaxy +3.98,1502,0446550000,good_reads:book,https://www.goodreads.com/author/show/37140.Leila_Meacham,2009,/genres/historical-fiction|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/book-club|/genres/adult|/genres/adult-fiction|/genres/fiction|/genres/romance|/genres/historical-romance|/genres/contemporary|/genres/family,dir46/6505109-roses.html,8193,Roses +4.47,191,0842386882,good_reads:book,https://www.goodreads.com/author/show/3159984.Karen_Kingsbury,2004,/genres/christian-fiction|/genres/christian|/genres/fiction|/genres/romance|/genres/inspirational|/genres/romance|/genres/christian-romance|/genres/adult-fiction|/genres/religion|/genres/christianity|/genres/contemporary|/genres/christian-fiction|/genres/christian-contemporary-fiction,dir46/11432.Reunion.html,8629,"Reunion (Redemption, #5)" +4.19,1701,,good_reads:book,https://www.goodreads.com/author/show/7056140.Laurelin_Paige,2013,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/adult|/genres/romance|/genres/erotic-romance|/genres/new-adult,dir46/17828418-fixed-on-you.html,23934,"Fixed on You (Fixed, #1)" +3.68,204,0988936402,good_reads:book,https://www.goodreads.com/author/show/6893006.Roy_Huff,2013,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/science-fiction|/genres/adventure|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy,dir46/17404695-the-first-pillar.html,518,"The First Pillar (Everville, #1)" +4.19,957,0380815575,good_reads:book,https://www.goodreads.com/author/show/63898.Julia_Quinn,2000,/genres/romance|/genres/romance|/genres/historical-romance|/genres/regency|/genres/historical-fiction|/genres/historical-romance|/genres/regency-romance|/genres/fiction|/genres/adult|/genres/humor|/genres/womens-fiction|/genres/chick-lit|/genres/humor|/genres/funny,dir46/861326.The_Viscount_Who_Loved_Me.html,26265,"The Viscount Who Loved Me (Bridgertons, #2)" +4.16,480,,good_reads:book,https://www.goodreads.com/author/show/871358._,1993,/genres/science|/genres/non-fiction|/genres/philosophy|/genres/science|/genres/physics,dir46/3660304.html,4234,آينشتين والنسبية +4.10,157,0345497457,good_reads:book,https://www.goodreads.com/author/show/376347.Peach_Pit,2006,/genres/sequential-art|/genres/manga|/genres/romance|/genres/sequential-art|/genres/graphic-novels|/genres/media-tie-in|/genres/anime|/genres/sequential-art|/genres/comics|/genres/young-adult|/genres/manga|/genres/shojo|/genres/humor|/genres/comics-manga|/genres/fantasy|/genres/magic,dir46/1881621.Shugo_Chara_Vol_1.html,14657,"Shugo Chara!, Vol. 1 (Shugo Chara!, #1)" +4.17,613,0849945119,good_reads:book,https://www.goodreads.com/author/show/1441.Ted_Dekker,2003,/genres/christian-fiction|/genres/fiction|/genres/thriller|/genres/fantasy|/genres/mystery|/genres/suspense|/genres/adventure|/genres/romance|/genres/science-fiction|/genres/adult,dir46/2142.Blink.html,11247,Blink +3.89,274,0615467091,good_reads:book,https://www.goodreads.com/author/show/4330590.H_M_Ward,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/demons|/genres/romance|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic,dir46/9238506-demon-kissed.html,3360,"Demon Kissed (Demon Kissed, #1)" +4.31,434,0192756583,good_reads:book,https://www.goodreads.com/author/show/4042181.Joss_Stirling,2011,/genres/young-adult|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/young-adult|/genres/young-adult-paranormal,dir46/10410278-stealing-phoenix.html,4292,"Stealing Phoenix (Benedicts, #2)" +4.44,251,1593082045,good_reads:book,https://www.goodreads.com/author/show/2448.Arthur_Conan_Doyle,1930,/genres/classics|/genres/mystery|/genres/fiction|/genres/short-stories|/genres/mystery|/genres/crime|/genres/mystery|/genres/detective|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/thriller|/genres/mystery-thriller|/genres/classics|/genres/classic-literature,dir46/3586.The_Complete_Sherlock_Holmes_Volume_II.html,52346,"The Complete Sherlock Holmes, Volume II" +3.34,4069,0670021652,good_reads:book,https://www.goodreads.com/author/show/11679.Elizabeth_Gilbert,2000,/genres/non-fiction|/genres/relationships|/genres/autobiography|/genres/memoir|/genres/history|/genres/contemporary,dir46/6728738-committed.html,31309,Committed +4.17,1415,,good_reads:book,https://www.goodreads.com/author/show/4586597.R_L_Mathewson,2012,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/humor|/genres/funny|/genres/adult|/genres/womens-fiction|/genres/chick-lit|/genres/adult-fiction|/genres/erotica|/genres/humor|/genres/new-adult|/genres/love,dir46/13624367-checkmate.html,27118,"Checkmate (Neighbor from Hell, #3)" +3.74,2220,0440241812,good_reads:book,https://www.goodreads.com/author/show/6160.Sophie_Kinsella,2001,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/humor|/genres/contemporary|/genres/adult|/genres/adult-fiction|/genres/humor|/genres/funny|/genres/humor|/genres/comedy|/genres/romance|/genres/contemporary-romance,dir46/9418.Shopaholic_Takes_Manhattan.html,77512,"Shopaholic Takes Manhattan (Shopaholic, #2)" +3.90,987,0060090383,good_reads:book,https://www.goodreads.com/author/show/6104.Marian_Keyes,1997,/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/romance|/genres/contemporary|/genres/cultural|/genres/ireland|/genres/humor|/genres/european-literature|/genres/irish-literature,dir46/9301.Rachel_s_Holiday.html,36840,"Rachel's Holiday (Walsh Family, #2)" +4.20,166,0385507623,good_reads:book,https://www.goodreads.com/author/show/5657.Gore_Vidal,1981,/genres/historical-fiction|/genres/fiction|/genres/literature|/genres/novels|/genres/philosophy|/genres/religion|/genres/classics|/genres/literature|/genres/american,dir46/8718.Creation.html,2100,Creation +4.00,1815,0749009519,good_reads:book,https://www.goodreads.com/author/show/486812.Susanna_Kearsley,2011,/genres/historical-fiction|/genres/romance|/genres/science-fiction|/genres/time-travel|/genres/fiction|/genres/fantasy|/genres/romance|/genres/historical-romance|/genres/fantasy|/genres/paranormal|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/mystery,dir46/9792287-the-rose-garden.html,13836,The Rose Garden +3.92,447,0525425764,good_reads:book,https://www.goodreads.com/author/show/721.John_Grisham,2012,/genres/mystery|/genres/young-adult|/genres/fiction|/genres/adventure|/genres/mystery|/genres/crime|/genres/law|/genres/thriller|/genres/childrens|/genres/suspense|/genres/realistic-fiction,dir46/11737268-theodore-boone.html,4085,"Theodore Boone (Theodore Boone, #3)" +3.56,499,0316185485,good_reads:book,https://www.goodreads.com/author/show/213659.Galaxy_Craze,2012,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/fantasy|/genres/romance|/genres/apocalyptic|/genres/post-apocalyptic|/genres/science-fiction|/genres/adventure|/genres/fiction|/genres/action|/genres/young-adult|/genres/teen,dir46/12814540-the-last-princess.html,4127,"The Last Princess (Last Princess, #1)" +4.16,424,2226135022,good_reads:book,https://www.goodreads.com/author/show/2976._ric_Emmanuel_Schmitt,2002,/genres/cultural|/genres/france|/genres/fiction|/genres/academic|/genres/school|/genres/european-literature|/genres/french-literature|/genres/contemporary|/genres/literature|/genres/novels|/genres/drama,dir46/120461.Oscar_et_la_dame_rose.html,6439,Oscar et la dame rose +3.98,323,0439679966,good_reads:book,https://www.goodreads.com/author/show/32590.Anthony_Horowitz,2006,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/supernatural|/genres/adventure|/genres/horror|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/fiction|/genres/thriller|/genres/action,dir46/107670.Evil_Star.html,10286,"Evil Star (The Gatekeepers, #2)" +3.80,510,0684822761,good_reads:book,https://www.goodreads.com/author/show/1455.Ernest_Hemingway,1924,/genres/fiction|/genres/classics|/genres/short-stories|/genres/literature|/genres/literature|/genres/american|/genres/academic|/genres/school|/genres/literature|/genres/20th-century|/genres/classics|/genres/classic-literature|/genres/academic|/genres/read-for-school|/genres/novels,dir46/4652.In_Our_Time.html,12020,In Our Time +4.02,202,0439401879,good_reads:book,https://www.goodreads.com/author/show/1084267.Luis_Sep_lveda,1996,/genres/childrens|/genres/fiction|/genres/animals|/genres/novels|/genres/young-adult|/genres/contemporary|/genres/classics|/genres/literature|/genres/latin-american-literature|/genres/academic|/genres/school|/genres/animals|/genres/cats,dir46/8797.The_Story_of_a_Seagull_and_the_Cat_Who_Taught_Her_to_Fly.html,4332,The Story of a Seagull and the Cat Who Taught Her to Fly +4.02,178,0413772195,good_reads:book,https://www.goodreads.com/author/show/19439.Stephen_Briggs,1995,/genres/fantasy|/genres/humor|/genres/fiction|/genres/humor|/genres/comedy|/genres/science-fiction-fantasy|/genres/humor|/genres/funny|/genres/science-fiction|/genres/fantasy|/genres/magic|/genres/european-literature|/genres/british-literature|/genres/speculative-fiction,dir46/34508.Interesting_Times.html,15950,Interesting Times +4.00,335,0553379658,good_reads:book,https://www.goodreads.com/author/show/10330.Daniel_Quinn,1997,/genres/fiction|/genres/philosophy|/genres/environment|/genres/spirituality|/genres/literature|/genres/animals|/genres/adult-fiction|/genres/fantasy|/genres/novels|/genres/religion,dir46/17022.My_Ishmael.html,6395,My Ishmael +3.93,1239,1416589422,good_reads:book,https://www.goodreads.com/author/show/2503028.Molly_Harper,2009,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/humor|/genres/womens-fiction|/genres/chick-lit|/genres/humor|/genres/funny|/genres/fiction,dir46/5618698-nice-girls-don-t-have-fangs.html,13197,"Nice Girls Don't Have Fangs (Jane Jameson, #1)" +3.96,273,1857988361,good_reads:book,https://www.goodreads.com/author/show/23113.John_Brunner,1968,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/dystopia|/genres/science-fiction-fantasy|/genres/classics,dir46/41069.Stand_on_Zanzibar.html,8221,Stand on Zanzibar +3.73,316,1416520406,good_reads:book,https://www.goodreads.com/author/show/30460.Jenny_O_Connell,2007,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/high-school|/genres/realistic-fiction|/genres/young-adult|/genres/young-adult-romance|/genres/fiction|/genres/young-adult|/genres/young-adult-contemporary,dir46/562930.The_Book_of_Luke.html,10329,The Book of Luke +4.12,1197,,good_reads:book,https://www.goodreads.com/author/show/4872191.Abbi_Glines,2012,/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/ghosts|/genres/paranormal|/genres/demons|/genres/death|/genres/new-adult,dir46/13323842-predestined.html,24919,"Predestined (Existence Trilogy, #2)" +3.91,2493,0375870415,good_reads:book,https://www.goodreads.com/author/show/836009.Sarah_Rees_Brennan,2012,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/mystery|/genres/romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/gothic|/genres/fantasy|/genres/supernatural|/genres/fiction,dir46/10866624-unspoken.html,15582,"Unspoken (The Lynburn Legacy, #1)" +4.15,266,1844286223,good_reads:book,https://www.goodreads.com/author/show/32590.Anthony_Horowitz,2008,/genres/fantasy|/genres/young-adult|/genres/horror|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/paranormal|/genres/adventure|/genres/fiction|/genres/thriller|/genres/fantasy|/genres/magic,dir46/2870651-necropolis.html,6583,"Necropolis (The Gatekeepers, #4)" +3.79,684,0553808052,good_reads:book,https://www.goodreads.com/author/show/3452437.Rebecca_James,2010,/genres/young-adult|/genres/thriller|/genres/fiction|/genres/mystery|/genres/contemporary|/genres/romance|/genres/suspense|/genres/realistic-fiction|/genres/drama|/genres/death,dir46/7720252-beautiful-malice.html,4346,Beautiful Malice +4.03,93,0385240899,good_reads:book,https://www.goodreads.com/author/show/8113.John_Barth,1958,/genres/fiction|/genres/literary-fiction|/genres/literature|/genres/american|/genres/literature|/genres/classics|/genres/novels|/genres/literature|/genres/20th-century|/genres/contemporary|/genres/modern|/genres/american|/genres/american-fiction,dir46/24836.The_Floating_Opera_and_The_End_of_the_Road.html,1513,The Floating Opera and The End of the Road +3.84,231,0441004385,good_reads:book,https://www.goodreads.com/author/show/25.Patricia_A_McKillip,1996,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/fairy-tales|/genres/romance|/genres/young-adult|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/retellings|/genres/fairy-tales|/genres/fairy-tale-retellings|/genres/fantasy|/genres/magic,dir46/77364.Winter_Rose.html,4739,"Winter Rose (Winter Rose, #1)" +4.02,396,0800732111,good_reads:book,https://www.goodreads.com/author/show/965709.Julie_Lessman,2008,/genres/christian-fiction|/genres/romance|/genres/historical-fiction|/genres/christian|/genres/romance|/genres/historical-romance|/genres/fiction|/genres/romance|/genres/christian-romance|/genres/inspirational|/genres/romance|/genres/clean-romance|/genres/adult,dir46/2121231.A_Passion_Most_Pure.html,3280,"A Passion Most Pure (Daughters of Boston, #1)" +3.82,1066,0545042151,good_reads:book,https://www.goodreads.com/author/show/123719.Paula_Morris,2009,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/ghosts|/genres/fantasy|/genres/mystery|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/fiction|/genres/horror|/genres/young-adult|/genres/teen,dir46/6261081-ruined.html,9041,"Ruined (Ruined, #1)" +3.72,1307,1554682746,good_reads:book,https://www.goodreads.com/author/show/1312879.Lesley_Livingston,2008,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fairies|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/fairies|/genres/fae|/genres/fantasy|/genres/magic|/genres/fiction|/genres/romance|/genres/paranormal-romance,dir46/3064985-wondrous-strange.html,15854,"Wondrous Strange (Wondrous Strange, #1)" +3.71,757,,good_reads:book,https://www.goodreads.com/author/show/5013252._,2011,/genres/non-fiction|/genres/short-stories|/genres/philosophy,dir46/11942408.html,6910,شاب كشك فى رحلة البحث عن الجادون +3.95,301,0811211908,good_reads:book,https://www.goodreads.com/author/show/86098.Clarice_Lispector,1975,/genres/fiction|/genres/cultural|/genres/brazil|/genres/literature|/genres/classics|/genres/novels,dir46/762390.The_Hour_of_the_Star.html,4446,The Hour of the Star +4.37,728,1250002826,good_reads:book,https://www.goodreads.com/author/show/4430.Sherrilyn_Kenyon,2012,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/demons|/genres/paranormal|/genres/vampires|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen|/genres/fiction,dir46/12019355-infamous.html,10584,"Infamous (Chronicles of Nick, #3)" +4.31,798,,good_reads:book,https://www.goodreads.com/author/show/5434809.Kirsty_Moseley,2011,/genres/romance|/genres/new-adult|/genres/sociology|/genres/abuse|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/academic|/genres/college|/genres/suspense|/genres/dark|/genres/romance|/genres/romantic-suspense|/genres/young-adult,dir47/20877885-nothing-left-to-lose.html,7707,Nothing Left to Lose +4.06,1645,1250021529,good_reads:book,https://www.goodreads.com/author/show/5445024.Emily_Murdoch,2013,/genres/young-adult|/genres/contemporary|/genres/fiction|/genres/mystery|/genres/realistic-fiction|/genres/sociology|/genres/abuse|/genres/young-adult|/genres/teen,dir47/15793231-if-you-find-me.html,7993,If You Find Me +4.01,415,0874778883,good_reads:book,https://www.goodreads.com/author/show/38329.Heinrich_Harrer,1952,/genres/travel|/genres/non-fiction|/genres/history|/genres/biography|/genres/adventure|/genres/autobiography|/genres/memoir|/genres/cultural|/genres/asia|/genres/religion|/genres/buddhism|/genres/biography|/genres/autobiography|/genres/cultural|/genres/china,dir47/270032.Seven_Years_in_Tibet.html,7213,Seven Years in Tibet +4.09,93,0300108486,good_reads:book,https://www.goodreads.com/author/show/9632.Witold_Gombrowicz,1965,/genres/fiction|/genres/european-literature|/genres/polish-literature|/genres/mystery|/genres/literature|/genres/cultural|/genres/poland|/genres/novels|/genres/classics|/genres/literature|/genres/european-literature|/genres/philosophy|/genres/literary-fiction,dir47/15584.Cosmos.html,1066,Cosmos +4.06,244,0517223007,good_reads:book,https://www.goodreads.com/author/show/3999.James_Jones,1951,/genres/fiction|/genres/classics|/genres/historical-fiction|/genres/war|/genres/literature|/genres/history|/genres/world-war-ii|/genres/war|/genres/military|/genres/literary-fiction|/genres/literature|/genres/american|/genres/novels,dir47/116114.From_Here_to_Eternity.html,10127,From Here to Eternity +4.21,59,0345485351,good_reads:book,https://www.goodreads.com/author/show/11586.David_Gemmell,1991,/genres/fantasy|/genres/historical-fiction|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/heroic-fantasy|/genres/science-fiction-fantasy|/genres/adventure,dir47/257054.Lion_of_Macedon.html,2475,"Lion of Macedon (Greek Series, #1)" +4.52,18,0595419585,good_reads:book,https://www.goodreads.com/author/show/363635.Linda_Masemore_Pirrung,2006,/genres/romance,dir47/6992777-i-will-wait-for-you.html,86,I Will Wait for You +3.95,2962,0439443822,good_reads:book,https://www.goodreads.com/author/show/130166.Cynthia_Lord,2006,/genres/realistic-fiction|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/family|/genres/childrens|/genres/juvenile|/genres/academic|/genres/school|/genres/contemporary|/genres/childrens|/genres/chapter-books,dir47/222458.Rules.html,31217,Rules +4.42,140,0142404225,good_reads:book,https://www.goodreads.com/author/show/22961.June_Rae_Wood,1992,/genres/young-adult|/genres/fiction|/genres/realistic-fiction|/genres/childrens|/genres/childrens|/genres/chapter-books|/genres/academic|/genres/school|/genres/contemporary|/genres/novels,dir47/69092.The_Man_Who_Loved_Clowns.html,937,The Man Who Loved Clowns +3.91,852,0439903440,good_reads:book,https://www.goodreads.com/author/show/2130.Gordon_Korman,2008,/genres/adventure|/genres/realistic-fiction|/genres/mystery|/genres/childrens|/genres/young-adult|/genres/humor|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/action|/genres/animals,dir47/1653655.Swindle.html,10076,Swindle +4.12,785,0006280838,good_reads:book,https://www.goodreads.com/author/show/1069006.C_S_Lewis,1955,/genres/biography|/genres/christian|/genres/religion|/genres/religion|/genres/christianity|/genres/religion|/genres/theology|/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/religion|/genres/faith|/genres/spirituality|/genres/classics,dir47/121732.Surprised_by_Joy.html,23169,Surprised by Joy +4.01,3160,0385907508,good_reads:book,https://www.goodreads.com/author/show/3449712.Clare_Vanderpool,2010,/genres/historical-fiction|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/mystery|/genres/book-club,dir47/8293938-moon-over-manifest.html,17259,Moon Over Manifest +4.55,328,0007480229,good_reads:book,https://www.goodreads.com/author/show/165168.Derek_Landy,2012,/genres/adventure|/genres/fiction|/genres/young-adult|/genres/mystery|/genres/childrens|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/paranormal|/genres/horror|/genres/humor,dir47/13537640-kingdom-of-the-wicked.html,4587,"Kingdom of the Wicked (Skulduggery Pleasant, #7)" +4.14,542,0060885416,good_reads:book,https://www.goodreads.com/author/show/5300.Laura_Ingalls_Wilder,1939,/genres/historical-fiction|/genres/classics|/genres/childrens|/genres/fiction|/genres/young-adult|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/middle-grade|/genres/family|/genres/childrens|/genres/chapter-books|/genres/literature|/genres/american,dir47/8248.By_the_Shores_of_Silver_Lake.html,40966,"By the Shores of Silver Lake (Little House, #5)" +4.11,68,,good_reads:book,https://www.goodreads.com/author/show/7414345.Jami_Brumfield,2013,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/thriller|/genres/fantasy|/genres/young-adult|/genres/shapeshifters|/genres/werewolves|/genres/action,dir47/21523892-lone-wolf-rising.html,327,"Lone Wolf Rising (The Winters Family Saga, #1)" +3.58,3407,0062014552,good_reads:book,https://www.goodreads.com/author/show/2936493.Lauren_Oliver,2014,/genres/young-adult|/genres/contemporary|/genres/romance|/genres/fiction|/genres/science-fiction|/genres/dystopia|/genres/realistic-fiction,dir47/17565845-panic.html,19466,Panic +4.23,648,0312945795,good_reads:book,https://www.goodreads.com/author/show/2614.Lora_Leigh,2008,/genres/romance|/genres/romance|/genres/romantic-suspense|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/contemporary-romance|/genres/war|/genres/military|/genres/contemporary|/genres/suspense|/genres/romance|/genres/erotic-romance|/genres/adult|/genres/mystery,dir47/2721318-wild-card.html,11643,"Wild Card (Elite Ops, #1)" +4.39,3599,,good_reads:book,https://www.goodreads.com/author/show/5158478.Anonymous,1611,/genres/religion|/genres/non-fiction|/genres/classics|/genres/christian|/genres/religion|/genres/christianity|/genres/spirituality|/genres/history|/genres/reference|/genres/philosophy|/genres/christianity|/genres/lds,dir47/1923820.Holy_Bible.html,121096,Holy Bible +3.78,828,979962570X,good_reads:book,https://www.goodreads.com/author/show/164478.Dee,2001,/genres/fiction|/genres/novels|/genres/asian-literature|/genres/indonesian-literature|/genres/romance|/genres/science-fiction|/genres/fantasy|/genres/literature,dir47/994156.Supernova.html,7679,"Supernova (Supernova, #1)" +4.07,255,0316017175,good_reads:book,https://www.goodreads.com/author/show/114528.Jen_Calonita,2009,/genres/young-adult|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/high-school|/genres/humor|/genres/fiction|/genres/young-adult|/genres/young-adult-romance,dir47/5603651-sleepaway-girls.html,3463,"Sleepaway Girls (Whispering Pines, #1)" +4.18,308,0553578553,good_reads:book,https://www.goodreads.com/author/show/41193.Sara_Donati,2000,/genres/historical-fiction|/genres/romance|/genres/fiction|/genres/romance|/genres/historical-romance|/genres/adventure|/genres/literature|/genres/18th-century|/genres/cultural|/genres/scotland,dir47/820956.Dawn_on_a_Distant_Shore.html,8675,"Dawn on a Distant Shore (Wilderness, #2)" +3.81,1061,0061284424,good_reads:book,https://www.goodreads.com/author/show/1192311.Claudia_Gray,2011,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/ghosts|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/young-adult-paranormal,dir47/6619499-afterlife.html,19196,"Afterlife (Evernight, #4)" +4.14,297,0316013897,good_reads:book,https://www.goodreads.com/author/show/5816.Darren_Shan,2006,/genres/horror|/genres/fantasy|/genres/young-adult|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/adventure|/genres/shapeshifters|/genres/werewolves,dir47/164721.Bec.html,7264,"Bec (The Demonata, #4)" +4.29,195,0007260350,good_reads:book,https://www.goodreads.com/author/show/5816.Darren_Shan,2009,/genres/horror|/genres/fantasy|/genres/young-adult|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/fantasy|/genres/magic|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen,dir47/6556261-hell-s-heroes.html,4599,"Hell's Heroes (The Demonata, #10)" +3.94,657,0545060443,good_reads:book,https://www.goodreads.com/author/show/11912.Jude_Watson,2009,/genres/childrens|/genres/adventure|/genres/mystery|/genres/young-adult|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/action|/genres/fiction|/genres/fantasy|/genres/suspense,dir47/5972040-beyond-the-grave.html,25961,"Beyond the Grave (The 39 Clues, #4)" +4.13,279,0143039822,good_reads:book,https://www.goodreads.com/author/show/9810.Albert_Einstein,1916,/genres/science|/genres/non-fiction|/genres/classics|/genres/science|/genres/physics|/genres/philosophy|/genres/science|/genres/mathematics|/genres/reference|/genres/science|/genres/popular-science|/genres/european-literature|/genres/german-literature|/genres/philosophy|/genres/theory,dir47/15852.Relativity.html,8174,Relativity +4.08,272,0593055241,good_reads:book,https://www.goodreads.com/author/show/26024.Simon_Beckett,2007,/genres/thriller|/genres/mystery|/genres/crime|/genres/mystery|/genres/fiction|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/cultural|/genres/scotland|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/horror,dir47/1328721.Written_in_Bone.html,4515,"Written in Bone (David Hunter, #2)" +4.03,1356,0312379293,good_reads:book,https://www.goodreads.com/author/show/4820.Jeffrey_Archer,2008,/genres/fiction|/genres/thriller|/genres/mystery|/genres/suspense|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery-thriller|/genres/drama|/genres/thriller|/genres/legal-thriller|/genres/adult-fiction|/genres/novels,dir47/1611988.A_Prisoner_of_Birth.html,15649,A Prisoner of Birth +4.04,981,0006514944,good_reads:book,https://www.goodreads.com/author/show/6760.Laurie_R_King,1995,/genres/mystery|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery-thriller|/genres/fiction|/genres/mystery|/genres/detective|/genres/adult-fiction|/genres/historical-fiction|/genres/adult|/genres/suspense|/genres/european-literature|/genres/british-literature,dir47/104737.A_Monstrous_Regiment_of_Women.html,11921,"A Monstrous Regiment of Women (Mary Russell, #2)" +4.66,122,0740721135,good_reads:book,https://www.goodreads.com/author/show/19928.Gary_Larson,2003,/genres/humor|/genres/sequential-art|/genres/comics|/genres/sequential-art|/genres/graphic-novels|/genres/fiction|/genres/graphic-novels-comics|/genres/sequential-art|/genres/comic-strips|/genres/humor|/genres/comedy|/genres/comics|/genres/comic-book|/genres/humor|/genres/funny,dir47/50323.The_Complete_Far_Side_1980_1994.html,4271,"The Complete Far Side, 1980-1994" +4.24,137,0679601082,good_reads:book,https://www.goodreads.com/author/show/11978.John_Keats,1902,/genres/poetry|/genres/classics|/genres/literature|/genres/fiction|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/19th-century|/genres/romance|/genres/literature|/genres/english-literature|/genres/classics|/genres/classic-literature|/genres/romantic,dir47/138134.The_Complete_Poems.html,13227,The Complete Poems +3.86,576,0140168125,good_reads:book,https://www.goodreads.com/author/show/1742.Jack_Kerouac,1962,/genres/fiction|/genres/classics|/genres/literature|/genres/literature|/genres/american|/genres/novels|/genres/travel|/genres/literature|/genres/20th-century|/genres/classics|/genres/modern-classics|/genres/literary-fiction|/genres/thriller,dir47/50140.Big_Sur.html,15891,Big Sur +4.44,766,,good_reads:book,https://www.goodreads.com/author/show/2831048._,2007,/genres/novels|/genres/fiction|/genres/literature|/genres/historical-fiction,dir47/6219415.html,3452,زمن الخيول البيضاء +3.95,172,0756401534,good_reads:book,https://www.goodreads.com/author/show/8685.Mercedes_Lackey,2003,/genres/fantasy|/genres/fantasy|/genres/dragons|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/young-adult|/genres/fantasy|/genres/epic-fantasy|/genres/adult|/genres/fantasy|/genres/magic|/genres/adventure,dir47/13993.Joust.html,7168,"Joust (Dragon Jousters, #1)" +4.13,512,1416562850,good_reads:book,https://www.goodreads.com/author/show/311467.Mark_R_Levin,1904,/genres/politics|/genres/non-fiction|/genres/history|/genres/philosophy|/genres/politics|/genres/political-science|/genres/economics|/genres/history|/genres/american-history|/genres/politics|/genres/government|/genres/science|/genres/culture,dir47/5641414-liberty-and-tyranny.html,4298,Liberty and Tyranny +3.96,118,1590171152,good_reads:book,https://www.goodreads.com/author/show/7702.Luigi_Pirandello,1904,/genres/classics|/genres/european-literature|/genres/italian-literature|/genres/fiction|/genres/cultural|/genres/italy|/genres/literature|/genres/novels|/genres/nobel-prize|/genres/academic|/genres/school|/genres/literature|/genres/20th-century|/genres/academic|/genres/read-for-school,dir47/12116.The_Late_Mattia_Pascal.html,4791,The Late Mattia Pascal +4.47,492,9770148083,good_reads:book,https://www.goodreads.com/author/show/1873377._,1963,/genres/poetry|/genres/literature|/genres/classics|/genres/cultural|/genres/egypt|/genres/non-fiction,dir47/4488657.html,8782,رباعيات صلاح جاهين +3.96,102,0192801511,good_reads:book,https://www.goodreads.com/author/show/417720.Lu_s_Vaz_de_Cam_es,1572,/genres/poetry|/genres/fiction|/genres/european-literature|/genres/portuguese-literature|/genres/cultural|/genres/portugal|/genres/literature|/genres/classics|/genres/epic|/genres/literature|/genres/16th-century,dir47/797165.The_Lusiads.html,3683,The Lusiads +4.07,1249,038553504X,good_reads:book,https://www.goodreads.com/author/show/784866.Donald_Ray_Pollock,2011,/genres/fiction|/genres/horror|/genres/gothic|/genres/southern-gothic|/genres/mystery|/genres/historical-fiction|/genres/thriller|/genres/mystery|/genres/noir|/genres/mystery|/genres/crime|/genres/book-club|/genres/suspense,dir47/10108463-the-devil-all-the-time.html,6998,The Devil All the Time +3.93,604,,good_reads:book,https://www.goodreads.com/author/show/16667.Isaac_Asimov,1988,/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/classics|/genres/fantasy|/genres/science-fiction|/genres/space-opera|/genres/speculative-fiction|/genres/novels|/genres/criticism|/genres/science-fiction|/genres/robots,dir47/30013.Prelude_to_Foundation.html,25429,"Prelude to Foundation (Foundation: Prequel, #1)" +3.52,1150,1905294425,good_reads:book,https://www.goodreads.com/author/show/573850.Roderick_Gordon,2007,/genres/fantasy|/genres/young-adult|/genres/adventure|/genres/fiction|/genres/science-fiction|/genres/mystery|/genres/childrens,dir47/1175893.Tunnels.html,9666,"Tunnels (Tunnels, #1)" +4.41,1051,1250011914,good_reads:book,https://www.goodreads.com/author/show/4154802.C_C_Hunter,2012,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/witches|/genres/paranormal|/genres/ghosts|/genres/romance|/genres/paranormal-romance,dir47/13416236-whispers-at-moonrise.html,17494,"Whispers at Moonrise (Shadow Falls, #4)" +4.04,749,0679847596,good_reads:book,https://www.goodreads.com/author/show/2951738.Noel_Streatfeild,1936,/genres/childrens|/genres/classics|/genres/fiction|/genres/young-adult|/genres/historical-fiction|/genres/realistic-fiction|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/european-literature|/genres/british-literature|/genres/childrens|/genres/childrens-classics,dir47/10444.Ballet_Shoes.html,21109,"Ballet Shoes (Shoes, #1)" +4.39,929,0987526146,good_reads:book,https://www.goodreads.com/author/show/6876994.Kate_McCarthy,2013,/genres/romance|/genres/new-adult|/genres/war|/genres/military|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/war|/genres/sociology|/genres/abuse|/genres/adult|/genres/drama|/genres/love,dir47/18304765-fighting-redemption.html,5209,Fighting Redemption +4.20,359,055327211X,good_reads:book,https://www.goodreads.com/author/show/8588.Raymond_E_Feist,1987,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/epic|/genres/science-fiction|/genres/fantasy|/genres/magic|/genres/war|/genres/adventure,dir47/589979.Daughter_of_the_Empire.html,16637,"Daughter of the Empire (The Empire Trilogy, #1)" +4.01,1036,,good_reads:book,https://www.goodreads.com/author/show/7373567.Lili_St_Germain,2014,/genres/dark|/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/new-adult|/genres/sociology|/genres/abuse|/genres/contemporary|/genres/adult,dir47/18751827-seven-sons.html,7585,"Seven Sons (Gypsy Brothers, #1)" +3.93,238,0142302392,good_reads:book,https://www.goodreads.com/author/show/5329.Brian_Jacques,1991,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/animals|/genres/adventure|/genres/science-fiction-fantasy|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/middle-grade|/genres/young-adult|/genres/teen,dir47/7993.Mariel_of_Redwall.html,17125,"Mariel of Redwall (Redwall, #4)" +4.18,304,0679723951,good_reads:book,https://www.goodreads.com/author/show/38285.C_G_Jung,1961,/genres/psychology|/genres/non-fiction|/genres/biography|/genres/philosophy|/genres/autobiography|/genres/memoir|/genres/biography|/genres/autobiography|/genres/spirituality|/genres/science,dir47/612188.Memories_Dreams_Reflections.html,11643,"Memories, Dreams, Reflections" +3.94,2168,0399154140,good_reads:book,https://www.goodreads.com/author/show/49612.Ariana_Franklin,2007,/genres/historical-fiction|/genres/mystery|/genres/fiction|/genres/mystery|/genres/historical-mystery|/genres/historical-fiction|/genres/medieval|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery-thriller|/genres/book-club|/genres/european-literature|/genres/british-literature|/genres/thriller,dir47/86643.Mistress_of_the_Art_of_Death.html,21964,"Mistress of the Art of Death (Mistress of the Art of Death, #1)" +4.15,153,080073212X,good_reads:book,https://www.goodreads.com/author/show/965709.Julie_Lessman,2008,/genres/christian-fiction|/genres/historical-fiction|/genres/romance|/genres/christian|/genres/romance|/genres/christian-romance|/genres/christian-fiction|/genres/christian-historical-fiction|/genres/inspirational|/genres/romance|/genres/historical-romance|/genres/adult-fiction|/genres/fiction,dir47/2288562.A_Passion_Redeemed.html,1827,"A Passion Redeemed (Daughters of Boston, #2)" +3.89,1367,0425241130,good_reads:book,https://www.goodreads.com/author/show/9550.Laurell_K_Hamilton,2011,/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/horror|/genres/fiction|/genres/paranormal|/genres/shapeshifters|/genres/fantasy|/genres/supernatural,dir47/8935153-hit-list.html,18397,"Hit List (Anita Blake, Vampire Hunter #20)" +4.58,172,9690018868,good_reads:book,https://www.goodreads.com/author/show/4335300.Umera_Ahmed,2004,/genres/novels|/genres/romance|/genres/fiction|/genres/classics,dir47/3260388.html,1863,پیرِ کامل +4.00,818,1595142754,good_reads:book,https://www.goodreads.com/author/show/1375073.Angela_Morrison,2010,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/music|/genres/realistic-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/fiction,dir47/6586512-sing-me-to-sleep.html,4695,Sing Me to Sleep +3.91,1164,0061990655,good_reads:book,https://www.goodreads.com/author/show/2313312.Jocelyn_Davies,2011,/genres/paranormal|/genres/angels|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/teen,dir47/10429025-a-beautiful-dark.html,13052,"A Beautiful Dark (A Beautiful Dark, #1)" +4.06,1569,1401307450,good_reads:book,https://www.goodreads.com/author/show/2955.Anthony_Kiedis,2004,/genres/music|/genres/non-fiction|/genres/biography|/genres/autobiography|/genres/memoir|/genres/biography|/genres/autobiography|/genres/biography-memoir|/genres/music|/genres/rock-n-roll|/genres/adult|/genres/literature|/genres/american|/genres/book-club,dir47/96647.Scar_Tissue.html,29740,Scar Tissue +3.98,6763,0670022691,good_reads:book,https://www.goodreads.com/author/show/4536964.Amor_Towles,2011,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/new-york|/genres/adult-fiction|/genres/adult|/genres/literary-fiction|/genres/romance|/genres/novels|/genres/contemporary,dir47/10054335-rules-of-civility.html,52197,Rules of Civility +4.25,38,1888009195,good_reads:book,https://www.goodreads.com/author/show/125792.Euclid,1977,/genres/science|/genres/mathematics|/genres/science|/genres/classics|/genres/philosophy|/genres/history|/genres/reference|/genres/non-fiction|/genres/textbooks|/genres/literature|/genres/academic,dir47/214441.Euclid_s_Elements.html,1694,Euclid's Elements +3.91,1658,1416984488,good_reads:book,https://www.goodreads.com/author/show/3377941.Rick_Yancey,2009,/genres/horror|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/historical-fiction|/genres/mystery|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen|/genres/science-fiction,dir47/6457229-the-monstrumologist.html,8935,"The Monstrumologist (The Monstrumologist, #1)" +4.00,136,1591858143,good_reads:book,https://www.goodreads.com/author/show/5542.Wendy_Alec,2005,/genres/fantasy|/genres/fiction|/genres/christian|/genres/christian-fiction|/genres/religion|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/supernatural|/genres/science-fiction-fantasy|/genres/fantasy|/genres/paranormal|/genres/adult,dir47/328787.The_Fall_of_Lucifer.html,898,"The Fall of Lucifer (Chronicles of Brothers, #1)" +3.88,202,0805204261,good_reads:book,https://www.goodreads.com/author/show/5223.Franz_Kafka,1919,/genres/classics|/genres/non-fiction|/genres/biography|/genres/european-literature|/genres/german-literature|/genres/literature|/genres/autobiography|/genres/memoir|/genres/biography|/genres/autobiography,dir47/187569.Letter_to_His_Father.html,4605,Letter to His Father +4.24,478,0778327604,good_reads:book,https://www.goodreads.com/author/show/415967.Rachel_Vincent,2010,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/shapeshifters|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/romance|/genres/adult|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/shapeshifters|/genres/werewolves,dir47/6938348-shift.html,12010,"Shift (Shifters, #5)" +3.77,115,9025427731,good_reads:book,https://www.goodreads.com/author/show/534520.Dimitri_Verhulst,2006,/genres/fiction|/genres/european-literature|/genres/dutch-literature|/genres/literature|/genres/academic|/genres/school|/genres/roman|/genres/novels,dir47/1078784.De_helaasheid_der_dingen.html,3741,De helaasheid der dingen +3.97,639,1423134494,good_reads:book,https://www.goodreads.com/author/show/21911.Melissa_de_la_Cruz,2010,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/paranormal|/genres/angels|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/fiction,dir47/7817785-bloody-valentine.html,16870,"Bloody Valentine (Blue Bloods, #5.5)" +4.26,84,0156849054,good_reads:book,https://www.goodreads.com/author/show/10991.Stanis_aw_Lem,1957,/genres/science-fiction|/genres/fiction|/genres/humor|/genres/european-literature|/genres/polish-literature|/genres/short-stories|/genres/fantasy|/genres/philosophy|/genres/classics|/genres/science-fiction-fantasy|/genres/european-literature|/genres/german-literature,dir47/889418.The_Star_Diaries.html,2480,The Star Diaries +4.01,650,0451458222,good_reads:book,https://www.goodreads.com/author/show/60177.Guy_Gavriel_Kay,1984,/genres/fantasy|/genres/fiction|/genres/science-fiction-fantasy|/genres/cultural|/genres/canada|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction|/genres/adult|/genres/book-club|/genres/epic,dir47/104086.The_Summer_Tree.html,12203,"The Summer Tree (The Fionavar Tapestry, #1)" +4.10,164,0393315053,good_reads:book,https://www.goodreads.com/author/show/55118.Kenneth_Branagh,1996,/genres/classics|/genres/plays|/genres/fiction|/genres/drama|/genres/literature|/genres/academic|/genres/school|/genres/academic|/genres/read-for-school|/genres/poetry|/genres/plays|/genres/theatre|/genres/young-adult|/genres/high-school,dir47/117251.Hamlet.html,108518,Hamlet +4.57,86,0805390456,good_reads:book,https://www.goodreads.com/author/show/1429989.Richard_P_Feynman,1964,/genres/science|/genres/science|/genres/physics|/genres/non-fiction|/genres/reference|/genres/textbooks|/genres/science|/genres/mathematics|/genres/classics|/genres/science|/genres/popular-science,dir47/5546.The_Feynman_Lectures_on_Physics.html,3803,The Feynman Lectures on Physics +4.27,425,083081650X,good_reads:book,https://www.goodreads.com/author/show/1145220.J_I_Packer,1973,/genres/religion|/genres/christianity|/genres/non-fiction|/genres/religion|/genres/theology|/genres/religion|/genres/religion|/genres/faith|/genres/christian|/genres/spirituality|/genres/religion|/genres/god|/genres/classics|/genres/inspirational,dir47/139855.Knowing_God.html,18262,Knowing God +4.29,335,1442472235,good_reads:book,https://www.goodreads.com/author/show/5158478.Anonymous,2013,/genres/young-adult|/genres/fiction|/genres/realistic-fiction|/genres/health|/genres/mental-health|/genres/mental-health|/genres/mental-illness|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/drama|/genres/psychology|/genres/romance,dir47/16074809-letting-ana-go.html,2552,Letting Ana Go +3.45,1542,0316007021,good_reads:book,https://www.goodreads.com/author/show/2687.Dan_Simmons,2009,/genres/historical-fiction|/genres/fiction|/genres/horror|/genres/mystery|/genres/fantasy|/genres/thriller|/genres/suspense|/genres/european-literature|/genres/british-literature|/genres/gothic|/genres/literature|/genres/american,dir47/3222979-drood.html,9075,Drood +3.77,421,9799822939,good_reads:book,https://www.goodreads.com/author/show/164478.Dee,2004,/genres/fiction|/genres/novels|/genres/asian-literature|/genres/indonesian-literature|/genres/fantasy|/genres/literature|/genres/romance,dir47/1421046.Supernova.html,5032,"Supernova (Supernova, #3)" +4.01,532,0312291450,good_reads:book,https://www.goodreads.com/author/show/1362939.Bruce_Campbell,2001,/genres/non-fiction|/genres/biography|/genres/humor|/genres/biography|/genres/autobiography|/genres/autobiography|/genres/memoir|/genres/culture|/genres/film|/genres/media-tie-in|/genres/movies|/genres/humor|/genres/comedy|/genres/biography-memoir|/genres/history,dir47/34548.If_Chins_Could_Kill.html,9004,If Chins Could Kill +4.17,355,0785115315,good_reads:book,https://www.goodreads.com/author/show/18015.Joss_Whedon,2004,/genres/sequential-art|/genres/comics|/genres/sequential-art|/genres/graphic-novels|/genres/superheroes|/genres/marvel|/genres/comics|/genres/superheroes|/genres/comics|/genres/comic-book|/genres/marvel|/genres/x-men|/genres/graphic-novels-comics|/genres/fiction|/genres/fantasy|/genres/science-fiction,dir47/31979.Astonishing_X_Men_Vol_1.html,15759,"Astonishing X-Men, Vol. 1" +4.32,99,0749732105,good_reads:book,https://www.goodreads.com/author/show/10657.Enid_Blyton,1946,/genres/childrens|/genres/fantasy|/genres/fiction|/genres/classics|/genres/adventure,dir47/473623.The_Folk_of_the_Faraway_Tree.html,7546,"The Folk of the Faraway Tree (The Faraway Tree, #3)" +4.15,364,0553282980,good_reads:book,https://www.goodreads.com/author/show/52601.N_H_Kleinbaum,1989,/genres/fiction|/genres/classics|/genres/novels|/genres/young-adult|/genres/drama|/genres/media-tie-in|/genres/movies|/genres/academic|/genres/school|/genres/literature|/genres/contemporary|/genres/historical-fiction,dir47/67238.Dead_Poets_Society.html,22485,Dead Poets Society +3.89,7715,052595127X,good_reads:book,https://www.goodreads.com/author/show/26163.Jonathan_Tropper,2009,/genres/book-club|/genres/humor|/genres/contemporary|/genres/fiction|/genres/adult-fiction,dir47/6224935-this-is-where-i-leave-you.html,59716,This is Where I Leave You +3.91,636,0452288096,good_reads:book,https://www.goodreads.com/author/show/52717.Eva_Rice,2005,/genres/fiction|/genres/historical-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/european-literature|/genres/british-literature|/genres/book-club|/genres/young-adult|/genres/coming-of-age|/genres/young-adult|/genres/romance|/genres/adult|/genres/adult-fiction,dir47/259912.The_Lost_Art_of_Keeping_Secrets.html,4267,The Lost Art of Keeping Secrets +3.85,791,0340964987,good_reads:book,https://www.goodreads.com/author/show/1441.Ted_Dekker,2009,/genres/thriller|/genres/mystery|/genres/fiction|/genres/christian-fiction|/genres/suspense|/genres/christian|/genres/horror|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery-thriller,dir47/6884938-the-bride-collector.html,6554,The Bride Collector +4.52,300,1414358466,good_reads:book,https://www.goodreads.com/author/show/4862.Randy_Alcorn,2011,/genres/christian|/genres/christian-fiction|/genres/fiction|/genres/inspirational|/genres/contemporary|/genres/spirituality|/genres/religion|/genres/religion|/genres/faith|/genres/religion|/genres/christianity|/genres/parenting,dir47/10790276-courageous.html,6291,Courageous +4.08,287,0060841699,good_reads:book,https://www.goodreads.com/author/show/53047.Scott_Heim,1995,/genres/fiction|/genres/glbt|/genres/glbt|/genres/gay|/genres/glbt|/genres/queer|/genres/contemporary|/genres/dark|/genres/young-adult|/genres/thriller|/genres/romance|/genres/m-m-romance|/genres/novels,dir47/92365.Mysterious_Skin.html,5513,Mysterious Skin +4.14,1019,0316154520,good_reads:book,https://www.goodreads.com/author/show/52458.Luis_Alberto_Urrea,2005,/genres/historical-fiction|/genres/fiction|/genres/book-club|/genres/magical-realism|/genres/religion|/genres/novels|/genres/adult|/genres/literary-fiction|/genres/womens|/genres/cultural|/genres/latin-american,dir47/91289.The_Hummingbird_s_Daughter.html,5926,The Hummingbird's Daughter +4.26,145,0800732138,good_reads:book,https://www.goodreads.com/author/show/965709.Julie_Lessman,2009,/genres/christian-fiction|/genres/historical-fiction|/genres/christian|/genres/romance|/genres/romance|/genres/christian-romance|/genres/christian-fiction|/genres/christian-historical-fiction|/genres/romance|/genres/historical-romance|/genres/inspirational|/genres/adult-fiction|/genres/fiction,dir47/5497945-a-passion-denied.html,1273,"A Passion Denied (Daughters of Boston, #3)" +4.16,1540,1423161610,good_reads:book,https://www.goodreads.com/author/show/10896.Eoin_Colfer,2012,/genres/fiction|/genres/young-adult|/genres/science-fiction|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/childrens|/genres/paranormal|/genres/fairies|/genres/fantasy|/genres/young-adult|/genres/teen|/genres/childrens|/genres/middle-grade,dir47/9307674-the-last-guardian.html,19431,"The Last Guardian (Artemis Fowl, #8)" +4.51,985,0778314103,good_reads:book,https://www.goodreads.com/author/show/4480131.Tiffany_Reisz,2012,/genres/erotica|/genres/bdsm|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/dark|/genres/romance|/genres/m-m-romance|/genres/contemporary|/genres/adult|/genres/romance|/genres/erotic-romance|/genres/romance|/genres/contemporary-romance|/genres/fiction,dir47/15704485-the-prince.html,6690,"The Prince (The Original Sinners, #3)" +3.97,568,0312997132,good_reads:book,https://www.goodreads.com/author/show/4820.Jeffrey_Archer,1976,/genres/fiction|/genres/thriller|/genres/mystery|/genres/mystery|/genres/crime|/genres/suspense|/genres/drama|/genres/novels|/genres/contemporary|/genres/thriller|/genres/mystery-thriller|/genres/modern,dir47/78982.Not_a_Penny_More_Not_a_Penny_Less.html,20622,"Not a Penny More, Not a Penny Less" +3.74,68,061598052X,good_reads:book,https://www.goodreads.com/author/show/8054971.Victoria_Dougherty,2014,/genres/historical-fiction|/genres/suspense|/genres/thriller|/genres/spy-thriller|/genres/espionage|/genres/mystery|/genres/fiction|/genres/adult|/genres/thriller|/genres/spy-thriller|/genres/adventure|/genres/action,dir47/21457935-the-bone-church.html,221,The Bone Church +4.19,433,0312938837,good_reads:book,https://www.goodreads.com/author/show/4430.Sherrilyn_Kenyon,2009,/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/paranormal|/genres/demons|/genres/fiction,dir47/3992020-dream-warrior.html,15771,"Dream Warrior (Dream-Hunter, #4)" +4.10,564,0060766212,good_reads:book,https://www.goodreads.com/author/show/146374.Joseph_Delaney,2005,/genres/fantasy|/genres/young-adult|/genres/horror|/genres/fiction|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/paranormal|/genres/childrens|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/witches|/genres/adventure,dir47/256598.Curse_of_the_Bane.html,13458,"Curse of the Bane (The Last Apprentice / Wardstone Chronicles, #2)" +3.71,87,0395044995,good_reads:book,https://www.goodreads.com/author/show/41616.Friedrich_D_rrenmatt,1950,/genres/european-literature|/genres/german-literature|/genres/classics|/genres/fiction|/genres/mystery|/genres/crime|/genres/mystery|/genres/academic|/genres/school|/genres/academic|/genres/read-for-school|/genres/novels|/genres/literature|/genres/mystery|/genres/detective,dir47/35090.Der_Richter_und_sein_Henker.html,3256,Der Richter und sein Henker +4.36,155,0385479670,good_reads:book,https://www.goodreads.com/author/show/4443885.The_Catholic_Church,1992,/genres/christianity|/genres/catholic|/genres/religion|/genres/theology|/genres/religion|/genres/religion|/genres/christianity|/genres/reference|/genres/christian|/genres/religion|/genres/faith|/genres/non-fiction|/genres/spirituality|/genres/philosophy,dir47/110795.Catechism_of_the_Catholic_Church.html,5068,Catechism of the Catholic Church +4.34,130,0811201856,good_reads:book,https://www.goodreads.com/author/show/72605.Arthur_Rimbaud,1837,/genres/poetry|/genres/cultural|/genres/france|/genres/classics|/genres/literature|/genres/fiction|/genres/literature|/genres/19th-century|/genres/european-literature|/genres/french-literature|/genres/glbt|/genres/queer|/genres/philosophy|/genres/surreal,dir47/128461.A_Season_in_Hell_The_Drunken_Boat.html,5172,A Season in Hell/The Drunken Boat +4.24,124,0292764995,good_reads:book,https://www.goodreads.com/author/show/5158478.Anonymous,1200,/genres/poetry|/genres/classics|/genres/history|/genres/religion|/genres/historical-fiction|/genres/medieval|/genres/literature|/genres/european-literature|/genres/scandinavian-literature|/genres/non-fiction|/genres/folklore|/genres/epic,dir47/381112.The_Poetic_Edda.html,3201,The Poetic Edda +3.81,150,,good_reads:book,https://www.goodreads.com/author/show/562271.Jos_Rodrigues_dos_Santos,2006,/genres/romance|/genres/fiction|/genres/mystery|/genres/thriller|/genres/european-literature|/genres/portuguese-literature|/genres/historical-fiction|/genres/cultural|/genres/portugal|/genres/religion|/genres/adventure|/genres/novels,dir47/2430907.A_F_rmula_de_Deus.html,2738,A Fórmula de Deus (Tomás Noronha #2) +4.18,333,0316013870,good_reads:book,https://www.goodreads.com/author/show/5816.Darren_Shan,2006,/genres/horror|/genres/fantasy|/genres/young-adult|/genres/paranormal|/genres/demons|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/paranormal|/genres/adventure|/genres/shapeshifters|/genres/werewolves,dir47/164718.Slawter.html,7946,"Slawter (The Demonata, #3)" +4.13,27,0345362497,good_reads:book,https://www.goodreads.com/author/show/23284.Julian_May,1995,/genres/science-fiction|/genres/fantasy|/genres/fiction|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/space-opera|/genres/speculative-fiction|/genres/philosophy|/genres/metaphysics|/genres/novels|/genres/science-fiction|/genres/time-travel,dir47/41335.Magnificat.html,1930,"Magnificat (Galactic Milieu Trilogy, #3)" +4.10,54,0345362470,good_reads:book,https://www.goodreads.com/author/show/23284.Julian_May,1991,/genres/science-fiction|/genres/fantasy|/genres/fiction|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/space-opera|/genres/speculative-fiction|/genres/novels|/genres/science-fiction|/genres/time-travel,dir47/1169859.Jack_the_Bodiless.html,2534,Jack the Bodiless +4.26,1528,1482658143,good_reads:book,https://www.goodreads.com/author/show/5829056.Amy_Harmon,2013,/genres/new-adult|/genres/romance|/genres/contemporary|/genres/young-adult|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/high-school,dir47/17443673-a-different-blue.html,10439,A Different Blue +4.18,1481,,good_reads:book,https://www.goodreads.com/author/show/2982291._,2007,/genres/novels|/genres/romance|/genres/romantic|/genres/family,dir47/6604887.html,9517,أنت لي +3.84,247,0804119430,good_reads:book,https://www.goodreads.com/author/show/1339.Jane_Smiley,1999,/genres/fiction|/genres/animals|/genres/horses|/genres/animals|/genres/contemporary|/genres/sports|/genres/horse-racing|/genres/novels|/genres/modern|/genres/literary-fiction|/genres/literature|/genres/american|/genres/sports-and-games|/genres/sports,dir47/32226.Horse_Heaven.html,3665,Horse Heaven +3.60,408,0099422697,good_reads:book,https://www.goodreads.com/author/show/463.Philip_Roth,2001,/genres/fiction|/genres/literature|/genres/novels|/genres/literature|/genres/american|/genres/contemporary|/genres/literary-fiction,dir47/29776.The_Dying_Animal.html,4452,The Dying Animal +3.59,532,0006513905,good_reads:book,https://www.goodreads.com/author/show/40098.Luke_Rhinehart,1971,/genres/fiction|/genres/novels|/genres/psychology|/genres/thriller|/genres/contemporary|/genres/literature|/genres/american|/genres/philosophy|/genres/classics|/genres/humor,dir48/70912.The_Dice_Man.html,8182,The Dice Man +3.76,602,0872862097,good_reads:book,https://www.goodreads.com/author/show/20842.Georges_Bataille,1928,/genres/fiction|/genres/adult-fiction|/genres/erotica|/genres/cultural|/genres/france|/genres/literature|/genres/european-literature|/genres/french-literature|/genres/classics|/genres/horror|/genres/novels|/genres/classics|/genres/cult-classics,dir48/436806.Story_of_the_Eye.html,7397,Story of the Eye +4.19,54,848966627X,good_reads:book,https://www.goodreads.com/author/show/7816.Fernando_Pessoa,1934,/genres/poetry|/genres/european-literature|/genres/portuguese-literature|/genres/cultural|/genres/portugal|/genres/classics|/genres/literature|/genres/fiction|/genres/academic|/genres/read-for-school|/genres/academic|/genres/school|/genres/classics|/genres/classic-literature|/genres/epic,dir48/592221.Mensagem_Poemas_esot_ricos.html,2913,Mensagem - Poemas esotéricos +3.99,280,0441006108,good_reads:book,https://www.goodreads.com/author/show/5329.Brian_Jacques,1990,/genres/fiction|/genres/young-adult|/genres/fantasy|/genres/childrens|/genres/animals|/genres/adventure|/genres/science-fiction-fantasy|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/young-adult|/genres/teen,dir48/201342.Mattimeo.html,20402,"Mattimeo (Redwall, #3)" +4.14,1100,0786849002,good_reads:book,https://www.goodreads.com/author/show/11137.Adam_Rex,2007,/genres/science-fiction|/genres/young-adult|/genres/humor|/genres/fiction|/genres/childrens|/genres/middle-grade|/genres/fantasy|/genres/childrens|/genres/adventure|/genres/childrens|/genres/juvenile|/genres/science-fiction|/genres/aliens,dir48/1194366.The_True_Meaning_of_Smekday.html,4523,The True Meaning of Smekday +4.03,514,1416983090,good_reads:book,https://www.goodreads.com/author/show/19954.Christopher_Pike,2010,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/horror|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/teen,dir48/6424184-thirst-no-2.html,19537,"Thirst No. 2 (Thirst, #2)" +3.62,2637,0385337930,good_reads:book,https://www.goodreads.com/author/show/721.John_Grisham,2001,/genres/mystery|/genres/fiction|/genres/historical-fiction|/genres/thriller|/genres/suspense|/genres/adult-fiction|/genres/book-club|/genres/drama|/genres/novels|/genres/adult,dir48/5360.A_Painted_House.html,49704,A Painted House +3.51,1640,0316176044,good_reads:book,https://www.goodreads.com/author/show/4366471.Sarah_Blakley_Cartwright,2011,/genres/fantasy|/genres/young-adult|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fairy-tales|/genres/mystery|/genres/fiction|/genres/horror|/genres/retellings,dir48/9349915-red-riding-hood.html,12542,Red Riding Hood +3.95,116,0460878905,good_reads:book,https://www.goodreads.com/author/show/44202.Mikhail_Sholokhov,1940,/genres/cultural|/genres/russia|/genres/fiction|/genres/classics|/genres/literature|/genres/russian-literature|/genres/historical-fiction|/genres/literature|/genres/war|/genres/novels|/genres/nobel-prize|/genres/literature|/genres/20th-century,dir48/78024.Quiet_Flows_the_Don.html,5066,Quiet Flows the Don +3.37,1098,0525423389,good_reads:book,https://www.goodreads.com/author/show/2741432.Nova_Ren_Suma,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/mystery|/genres/contemporary|/genres/fiction|/genres/magical-realism|/genres/horror,dir48/8603765-imaginary-girls.html,4501,Imaginary Girls +4.35,1422,1476740488,good_reads:book,https://www.goodreads.com/author/show/4866520.K_A_Tucker,2013,/genres/new-adult|/genres/romance|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/academic|/genres/college|/genres/young-adult|/genres/sociology|/genres/abuse|/genres/womens-fiction|/genres/chick-lit|/genres/drama|/genres/love,dir48/17302495-one-tiny-lie.html,15393,"One Tiny Lie (Ten Tiny Breaths, #2)" +4.26,229,0972028730,good_reads:book,https://www.goodreads.com/author/show/100326.Vladimir_Bartol,1936,/genres/fiction|/genres/historical-fiction|/genres/novels|/genres/classics|/genres/literature,dir48/171970.Alamut.html,2560,Alamut +4.24,925,,good_reads:book,https://www.goodreads.com/author/show/375626.Lara_Adrian,2013,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/adult-fiction|/genres/erotica,dir48/13170607-edge-of-dawn.html,7401,"Edge of Dawn (Midnight Breed, #11)" +3.80,555,1421808307,good_reads:book,https://www.goodreads.com/author/show/3706.George_Orwell,1934,/genres/fiction|/genres/classics|/genres/literature|/genres/historical-fiction|/genres/novels|/genres/cultural|/genres/asia|/genres/travel|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/20th-century|/genres/literary-fiction,dir48/9650.Burmese_Days.html,8912,Burmese Days +3.85,412,0543895882,good_reads:book,https://www.goodreads.com/author/show/6989.Rudyard_Kipling,1897,/genres/classics|/genres/fiction|/genres/adventure|/genres/literature|/genres/historical-fiction|/genres/young-adult|/genres/childrens|/genres/literature|/genres/19th-century|/genres/novels|/genres/european-literature|/genres/british-literature,dir48/34057.Captains_Courageous.html,11310,Captains Courageous +3.86,810,0375707425,good_reads:book,https://www.goodreads.com/author/show/4771489.S_ndor_M_rai,1942,/genres/fiction|/genres/classics|/genres/cultural|/genres/hungary|/genres/historical-fiction|/genres/european-literature|/genres/hungarian-literature|/genres/literature|/genres/book-club|/genres/romance,dir48/783505.Embers.html,6410,Embers +4.08,129,0786932171,good_reads:book,https://www.goodreads.com/author/show/869.Margaret_Weis,1986,/genres/fantasy|/genres/dungeons-and-dragons|/genres/dragonlance|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/dragons|/genres/fantasy|/genres/magic|/genres/role-playing-games|/genres/dungeons-and-dragons|/genres/adventure,dir48/93768.War_of_the_Twins.html,17698,"War of the Twins (Dragonlance: Legends, #2)" +4.04,609,1878424114,good_reads:book,https://www.goodreads.com/author/show/138207.Deepak_Chopra,4,/genres/spirituality|/genres/self-help|/genres/non-fiction|/genres/philosophy|/genres/inspirational|/genres/self-help|/genres/personal-development|/genres/spirituality|/genres/new-age|/genres/psychology|/genres/religion|/genres/business,dir48/773038.The_Seven_Spiritual_Laws_of_Success.html,29867,The Seven Spiritual Laws of Success +4.12,289,0517887290,good_reads:book,https://www.goodreads.com/author/show/18520.Graham_Hancock,1995,/genres/non-fiction|/genres/history|/genres/science|/genres/fantasy|/genres/mythology|/genres/science-fiction|/genres/alternate-history|/genres/religion|/genres/fantasy|/genres/paranormal|/genres/anthropology|/genres/occult|/genres/science-fiction|/genres/aliens,dir48/53325.Fingerprints_of_the_Gods.html,3735,Fingerprints of the Gods +4.35,114,0679767878,good_reads:book,https://www.goodreads.com/author/show/16747.Robert_Musil,1930,/genres/fiction|/genres/classics|/genres/literature|/genres/european-literature|/genres/german-literature|/genres/novels|/genres/philosophy|/genres/literature|/genres/20th-century,dir48/191940.The_Man_Without_Qualities_Vol_1.html,1320,The Man Without Qualities Vol. 1 +3.82,1071,0385337639,good_reads:book,https://www.goodreads.com/author/show/5619.Mary_Lawson,2002,/genres/fiction|/genres/book-club|/genres/cultural|/genres/canada|/genres/contemporary|/genres/adult-fiction|/genres/novels|/genres/literary-fiction|/genres/family|/genres/young-adult|/genres/coming-of-age|/genres/adult,dir48/8646.Crow_Lake.html,9136,Crow Lake +3.87,695,0385334230,good_reads:book,https://www.goodreads.com/author/show/2778055.Kurt_Vonnegut,1976,/genres/fiction|/genres/science-fiction|/genres/humor|/genres/classics|/genres/novels|/genres/science-fiction|/genres/dystopia|/genres/literature|/genres/american|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fantasy|/genres/humor|/genres/comedy,dir48/9595.Slapstick_or_Lonesome_No_More_.html,22834,Slapstick or Lonesome No More! +4.04,410,0099437597,good_reads:book,https://www.goodreads.com/author/show/7970.Richard_Brautigan,1968,/genres/fiction|/genres/poetry|/genres/literature|/genres/literature|/genres/american|/genres/fantasy|/genres/novels,dir48/46182.In_Watermelon_Sugar.html,7119,In Watermelon Sugar +4.14,516,0689857985,good_reads:book,https://www.goodreads.com/author/show/14617.Margaret_Peterson_Haddix,2006,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/adventure|/genres/childrens|/genres/young-adult|/genres/teen|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile,dir48/303455.Among_the_Free.html,9944,"Among the Free (Shadow Children, #7)" +4.14,236,0821779370,good_reads:book,https://www.goodreads.com/author/show/40881.Alexandra_Ivy,2007,/genres/paranormal|/genres/vampires|/genres/paranormal|/genres/demons|/genres/romance|/genres/paranormal-romance|/genres/adult|/genres/paranormal|/genres/witches|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/shapeshifters|/genres/contemporary,dir48/1599297.Embrace_The_Darkness.html,5859,"Embrace The Darkness (Guardians of Eternity, #2)" +3.90,975,0316011274,good_reads:book,https://www.goodreads.com/author/show/52989.Julie_Anne_Peters,2004,/genres/young-adult|/genres/glbt|/genres/fiction|/genres/glbt|/genres/queer|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/contemporary|/genres/trans|/genres/transgender|/genres/glbt|/genres/trans|/genres/gender,dir48/316445.Luna.html,13281,Luna +3.91,626,1579126294,good_reads:book,https://www.goodreads.com/author/show/123715.Agatha_Christie,1950,/genres/mystery|/genres/crime|/genres/mystery|/genres/classics|/genres/mystery|/genres/detective|/genres/european-literature|/genres/british-literature|/genres/thriller|/genres/mystery-thriller|/genres/thriller|/genres/mystery|/genres/cozy-mystery|/genres/adult|/genres/fiction,dir48/16298.A_Murder_Is_Announced.html,18821,"A Murder Is Announced (Miss Marple, #5)" +3.89,466,0060512180,good_reads:book,https://www.goodreads.com/author/show/22393.Naomi_Wolf,1990,/genres/feminism|/genres/non-fiction|/genres/sociology|/genres/womens|/genres/gender|/genres/psychology|/genres/gender|/genres/gender-studies|/genres/feminism|/genres/womens-studies|/genres/politics|/genres/philosophy,dir48/39926.The_Beauty_Myth.html,10062,The Beauty Myth +3.87,1321,1442403152,good_reads:book,https://www.goodreads.com/author/show/88922.Kenneth_Oppel,2011,/genres/young-adult|/genres/fantasy|/genres/historical-fiction|/genres/horror|/genres/fiction|/genres/gothic|/genres/adventure|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/paranormal|/genres/science-fiction,dir48/9779094-this-dark-endeavor.html,7080,"This Dark Endeavor (The Apprenticeship of Victor Frankenstein, #1)" +4.21,264,0618057072,good_reads:book,https://www.goodreads.com/author/show/12810.Julian_Jaynes,1976,/genres/psychology|/genres/science|/genres/philosophy|/genres/non-fiction|/genres/history|/genres/biology|/genres/neuroscience|/genres/religion|/genres/neuroscience|/genres/brain,dir48/22478.The_Origin_of_Consciousness_in_the_Breakdown_of_the_Bicameral_Mind.html,1995,The Origin of Consciousness in the Breakdown of the Bicameral Mind +4.56,622,1423119509,good_reads:book,https://www.goodreads.com/author/show/15872.Rick_Riordan,2009,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/mythology|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/mythology|/genres/greek-mythology|/genres/science-fiction-fantasy|/genres/adventure|/genres/childrens|/genres/young-adult|/genres/teen,dir48/6443349-percy-jackson-and-the-olympians-boxed-set.html,13793,"Percy Jackson and the Olympians Boxed Set (Percy Jackson and the Olympians, #1-5)" +4.36,121,9870415792,good_reads:book,https://www.goodreads.com/author/show/55791.Florencia_Bonelli,2011,/genres/romance|/genres/cultural|/genres/france|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/adventure|/genres/epic|/genres/fiction,dir48/11324290-caballo-de-fuego-par-s.html,887,"Caballo de Fuego. París (Caballo de Fuego, #1)" +4.13,227,055327094X,good_reads:book,https://www.goodreads.com/author/show/19708.Leon_Uris,1970,/genres/fiction|/genres/historical-fiction|/genres/war|/genres/literature|/genres/jewish|/genres/world-war-ii|/genres/holocaust|/genres/mystery|/genres/mystery|/genres/crime|/genres/literature|/genres/novels|/genres/history|/genres/world-war-ii,dir48/426825.QB_VII.html,17800,QB VII +4.54,512,1563892871,good_reads:book,https://www.goodreads.com/author/show/1221698.Neil_Gaiman,1996,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fantasy|/genres/fiction|/genres/graphic-novels-comics|/genres/horror|/genres/comics|/genres/comic-book|/genres/fantasy|/genres/mythology|/genres/science-fiction-fantasy|/genres/fantasy|/genres/urban-fantasy,dir48/25104.The_Sandman_Vol_10.html,23979,"The Sandman, Vol. 10 (The Sandman #10)" +4.38,4406,0618346260,good_reads:book,https://www.goodreads.com/author/show/656983.J_R_R_Tolkien,1954,/genres/classics|/genres/fiction|/genres/adventure|/genres/science-fiction-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/literature|/genres/epic,dir48/15241.The_Two_Towers.html,359463,"The Two Towers (The Lord of the Rings, #2)" +3.83,397,1578568234,good_reads:book,https://www.goodreads.com/author/show/100752.Donita_K_Paul,2004,/genres/fantasy|/genres/fantasy|/genres/dragons|/genres/young-adult|/genres/christian|/genres/christian-fiction|/genres/fiction|/genres/fantasy|/genres/magic|/genres/adventure|/genres/childrens,dir48/172734.DragonSpell.html,6855,"DragonSpell (DragonKeeper Chronicles, #1)" +3.61,641,0452281431,good_reads:book,https://www.goodreads.com/author/show/437669.A_N_Roquelaure,1984,/genres/fiction|/genres/fantasy|/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/adult|/genres/erotica|/genres/bdsm|/genres/fantasy|/genres/fairy-tales|/genres/sexuality|/genres/adult-fiction|/genres/romance|/genres/m-m-romance,dir48/18750.Beauty_s_Punishment.html,19263,"Beauty's Punishment (Sleeping Beauty, #2)" +3.85,1434,0545240778,good_reads:book,https://www.goodreads.com/author/show/2983974.Elizabeth_Eulberg,2011,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/realistic-fiction|/genres/retellings|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/high-school|/genres/young-adult|/genres/young-adult-romance,dir48/8369681-prom-and-prejudice.html,12318,Prom and Prejudice +4.30,477,1595540350,good_reads:book,https://www.goodreads.com/author/show/1441.Ted_Dekker,2004,/genres/fantasy|/genres/christian-fiction|/genres/fiction|/genres/christian|/genres/thriller|/genres/science-fiction|/genres/suspense|/genres/adult|/genres/mystery|/genres/adventure,dir48/125955.White.html,17583,"White (The Circle, #3)" +4.23,1295,,good_reads:book,https://www.goodreads.com/author/show/7033774.Kimberly_Lauren,2013,/genres/new-adult|/genres/romance|/genres/academic|/genres/college|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/sports-and-games|/genres/sports|/genres/young-adult|/genres/adult|/genres/womens-fiction|/genres/chick-lit|/genres/love,dir48/17729712-beautiful-broken-rules.html,16718,"Beautiful Broken Rules (Broken, #1)" +4.06,1322,014132502X,good_reads:book,https://www.goodreads.com/author/show/162326.Charlie_Higson,2009,/genres/horror|/genres/zombies|/genres/young-adult|/genres/horror|/genres/science-fiction|/genres/dystopia|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fiction|/genres/science-fiction|/genres/fantasy,dir48/6605625-the-enemy.html,10887,"The Enemy (The Enemy, #1)" +4.24,129,1421506300,good_reads:book,https://www.goodreads.com/author/show/1978.Tsugumi_Ohba,2005,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fantasy|/genres/sequential-art|/genres/manga|/genres/mystery|/genres/fiction|/genres/horror|/genres/young-adult|/genres/thriller|/genres/fantasy|/genres/supernatural,dir48/13622.Death_Note_Vol_9.html,7457,"Death Note, Vol. 9 (Death Note, #9)" +3.76,50,1416500391,good_reads:book,https://www.goodreads.com/author/show/1831.Jonathan_Swift,2005,/genres/classics|/genres/fiction|/genres/fantasy|/genres/novels|/genres/literature|/genres/adventure|/genres/politics|/genres/writing|/genres/essays|/genres/humor|/genres/adult-fiction,dir48/2678.Gulliver_s_Travels_A_Modest_Proposal.html,1511,Gulliver's Travels / A Modest Proposal +4.40,449,0310247527,good_reads:book,https://www.goodreads.com/author/show/3159984.Karen_Kingsbury,2003,/genres/christian-fiction|/genres/christian|/genres/fiction|/genres/romance|/genres/inspirational|/genres/contemporary|/genres/historical-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/christian-romance|/genres/adult-fiction,dir48/97862.One_Tuesday_Morning.html,10836,"One Tuesday Morning (9/11 Series, #1)" +3.96,621,0553805568,good_reads:book,https://www.goodreads.com/author/show/458771.Linwood_Barclay,2008,/genres/thriller|/genres/mystery|/genres/mystery|/genres/crime|/genres/fiction|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/cultural|/genres/canada|/genres/contemporary|/genres/adventure|/genres/adult,dir48/3454252-too-close-to-home.html,6922,Too Close to Home +4.16,2387,,good_reads:book,https://www.goodreads.com/author/show/38550.Brandon_Sanderson,2007,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/adult,dir48/1268479.Warbreaker.html,32632,"Warbreaker (Warbreaker, #1)" +3.89,243,1400303710,good_reads:book,https://www.goodreads.com/author/show/5544.Frank_E_Peretti,2001,/genres/christian-fiction|/genres/christian|/genres/fiction|/genres/young-adult|/genres/mystery|/genres/thriller|/genres/horror|/genres/suspense|/genres/religion|/genres/young-adult|/genres/teen,dir48/327684.Hangman_s_Curse.html,5435,"Hangman's Curse (Veritas Project, #1)" +4.12,176,0812510488,good_reads:book,https://www.goodreads.com/author/show/19954.Christopher_Pike,1992,/genres/horror|/genres/fiction|/genres/science-fiction|/genres/young-adult|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/thriller|/genres/suspense|/genres/fantasy|/genres/supernatural,dir48/137975.The_Season_of_Passage.html,2260,The Season of Passage +4.13,31,0330322990,good_reads:book,https://www.goodreads.com/author/show/23284.Julian_May,1994,/genres/science-fiction|/genres/fantasy|/genres/fiction|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/space-opera|/genres/speculative-fiction|/genres/novels|/genres/science-fiction|/genres/time-travel,dir48/378414.Diamond_Mask.html,2290,"Diamond Mask (Galactic Milieu Trilogy, #2)" +3.84,954,0316252905,good_reads:book,https://www.goodreads.com/author/show/2001717.Daphne_du_Maurier,1935,/genres/classics|/genres/fiction|/genres/mystery|/genres/gothic|/genres/romance|/genres/suspense|/genres/novels|/genres/historical-fiction|/genres/european-literature|/genres/british-literature|/genres/book-club,dir48/18869967-jamaica-inn.html,12406,Jamaica Inn +4.18,468,,good_reads:book,https://www.goodreads.com/author/show/298438.Kerstin_Gier,2013,/genres/fantasy|/genres/young-adult|/genres/european-literature|/genres/german-literature|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy,dir48/17566243-silber.html,2731,"Silber (Silber, #1)" +3.78,2391,0755308441,good_reads:book,https://www.goodreads.com/author/show/91236.Maggie_O_Farrell,2006,/genres/fiction|/genres/book-club|/genres/historical-fiction|/genres/mystery|/genres/contemporary,dir48/250729.The_Vanishing_Act_of_Esme_Lennox.html,13963,The Vanishing Act of Esme Lennox +4.12,346,1557488150,good_reads:book,https://www.goodreads.com/author/show/5107618.Charles_M_Sheldon,1896,/genres/christian|/genres/fiction|/genres/christian-fiction|/genres/classics|/genres/religion|/genres/religion|/genres/christianity|/genres/religion|/genres/faith|/genres/religion|/genres/theology|/genres/spirituality|/genres/inspirational,dir48/223838.In_His_Steps.html,13293,In His Steps +3.96,313,0553278118,good_reads:book,https://www.goodreads.com/author/show/15516.Erich_Segal,1988,/genres/fiction|/genres/romance|/genres/medical|/genres/drama|/genres/contemporary|/genres/novels|/genres/health|/genres/medicine|/genres/asian-literature|/genres/indonesian-literature|/genres/classics|/genres/adult,dir48/91201.Doctors.html,8104,Doctors +4.19,41,0140278486,good_reads:book,https://www.goodreads.com/author/show/26878.Isobelle_Carmody,1997,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction|/genres/science-fiction-fantasy|/genres/romance|/genres/childrens|/genres/young-adult|/genres/young-adult-fantasy|/genres/cultural|/genres/australia,dir48/198581.Darkfall.html,1367,"Darkfall (The Legendsong, #1)" +3.90,66,034547046X,good_reads:book,https://www.goodreads.com/author/show/82969.Ken_Akamatsu,2003,/genres/sequential-art|/genres/manga|/genres/fantasy|/genres/sequential-art|/genres/graphic-novels|/genres/humor|/genres/comedy|/genres/sequential-art|/genres/comics|/genres/fiction|/genres/comics-manga|/genres/fantasy|/genres/magic|/genres/romance|/genres/media-tie-in|/genres/anime,dir48/1373315.Negima_Magister_Negi_Magi_Vol_1.html,2780,"Negima! Magister Negi Magi, Vol. 1" +4.45,210,0141180927,good_reads:book,https://www.goodreads.com/author/show/1020792.Antoine_de_Saint_Exup_ry,1943,/genres/classics|/genres/fiction|/genres/fantasy|/genres/childrens|/genres/literature|/genres/philosophy|/genres/cultural|/genres/france|/genres/young-adult|/genres/classics|/genres/modern-classics|/genres/novels,dir48/3241368-the-little-prince-letter-to-a-hostage.html,4314,The Little Prince & Letter to a Hostage +3.97,546,0843960051,good_reads:book,https://www.goodreads.com/author/show/28569.Jennifer_Ashley,2010,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/shapeshifters|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/adult|/genres/shapeshifters|/genres/werewolves|/genres/contemporary|/genres/fiction,dir48/6668868-pride-mates.html,8984,"Pride Mates (Shifters Unbound, #1)" +3.66,287,0060817585,good_reads:book,https://www.goodreads.com/author/show/53024.Shan_Sa,2003,/genres/historical-fiction|/genres/cultural|/genres/china|/genres/fiction|/genres/cultural|/genres/asia|/genres/literature|/genres/asian-literature|/genres/novels|/genres/contemporary|/genres/cultural|/genres/france|/genres/asian-literature|/genres/chinese-literature|/genres/cultural,dir48/815786.Empress.html,3290,Empress +4.51,3380,0451464400,good_reads:book,https://www.goodreads.com/author/show/10746.Jim_Butcher,2012,/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/mystery|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural,dir48/12216302-cold-days.html,38219,"Cold Days (The Dresden Files, #14)" +3.74,529,0380815923,good_reads:book,https://www.goodreads.com/author/show/9432.Joanne_Harris,1999,/genres/fiction|/genres/magical-realism|/genres/cultural|/genres/france|/genres/contemporary|/genres/fantasy|/genres/womens-fiction|/genres/chick-lit|/genres/food-and-drink|/genres/food|/genres/novels,dir48/15101.Blackberry_Wine.html,8066,Blackberry Wine +3.89,752,0446580287,good_reads:book,https://www.goodreads.com/author/show/12577.Douglas_Preston,2007,/genres/thriller|/genres/fiction|/genres/mystery|/genres/horror|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/crime|/genres/adventure,dir48/39028.The_Wheel_of_Darkness.html,14343,"The Wheel of Darkness (Pendergast, #8)" +3.38,1307,,good_reads:book,https://www.goodreads.com/author/show/73947._,2013,/genres/novels|/genres/fiction|/genres/social,dir48/17524166.html,7494,نادي السيارات +4.56,8,,good_reads:book,https://www.goodreads.com/author/show/4087195.Starr_Gardinier_Reina,2010,,dir48/8466114-in-the-name-of-revenge.html,16,"In the Name of Revenge (Ivanovich, #1)" +4.03,919,0751531219,good_reads:book,https://www.goodreads.com/author/show/1238.Nelson_DeMille,1990,/genres/fiction|/genres/thriller|/genres/mystery|/genres/thriller|/genres/mystery-thriller|/genres/suspense|/genres/book-club|/genres/mystery|/genres/crime,dir48/33813.The_Gold_Coast.html,15230,The Gold Coast +4.03,428,0340877480,good_reads:book,https://www.goodreads.com/author/show/19954.Christopher_Pike,1989,/genres/young-adult|/genres/horror|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/mystery|/genres/fantasy|/genres/thriller|/genres/paranormal|/genres/ghosts|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen,dir48/84076.Remember_Me.html,7932,"Remember Me (Remember Me, #1)" +4.43,1497,0451462564,good_reads:book,https://www.goodreads.com/author/show/10746.Jim_Butcher,2009,/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/mystery|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/supernatural|/genres/science-fiction-fantasy|/genres/paranormal|/genres/wizards,dir48/3475161-turn-coat.html,44939,"Turn Coat (The Dresden Files, #11)" +4.20,178,1442406291,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2010,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/mystery|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/science-fiction,dir48/7194943-vanished.html,3094,Vanished +3.89,3164,0060889578,good_reads:book,https://www.goodreads.com/author/show/798.Steven_D_Levitt,2009,/genres/non-fiction|/genres/economics|/genres/business|/genres/science|/genres/sociology|/genres/psychology|/genres/culture|/genres/politics|/genres/social-science|/genres/social,dir48/6402364-superfreakonomics.html,56744,SuperFreakonomics +4.47,68,,good_reads:book,https://www.goodreads.com/author/show/55791.Florencia_Bonelli,2011,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/cultural|/genres/africa,dir48/12511877-caballo-de-fuego.html,733,"Caballo de Fuego (Caballo de Fuego, #2)" +3.87,626,,good_reads:book,https://www.goodreads.com/author/show/3137322.Fyodor_Dostoyevsky,1866,/genres/fiction|/genres/cultural|/genres/russia|/genres/literature|/genres/russian-literature|/genres/novels|/genres/classics|/genres/literature|/genres/19th-century,dir48/12857.The_Gambler.html,17403,The Gambler +4.29,402,0007466064,good_reads:book,https://www.goodreads.com/author/show/346732.George_R_R_Martin,2011,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy,dir48/13337715-a-dance-with-dragons.html,7620,"A Dance with Dragons (A Song of Ice and Fire #5, Part 1 of 2)" +3.99,768,038533351X,good_reads:book,https://www.goodreads.com/author/show/2778055.Kurt_Vonnegut,1987,/genres/fiction|/genres/classics|/genres/literature|/genres/humor|/genres/novels|/genres/science-fiction|/genres/contemporary|/genres/art|/genres/literature|/genres/american|/genres/literary-fiction,dir48/9601.Bluebeard.html,21321,Bluebeard +3.72,589,0375753141,good_reads:book,https://www.goodreads.com/author/show/7330.Sinclair_Lewis,1920,/genres/classics|/genres/fiction|/genres/literature|/genres/literature|/genres/american|/genres/novels|/genres/historical-fiction,dir48/11376.Main_Street.html,14813,Main Street +4.07,823,,good_reads:book,https://www.goodreads.com/author/show/25526.Eleanor_Coerr,1977,/genres/historical-fiction|/genres/childrens|/genres/young-adult|/genres/fiction|/genres/cultural|/genres/japan|/genres/classics|/genres/academic|/genres/school|/genres/academic|/genres/read-for-school|/genres/childrens|/genres/juvenile|/genres/cultural,dir48/181077.Sadako_and_the_Thousand_Paper_Cranes.html,9977,Sadako and the Thousand Paper Cranes +3.85,393,0743263065,good_reads:book,https://www.goodreads.com/author/show/26090.William_Kennedy,1983,/genres/fiction|/genres/historical-fiction|/genres/literature|/genres/classics|/genres/novels|/genres/literary-fiction|/genres/book-club|/genres/literature|/genres/american|/genres/literature|/genres/20th-century|/genres/new-york,dir48/267243.Ironweed.html,10038,Ironweed +4.14,436,0689857950,good_reads:book,https://www.goodreads.com/author/show/14617.Margaret_Peterson_Haddix,2004,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fiction|/genres/adventure|/genres/childrens|/genres/fantasy|/genres/childrens|/genres/middle-grade|/genres/young-adult|/genres/teen|/genres/childrens|/genres/juvenile,dir48/303454.Among_the_Brave.html,12892,"Among the Brave (Shadow Children, #5)" +4.27,490,0743289463,good_reads:book,https://www.goodreads.com/author/show/18710.Amy_Hempel,2006,/genres/short-stories|/genres/fiction|/genres/literature|/genres/contemporary|/genres/anthologies|/genres/collections,dir48/33299.The_Collected_Stories.html,4357,The Collected Stories +3.72,6192,0060852577,good_reads:book,https://www.goodreads.com/author/show/3541.Barbara_Kingsolver,2008,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/novels|/genres/literary-fiction|/genres/literature|/genres/art|/genres/adult-fiction|/genres/adult|/genres/contemporary,dir48/6433752-the-lacuna.html,38636,The Lacuna +4.22,347,1560760478,good_reads:book,https://www.goodreads.com/author/show/1023510.R_A_Salvatore,1990,/genres/dungeons-and-dragons|/genres/forgotten-realms|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/adventure|/genres/role-playing-games|/genres/dungeons-and-dragons|/genres/fantasy|/genres/magic,dir48/66695.Sojourn.html,25706,"Sojourn (Forgotten Realms: The Dark Elf Trilogy, #3; Legend of Drizzt, #3)" +4.05,1999,,good_reads:book,https://www.goodreads.com/author/show/370361.Patrick_Ness,2013,/genres/young-adult|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/fiction|/genres/mystery|/genres/glbt|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/apocalyptic|/genres/post-apocalyptic,dir48/21969786-more-than-this.html,9655,More Than This +4.03,222,1590172620,good_reads:book,https://www.goodreads.com/author/show/25573.Stefan_Zweig,1982,/genres/fiction|/genres/historical-fiction|/genres/classics|/genres/european-literature|/genres/german-literature|/genres/novels|/genres/literary-fiction|/genres/literature|/genres/20th-century,dir48/2376087.The_Post_Office_Girl.html,1408,The Post-Office Girl +4.00,190,0976422603,good_reads:book,https://www.goodreads.com/author/show/291916.Robert_Fanney,2005,/genres/fantasy|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/adventure|/genres/fantasy|/genres/dragons|/genres/shapeshifters|/genres/werewolves|/genres/paranormal|/genres/vampires|/genres/paranormal|/genres/fairies|/genres/fiction|/genres/paranormal|/genres/angels,dir48/526764.Dreams_of_the_Ringed_Vale.html,719,"Dreams of the Ringed Vale (Luthiel's Song, #1)" +3.59,437,0743287215,good_reads:book,https://www.goodreads.com/author/show/33034.Anthony_Swofford,2003,/genres/non-fiction|/genres/war|/genres/war|/genres/military|/genres/autobiography|/genres/memoir|/genres/history|/genres/biography|/genres/biography|/genres/autobiography|/genres/military|/genres/military-history|/genres/literature|/genres/media-tie-in|/genres/movies,dir48/75060.Jarhead.html,5932,Jarhead +3.86,1283,0061626317,good_reads:book,https://www.goodreads.com/author/show/548551.Anna_Godbersen,2009,/genres/historical-fiction|/genres/young-adult|/genres/romance|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/teen|/genres/romance|/genres/historical-romance|/genres/drama|/genres/new-york|/genres/young-adult|/genres/young-adult-historical-fiction,dir48/6239873-splendor.html,13962,"Splendor (Luxe, #4)" +3.85,883,0517223120,good_reads:book,https://www.goodreads.com/author/show/2637.Karen_Armstrong,1975,/genres/religion|/genres/history|/genres/non-fiction|/genres/philosophy|/genres/religion|/genres/islam|/genres/spirituality|/genres/religion|/genres/theology|/genres/religion|/genres/christianity|/genres/religion|/genres/judaism|/genres/christian,dir48/3873.A_History_of_God.html,21307,A History of God +4.16,293,0060874309,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2006,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/mystery|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/contemporary,dir48/23218.Missing_You.html,8811,"Missing You (1-800-Where-R-You, #5)" +3.97,834,0803730012,good_reads:book,https://www.goodreads.com/author/show/63983.Nancy_Werlin,2006,/genres/young-adult|/genres/realistic-fiction|/genres/fiction|/genres/sociology|/genres/abuse|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/mental-health|/genres/mental-illness|/genres/adventure|/genres/survival|/genres/drama|/genres/family,dir48/110535.The_Rules_of_Survival.html,8522,The Rules of Survival +4.44,278,,good_reads:book,https://www.goodreads.com/author/show/4728994.Rachel_Higginson,2012,/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/magic|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/young-adult|/genres/young-adult-paranormal|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/supernatural|/genres/fiction,dir48/13480769-endless-magic.html,3892,"Endless Magic (Star-Crossed, #4)" +3.77,1427,0061701246,good_reads:book,https://www.goodreads.com/author/show/771.Sarah_Mlynowski,2011,/genres/young-adult|/genres/contemporary|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/fiction|/genres/young-adult|/genres/young-adult-contemporary|/genres/young-adult|/genres/high-school|/genres/humor|/genres/funny,dir48/9266810-ten-things-we-did.html,13117,Ten Things We Did +4.20,966,,good_reads:book,https://www.goodreads.com/author/show/4882127.Rachel_Van_Dyken,2013,/genres/new-adult|/genres/romance|/genres/contemporary|/genres/academic|/genres/college|/genres/young-adult|/genres/romance|/genres/contemporary-romance|/genres/mystery|/genres/suspense|/genres/mystery|/genres/crime|/genres/drama,dir48/17729036-elite.html,8071,"Elite (Eagle Elite, #1)" +4.35,1336,0486422453,good_reads:book,https://www.goodreads.com/author/show/7906.Rainer_Maria_Rilke,1929,/genres/poetry|/genres/classics|/genres/non-fiction|/genres/philosophy|/genres/literature|/genres/european-literature|/genres/german-literature|/genres/writing|/genres/essays|/genres/language|/genres/writing|/genres/biography|/genres/autobiography|/genres/memoir,dir48/46199.Letters_to_a_Young_Poet.html,18946,Letters to a Young Poet +4.65,125,9646534783,good_reads:book,https://www.goodreads.com/author/show/6461611.Hafez,1680,/genres/poetry|/genres/literature|/genres/cultural|/genres/iran|/genres/classics|/genres/art|/genres/philosophy|/genres/non-fiction|/genres/spirituality,dir48/46292.The_Divan.html,3263,The Divan +3.95,72,1565049942,good_reads:book,https://www.goodreads.com/author/show/16939.Michael_Moorcock,1977,/genres/fantasy|/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/steampunk|/genres/science-fiction|/genres/dying-earth|/genres/science-fiction|/genres/time-travel|/genres/european-literature|/genres/british-literature|/genres/science-fiction-fantasy|/genres/novels|/genres/classics,dir48/1442263.The_Dancers_at_the_End_of_Time.html,2382,"The Dancers at the End of Time (Eternal Champion, #10)" +4.12,139,0786933887,good_reads:book,https://www.goodreads.com/author/show/869.Margaret_Weis,1986,/genres/fantasy|/genres/dungeons-and-dragons|/genres/dragonlance|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/dragons|/genres/role-playing-games|/genres/dungeons-and-dragons|/genres/fantasy|/genres/magic|/genres/novels,dir48/260025.Test_of_the_Twins.html,17561,"Test of the Twins (Dragonlance: Legends, #3)" +4.02,1095,006097625X,good_reads:book,https://www.goodreads.com/author/show/33907.Scott_McCloud,1993,/genres/sequential-art|/genres/comics|/genres/non-fiction|/genres/sequential-art|/genres/graphic-novels|/genres/art|/genres/graphic-novels-comics|/genres/design|/genres/reference|/genres/language|/genres/writing|/genres/comics|/genres/comic-book,dir48/102920.Understanding_Comics.html,45504,Understanding Comics +4.06,577,0671726528,good_reads:book,https://www.goodreads.com/author/show/18206.Thor_Heyerdahl,1948,/genres/travel|/genres/adventure|/genres/history|/genres/non-fiction|/genres/classics|/genres/autobiography|/genres/memoir|/genres/biography|/genres/anthropology|/genres/biography-memoir|/genres/biography|/genres/autobiography,dir48/790171.Kon_Tiki.html,10590,Kon-Tiki +4.02,40,0966234642,good_reads:book,https://www.goodreads.com/author/show/15959.Boris_Vian,1947,/genres/cultural|/genres/france|/genres/fiction|/genres/literature|/genres/european-literature|/genres/french-literature|/genres/novels|/genres/literary-fiction|/genres/classics|/genres/surreal|/genres/glbt|/genres/queer|/genres/literature|/genres/20th-century,dir48/141824.Autumn_in_Peking.html,1192,Autumn in Peking +4.24,412,0099453452,good_reads:book,https://www.goodreads.com/author/show/12546.Stephen_Hunter,1993,/genres/thriller|/genres/fiction|/genres/mystery|/genres/action|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/crime|/genres/war|/genres/military|/genres/adventure|/genres/spy-thriller|/genres/espionage,dir48/127712.Point_of_Impact.html,7594,"Point of Impact (Bob Lee Swagger, #1)" +4.19,35,0345352440,good_reads:book,https://www.goodreads.com/author/show/23284.Julian_May,1984,/genres/science-fiction|/genres/fantasy|/genres/fiction|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/time-travel|/genres/speculative-fiction,dir48/41334.The_Adversary.html,3168,"The Adversary (Saga of Pliocene Exile, #4)" +4.08,494,0151686564,good_reads:book,https://www.goodreads.com/author/show/18540.T_S_Eliot,1939,/genres/poetry|/genres/classics|/genres/fiction|/genres/animals|/genres/animals|/genres/cats|/genres/humor|/genres/childrens|/genres/literature|/genres/art|/genres/european-literature|/genres/british-literature,dir49/402128.Old_Possum_s_Book_of_Practical_Cats.html,11910,Old Possum's Book of Practical Cats +3.92,147,0802150373,good_reads:book,https://www.goodreads.com/author/show/1433597.Samuel_Beckett,1938,/genres/fiction|/genres/european-literature|/genres/irish-literature|/genres/literature|/genres/cultural|/genres/ireland|/genres/classics|/genres/novels|/genres/nobel-prize|/genres/philosophy|/genres/literature|/genres/20th-century|/genres/drama,dir49/333314.Murphy.html,2429,Murphy +4.15,186,3596130247,good_reads:book,https://www.goodreads.com/author/show/25573.Stefan_Zweig,1922,/genres/classics|/genres/fiction|/genres/romance|/genres/european-literature|/genres/german-literature|/genres/short-stories|/genres/literature|/genres/literature|/genres/20th-century|/genres/drama|/genres/novels|/genres/realistic-fiction,dir49/182185.Brief_einer_Unbekannten.html,2305,Brief einer Unbekannten +3.76,929,0435900668,good_reads:book,https://www.goodreads.com/author/show/70692.Tayeb_Salih,1966,/genres/novels|/genres/literature|/genres/classics|/genres/cultural|/genres/africa|/genres/literature|/genres/african-literature|/genres/fiction|/genres/academic|/genres/school|/genres/literature|/genres/20th-century|/genres/literature|/genres/post-colonial|/genres/academic|/genres/read-for-school,dir49/669780.Season_of_Migration_to_the_North.html,7644,Season of Migration to the North +3.95,278,0140272925,good_reads:book,https://www.goodreads.com/author/show/63.Bryce_Courtenay,1992,/genres/fiction|/genres/historical-fiction|/genres/cultural|/genres/africa|/genres/drama|/genres/cultural|/genres/australia|/genres/novels|/genres/contemporary|/genres/adult-fiction|/genres/adult|/genres/literature,dir49/2336.Tandia.html,5526,Tandia +3.76,421,0060929898,good_reads:book,https://www.goodreads.com/author/show/68809.John_Gunther,1949,/genres/non-fiction|/genres/classics|/genres/biography|/genres/autobiography|/genres/memoir|/genres/death|/genres/biography-memoir|/genres/academic|/genres/school,dir49/486298.Death_Be_Not_Proud.html,7219,Death Be Not Proud +3.69,237,0060724234,good_reads:book,https://www.goodreads.com/author/show/12940.Elmore_Leonard,2005,/genres/fiction|/genres/mystery|/genres/crime|/genres/mystery|/genres/thriller|/genres/western|/genres/thriller|/genres/mystery-thriller|/genres/novels|/genres/mystery|/genres/detective|/genres/mystery|/genres/noir|/genres/historical-fiction,dir49/85207.The_Hot_Kid.html,2468,"The Hot Kid (Carl Webster, #1)" +3.70,403,0060562250,good_reads:book,https://www.goodreads.com/author/show/36746.Lemony_Snicket,2002,/genres/young-adult|/genres/fiction|/genres/childrens|/genres/humor|/genres/mystery|/genres/fantasy|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/middle-grade|/genres/humor|/genres/funny|/genres/adventure,dir49/78408.Lemony_Snicket.html,11609,Lemony Snicket +4.05,459,0553299492,good_reads:book,https://www.goodreads.com/author/show/16667.Isaac_Asimov,1983,/genres/science-fiction|/genres/fiction|/genres/mystery|/genres/science-fiction|/genres/robots|/genres/science-fiction-fantasy|/genres/classics,dir49/41810.The_Robots_of_Dawn.html,17769,"The Robots of Dawn (Robot, #3)" +3.97,164,0307345424,good_reads:book,https://www.goodreads.com/author/show/117182.Susan_Faludi,1991,/genres/feminism|/genres/non-fiction|/genres/politics|/genres/history|/genres/sociology|/genres/gender|/genres/womens|/genres/feminism|/genres/womens-studies|/genres/psychology|/genres/gender|/genres/gender-studies,dir49/200883.Backlash.html,5250,Backlash +4.63,296,1442440430,good_reads:book,https://www.goodreads.com/author/show/150038.Cassandra_Clare,2011,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/urban-fantasy|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/paranormal-romance,dir49/11106458-the-mortal-instrument-series.html,9498,The Mortal Instrument Series +4.32,335,,good_reads:book,https://www.goodreads.com/author/show/5251202.Elizabeth_Hunter,2012,/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/mystery|/genres/adult|/genres/fiction|/genres/fantasy|/genres/supernatural,dir49/13414389-the-force-of-wind.html,6043,"The Force of Wind (Elemental Mysteries, #3)" +4.34,280,0399155260,good_reads:book,https://www.goodreads.com/author/show/24655.Sharon_Kay_Penman,2008,/genres/historical-fiction|/genres/fiction|/genres/historical-fiction|/genres/medieval|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/classics|/genres/epic,dir49/2859559-devil-s-brood.html,3903,"Devil's Brood (Henry II & Eleanor of Aquitaine, #3)" +4.14,58,1419324705,good_reads:book,https://www.goodreads.com/author/show/4841825.Marion_Zimmer_Bradley,1982,/genres/fantasy|/genres/historical-fiction|/genres/fiction|/genres/romance|/genres/science-fiction-fantasy|/genres/classics|/genres/fantasy|/genres/mythology|/genres/mythology|/genres/arthurian|/genres/historical-fiction|/genres/medieval|/genres/fantasy|/genres/high-fantasy,dir49/18886.The_High_Queen.html,2827,"The High Queen (The Mists of Avalon, #2)" +4.51,72,,good_reads:book,https://www.goodreads.com/author/show/55791.Florencia_Bonelli,2012,/genres/romance|/genres/romance|/genres/contemporary-romance,dir49/13574586-caballo-de-fuego.html,661,"Caballo de Fuego (Caballo de Fuego, #3)" +4.08,174,0940322218,good_reads:book,https://www.goodreads.com/author/show/16073.Robert_Walser,1908,/genres/fiction|/genres/european-literature|/genres/german-literature|/genres/classics|/genres/literature|/genres/cultural|/genres/germany|/genres/literature|/genres/20th-century|/genres/novels|/genres/short-stories|/genres/literary-fiction|/genres/classics|/genres/modern-classics,dir49/513275.Jakob_von_Gunten.html,1593,Jakob von Gunten +4.38,1930,1466854235,good_reads:book,https://www.goodreads.com/author/show/6476625.Kylie_Scott,2014,/genres/romance|/genres/new-adult|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/music|/genres/humor|/genres/funny|/genres/adult-fiction|/genres/erotica|/genres/adult|/genres/humor|/genres/music|/genres/musicians,dir49/19080006-play.html,15942,"Play (Stage Dive, #2)" +3.72,881,0316037761,good_reads:book,https://www.goodreads.com/author/show/1938234.Jaye_Wells,2009,/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/demons|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/adult|/genres/paranormal|/genres/witches,dir49/6056520-red-headed-stepchild.html,11172,"Red-Headed Stepchild (Sabina Kane, #1)" +4.04,7907,0141439661,good_reads:book,https://www.goodreads.com/author/show/1265.Jane_Austen,1811,/genres/classics|/genres/fiction|/genres/romance|/genres/literature|/genres/historical-fiction|/genres/classics|/genres/classic-literature|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/literature|/genres/19th-century|/genres/romance|/genres/historical-romance,dir49/14935.Sense_and_Sensibility.html,580464,Sense and Sensibility +4.23,355,2266120921,good_reads:book,https://www.goodreads.com/author/show/8944.Robert_Crais,1999,/genres/mystery|/genres/fiction|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery|/genres/detective|/genres/thriller|/genres/mystery-thriller|/genres/suspense|/genres/adult|/genres/adventure|/genres/adult-fiction,dir49/297186.L_A_Requiem.html,8966,"L.A. Requiem (Elvis Cole, #8)" +3.66,331,0963192566,good_reads:book,https://www.goodreads.com/author/show/7577.Anne_Rice,1996,/genres/horror|/genres/fiction|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/supernatural|/genres/historical-fiction|/genres/fantasy|/genres/urban-fantasy|/genres/science-fiction-fantasy|/genres/novels,dir49/43805.Servant_of_the_Bones.html,22135,Servant of the Bones +4.05,149,0679737413,good_reads:book,https://www.goodreads.com/author/show/6975.Peter_Matthiessen,1965,/genres/fiction|/genres/historical-fiction|/genres/novels|/genres/religion|/genres/literature|/genres/contemporary|/genres/classics|/genres/travel|/genres/adventure,dir49/769729.At_Play_in_the_Fields_of_the_Lord.html,1497,At Play in the Fields of the Lord +4.20,469,0156027496,good_reads:book,https://www.goodreads.com/author/show/1020792.Antoine_de_Saint_Exup_ry,1939,/genres/non-fiction|/genres/adventure|/genres/cultural|/genres/france|/genres/classics|/genres/autobiography|/genres/memoir|/genres/travel|/genres/biography|/genres/philosophy|/genres/literature|/genres/history,dir49/8837.Wind_Sand_and_Stars.html,5176,"Wind, Sand and Stars" +3.79,632,0553129198,good_reads:book,https://www.goodreads.com/author/show/5194.Michael_Crichton,1975,/genres/fiction|/genres/historical-fiction|/genres/thriller|/genres/mystery|/genres/mystery|/genres/crime|/genres/adventure|/genres/suspense,dir49/7682.The_Great_Train_Robbery.html,14684,The Great Train Robbery +3.91,577,1936305291,good_reads:book,https://www.goodreads.com/author/show/534097.Victoria_Michaels,2010,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/adult|/genres/new-adult|/genres/humor|/genres/funny,dir49/8599748-trust-in-advertising.html,10034,Trust in Advertising +4.13,148,0756402980,good_reads:book,https://www.goodreads.com/author/show/6587.Tad_Williams,1993,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/epic|/genres/adventure|/genres/fantasy|/genres/magic,dir49/28691.To_Green_Angel_Tower.html,19776,"To Green Angel Tower (Memory, Sorrow, and Thorn, #3)" +4.13,1523,0312650094,good_reads:book,https://www.goodreads.com/author/show/835348.Ann_Aguirre,2012,/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/horror|/genres/zombies|/genres/apocalyptic|/genres/post-apocalyptic|/genres/science-fiction|/genres/romance|/genres/fantasy|/genres/fiction|/genres/horror|/genres/adventure,dir49/10193062-outpost.html,16519,"Outpost (Razorland, #2)" +3.82,1005,0007503679,good_reads:book,https://www.goodreads.com/author/show/6518554.Abigail_Gibbs,2012,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/young-adult|/genres/romance|/genres/paranormal-romance|/genres/new-adult|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy,dir49/15998621-dinner-with-a-vampire.html,5296,"Dinner With a Vampire (Dark Heroine, #1)" +4.47,591,0316201545,good_reads:book,https://www.goodreads.com/author/show/4919495.Chris_Colfer,2013,/genres/fantasy|/genres/fairy-tales|/genres/fantasy|/genres/childrens|/genres/young-adult|/genres/childrens|/genres/middle-grade|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/magic|/genres/retellings|/genres/childrens|/genres/juvenile,dir49/17722973-the-enchantress-returns.html,4509,"The Enchantress Returns (The Land of Stories, #2)" +4.18,571,,good_reads:book,https://www.goodreads.com/author/show/6862831.Sara_Wolf,2013,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/new-adult|/genres/young-adult|/genres/high-school|/genres/sociology|/genres/abuse|/genres/humor|/genres/funny|/genres/humor|/genres/romance|/genres/contemporary-romance|/genres/dark,dir49/18657517-lovely-vicious.html,5022,"Lovely Vicious (Lovely Vicious, #1)" +4.15,353,0679721819,good_reads:book,https://www.goodreads.com/author/show/18752.Gloria_Naylor,1988,/genres/fiction|/genres/cultural|/genres/african-american|/genres/magical-realism|/genres/book-club|/genres/fantasy|/genres/american|/genres/african-american-literature|/genres/literature|/genres/novels|/genres/adult|/genres/classics,dir49/33363.Mama_Day.html,5756,Mama Day +3.64,452,0670063339,good_reads:book,https://www.goodreads.com/author/show/410418.Susane_Colasanti,2008,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/realistic-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/young-adult-romance|/genres/fiction,dir49/2085319.Take_Me_There.html,8157,Take Me There +4.06,894,0007271212,good_reads:book,https://www.goodreads.com/author/show/12542.Bernard_Cornwell,2008,/genres/historical-fiction|/genres/fiction|/genres/historical-fiction|/genres/medieval|/genres/war|/genres/war|/genres/military|/genres/cultural|/genres/france|/genres/european-literature|/genres/british-literature|/genres/adventure|/genres/fantasy|/genres/literature|/genres/15th-century,dir49/3276012-azincourt.html,11420,Azincourt +4.15,124,1421501201,good_reads:book,https://www.goodreads.com/author/show/153732.Matsuri_Hino,2002,/genres/sequential-art|/genres/manga|/genres/fantasy|/genres/romance|/genres/manga|/genres/shojo|/genres/sequential-art|/genres/graphic-novels|/genres/fantasy|/genres/magic|/genres/sequential-art|/genres/comics|/genres/media-tie-in|/genres/anime,dir49/1157452.MeruPuri_Vol_01.html,10867,"MeruPuri, Vol. 01 (MeruPuri, #1)" +3.89,357,0553286390,good_reads:book,https://www.goodreads.com/author/show/869.Margaret_Weis,1990,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/dragons|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction,dir49/28481.Dragon_Wing.html,15260,"Dragon Wing (The Death Gate Cycle, #1)" +4.13,625,0340686030,good_reads:book,https://www.goodreads.com/author/show/19696.Greg_Iles,1999,/genres/mystery|/genres/fiction|/genres/thriller|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/crime|/genres/thriller|/genres/legal-thriller|/genres/american|/genres/southern|/genres/adult-fiction|/genres/book-club,dir49/43993.The_Quiet_Game.html,11608,"The Quiet Game (Penn Cage, #1)" +4.13,2521,1451656505,good_reads:book,https://www.goodreads.com/author/show/46097.Richard_Paul_Evans,2011,/genres/young-adult|/genres/science-fiction|/genres/fantasy|/genres/fiction|/genres/adventure|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/paranormal|/genres/book-club|/genres/action|/genres/childrens|/genres/middle-grade,dir49/11337912-the-prisoner-of-cell-25.html,14740,"The Prisoner of Cell 25 (Michael Vey, #1)" +4.17,77,0899578705,good_reads:book,https://www.goodreads.com/author/show/37060.Bryan_Davis,2006,/genres/fantasy|/genres/fantasy|/genres/dragons|/genres/christian|/genres/young-adult|/genres/christian-fiction|/genres/fiction|/genres/adventure|/genres/action|/genres/historical-fiction|/genres/young-adult|/genres/young-adult-fantasy,dir49/231183.Eye_of_the_Oracle.html,1723,"Eye of the Oracle (Oracles of Fire, #1)" +3.85,885,0007350430,good_reads:book,https://www.goodreads.com/author/show/7116.Cecelia_Ahern,2011,/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/fiction|/genres/fantasy|/genres/contemporary|/genres/adult|/genres/cultural|/genres/ireland|/genres/magical-realism|/genres/book-club|/genres/adult-fiction,dir49/10893138-the-time-of-my-life.html,8231,The Time of My Life +3.86,1446,0810984172,good_reads:book,https://www.goodreads.com/author/show/157676.Lauren_Myracle,2011,/genres/young-adult|/genres/mystery|/genres/realistic-fiction|/genres/fiction|/genres/contemporary|/genres/glbt|/genres/young-adult|/genres/teen|/genres/mystery|/genres/crime|/genres/sociology|/genres/abuse|/genres/young-adult|/genres/coming-of-age,dir49/8928054-shine.html,8862,Shine +3.96,358,0156029669,good_reads:book,https://www.goodreads.com/author/show/34713.Joseph_O_Connor,2002,/genres/fiction|/genres/historical-fiction|/genres/cultural|/genres/ireland|/genres/european-literature|/genres/irish-literature|/genres/mystery|/genres/book-club|/genres/literature|/genres/novels|/genres/modern|/genres/thriller,dir49/147848.Star_of_the_Sea.html,3582,Star of the Sea +3.94,329,1860497667,good_reads:book,https://www.goodreads.com/author/show/195160.Elizabeth_Forsythe_Hailey,1978,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/classics|/genres/romance|/genres/adult|/genres/literary-fiction|/genres/adult-fiction|/genres/novels,dir49/340258.A_Woman_Of_Independent_Means.html,1850,A Woman Of Independent Means +4.07,365,1582349134,good_reads:book,https://www.goodreads.com/author/show/60478.Marianne_Curley,2002,/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/time-travel|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/science-fiction,dir49/1034516.The_Named.html,5216,"The Named (Guardians of Time, #1)" +4.02,329,0140449213,good_reads:book,https://www.goodreads.com/author/show/16319.Suetonius,121,/genres/history|/genres/classics|/genres/non-fiction|/genres/biography|/genres/roman|/genres/literature|/genres/ancient|/genres/humanities|/genres/classical-studies|/genres/politics|/genres/literature|/genres/history|/genres/world-history,dir49/29022.The_Twelve_Caesars.html,8844,The Twelve Caesars +3.85,493,0316014443,good_reads:book,https://www.goodreads.com/author/show/337831.Justin_Somper,2005,/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/adventure|/genres/pirates|/genres/adventure|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/childrens|/genres/horror|/genres/fantasy|/genres/supernatural,dir49/723801.Demons_of_the_Ocean.html,5660,"Demons of the Ocean (Vampirates, #1)" +4.32,314,1594201072,good_reads:book,https://www.goodreads.com/author/show/10538.Carl_Sagan,2006,/genres/science|/genres/non-fiction|/genres/philosophy|/genres/religion|/genres/religion|/genres/atheism|/genres/spirituality|/genres/science|/genres/physics|/genres/philosophy|/genres/skepticism|/genres/science|/genres/astronomy,dir49/61661.The_Varieties_of_Scientific_Experience.html,4889,The Varieties of Scientific Experience +3.93,225,0345453751,good_reads:book,https://www.goodreads.com/author/show/9629.Terry_Brooks,1986,/genres/fantasy|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/epic|/genres/fantasy|/genres/magic|/genres/science-fiction|/genres/adventure|/genres/literature|/genres/american,dir49/478894.The_Sword_of_Shannara_Trilogy.html,11700,"The Sword of Shannara Trilogy (Shannara, #1-3)" +3.93,291,0330336320,good_reads:book,https://www.goodreads.com/author/show/3449.Graham_Swift,1983,/genres/fiction|/genres/historical-fiction|/genres/novels|/genres/literature|/genres/literary-fiction|/genres/contemporary|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/english-literature|/genres/modern|/genres/adult-fiction,dir49/148639.Waterland.html,4186,Waterland +4.07,453,1401209149,good_reads:book,https://www.goodreads.com/author/show/12732.Grant_Morrison,2007,/genres/sequential-art|/genres/comics|/genres/sequential-art|/genres/graphic-novels|/genres/comics|/genres/superheroes|/genres/superheroes|/genres/dc-comics|/genres/dc-comics|/genres/superman|/genres/comics|/genres/comic-book|/genres/graphic-novels-comics|/genres/fiction|/genres/fantasy|/genres/science-fiction,dir49/22369.All_Star_Superman_Vol_1.html,23505,"All-Star Superman, Vol. 1" +4.05,662,0425205754,good_reads:book,https://www.goodreads.com/author/show/625.Nora_Roberts,1996,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/fiction|/genres/contemporary|/genres/romance|/genres/romantic-suspense|/genres/mystery|/genres/suspense|/genres/womens-fiction|/genres/chick-lit|/genres/adult|/genres/western,dir49/114144.Montana_Sky.html,31953,Montana Sky +3.58,218,038573347X,good_reads:book,https://www.goodreads.com/author/show/164187.Jennifer_Lynn_Barnes,2007,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/mythology|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/womens-fiction|/genres/chick-lit,dir49/282440.Tattoo.html,2500,"Tattoo (Tattoo, #1)" +3.74,366,1406501077,good_reads:book,https://www.goodreads.com/author/show/1315.Louisa_May_Alcott,1880,/genres/classics|/genres/fiction|/genres/young-adult|/genres/childrens|/genres/historical-fiction|/genres/literature|/genres/childrens|/genres/juvenile|/genres/romance|/genres/classics|/genres/classic-literature|/genres/literature|/genres/19th-century,dir49/372319.Jo_s_Boys.html,18303,"Jo's Boys (Little Women, #3)" +3.76,413,1400030269,good_reads:book,https://www.goodreads.com/author/show/32878.Michel_Houellebecq,2001,/genres/fiction|/genres/cultural|/genres/france|/genres/european-literature|/genres/french-literature|/genres/contemporary|/genres/novels|/genres/literature|/genres/roman|/genres/travel|/genres/sexuality|/genres/philosophy,dir49/88514.Platform.html,7255,Platform +4.15,281,,good_reads:book,https://www.goodreads.com/author/show/7339553.Abul_Hasan_Ali_Nadwi,1944,/genres/history|/genres/religion|/genres/religion|/genres/islam,dir49/2905549.html,2395,ماذا خسر العالم بانحطاط المسلمين +3.93,110,0979233143,good_reads:book,https://www.goodreads.com/author/show/15872.Rick_Riordan,2008,/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/young-adult|/genres/mythology|/genres/greek-mythology|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/childrens|/genres/middle-grade|/genres/adventure|/genres/childrens,dir49/3303559-demigods-and-monsters.html,2154,Demigods and Monsters +4.19,542,0316881791,good_reads:book,https://www.goodreads.com/author/show/41013.Farley_Mowat,1963,/genres/non-fiction|/genres/animals|/genres/environment|/genres/nature|/genres/science|/genres/biography|/genres/autobiography|/genres/memoir|/genres/cultural|/genres/canada|/genres/animals|/genres/wolves|/genres/classics|/genres/adventure,dir49/72659.Never_Cry_Wolf.html,12742,Never Cry Wolf +4.05,759,1250000238,good_reads:book,https://www.goodreads.com/author/show/17015.P_C_Cast,2011,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/magic|/genres/romance|/genres/paranormal-romance|/genres/young-adult|/genres/teen,dir49/10324808-dragon-s-oath.html,13517,"Dragon's Oath (House of Night Novellas, #1)" +4.33,122,1430439866,good_reads:book,https://www.goodreads.com/author/show/3565.Oscar_Wilde,1888,/genres/classics|/genres/short-stories|/genres/fiction|/genres/fantasy|/genres/romance|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/european-literature|/genres/irish-literature|/genres/fantasy|/genres/fairy-tales|/genres/childrens,dir49/590272.The_Nightingale_and_the_Rose.html,2722,The Nightingale and the Rose +4.41,73,0316098744,good_reads:book,https://www.goodreads.com/author/show/3780.James_Patterson,2009,/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/fiction|/genres/romance|/genres/adventure|/genres/fantasy|/genres/paranormal|/genres/action|/genres/paranormal|/genres/angels|/genres/mystery,dir49/7294912-maximum-ride-five-book-set.html,4915,Maximum Ride Five-Book Set +4.01,492,,good_reads:book,https://www.goodreads.com/author/show/8076193._,1964,/genres/religion|/genres/islam|/genres/religion|/genres/philosophy,dir49/6464448.html,2916,معالم في الطريق +4.12,1147,0373776985,good_reads:book,https://www.goodreads.com/author/show/48192.Gena_Showalter,2012,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/angels|/genres/romance|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/adult|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/mythology,dir49/12900491-wicked-nights.html,13892,"Wicked Nights (Angels of the Dark, #1)" +4.23,343,1419938266,good_reads:book,https://www.goodreads.com/author/show/3190846.Laurann_Dohner,2011,/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/paranormal|/genres/shapeshifters|/genres/science-fiction|/genres/fantasy|/genres/romance|/genres/erotic-romance|/genres/adult|/genres/contemporary,dir49/13107655-brawn.html,7668,"Brawn (New Species, #5)" +4.13,876,0312605382,good_reads:book,https://www.goodreads.com/author/show/27847.Lisa_Kleypas,2010,/genres/romance|/genres/historical-romance|/genres/historical-fiction|/genres/regency|/genres/historical-romance|/genres/regency-romance|/genres/adult|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/family|/genres/humor|/genres/funny|/genres/european-literature|/genres/british-literature,dir49/7198269-married-by-morning.html,15958,"Married By Morning (The Hathaways, #4)" +4.48,4300,0345339738,good_reads:book,https://www.goodreads.com/author/show/656983.J_R_R_Tolkien,1954,/genres/fantasy|/genres/fiction|/genres/classics|/genres/adventure|/genres/science-fiction-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/literature,dir49/18512.The_Return_of_the_King.html,350555,"The Return of the King (The Lord of the Rings, #3)" +3.86,440,0446675253,good_reads:book,https://www.goodreads.com/author/show/44942.Pete_Hamill,1997,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/new-york|/genres/fantasy|/genres/adult|/genres/literature|/genres/jewish|/genres/magical-realism|/genres/adult-fiction|/genres/religion,dir49/79109.Snow_in_August.html,3520,Snow in August +4.23,82,2070374440,good_reads:book,https://www.goodreads.com/author/show/54354.Robert_Merle,1972,/genres/science-fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fiction|/genres/science-fiction|/genres/apocalyptic|/genres/science-fiction|/genres/dystopia|/genres/cultural|/genres/france|/genres/novels|/genres/speculative-fiction|/genres/european-literature|/genres/french-literature|/genres/literature,dir49/1768257.Malevil.html,1476,Malevil +4.17,344,0152046917,good_reads:book,https://www.goodreads.com/author/show/36122.Patricia_C_Wrede,1988,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/dragons|/genres/fiction|/genres/childrens|/genres/fantasy|/genres/magic|/genres/adventure|/genres/young-adult|/genres/young-adult-fantasy|/genres/humor|/genres/science-fiction-fantasy,dir49/169871.Talking_to_Dragons.html,20839,"Talking to Dragons (Enchanted Forest Chronicles, #4)" +4.18,374,0152060030,good_reads:book,https://www.goodreads.com/author/show/170658.L_A_Meyer,2007,/genres/historical-fiction|/genres/young-adult|/genres/adventure|/genres/fiction|/genres/adventure|/genres/pirates|/genres/young-adult|/genres/teen|/genres/romance|/genres/action|/genres/humor|/genres/fantasy,dir49/295652.Mississippi_Jack.html,5225,"Mississippi Jack (Bloody Jack, #5)" +3.63,319,0671774670,good_reads:book,https://www.goodreads.com/author/show/3519.Melinda_Haynes,1999,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/contemporary|/genres/adult-fiction|/genres/literary-fiction|/genres/literature|/genres/american|/genres/southern|/genres/novels|/genres/drama,dir49/5179.Mother_of_Pearl.html,13610,Mother of Pearl +4.13,792,080508049X,good_reads:book,https://www.goodreads.com/author/show/8924.Lloyd_Alexander,1965,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/classics|/genres/adventure|/genres/science-fiction-fantasy|/genres/childrens|/genres/middle-grade|/genres/fantasy|/genres/high-fantasy|/genres/childrens|/genres/juvenile,dir49/24784.The_Black_Cauldron.html,42037,The Black Cauldron (The Chronicles of Prydain #2) +3.21,1700,0440421241,good_reads:book,https://www.goodreads.com/author/show/2347.Jeanne_DuPrau,2006,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/science-fiction|/genres/fiction|/genres/childrens|/genres/apocalyptic|/genres/post-apocalyptic|/genres/childrens|/genres/middle-grade|/genres/adventure|/genres/childrens|/genres/juvenile,dir49/207034.The_Prophet_of_Yonwood.html,17480,"The Prophet of Yonwood (Book of Ember, #3)" +3.75,953,0064400581,good_reads:book,https://www.goodreads.com/author/show/23509.Jean_Craighead_George,1972,/genres/young-adult|/genres/fiction|/genres/childrens|/genres/classics|/genres/adventure|/genres/historical-fiction|/genres/animals|/genres/adventure|/genres/survival|/genres/childrens|/genres/middle-grade|/genres/realistic-fiction,dir49/386286.Julie_of_the_Wolves.html,34094,"Julie of the Wolves (Julie of the Wolves, #1)" +4.05,579,1416935711,good_reads:book,https://www.goodreads.com/author/show/487718.Mark_Walden,2006,/genres/young-adult|/genres/science-fiction|/genres/adventure|/genres/fantasy|/genres/fiction|/genres/action|/genres/childrens|/genres/mystery|/genres/spy-thriller|/genres/espionage|/genres/childrens|/genres/middle-grade,dir49/1008231.H_I_V_E_Higher_Institute_of_Villainous_Education.html,8035,"H.I.V.E. Higher Institute of Villainous Education (H.I.V.E., #1)" +3.81,415,1426834152,good_reads:book,https://www.goodreads.com/author/show/767317.Aimee_Carter,2012,/genres/fantasy|/genres/mythology|/genres/young-adult|/genres/fantasy|/genres/mythology|/genres/greek-mythology|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/short-stories|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance|/genres/fiction,dir49/12999306-the-goddess-hunt.html,5840,"The Goddess Hunt (Goddess Test, #1.5)" +4.09,5347,0062110837,good_reads:book,https://www.goodreads.com/author/show/6466778.Helene_Wecker,2013,/genres/fantasy|/genres/historical-fiction|/genres/fiction|/genres/book-club|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/magical-realism|/genres/fantasy|/genres/mythology,dir49/15819028-the-golem-and-the-jinni.html,31008,The Golem and the Jinni +4.07,180,,good_reads:book,https://www.goodreads.com/author/show/200317.Alyson_Noel,2013,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/mythology|/genres/fiction|/genres/paranormal|/genres/demons,dir49/12439061-mystic.html,2497,"Mystic (Soul Seekers, #3)" +3.93,4084,0767919386,good_reads:book,https://www.goodreads.com/author/show/7.Bill_Bryson,2010,/genres/non-fiction|/genres/history|/genres/humor|/genres/science|/genres/book-club|/genres/architecture|/genres/adult|/genres/sociology|/genres/travel|/genres/culture,dir49/7507825-at-home.html,39544,At Home +4.11,548,0517415283,good_reads:book,https://www.goodreads.com/author/show/14462.Miyamoto_Musashi,1642,/genres/philosophy|/genres/non-fiction|/genres/classics|/genres/history|/genres/cultural|/genres/japan|/genres/war|/genres/military|/genres/business|/genres/asian-literature|/genres/japanese-literature|/genres/war,dir49/867247.A_Book_of_Five_Rings.html,15346,A Book of Five Rings +3.70,1089,,good_reads:book,https://www.goodreads.com/author/show/953641._,2006,/genres/non-fiction|/genres/short-stories|/genres/sociology|/genres/politics|/genres/literature|/genres/biography|/genres/cultural|/genres/africa|/genres/african-literature|/genres/egyptian-literature,dir49/2508854._.html,12144,تاكسي +3.88,1718,0374299102,good_reads:book,https://www.goodreads.com/author/show/7491.Marilynne_Robinson,2008,/genres/fiction|/genres/book-club|/genres/novels|/genres/literary-fiction|/genres/literature|/genres/historical-fiction|/genres/religion|/genres/contemporary|/genres/adult-fiction|/genres/literature|/genres/american,dir49/2924318-home.html,9163,"Home (Gilead, #2)" +4.24,16342,1416914293,good_reads:book,https://www.goodreads.com/author/show/150038.Cassandra_Clare,2008,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/supernatural|/genres/fiction,dir49/1582996.City_of_Ashes.html,388673,"City of Ashes (The Mortal Instruments, #2)" +3.82,202,4770028962,good_reads:book,https://www.goodreads.com/author/show/8881.Ry_Murakami,1980,/genres/fiction|/genres/asian-literature|/genres/japanese-literature|/genres/cultural|/genres/japan|/genres/horror|/genres/contemporary|/genres/novels|/genres/literature|/genres/literature|/genres/asian-literature,dir49/14289.Coin_Locker_Babies.html,3266,Coin Locker Babies +3.67,338,0060096152,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2004,/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/fiction|/genres/young-adult|/genres/teen|/genres/contemporary|/genres/childrens|/genres/humor|/genres/realistic-fiction|/genres/fairy-tales|/genres/princesses,dir49/93726.Princess_in_Training.html,18333,"Princess in Training (The Princess Diaries, #6)" +3.68,1244,014029628X,good_reads:book,https://www.goodreads.com/author/show/11075.Susan_Vreeland,1999,/genres/historical-fiction|/genres/fiction|/genres/art|/genres/book-club|/genres/short-stories|/genres/art|/genres/art-history|/genres/adult-fiction|/genres/novels|/genres/literary-fiction|/genres/literature,dir49/321577.Girl_in_Hyacinth_Blue.html,24070,Girl in Hyacinth Blue +4.35,222,0061196681,good_reads:book,https://www.goodreads.com/author/show/8655.Frank_Warren,2006,/genres/non-fiction|/genres/art|/genres/adult|/genres/humor|/genres/autobiography|/genres/memoir|/genres/psychology,dir49/13939.My_Secret.html,4758,My Secret +4.22,264,0340884355,good_reads:book,https://www.goodreads.com/author/show/268199.Robert_Muchamore,2005,/genres/young-adult|/genres/action|/genres/spy-thriller|/genres/espionage|/genres/adventure|/genres/fiction|/genres/young-adult|/genres/teen|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery|/genres/childrens,dir49/1303564.Maximum_Security.html,10257,"Maximum Security (Cherub, #3)" +4.24,321,0152061878,good_reads:book,https://www.goodreads.com/author/show/170658.L_A_Meyer,2008,/genres/historical-fiction|/genres/young-adult|/genres/adventure|/genres/fiction|/genres/adventure|/genres/pirates|/genres/young-adult|/genres/teen|/genres/romance|/genres/war,dir49/3026017-my-bonny-light-horseman.html,4565,"My Bonny Light Horseman (Bloody Jack, #6)" +3.81,513,0156029588,good_reads:book,https://www.goodreads.com/author/show/40398.Arturo_P_rez_Reverte,1990,/genres/mystery|/genres/historical-fiction|/genres/fiction|/genres/mystery|/genres/crime|/genres/european-literature|/genres/spanish-literature|/genres/art|/genres/cultural|/genres/spain|/genres/literature|/genres/games|/genres/chess|/genres/thriller|/genres/mystery-thriller,dir49/11031.The_Flanders_Panel.html,10630,The Flanders Panel +4.13,512,0440910811,good_reads:book,https://www.goodreads.com/author/show/106.Madeleine_L_Engle,1980,/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/childrens|/genres/romance|/genres/science-fiction|/genres/classics|/genres/young-adult|/genres/teen|/genres/realistic-fiction|/genres/childrens|/genres/juvenile,dir49/14358.A_Ring_of_Endless_Light.html,13614,"A Ring of Endless Light (Austin Family, #5)" +3.95,906,0765312182,good_reads:book,https://www.goodreads.com/author/show/27167.Peter_Watts,2006,/genres/science-fiction|/genres/fiction|/genres/horror|/genres/paranormal|/genres/vampires|/genres/speculative-fiction|/genres/science-fiction|/genres/aliens,dir49/48484.Blindsight.html,8554,Blindsight +4.04,1995,1301786454,good_reads:book,https://www.goodreads.com/author/show/6546441.Katie_Ashley,2013,/genres/romance|/genres/new-adult|/genres/romance|/genres/contemporary-romance|/genres/music|/genres/contemporary|/genres/adult,dir49/16062210-music-of-the-heart.html,26742,"Music of the Heart (Runaway Train, #1)" +4.24,693,1442440783,good_reads:book,https://www.goodreads.com/author/show/151371.Jenny_Han,2013,/genres/young-adult|/genres/contemporary|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/womens-fiction|/genres/chick-lit|/genres/mystery|/genres/fiction|/genres/young-adult|/genres/high-school|/genres/young-adult|/genres/teen,dir49/10662420-fire-with-fire.html,3555,"Fire with Fire (Burn for Burn, #2)" +3.94,242,0152166637,good_reads:book,https://www.goodreads.com/author/show/13014.Vivian_Vande_Velde,1992,/genres/fantasy|/genres/fantasy|/genres/dragons|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/magic|/genres/fiction|/genres/adventure|/genres/young-adult|/genres/young-adult-fantasy|/genres/paranormal|/genres/shapeshifters|/genres/fantasy|/genres/high-fantasy,dir49/372807.Dragon_s_Bait.html,4883,Dragon's Bait +4.06,254,0805063749,good_reads:book,https://www.goodreads.com/author/show/22099.John_Nichols,1974,/genres/fiction|/genres/magical-realism|/genres/historical-fiction|/genres/literature|/genres/novels|/genres/contemporary|/genres/humor|/genres/classics|/genres/book-club|/genres/literary-fiction,dir49/39242.The_Milagro_Beanfield_War.html,5944,The Milagro Beanfield War +4.44,255,0553214829,good_reads:book,https://www.goodreads.com/author/show/1673.Thomas_Jefferson,1776,/genres/history|/genres/non-fiction|/genres/classics|/genres/politics|/genres/philosophy|/genres/history|/genres/american-history|/genres/reference|/genres/politics|/genres/political-science|/genres/law|/genres/literature|/genres/american,dir49/285500.The_Declaration_of_Independence_and_The_Constitution_of_the_United_States.html,13841,The Declaration of Independence and The Constitution of the United States +3.65,882,0802118585,good_reads:book,https://www.goodreads.com/author/show/420967.Pascal_Mercier,2004,/genres/fiction|/genres/philosophy|/genres/literature|/genres/novels|/genres/european-literature|/genres/german-literature|/genres/contemporary|/genres/cultural|/genres/portugal|/genres/historical-fiction|/genres/book-club|/genres/writing|/genres/books-about-books,dir49/1528410.Night_Train_to_Lisbon.html,7197,Night Train to Lisbon +4.35,591,1591169151,good_reads:book,https://www.goodreads.com/author/show/144405.Bisco_Hatori,2003,/genres/sequential-art|/genres/manga|/genres/romance|/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/media-tie-in|/genres/anime|/genres/young-adult|/genres/humor|/genres/humor|/genres/comedy|/genres/manga|/genres/shojo|/genres/fiction,dir49/1087204.Ouran_High_School_Host_Club_Vol_01.html,65513,"Ouran High School Host Club, Vol. 01 (Ouran High School Host Club, #1)" +4.32,337,0061229776,good_reads:book,https://www.goodreads.com/author/show/17059.Lynsay_Sands,2008,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/humor|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/contemporary|/genres/mystery,dir49/1422252.Vampire_Interrupted.html,12867,"Vampire, Interrupted (Argeneau #9)" +3.99,217,0451461606,good_reads:book,https://www.goodreads.com/author/show/26897.Anne_Bishop,2008,/genres/fantasy|/genres/fiction|/genres/romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/dark-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/high-fantasy|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/epic-fantasy,dir49/997846.Tangled_Webs.html,7583,"Tangled Webs (The Black Jewels, #6)" +4.08,183,0440420768,good_reads:book,https://www.goodreads.com/author/show/29868.S_F_Said,2003,/genres/fantasy|/genres/animals|/genres/fiction|/genres/animals|/genres/cats|/genres/childrens|/genres/young-adult|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/animals|/genres/animal-fiction,dir49/52862.Varjak_Paw.html,2018,Varjak Paw +4.00,59,006087158X,good_reads:book,https://www.goodreads.com/author/show/4431689.Allan_Frewin_Jones,2010,/genres/fantasy|/genres/young-adult|/genres/paranormal|/genres/fairies|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/fairies|/genres/fae|/genres/fantasy|/genres/magic,dir50/6550815-the-enchanted-quest.html,1511,"The Enchanted Quest (Faerie Path, #5)" +3.76,909,0385612664,good_reads:book,https://www.goodreads.com/author/show/80760.Siobhan_Dowd,2007,/genres/mystery|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/childrens|/genres/juvenile,dir50/1184305.The_London_Eye_Mystery.html,5863,The London Eye Mystery +4.11,321,1442405961,good_reads:book,https://www.goodreads.com/author/show/19954.Christopher_Pike,2010,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/paranormal|/genres/ghosts|/genres/horror|/genres/mystery|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/thriller,dir50/7148787-remember-me.html,6180,"Remember Me (Remember Me, #1-3)" +3.83,1247,1416928170,good_reads:book,https://www.goodreads.com/author/show/51424.James_Howe,1979,/genres/childrens|/genres/fiction|/genres/fantasy|/genres/mystery|/genres/young-adult|/genres/horror|/genres/animals|/genres/humor|/genres/paranormal|/genres/vampires|/genres/childrens|/genres/juvenile,dir50/281235.Bunnicula.html,37278,"Bunnicula (Bunnicula, #1)" +4.31,1850,037321099X,good_reads:book,https://www.goodreads.com/author/show/4575371.Katie_McGarry,2013,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/new-adult|/genres/romance|/genres/contemporary-romance|/genres/realistic-fiction|/genres/young-adult|/genres/high-school|/genres/young-adult|/genres/young-adult-contemporary|/genres/young-adult|/genres/young-adult-romance|/genres/fiction,dir50/17233800-crash-into-you.html,11525,"Crash into You (Pushing the Limits, #3)" +4.11,1048,0425240169,good_reads:book,https://www.goodreads.com/author/show/1647762.Julie_James,2011,/genres/romance|/genres/contemporary-romance|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/adult|/genres/contemporary|/genres/suspense|/genres/fiction|/genres/mystery|/genres/humor|/genres/funny|/genres/humor,dir50/8419428-a-lot-like-love.html,17711,"A Lot like Love (FBI/US Attorney, #2)" +3.94,1488,0425233383,good_reads:book,https://www.goodreads.com/author/show/1647762.Julie_James,2010,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/romance|/genres/romantic-suspense|/genres/womens-fiction|/genres/chick-lit|/genres/adult|/genres/mystery|/genres/suspense|/genres/fiction|/genres/mystery|/genres/crime,dir50/6642402-something-about-you.html,35581,"Something About You (FBI/US Attorney, #1)" +3.85,1510,0440418518,good_reads:book,https://www.goodreads.com/author/show/61707.Linda_Sue_Park,2001,/genres/historical-fiction|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/middle-grade|/genres/academic|/genres/school|/genres/cultural|/genres/asia|/genres/cultural|/genres/realistic-fiction,dir50/785453.A_Single_Shard.html,20162,A Single Shard +4.26,958,0374521727,good_reads:book,https://www.goodreads.com/author/show/238.Joan_Didion,1968,/genres/non-fiction|/genres/writing|/genres/essays|/genres/autobiography|/genres/memoir|/genres/history|/genres/short-stories|/genres/writing|/genres/journalism|/genres/classics|/genres/literature|/genres/american,dir50/424.Slouching_Towards_Bethlehem.html,11658,Slouching Towards Bethlehem +4.21,108,0385738943,good_reads:book,https://www.goodreads.com/author/show/17082.Amelia_Atwater_Rhodes,2009,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/fiction|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/supernatural,dir50/6483519-the-den-of-shadows-quartet.html,3054,"The Den of Shadows Quartet (Den of Shadows, #1-4)" +4.35,311,0553381008,good_reads:book,https://www.goodreads.com/author/show/5031025.Anton_Chekhov,1900,/genres/classics|/genres/fiction|/genres/literature|/genres/russian-literature|/genres/literature|/genres/cultural|/genres/russia|/genres/literature|/genres/19th-century|/genres/short-stories|/genres/literary-fiction,dir50/5693.Selected_Stories.html,17114,Selected Stories +3.76,70,057122590X,good_reads:book,https://www.goodreads.com/author/show/22595.Peter_Carey,1985,/genres/fiction|/genres/cultural|/genres/australia|/genres/literary-fiction|/genres/literature|/genres/humor|/genres/comedy|/genres/contemporary|/genres/fantasy|/genres/magical-realism|/genres/humor|/genres/novels,dir50/286357.Illywhacker.html,1680,Illywhacker +3.87,621,0670037788,good_reads:book,https://www.goodreads.com/author/show/6599.Margaret_George,2006,/genres/historical-fiction|/genres/fiction|/genres/fantasy|/genres/mythology|/genres/romance|/genres/fantasy|/genres/cultural|/genres/greece|/genres/war|/genres/adult|/genres/classics|/genres/mythology|/genres/greek-mythology,dir50/10114.Helen_of_Troy.html,6392,Helen of Troy +4.08,2851,0425227510,good_reads:book,https://www.goodreads.com/author/show/625.Nora_Roberts,2009,/genres/romance|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/adult-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/adult|/genres/romantic|/genres/book-club|/genres/womens-fiction,dir50/5598113-vision-in-white.html,80285,"Vision in White (Bride Quartet, #1)" +3.70,869,0394726413,good_reads:book,https://www.goodreads.com/author/show/14079.Jay_McInerney,1984,/genres/fiction|/genres/new-york|/genres/contemporary|/genres/novels|/genres/literature|/genres/literature|/genres/american|/genres/classics|/genres/literary-fiction|/genres/thriller|/genres/literature|/genres/20th-century,dir50/86147.Bright_Lights_Big_City.html,15266,"Bright Lights, Big City" +4.16,283,8807813025,good_reads:book,https://www.goodreads.com/author/show/908.Alessandro_Baricco,1994,/genres/fiction|/genres/european-literature|/genres/italian-literature|/genres/cultural|/genres/italy|/genres/plays|/genres/novels|/genres/literature|/genres/drama|/genres/academic|/genres/school|/genres/plays|/genres/theatre|/genres/short-stories,dir50/61266.Novecento_Un_monologo.html,6037,Novecento. Un monologo +4.11,208,1401917593,good_reads:book,https://www.goodreads.com/author/show/30278.Esther_Hicks,2006,/genres/spirituality|/genres/self-help|/genres/non-fiction|/genres/spirituality|/genres/new-age|/genres/psychology|/genres/self-help|/genres/personal-development|/genres/inspirational|/genres/philosophy|/genres/metaphysics|/genres/reference|/genres/philosophy,dir50/343614.The_Law_of_Attraction.html,8790,The Law of Attraction +4.21,515,0805080325,good_reads:book,https://www.goodreads.com/author/show/8550628.Jim_Dwyer,2005,/genres/non-fiction|/genres/history|/genres/history|/genres/american-history|/genres/biography|/genres/war|/genres/terrorism|/genres/adventure|/genres/survival|/genres/war|/genres/adult|/genres/politics|/genres/autobiography|/genres/memoir,dir50/177187.102_Minutes.html,3999,102 Minutes +3.92,983,0743271327,good_reads:book,https://www.goodreads.com/author/show/1262010.Annie_Proulx,1997,/genres/fiction|/genres/short-stories|/genres/romance|/genres/glbt|/genres/romance|/genres/m-m-romance|/genres/glbt|/genres/gay|/genres/glbt|/genres/queer|/genres/western|/genres/contemporary|/genres/literature|/genres/american,dir50/1627.Brokeback_Mountain.html,14537,Brokeback Mountain +3.82,1376,0060845546,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2002,/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/fiction|/genres/contemporary|/genres/young-adult|/genres/romance|/genres/contemporary-romance|/genres/adult|/genres/humor|/genres/adult-fiction|/genres/mystery,dir50/93722.The_Boy_Next_Door.html,39965,"The Boy Next Door (Boy, #1)" +3.87,351,0440983568,good_reads:book,https://www.goodreads.com/author/show/26819.Lois_Duncan,1981,/genres/young-adult|/genres/fiction|/genres/mystery|/genres/horror|/genres/thriller|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/teen|/genres/suspense|/genres/fantasy|/genres/fantasy|/genres/supernatural,dir50/838768.Stranger_with_My_Face.html,5885,Stranger with My Face +4.03,341,0872861554,good_reads:book,https://www.goodreads.com/author/show/13275.Charles_Bukowski,1967,/genres/fiction|/genres/short-stories|/genres/poetry|/genres/literature|/genres/literature|/genres/american|/genres/novels|/genres/literature|/genres/20th-century|/genres/classics|/genres/contemporary|/genres/classics|/genres/modern-classics,dir50/38503.Tales_of_Ordinary_Madness.html,11415,Tales of Ordinary Madness +3.53,685,0061956996,good_reads:book,https://www.goodreads.com/author/show/2915782.Leah_Cypess,2009,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/young-adult|/genres/young-adult-fantasy|/genres/young-adult|/genres/teen|/genres/paranormal|/genres/shapeshifters|/genres/fiction|/genres/mystery,dir50/6768411-mistwood.html,5066,"Mistwood (Mistwood, #1)" +4.16,922,0060562498,good_reads:book,https://www.goodreads.com/author/show/27847.Lisa_Kleypas,2002,/genres/romance|/genres/historical-romance|/genres/romance|/genres/historical-fiction|/genres/regency|/genres/fiction|/genres/adult|/genres/historical-romance|/genres/regency-romance|/genres/womens-fiction|/genres/chick-lit|/genres/european-literature|/genres/british-literature|/genres/adult-fiction,dir50/827412.It_Happened_One_Autumn.html,22616,"It Happened One Autumn (Wallflowers, #2)" +4.12,270,067006226X,good_reads:book,https://www.goodreads.com/author/show/15188.Pat_Murphy,2007,/genres/young-adult|/genres/fiction|/genres/realistic-fiction|/genres/historical-fiction|/genres/childrens|/genres/middle-grade|/genres/fantasy|/genres/childrens|/genres/language|/genres/writing|/genres/childrens|/genres/juvenile|/genres/adult,dir50/410127.The_Wild_Girls.html,1174,The Wild Girls +4.25,193,1595547134,good_reads:book,https://www.goodreads.com/author/show/271685.Andrew_Klavan,2009,/genres/young-adult|/genres/christian|/genres/mystery|/genres/thriller|/genres/adventure|/genres/action|/genres/fiction|/genres/christian-fiction|/genres/suspense|/genres/romance,dir50/6641799-the-long-way-home.html,1771,The Long Way Home (The Homelanders #2) +3.75,2103,0765327821,good_reads:book,https://www.goodreads.com/author/show/2740668.Dan_Wells,2009,/genres/horror|/genres/young-adult|/genres/thriller|/genres/mystery|/genres/fiction|/genres/fantasy|/genres/mystery|/genres/crime|/genres/fantasy|/genres/paranormal,dir50/7617119-i-am-not-a-serial-killer.html,12980,"I Am Not A Serial Killer (John Cleaver, #1)" +4.39,51,1414301111,good_reads:book,https://www.goodreads.com/author/show/1085845.Bodie_Thoene,1991,/genres/historical-fiction|/genres/christian-fiction|/genres/fiction|/genres/christian|/genres/history|/genres/world-war-ii|/genres/world-war-ii|/genres/holocaust|/genres/adult-fiction|/genres/romance|/genres/young-adult|/genres/religion,dir50/289787.Danzig_Passage.html,2655,"Danzig Passage (Zion Covenant, #5)" +3.91,1201,1442407689,good_reads:book,https://www.goodreads.com/author/show/767547.Lisa_McMann,2011,/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/childrens|/genres/middle-grade|/genres/adventure|/genres/fiction|/genres/fantasy|/genres/magic|/genres/childrens,dir50/9917879-the-unwanteds.html,8026,"The Unwanteds (Unwanteds, #1)" +4.27,3367,0545424941,good_reads:book,https://www.goodreads.com/author/show/1330292.Maggie_Stiefvater,2013,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy,dir50/17347389-the-dream-thieves.html,19491,"The Dream Thieves (The Raven Cycle, #2)" +4.16,175,0520227034,good_reads:book,https://www.goodreads.com/author/show/81373.V_lm_ki,1870,/genres/cultural|/genres/india|/genres/classics|/genres/fiction|/genres/religion|/genres/fantasy|/genres/mythology|/genres/asian-literature|/genres/indian-literature|/genres/spirituality|/genres/literature|/genres/epic|/genres/religion|/genres/hinduism,dir50/141152.Ramayana.html,3173,Ramayana +3.87,3265,0316213101,good_reads:book,https://www.goodreads.com/author/show/25422.Holly_Black,2013,/genres/young-adult|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/horror|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/science-fiction|/genres/dystopia,dir50/12813630-the-coldest-girl-in-coldtown.html,19856,The Coldest Girl in Coldtown +3.95,98,067169071X,good_reads:book,https://www.goodreads.com/author/show/9678.Ann_Rule,1992,/genres/crime|/genres/true-crime|/genres/non-fiction|/genres/mystery|/genres/crime|/genres/true-story|/genres/mystery|/genres/drama|/genres/adult|/genres/psychology|/genres/history|/genres/thriller,dir50/225383.Everything_She_Ever_Wanted.html,3823,Everything She Ever Wanted +4.10,970,1401204252,good_reads:book,https://www.goodreads.com/author/show/12732.Grant_Morrison,1989,/genres/sequential-art|/genres/graphic-novels|/genres/dc-comics|/genres/batman|/genres/sequential-art|/genres/comics|/genres/fiction|/genres/horror|/genres/graphic-novels-comics|/genres/comics|/genres/comic-book|/genres/superheroes|/genres/dc-comics|/genres/comics|/genres/superheroes|/genres/fantasy,dir50/22374.Batman.html,33097,Batman +4.12,314,0146000110,good_reads:book,https://www.goodreads.com/author/show/4624490.Edgar_Allan_Poe,1842,/genres/classics|/genres/horror|/genres/fiction|/genres/short-stories|/genres/gothic|/genres/literature|/genres/mystery|/genres/poetry|/genres/fantasy|/genres/academic|/genres/school,dir50/206172.The_pit_and_the_pendulum_and_other_stories.html,31268,The pit and the pendulum and other stories (Penguin 60s) +4.47,62,0140072063,good_reads:book,https://www.goodreads.com/author/show/35007.William_Horwood,1987,/genres/fiction|/genres/fantasy|/genres/contemporary|/genres/historical-fiction,dir50/431221.Skallagrigg.html,401,Skallagrigg +3.85,848,0812550293,good_reads:book,https://www.goodreads.com/author/show/6252.Robert_Jordan,1998,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/epic|/genres/adventure|/genres/fantasy|/genres/magic|/genres/adult|/genres/science-fiction,dir50/140974.The_Path_of_Daggers.html,55251,"The Path of Daggers (Wheel of Time, #8)" +4.12,637,1563127873,good_reads:book,https://www.goodreads.com/author/show/13388.Shirley_Jackson,1948,/genres/short-stories|/genres/classics|/genres/horror|/genres/fiction|/genres/science-fiction|/genres/dystopia|/genres/academic|/genres/school|/genres/academic|/genres/read-for-school|/genres/science-fiction|/genres/literature|/genres/gothic,dir50/6219656-the-lottery.html,22921,The Lottery +3.96,255,0441011241,good_reads:book,https://www.goodreads.com/author/show/874602.Ursula_K_Le_Guin,2001,/genres/fantasy|/genres/fiction|/genres/short-stories|/genres/young-adult|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/dragons|/genres/fantasy|/genres/epic-fantasy,dir50/13659.Tales_from_Earthsea.html,8574,"Tales from Earthsea (Earthsea Cycle, #5)" +4.29,782,0373210612,good_reads:book,https://www.goodreads.com/author/show/415967.Rachel_Vincent,2012,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/demons|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/ghosts|/genres/fiction,dir50/11418574-before-i-wake.html,7845,"Before I Wake (Soul Screamers, #6)" +4.13,1170,0061797081,good_reads:book,https://www.goodreads.com/author/show/7581.Kelley_Armstrong,2013,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/shapeshifters|/genres/werewolves|/genres/paranormal|/genres/shapeshifters|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/witches,dir50/11864728-the-rising.html,11461,"The Rising (Darkness Rising, #3)" +4.14,2409,,good_reads:book,https://www.goodreads.com/author/show/6574132.R_K_Lilley,2012,/genres/romance|/genres/erotica|/genres/bdsm|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/adult|/genres/romance|/genres/erotic-romance|/genres/new-adult|/genres/sociology|/genres/abuse,dir50/16134782-in-flight.html,43000,"In Flight (Up in the Air, #1)" +3.82,1545,0062114875,good_reads:book,https://www.goodreads.com/author/show/4774478.Kat_Zhang,2012,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/paranormal,dir50/11043618-what-s-left-of-me.html,9270,"What's Left of Me (The Hybrid Chronicles, #1)" +4.38,515,0007466072,good_reads:book,https://www.goodreads.com/author/show/346732.George_R_R_Martin,2011,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/adult|/genres/fantasy|/genres/dragons|/genres/adventure|/genres/novels|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic,dir50/13337716-a-dance-with-dragons.html,7398,"A Dance with Dragons (A Song of Ice and Fire #5, Part 2 of 2)" +4.75,191,0836221362,good_reads:book,https://www.goodreads.com/author/show/13778.Bill_Watterson,1996,/genres/sequential-art|/genres/comics|/genres/humor|/genres/sequential-art|/genres/graphic-novels|/genres/fiction|/genres/comics|/genres/comic-book|/genres/humor|/genres/comedy|/genres/sequential-art|/genres/comic-strips|/genres/graphic-novels-comics|/genres/childrens|/genres/humor|/genres/funny,dir50/24814.Calvin_and_Hobbes.html,18637,Calvin and Hobbes +4.09,247,0738706310,good_reads:book,https://www.goodreads.com/author/show/58846.Laurie_Faria_Stolarz,2005,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/mystery|/genres/paranormal|/genres/witches|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/young-adult|/genres/teen,dir50/493123.Silver_Is_for_Secrets.html,7003,"Silver Is for Secrets (Blue is for Nightmares, #3)" +4.09,547,0440405823,good_reads:book,https://www.goodreads.com/author/show/16839.James_Thurber,1950,/genres/fantasy|/genres/fiction|/genres/childrens|/genres/classics|/genres/fantasy|/genres/fairy-tales|/genres/young-adult|/genres/childrens|/genres/juvenile|/genres/literature|/genres/poetry|/genres/literature|/genres/american,dir50/143126.The_13_Clocks.html,3030,The 13 Clocks +3.97,1339,0425238814,good_reads:book,https://www.goodreads.com/author/show/2613.Jaci_Burton,2011,/genres/romance|/genres/sports-and-games|/genres/sports|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/adult-fiction|/genres/erotica|/genres/contemporary-romance|/genres/sports-romance|/genres/romance|/genres/erotic-romance|/genres/adult|/genres/womens-fiction|/genres/chick-lit|/genres/football,dir50/8341567-the-perfect-play.html,22430,"The Perfect Play (Play by Play, #1)" +3.77,428,0385334176,good_reads:book,https://www.goodreads.com/author/show/2778055.Kurt_Vonnegut,1982,/genres/fiction|/genres/literature|/genres/humor|/genres/classics|/genres/novels|/genres/contemporary|/genres/science-fiction|/genres/horror|/genres/literary-fiction|/genres/modern,dir50/9598.Deadeye_Dick.html,15375,Deadeye Dick +4.15,451,0979018838,good_reads:book,https://www.goodreads.com/author/show/435891.Lidia_Yuknavitch,2011,/genres/autobiography|/genres/memoir|/genres/non-fiction|/genres/glbt|/genres/queer|/genres/biography|/genres/biography|/genres/autobiography|/genres/biography-memoir|/genres/womens|/genres/book-club|/genres/feminism|/genres/glbt,dir50/9214995-the-chronology-of-water.html,2656,The Chronology of Water +3.77,985,0399159436,good_reads:book,https://www.goodreads.com/author/show/5188888.Elizabeth_Richards,2012,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/science-fiction|/genres/romance|/genres/paranormal-romance|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fantasy|/genres/supernatural,dir50/12568505-black-city.html,6592,"Black City (Black City, #1)" +3.45,1276,,good_reads:book,https://www.goodreads.com/author/show/3162181._,2011,/genres/novels|/genres/romance|/genres/romantic|/genres/love,dir50/10400407.html,9555,في ديسمبر تنتهي كل الأحلام +4.09,221,4770029160,good_reads:book,https://www.goodreads.com/author/show/79642.Yamamoto_Tsunetomo,1979,/genres/philosophy|/genres/non-fiction|/genres/cultural|/genres/japan|/genres/history|/genres/asian-literature|/genres/japanese-literature|/genres/classics|/genres/religion|/genres/cultural|/genres/asia|/genres/war|/genres/spirituality,dir50/277950.Hagakure.html,5981,Hagakure +4.02,125,2070418014,good_reads:book,https://www.goodreads.com/author/show/4750._mile_Zola,968,/genres/classics|/genres/cultural|/genres/france|/genres/european-literature|/genres/french-literature|/genres/literature|/genres/19th-century|/genres/literature|/genres/novels|/genres/roman|/genres/mystery|/genres/crime|/genres/historical-fiction|/genres/literary-fiction,dir50/28417.La_B_te_humaine.html,3594,"La Bête humaine (Les Rougon-Macquart, #17)" +4.21,250,,good_reads:book,https://www.goodreads.com/author/show/6268.Christine_Feehan,2000,/genres/romance|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/fiction|/genres/adult|/genres/fantasy|/genres/urban-fantasy|/genres/dark|/genres/fantasy|/genres/supernatural,dir50/313256.Dark_Challenge.html,13919,"Dark Challenge (Dark, #5)" +3.82,1019,159514191X,good_reads:book,https://www.goodreads.com/author/show/753097.Robin_Benway,2008,/genres/young-adult|/genres/contemporary|/genres/music|/genres/romance|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/humor,dir50/1627267.Audrey_Wait_.html,10422,"Audrey, Wait!" +4.23,418,0786939834,good_reads:book,https://www.goodreads.com/author/show/1023510.R_A_Salvatore,1990,/genres/fantasy|/genres/dungeons-and-dragons|/genres/forgotten-realms|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/magic|/genres/adventure|/genres/role-playing-games|/genres/dungeons-and-dragons|/genres/heroic-fantasy|/genres/sword-and-sorcery,dir50/66678.Exile.html,27220,"Exile (Forgotten Realms: The Dark Elf Trilogy, #2; Legend of Drizzt, #2)" +4.30,502,0064406970,good_reads:book,https://www.goodreads.com/author/show/9072.Francesca_Lia_Block,1998,/genres/young-adult|/genres/fantasy|/genres/fiction|/genres/magical-realism|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/glbt|/genres/queer|/genres/glbt,dir50/14565.Dangerous_Angels.html,6461,"Dangerous Angels (Weetzie Bat, #1-5)" +3.75,709,006166152X,good_reads:book,https://www.goodreads.com/author/show/2761947.Jackson_Pearce,2008,/genres/young-adult|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/romance|/genres/paranormal-romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/teen|/genres/fiction,dir50/6750586-as-you-wish.html,5333,As You Wish +3.69,338,0446617008,good_reads:book,https://www.goodreads.com/author/show/38531.Michelle_Rowen,2006,/genres/paranormal|/genres/vampires|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/fantasy|/genres/supernatural,dir50/68400.Bitten_Smitten.html,6170,"Bitten & Smitten (Immortality Bites, #1)" +4.10,90,0007270259,good_reads:book,https://www.goodreads.com/author/show/41542.Helen_Dunmore,2008,/genres/fantasy|/genres/mermaids|/genres/young-adult|/genres/adventure|/genres/fiction|/genres/romance|/genres/fantasy|/genres/paranormal,dir50/2580514-the-crossing-of-ingo.html,1806,"The Crossing of Ingo (Ingo, #4)" +4.01,460,0060894083,good_reads:book,https://www.goodreads.com/author/show/3151.Matt_Ridley,1999,/genres/science|/genres/non-fiction|/genres/science|/genres/biology|/genres/biology|/genres/genetics|/genres/biology|/genres/evolution|/genres/science|/genres/popular-science|/genres/health|/genres/medicine|/genres/history,dir50/4591.Genome.html,11881,Genome +3.96,720,0515139742,good_reads:book,https://www.goodreads.com/author/show/625.Nora_Roberts,2004,/genres/romance|/genres/romance|/genres/romantic-suspense|/genres/mystery|/genres/fiction|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/suspense|/genres/womens-fiction|/genres/chick-lit|/genres/adult|/genres/thriller,dir50/85459.Northern_Lights.html,28108,Northern Lights +4.10,584,0064400964,good_reads:book,https://www.goodreads.com/author/show/5306.Maud_Hart_Lovelace,1940,/genres/childrens|/genres/fiction|/genres/classics|/genres/historical-fiction|/genres/young-adult|/genres/childrens|/genres/juvenile,dir50/7909.Betsy_Tacy.html,11933,"Betsy-Tacy (Betsy-Tacy, #1)" +3.51,516,1933368365,good_reads:book,https://www.goodreads.com/author/show/9320.Martin_Millar,1992,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/humor|/genres/paranormal|/genres/fairies|/genres/science-fiction-fantasy|/genres/humor|/genres/funny|/genres/adult|/genres/contemporary|/genres/humor|/genres/comedy,dir50/16789.The_Good_Fairies_of_New_York.html,3580,The Good Fairies of New York +4.33,224,1420926306,good_reads:book,https://www.goodreads.com/author/show/36913.Rabindranath_Tagore,1910,/genres/poetry|/genres/classics|/genres/cultural|/genres/india|/genres/asian-literature|/genres/indian-literature|/genres/fiction|/genres/philosophy|/genres/nobel-prize|/genres/literature|/genres/spirituality|/genres/inspirational,dir50/66414.Gitanjali.html,4072,Gitanjali +4.21,203,0375714499,good_reads:book,https://www.goodreads.com/author/show/2476.Noam_Chomsky,1988,/genres/politics|/genres/non-fiction|/genres/history|/genres/philosophy|/genres/sociology|/genres/economics|/genres/politics|/genres/political-science|/genres/writing|/genres/journalism|/genres/culture|/genres/social,dir50/12617.Manufacturing_Consent.html,7547,Manufacturing Consent +3.41,553,0440136482,good_reads:book,https://www.goodreads.com/author/show/33358.Michael_Baigent,1982,/genres/religion|/genres/non-fiction|/genres/history|/genres/mystery|/genres/religion|/genres/christianity|/genres/reference|/genres/fantasy|/genres/mythology|/genres/occult|/genres/spirituality|/genres/philosophy,dir50/606818.Holy_Blood_Holy_Grail.html,7777,"Holy Blood, Holy Grail" +4.06,99,1933963824,good_reads:book,https://www.goodreads.com/author/show/758992.Jennifer_Laurens,2010,/genres/paranormal|/genres/angels|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy|/genres/young-adult|/genres/young-adult-paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/demons,dir50/8171984-absolution.html,863,"Absolution (Heavenly, #3)" +3.81,1951,0547248040,good_reads:book,https://www.goodreads.com/author/show/1318.Susan_Beth_Pfeffer,2010,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fiction|/genres/young-adult|/genres/teen|/genres/adventure|/genres/survival|/genres/science-fiction|/genres/apocalyptic|/genres/romance|/genres/fantasy,dir50/6393972-this-world-we-live-in.html,18359,"This World We Live In (Last Survivors, #3)" +4.20,393,0553265962,good_reads:book,https://www.goodreads.com/author/show/170216.Robert_Specht,1976,/genres/historical-fiction|/genres/fiction|/genres/young-adult|/genres/adventure|/genres/romance|/genres/travel|/genres/book-club|/genres/classics|/genres/biography-memoir|/genres/true-story,dir50/294861.Tisha.html,2379,Tisha +4.21,630,1416958630,good_reads:book,https://www.goodreads.com/author/show/19564.Neal_Shusterman,2009,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/ghosts|/genres/adventure|/genres/science-fiction|/genres/young-adult|/genres/teen|/genres/romance,dir50/6390465-everwild.html,7324,"Everwild (Skinjacker, #2)" +4.35,1079,0312624697,good_reads:book,https://www.goodreads.com/author/show/4154802.C_C_Hunter,2012,/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/shapeshifters|/genres/werewolves|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/magic|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/witches|/genres/paranormal|/genres/ghosts|/genres/paranormal|/genres/fairies,dir50/12866426-taken-at-dusk.html,24709,"Taken at Dusk (Shadow Falls, #3)" +3.88,443,0425192792,good_reads:book,https://www.goodreads.com/author/show/17015.P_C_Cast,2003,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/mythology|/genres/mermaids|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/magic|/genres/fiction|/genres/young-adult|/genres/fantasy|/genres/supernatural,dir50/30196.Goddess_of_the_Sea.html,6246,"Goddess of the Sea (Goddess Summoning, #1)" +3.80,1117,1600963943,good_reads:book,https://www.goodreads.com/author/show/123715.Agatha_Christie,1922,/genres/mystery|/genres/fiction|/genres/mystery|/genres/crime|/genres/classics|/genres/european-literature|/genres/british-literature|/genres/mystery|/genres/detective|/genres/thriller|/genres/mystery-thriller|/genres/thriller|/genres/adventure|/genres/suspense,dir50/49596.The_Secret_Adversary.html,16070,The Secret Adversary +4.17,833,,good_reads:book,https://www.goodreads.com/author/show/5451387.Dani_Alexander,2012,/genres/romance|/genres/m-m-romance|/genres/romance|/genres/contemporary|/genres/mystery|/genres/mystery|/genres/crime|/genres/gay-romance|/genres/gay-for-you|/genres/suspense|/genres/glbt|/genres/gay|/genres/romance|/genres/contemporary-romance|/genres/humor|/genres/funny,dir50/13420351-shattered-glass.html,5032,"Shattered Glass (Shattered Glass, #1)" +4.13,606,,good_reads:book,https://www.goodreads.com/author/show/6554179.Skyla_Madi,2013,/genres/romance|/genres/new-adult|/genres/sports-and-games|/genres/sports|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/adult-fiction|/genres/erotica|/genres/adult|/genres/contemporary-romance|/genres/sports-romance|/genres/love|/genres/romance|/genres/erotic-romance,dir50/17907550-consumed.html,9080,"Consumed (Consumed, #1)" +3.73,3327,0316056219,good_reads:book,https://www.goodreads.com/author/show/1226977.Paolo_Bacigalupi,2010,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fiction|/genres/adventure|/genres/young-adult|/genres/teen|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fantasy,dir50/7095831-ship-breaker.html,24214,"Ship Breaker (Ship Breaker, #1)" +3.93,740,0312099436,good_reads:book,https://www.goodreads.com/author/show/28719.Gail_Tsukiyama,1991,/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/china|/genres/book-club|/genres/cultural|/genres/asia|/genres/literature|/genres/asian-literature|/genres/adult|/genres/adult-fiction|/genres/cultural,dir50/51114.Women_of_the_Silk.html,9862,Women of the Silk +3.76,2144,0375414959,good_reads:book,https://www.goodreads.com/author/show/7844.Richard_Russo,2007,/genres/fiction|/genres/book-club|/genres/contemporary|/genres/novels|/genres/literary-fiction,dir50/107821.Bridge_of_Sighs.html,14053,Bridge of Sighs +4.53,31,0394711831,good_reads:book,https://www.goodreads.com/author/show/233619.Marcel_Proust,1922,/genres/fiction|/genres/classics|/genres/literature|/genres/novels|/genres/cultural|/genres/france|/genres/european-literature|/genres/french-literature|/genres/literary-fiction|/genres/literature|/genres/20th-century,dir50/28395.Remembrance_of_Things_Past.html,679,Remembrance of Things Past +4.32,247,0061555096,good_reads:book,https://www.goodreads.com/author/show/27498.Erin_Hunter,2009,/genres/fantasy|/genres/animals|/genres/animals|/genres/cats|/genres/fiction|/genres/young-adult|/genres/childrens|/genres/adventure|/genres/animals|/genres/animal-fiction,dir50/6249757-the-fourth-apprentice.html,6837,"The Fourth Apprentice (Warriors: Omen of the Stars, #1)" +3.81,160,0006485278,good_reads:book,https://www.goodreads.com/author/show/16865.Timothy_Findley,1999,/genres/fiction|/genres/cultural|/genres/canada|/genres/historical-fiction|/genres/fantasy|/genres/literature|/genres/psychology|/genres/book-club|/genres/literature|/genres/canadian-literature|/genres/adult-fiction|/genres/mystery,dir50/823134.Pilgrim.html,2092,Pilgrim +4.05,456,1585363251,good_reads:book,https://www.goodreads.com/author/show/137554.Roland_Smith,2008,/genres/mystery|/genres/young-adult|/genres/adventure|/genres/fiction|/genres/realistic-fiction|/genres/spy-thriller|/genres/espionage|/genres/action|/genres/suspense|/genres/young-adult|/genres/teen|/genres/childrens,dir50/3599149-independence-hall.html,4938,"Independence Hall (I, Q, #1)" +4.33,542,,good_reads:book,https://www.goodreads.com/author/show/2766469.Rachel_Ren_e_Russell,2011,/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/young-adult,dir50/9635657-tales-from-a-not-so-talented-pop-star.html,14626,"Tales from a Not-So-Talented Pop Star (Dork Diaries, #3)" +4.15,192,0811202097,good_reads:book,https://www.goodreads.com/author/show/57189.Dylan_Thomas,1953,/genres/plays|/genres/poetry|/genres/drama|/genres/classics|/genres/literature|/genres/plays|/genres/theatre|/genres/fiction|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/20th-century|/genres/classics|/genres/modern-classics,dir50/763508.Under_Milk_Wood.html,3148,Under Milk Wood +4.04,275,1400078636,good_reads:book,https://www.goodreads.com/author/show/26496.Imre_Kert_sz,1975,/genres/cultural|/genres/hungary|/genres/historical-fiction|/genres/european-literature|/genres/hungarian-literature|/genres/war|/genres/history|/genres/world-war-ii|/genres/classics|/genres/novels|/genres/literature,dir50/318335.Fatelessness.html,3071,Fatelessness +3.95,3056,1590514637,good_reads:book,https://www.goodreads.com/author/show/786925.Jan_Philipp_Sendker,2002,/genres/fiction|/genres/book-club|/genres/historical-fiction|/genres/romance|/genres/cultural|/genres/asia|/genres/mystery|/genres/adult-fiction|/genres/adult|/genres/novels|/genres/contemporary,dir50/11331421-the-art-of-hearing-heartbeats.html,20581,The Art of Hearing Heartbeats +4.21,509,0380779617,good_reads:book,https://www.goodreads.com/author/show/51304.Catherine_Anderson,1996,/genres/romance|/genres/historical-romance|/genres/romance|/genres/western|/genres/historical-fiction|/genres/adult|/genres/romance|/genres/western-romance|/genres/fiction|/genres/disability|/genres/sociology|/genres/abuse|/genres/womens-fiction|/genres/chick-lit,dir50/659600.Annie_s_Song.html,6376,Annie's Song +4.18,114,0451210751,good_reads:book,https://www.goodreads.com/author/show/51304.Catherine_Anderson,2004,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/romance|/genres/western-romance|/genres/western|/genres/fiction|/genres/romance|/genres/historical-romance|/genres/love|/genres/family|/genres/adult-fiction,dir50/89354.Blue_Skies.html,2851,Blue Skies +4.08,340,1416567038,good_reads:book,https://www.goodreads.com/author/show/1330133.Meredith_Duran,2008,/genres/romance|/genres/historical-romance|/genres/romance|/genres/historical-fiction|/genres/regency|/genres/cultural|/genres/india|/genres/fiction|/genres/historical-romance|/genres/regency-romance|/genres/adult|/genres/european-literature|/genres/british-literature|/genres/dark,dir50/3112394-the-duke-of-shadows.html,3231,The Duke of Shadows +3.89,681,0399154345,good_reads:book,https://www.goodreads.com/author/show/625.Nora_Roberts,2007,/genres/romance|/genres/romance|/genres/romantic-suspense|/genres/mystery|/genres/fiction|/genres/suspense|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/thriller|/genres/womens-fiction|/genres/chick-lit|/genres/adult,dir50/114133.High_Noon.html,16857,High Noon +3.92,135,1583220089,good_reads:book,https://www.goodreads.com/author/show/17220.Nelson_Algren,1949,/genres/fiction|/genres/literature|/genres/classics|/genres/mystery|/genres/crime|/genres/mystery|/genres/literature|/genres/american|/genres/novels|/genres/mystery|/genres/noir|/genres/american|/genres/american-fiction|/genres/literature|/genres/20th-century,dir50/383022.The_Man_With_the_Golden_Arm.html,1508,The Man With the Golden Arm +3.62,381,0192840312,good_reads:book,https://www.goodreads.com/author/show/21152.Fanny_Burney,1778,/genres/classics|/genres/fiction|/genres/literature|/genres/18th-century|/genres/romance|/genres/literature|/genres/historical-fiction|/genres/novels|/genres/european-literature|/genres/british-literature|/genres/classics|/genres/classic-literature|/genres/academic|/genres/school,dir50/37638.Evelina.html,7178,Evelina +4.10,161,0679733841,good_reads:book,https://www.goodreads.com/author/show/957894.Albert_Camus,1951,/genres/philosophy|/genres/non-fiction|/genres/cultural|/genres/france|/genres/classics|/genres/politics|/genres/literature|/genres/european-literature|/genres/french-literature|/genres/history,dir50/11990.The_Rebel.html,5639,The Rebel +3.95,639,0060737557,good_reads:book,https://www.goodreads.com/author/show/56370.Michael_Thomas_Ford,2008,/genres/young-adult|/genres/contemporary|/genres/realistic-fiction|/genres/glbt|/genres/fiction|/genres/mental-health|/genres/mental-illness|/genres/health|/genres/mental-health|/genres/psychology|/genres/humor|/genres/glbt|/genres/gay,dir50/3097601-suicide-notes.html,9000,Suicide Notes +3.97,989,0345476999,good_reads:book,https://www.goodreads.com/author/show/18149.Tess_Gerritsen,2006,/genres/mystery|/genres/mystery|/genres/crime|/genres/thriller|/genres/fiction|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/detective|/genres/horror|/genres/mystery|/genres/murder-mystery|/genres/adult,dir50/32254.The_Mephisto_Club.html,17364,"The Mephisto Club (Rizzoli & Isles, #6)" +3.96,721,1897299214,good_reads:book,https://www.goodreads.com/author/show/46027.Guy_Delisle,2002,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/non-fiction|/genres/travel|/genres/autobiography|/genres/memoir|/genres/sequential-art|/genres/bande-dessin%C3%A9e|/genres/cultural|/genres/asia|/genres/graphic-novels-comics|/genres/politics|/genres/biography,dir50/80834.Pyongyang.html,8471,Pyongyang +4.20,1797,0553804693,good_reads:book,https://www.goodreads.com/author/show/73149.Scott_Lynch,2013,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/adventure|/genres/fantasy|/genres/high-fantasy,dir50/2890090-the-republic-of-thieves.html,19234,"The Republic of Thieves (Gentleman Bastard, #3)" +4.16,1102,0451456718,good_reads:book,https://www.goodreads.com/author/show/26897.Anne_Bishop,1998,/genres/fantasy|/genres/romance|/genres/fiction|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/dark-fantasy|/genres/fantasy|/genres/paranormal|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/paranormal|/genres/witches|/genres/adult,dir50/47956.Daughter_of_the_Blood.html,19450,Daughter of the Blood (The Black Jewels #1) +4.04,320,1566491606,good_reads:book,https://www.goodreads.com/author/show/63659.Barbara_Erskine,1986,/genres/historical-fiction|/genres/fiction|/genres/fantasy|/genres/romance|/genres/science-fiction|/genres/time-travel|/genres/romance|/genres/historical-romance|/genres/historical-fiction|/genres/medieval|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/european-literature|/genres/british-literature,dir51/299514.Lady_of_Hay.html,3574,Lady of Hay +3.97,784,0553582747,good_reads:book,https://www.goodreads.com/author/show/9355.Dean_Koontz,2000,/genres/horror|/genres/fiction|/genres/thriller|/genres/mystery|/genres/suspense|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/detective|/genres/fantasy|/genres/paranormal,dir51/65948.From_the_Corner_of_His_Eye.html,19418,From the Corner of His Eye +4.30,236,0671890913,good_reads:book,https://www.goodreads.com/author/show/48305.Cornelius_Ryan,1959,/genres/history|/genres/non-fiction|/genres/war|/genres/military|/genres/history|/genres/world-war-ii|/genres/war|/genres/military|/genres/military-history|/genres/history|/genres/american-history|/genres/classics|/genres/cultural|/genres/france|/genres/literature|/genres/20th-century,dir51/161156.The_Longest_Day.html,9964,The Longest Day +4.00,152,0345363310,good_reads:book,https://www.goodreads.com/author/show/8732.David_Eddings,1988,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/epic|/genres/adult,dir51/286507.Demon_Lord_of_Karanda.html,22550,Demon Lord of Karanda (The Malloreon #3) +3.91,569,0743430476,good_reads:book,https://www.goodreads.com/author/show/28574.Jude_Deveraux,2001,/genres/romance|/genres/fiction|/genres/science-fiction|/genres/time-travel|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/book-club|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/adult,dir51/251979.The_Summerhouse.html,7171,The Summerhouse +4.00,129,0007204914,good_reads:book,https://www.goodreads.com/author/show/41542.Helen_Dunmore,2007,/genres/fantasy|/genres/mermaids|/genres/young-adult|/genres/adventure|/genres/fiction|/genres/childrens|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic,dir51/1007458.The_Deep.html,2743,"The Deep (Ingo, #3)" +4.26,400,1414301073,good_reads:book,https://www.goodreads.com/author/show/1085845.Bodie_Thoene,1989,/genres/historical-fiction|/genres/christian-fiction|/genres/fiction|/genres/christian|/genres/history|/genres/world-war-ii|/genres/world-war-ii|/genres/holocaust|/genres/romance|/genres/religion|/genres/adult-fiction|/genres/religion|/genres/faith,dir51/253047.Vienna_Prelude.html,5214,"Vienna Prelude (Zion Covenant, #1)" +3.76,3009,0007178379,good_reads:book,https://www.goodreads.com/author/show/1973.Tracy_Chevalier,2009,/genres/historical-fiction|/genres/fiction|/genres/book-club|/genres/european-literature|/genres/british-literature|/genres/adult-fiction|/genres/adult|/genres/womens|/genres/novels|/genres/literature|/genres/19th-century|/genres/literary-fiction,dir51/6457081-remarkable-creatures.html,22763,Remarkable Creatures +4.09,16,1426455763,good_reads:book,https://www.goodreads.com/author/show/25619.Henryk_Sienkiewicz,1891,/genres/european-literature|/genres/polish-literature|/genres/literature|/genres/classics|/genres/cultural|/genres/poland,dir51/538859.Without_Dogma.html,235,Without Dogma +4.21,169,0007143745,good_reads:book,https://www.goodreads.com/author/show/5816.Darren_Shan,2003,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/horror|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/fantasy|/genres/supernatural,dir51/164726.Vampire_Blood_Trilogy.html,2878,"Vampire Blood Trilogy (The Saga of Darren Shan, #1-3)" +3.66,234,0446354678,good_reads:book,https://www.goodreads.com/author/show/9068.Sidney_Sheldon,1990,/genres/fiction|/genres/thriller|/genres/mystery|/genres/suspense|/genres/romance|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/crime|/genres/contemporary|/genres/drama|/genres/novels,dir51/106648.Memories_of_Midnight.html,11050,Memories of Midnight +3.85,432,0449911608,good_reads:book,https://www.goodreads.com/author/show/457.Anne_Tyler,1991,/genres/fiction|/genres/contemporary|/genres/book-club|/genres/novels|/genres/literary-fiction|/genres/adult-fiction|/genres/literature|/genres/american|/genres/literature|/genres/womens-fiction|/genres/chick-lit|/genres/religion,dir51/112322.Saint_Maybe.html,10360,Saint Maybe +4.11,633,0679753338,good_reads:book,https://www.goodreads.com/author/show/7844.Richard_Russo,1993,/genres/fiction|/genres/literature|/genres/humor|/genres/contemporary|/genres/novels|/genres/literary-fiction|/genres/book-club|/genres/literature|/genres/american|/genres/drama|/genres/humor|/genres/funny,dir51/659388.Nobody_s_Fool.html,11743,Nobody's Fool +3.75,1188,0143036688,good_reads:book,https://www.goodreads.com/author/show/45978.Ron_McLarty,2003,/genres/fiction|/genres/book-club|/genres/adult-fiction|/genres/contemporary|/genres/novels|/genres/adult|/genres/literature|/genres/mental-health|/genres/mental-illness|/genres/adventure|/genres/realistic-fiction,dir51/112147.The_Memory_of_Running.html,7411,The Memory of Running +3.76,329,1598184547,good_reads:book,https://www.goodreads.com/author/show/696805.Jules_Verne,1863,/genres/science-fiction|/genres/classics|/genres/fiction|/genres/adventure|/genres/cultural|/genres/france|/genres/fantasy|/genres/literature|/genres/novels|/genres/science-fiction-fantasy|/genres/european-literature|/genres/french-literature,dir51/32827.From_the_Earth_to_the_Moon.html,11202,"From the Earth to the Moon (Extraordinary Voyages, #4)" +4.34,2078,,good_reads:book,https://www.goodreads.com/author/show/5174152.C_J_Roberts,2013,/genres/dark|/genres/romance|/genres/erotica|/genres/bdsm|/genres/adult-fiction|/genres/erotica|/genres/adult|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/new-adult,dir51/17317675-epilogue.html,16476,"Epilogue (The Dark Duet, #3)" +4.16,1423,0062267728,good_reads:book,https://www.goodreads.com/author/show/6436698.Molly_McAdams,2012,/genres/new-adult|/genres/romance|/genres/contemporary|/genres/young-adult|/genres/academic|/genres/college|/genres/romance|/genres/contemporary-romance|/genres/sociology|/genres/abuse|/genres/womens-fiction|/genres/chick-lit|/genres/drama|/genres/love,dir51/16122163-from-ashes.html,20744,"From Ashes (From Ashes, #1)" +4.09,514,0842342710,good_reads:book,https://www.goodreads.com/author/show/6492.Francine_Rivers,1995,/genres/christian-fiction|/genres/fiction|/genres/christian|/genres/historical-fiction|/genres/romance|/genres/inspirational|/genres/novels|/genres/contemporary|/genres/adult-fiction|/genres/romance|/genres/christian-romance,dir51/73297.The_Scarlet_Thread.html,15276,The Scarlet Thread +3.94,394,1401201180,good_reads:book,https://www.goodreads.com/author/show/3961.Alan_Moore,2003,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fiction|/genres/comics|/genres/comic-book|/genres/graphic-novels-comics|/genres/science-fiction|/genres/historical-fiction|/genres/science-fiction|/genres/alternate-history|/genres/fantasy|/genres/sequential-art|/genres/comix,dir51/107007.The_League_of_Extraordinary_Gentlemen_Vol_2.html,13797,"The League of Extraordinary Gentlemen, Vol. 2" +4.32,414,0152058737,good_reads:book,https://www.goodreads.com/author/show/170658.L_A_Meyer,2005,/genres/historical-fiction|/genres/young-adult|/genres/adventure|/genres/adventure|/genres/pirates|/genres/fiction|/genres/young-adult|/genres/teen|/genres/romance|/genres/fantasy|/genres/humor|/genres/action,dir51/295651.Under_the_Jolly_Roger.html,6494,"Under the Jolly Roger (Bloody Jack, #3)" +3.79,519,0140189424,good_reads:book,https://www.goodreads.com/author/show/4391.Saul_Bellow,1959,/genres/fiction|/genres/classics|/genres/literature|/genres/cultural|/genres/africa|/genres/novels|/genres/literature|/genres/american|/genres/literary-fiction|/genres/literature|/genres/20th-century|/genres/nobel-prize|/genres/book-club,dir51/52783.Henderson_the_Rain_King.html,8237,Henderson the Rain King +3.85,335,039924350X,good_reads:book,https://www.goodreads.com/author/show/63095.Andrew_Clements,2006,/genres/young-adult|/genres/science-fiction|/genres/mystery|/genres/fiction|/genres/realistic-fiction|/genres/fantasy|/genres/young-adult|/genres/teen|/genres/music|/genres/romance|/genres/childrens,dir51/235125.Things_Hoped_For.html,2742,"Things Hoped For (Things, #2)" +3.93,324,1857231325,good_reads:book,https://www.goodreads.com/author/show/9629.Terry_Brooks,1985,/genres/fantasy|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/science-fiction|/genres/adventure|/genres/epic|/genres/young-adult,dir51/15567.The_Wishsong_of_Shannara.html,25742,The Wishsong of Shannara (The Original Shannara Trilogy #3) +4.15,489,0802720978,good_reads:book,https://www.goodreads.com/author/show/3020684.Alyxandra_Harvey,2010,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen|/genres/fiction|/genres/fantasy|/genres/urban-fantasy,dir51/7234801-blood-feud.html,10035,"Blood Feud (Drake Chronicles, #2)" +3.98,1724,0312594429,good_reads:book,https://www.goodreads.com/author/show/17015.P_C_Cast,2012,/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/magic|/genres/fiction|/genres/romance|/genres/paranormal-romance|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/mythology,dir51/7933615-hidden.html,28515,"Hidden (House of Night, #10)" +4.21,1335,,good_reads:book,https://www.goodreads.com/author/show/6888697.J_B_Salsbury,2013,/genres/romance|/genres/new-adult|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/sports-and-games|/genres/sports|/genres/adult-fiction|/genres/erotica|/genres/sociology|/genres/abuse|/genres/adult|/genres/romance|/genres/erotic-romance|/genres/contemporary-romance|/genres/sports-romance,dir51/17167042-fighting-for-flight.html,15509,"Fighting for Flight (Fighting, #1)" +3.81,1907,1442413336,good_reads:book,https://www.goodreads.com/author/show/4113638.John_Corey_Whaley,2011,/genres/young-adult|/genres/contemporary|/genres/fiction|/genres/realistic-fiction|/genres/mystery|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/coming-of-age|/genres/book-club|/genres/family|/genres/religion,dir51/8563789-where-things-come-back.html,10848,Where Things Come Back +4.23,1042,0758272820,good_reads:book,https://www.goodreads.com/author/show/4629194.Brigid_Kemmerer,2012,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/young-adult-paranormal|/genres/young-adult|/genres/high-school,dir51/12977172-spark.html,8505,"Spark (Elemental, #2)" +3.65,1032,0425169693,good_reads:book,https://www.goodreads.com/author/show/3502.Alice_Hoffman,1997,/genres/fiction|/genres/romance|/genres/magical-realism|/genres/womens-fiction|/genres/chick-lit|/genres/book-club|/genres/contemporary|/genres/adult|/genres/adult-fiction|/genres/novels|/genres/literature,dir51/5159.Here_on_Earth.html,30075,Here on Earth +3.79,510,0142407631,good_reads:book,https://www.goodreads.com/author/show/145946.Sally_Gardner,2005,/genres/fantasy|/genres/historical-fiction|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/fantasy|/genres/fairy-tales|/genres/fantasy|/genres/magic|/genres/romance|/genres/european-literature|/genres/british-literature|/genres/young-adult|/genres/teen,dir51/455933.I_Coriander.html,4305,"I, Coriander" +4.08,776,0060920432,good_reads:book,https://www.goodreads.com/author/show/27446.Mihaly_Csikszentmihalyi,1990,/genres/psychology|/genres/non-fiction|/genres/self-help|/genres/business|/genres/science|/genres/philosophy|/genres/self-help|/genres/personal-development|/genres/design,dir51/66354.Flow.html,16278,Flow +4.11,432,0345335457,good_reads:book,https://www.goodreads.com/author/show/8732.David_Eddings,1983,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/adventure|/genres/epic|/genres/science-fiction,dir51/44688.Magician_s_Gambit.html,57960,"Magician's Gambit (The Belgariad, #3)" +4.05,152,0345369351,good_reads:book,https://www.goodreads.com/author/show/8732.David_Eddings,1989,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/epic|/genres/adult,dir51/371787.Sorceress_of_Darshiva.html,25042,Sorceress of Darshiva (The Malloreon #4) +3.93,201,1857988078,good_reads:book,https://www.goodreads.com/author/show/64177.Olaf_Stapledon,1937,/genres/science-fiction|/genres/fiction|/genres/philosophy|/genres/classics|/genres/speculative-fiction|/genres/science-fiction-fantasy|/genres/literature|/genres/novels|/genres/fantasy|/genres/science-fiction|/genres/utopia,dir51/525304.Star_Maker.html,2792,Star Maker +3.73,1120,006078721X,good_reads:book,https://www.goodreads.com/author/show/2238.Isabel_Allende,2005,/genres/fiction|/genres/historical-fiction|/genres/adventure|/genres/romance|/genres/european-literature|/genres/spanish-literature|/genres/book-club|/genres/novels|/genres/literature|/genres/magical-realism|/genres/media-tie-in|/genres/movies,dir51/24796.Zorro.html,12915,Zorro +3.99,3867,0316243914,good_reads:book,https://www.goodreads.com/author/show/6569504.Hannah_Kent,2013,/genres/historical-fiction|/genres/fiction|/genres/book-club|/genres/mystery|/genres/mystery|/genres/crime|/genres/adult,dir51/17333319-burial-rites.html,21138,Burial Rites +4.14,886,,good_reads:book,https://www.goodreads.com/author/show/6448939.Christine_Zolendz,2012,/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/angels|/genres/romance|/genres/new-adult|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/contemporary|/genres/romance|/genres/contemporary-romance,dir51/16070072-saving-grace.html,12935,"Saving Grace (Mad World, #2)" +3.76,1334,0385741774,good_reads:book,https://www.goodreads.com/author/show/4948810.Lauren_Morrill,2012,/genres/young-adult|/genres/contemporary|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/young-adult|/genres/young-adult-contemporary|/genres/travel|/genres/fiction|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/young-adult-romance,dir51/11721314-meant-to-be.html,8976,Meant to Be +3.71,122,0340937688,good_reads:book,https://www.goodreads.com/author/show/1411964.John_le_Carr_,1993,/genres/fiction|/genres/spy-thriller|/genres/espionage|/genres/thriller|/genres/mystery|/genres/thriller|/genres/spy-thriller|/genres/thriller|/genres/mystery-thriller|/genres/novels|/genres/mystery|/genres/crime|/genres/suspense|/genres/war,dir51/1735330.The_Night_Manager.html,2679,The Night Manager +4.01,787,0312368577,good_reads:book,https://www.goodreads.com/author/show/106.Madeleine_L_Engle,1985,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/science-fiction|/genres/childrens|/genres/classics|/genres/science-fiction|/genres/time-travel|/genres/science-fiction-fantasy|/genres/young-adult|/genres/teen|/genres/historical-fiction,dir51/151370.Many_Waters.html,26435,"Many Waters (A Wrinkle in Time Quintet, #4)" +4.08,438,0763630152,good_reads:book,https://www.goodreads.com/author/show/32401.Alison_Croggon,2004,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/young-adult-fantasy|/genres/adventure|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction-fantasy|/genres/romance,dir51/393145.The_Riddle.html,14065,"The Riddle (The Books of Pellinor, #2)" +4.03,450,1853262552,good_reads:book,https://www.goodreads.com/author/show/20524.Anthony_Trollope,1875,/genres/classics|/genres/fiction|/genres/literature|/genres/19th-century|/genres/literature|/genres/historical-fiction|/genres/european-literature|/genres/british-literature|/genres/novels,dir51/149785.The_Way_We_Live_Now.html,6468,The Way We Live Now +4.04,342,0553577239,good_reads:book,https://www.goodreads.com/author/show/42110.Lynn_Flewelling,2001,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/dark-fantasy|/genres/glbt|/genres/queer|/genres/glbt|/genres/paranormal|/genres/ghosts,dir51/671560.The_Bone_Doll_s_Twin.html,7113,"The Bone Doll's Twin (The Tamír Triad, #1)" +3.64,171,1400072522,good_reads:book,https://www.goodreads.com/author/show/356164.Jeffrey_Overstreet,2007,/genres/fantasy|/genres/fiction|/genres/young-adult|/genres/christian|/genres/christian-fiction|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/romance,dir51/818867.Auralia_s_Colors.html,1214,"Auralia's Colors (The Auralia Thread, #1)" +3.93,568,030720961X,good_reads:book,https://www.goodreads.com/author/show/18411.Clive_Cussler,1991,/genres/fiction|/genres/adventure|/genres/thriller|/genres/action|/genres/mystery|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/adult-fiction|/genres/historical-fiction|/genres/cultural|/genres/africa,dir51/41716.Sahara.html,39898,"Sahara (Dirk Pitt, #11)" +3.80,1218,0738714844,good_reads:book,https://www.goodreads.com/author/show/1330292.Maggie_Stiefvater,2009,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fairies|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/fairies|/genres/fae|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/fiction,dir51/6076413-ballad.html,12363,"Ballad (Books of Faerie, #2)" +4.15,492,1593072937,good_reads:book,https://www.goodreads.com/author/show/15085.Frank_Miller,1992,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fiction|/genres/mystery|/genres/crime|/genres/graphic-novels-comics|/genres/comics|/genres/comic-book|/genres/mystery|/genres/noir|/genres/mystery|/genres/sequential-art|/genres/comix|/genres/thriller,dir51/392297.Sin_City_Vol_1.html,31742,"Sin City, Vol. 1 (Sin City, #1)" +3.76,941,0553116606,good_reads:book,https://www.goodreads.com/author/show/106463.Jay_Anson,1977,/genres/horror|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/thriller|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/ghosts|/genres/mystery|/genres/crime|/genres/true-crime|/genres/classics|/genres/adult-fiction,dir51/293101.The_Amityville_Horror.html,56997,The Amityville Horror +4.33,163,0811200078,good_reads:book,https://www.goodreads.com/author/show/13847.Charles_Baudelaire,1851,/genres/poetry|/genres/cultural|/genres/france|/genres/classics|/genres/european-literature|/genres/french-literature|/genres/fiction|/genres/literature|/genres/literature|/genres/19th-century|/genres/academic|/genres/school|/genres/literature|/genres/20th-century|/genres/philosophy,dir51/24601.Paris_Spleen.html,5238,Paris Spleen +3.98,664,0805077642,good_reads:book,https://www.goodreads.com/author/show/18143.Walter_Lord,1955,/genres/history|/genres/non-fiction|/genres/classics|/genres/biography|/genres/history|/genres/american-history,dir51/61834.A_Night_to_Remember.html,8981,A Night to Remember +4.09,1191,,good_reads:book,https://www.goodreads.com/author/show/6448939.Christine_Zolendz,2012,/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/angels|/genres/romance|/genres/new-adult|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/supernatural|/genres/contemporary|/genres/music,dir51/15768536-fall-from-grace.html,15639,"Fall From Grace (Mad World, #1)" +3.63,1875,,good_reads:book,https://www.goodreads.com/author/show/3162181._,2013,/genres/novels|/genres/romance|/genres/romantic|/genres/love|/genres/fiction|/genres/literature|/genres/drama,dir51/18711993.html,12340,فلتغفري +3.80,1394,1594481954,good_reads:book,https://www.goodreads.com/author/show/822.James_Frey,2005,/genres/fiction|/genres/contemporary|/genres/biography-memoir|/genres/novels|/genres/adult|/genres/adult-fiction|/genres/drama|/genres/health|/genres/mental-health|/genres/book-club|/genres/literature|/genres/american,dir51/6520.My_Friend_Leonard.html,28960,My Friend Leonard +4.08,1265,0143034359,good_reads:book,https://www.goodreads.com/author/show/4432.Jasper_Fforde,2003,/genres/humor|/genres/fantasy|/genres/fiction|/genres/science-fiction|/genres/writing|/genres/books-about-books|/genres/mystery|/genres/humor|/genres/funny|/genres/humor|/genres/comedy|/genres/science-fiction|/genres/alternate-history|/genres/european-literature|/genres/british-literature,dir51/27001.The_Well_of_Lost_Plots.html,24512,The Well of Lost Plots (Thursday Next #3) +4.07,1434,0142401099,good_reads:book,https://www.goodreads.com/author/show/5989.Jane_Yolen,1988,/genres/historical-fiction|/genres/young-adult|/genres/world-war-ii|/genres/holocaust|/genres/fiction|/genres/childrens|/genres/science-fiction|/genres/time-travel|/genres/history|/genres/world-war-ii|/genres/fantasy|/genres/academic|/genres/school|/genres/war,dir51/91357.The_Devil_s_Arithmetic.html,28341,The Devil's Arithmetic +3.71,1613,006056668X,good_reads:book,https://www.goodreads.com/author/show/16218.Christopher_Moore,2003,/genres/fiction|/genres/humor|/genres/fantasy|/genres/humor|/genres/comedy|/genres/humor|/genres/funny|/genres/science-fiction|/genres/adult|/genres/contemporary|/genres/novels|/genres/fantasy|/genres/urban-fantasy,dir51/33441.Fluke.html,26811,Fluke +3.74,372,0440122090,good_reads:book,https://www.goodreads.com/author/show/3532.Maeve_Binchy,1985,/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/european-literature|/genres/irish-literature|/genres/contemporary|/genres/historical-fiction|/genres/drama|/genres/adult-fiction|/genres/womens-fiction|/genres/novels|/genres/romance,dir51/34301.Echoes.html,7331,Echoes +3.83,1883,0425212890,good_reads:book,https://www.goodreads.com/author/show/17061.Charlaine_Harris,2005,/genres/mystery|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/mystery|/genres/crime|/genres/adult,dir51/58077.Grave_Sight.html,44621,"Grave Sight (Harper Connelly, #1)" +3.86,907,0451223292,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1980,/genres/horror|/genres/fiction|/genres/fantasy|/genres/thriller|/genres/science-fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/mystery|/genres/suspense|/genres/short-stories,dir51/813214.The_Mist.html,53668,The Mist +3.82,53,0140064842,good_reads:book,https://www.goodreads.com/author/show/26090.William_Kennedy,1975,/genres/fiction|/genres/historical-fiction|/genres/literature|/genres/new-york|/genres/mystery|/genres/crime|/genres/mystery|/genres/literature|/genres/american|/genres/novels|/genres/literature|/genres/20th-century|/genres/american|/genres/american-fiction,dir51/90761.Legs.html,1008,Legs +3.81,840,0727860992,good_reads:book,https://www.goodreads.com/author/show/8726.Richard_Matheson,1971,/genres/horror|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/ghosts|/genres/mystery|/genres/classics|/genres/fantasy|/genres/supernatural|/genres/thriller|/genres/fantasy|/genres/adult,dir51/33547.Hell_House.html,14838,Hell House +3.92,1279,,good_reads:book,https://www.goodreads.com/author/show/164478.Dee,2009,/genres/novels|/genres/romance|/genres/fiction|/genres/asian-literature|/genres/indonesian-literature|/genres/young-adult|/genres/love,dir51/6765740-perahu-kertas.html,10368,Perahu Kertas +3.93,923,0312656289,good_reads:book,https://www.goodreads.com/author/show/696372.Alexandra_Adornetto,2012,/genres/paranormal|/genres/angels|/genres/young-adult|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/demons|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/mythology,dir51/13056511-heaven.html,10161,"Heaven (Halo, #3)" +4.16,1301,161197185,good_reads:book,https://www.goodreads.com/author/show/5769764.Suzanne_Wright,2012,/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/paranormal|/genres/shapeshifters|/genres/shapeshifters|/genres/werewolves|/genres/adult-fiction|/genres/erotica|/genres/fantasy|/genres/adult|/genres/fantasy|/genres/urban-fantasy,dir51/13522957-feral-sins.html,12017,"Feral Sins (The Phoenix Pack, #1)" +3.03,485,1416523723,good_reads:book,https://www.goodreads.com/author/show/1624.Herman_Melville,1924,/genres/classics|/genres/fiction|/genres/literature|/genres/historical-fiction|/genres/novels|/genres/literature|/genres/american|/genres/academic|/genres/school|/genres/young-adult|/genres/high-school|/genres/academic|/genres/read-for-school|/genres/classics|/genres/classic-literature,dir51/15613.Billy_Budd_Sailor.html,8978,"Billy Budd, Sailor" +4.25,89,0064400980,good_reads:book,https://www.goodreads.com/author/show/5306.Maud_Hart_Lovelace,1943,/genres/childrens|/genres/fiction|/genres/historical-fiction|/genres/classics|/genres/childrens|/genres/juvenile|/genres/young-adult|/genres/childrens|/genres/childrens-classics|/genres/kids|/genres/childrens|/genres/middle-grade|/genres/literature|/genres/american,dir51/42486.Betsy_and_Tacy_Go_Downtown.html,3803,"Betsy and Tacy Go Downtown (Betsy-Tacy, #4)" +3.12,2718,159691288X,good_reads:book,https://www.goodreads.com/author/show/49177.Shannon_Hale,2009,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/adult|/genres/adult-fiction|/genres/contemporary|/genres/christianity|/genres/lds|/genres/book-club|/genres/lds|/genres/lds-fiction|/genres/humor,dir51/5628393-the-actor-and-the-housewife.html,7495,The Actor and the Housewife +3.74,134,0345419588,good_reads:book,https://www.goodreads.com/author/show/26.Anne_McCaffrey,1986,/genres/science-fiction|/genres/fantasy|/genres/dragons|/genres/fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/adventure|/genres/young-adult|/genres/adult|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy,dir51/61974.Nerilka_s_Story.html,11596,"Nerilka's Story (Pern, #8)" +4.18,798,0385341954,good_reads:book,https://www.goodreads.com/author/show/12504.Karin_Slaughter,2008,/genres/mystery|/genres/mystery|/genres/crime|/genres/thriller|/genres/fiction|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/adult|/genres/mystery|/genres/detective|/genres/contemporary|/genres/adult-fiction,dir51/2199587.Fractured.html,16088,"Fractured (Will Trent, #2)" +4.16,264,,good_reads:book,https://www.goodreads.com/author/show/35333.Dominique_Lapierre,1985,/genres/cultural|/genres/india|/genres/roman|/genres/cultural|/genres/asia|/genres/fiction|/genres/cultural|/genres/france|/genres/contemporary|/genres/social-issues|/genres/poverty|/genres/inspirational,dir51/126163.La_ciudad_de_la_alegr_a.html,2810,La ciudad de la alegría +4.30,434,,good_reads:book,https://www.goodreads.com/author/show/3433047.Sarah_J_Maas,2012,/genres/fantasy|/genres/young-adult|/genres/short-stories|/genres/adventure|/genres/fantasy|/genres/high-fantasy|/genres/romance,dir51/13419891-the-assassin-and-the-desert.html,6547,"The Assassin and the Desert (Throne of Glass, #0.3)" +3.60,583,0307589978,good_reads:book,https://www.goodreads.com/author/show/132091.Carolyn_Turgeon,2010,/genres/fantasy|/genres/mermaids|/genres/fantasy|/genres/fairy-tales|/genres/romance|/genres/fiction|/genres/young-adult|/genres/retellings|/genres/fantasy|/genres/paranormal|/genres/adult-fiction|/genres/fairy-tales|/genres/fairy-tale-retellings,dir51/7320740-mermaid.html,3619,Mermaid +3.44,824,1400031656,good_reads:book,https://www.goodreads.com/author/show/3509.Chris_Bohjalian,2004,/genres/fiction|/genres/book-club|/genres/contemporary|/genres/novels|/genres/family|/genres/drama|/genres/adult|/genres/adult-fiction|/genres/literary-fiction|/genres/mystery,dir51/16046.Before_You_Know_Kindness.html,7313,Before You Know Kindness +3.51,3062,0765318415,good_reads:book,https://www.goodreads.com/author/show/221253.Cherie_Priest,2009,/genres/science-fiction|/genres/steampunk|/genres/fantasy|/genres/science-fiction|/genres/fiction|/genres/horror|/genres/zombies|/genres/science-fiction|/genres/alternate-history|/genres/young-adult|/genres/horror|/genres/adventure|/genres/historical-fiction,dir51/1137215.Boneshaker.html,21060,"Boneshaker (The Clockwork Century, #1)" +4.11,1114,0778324907,good_reads:book,https://www.goodreads.com/author/show/107767.Robyn_Carr,2007,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/adult|/genres/war|/genres/military|/genres/romance|/genres/romantic-suspense|/genres/adult-fiction|/genres/romantic,dir51/184850.Virgin_River.html,12828,"Virgin River (Virgin River, #1)" +3.64,637,0439922283,good_reads:book,https://www.goodreads.com/author/show/21912.Aimee_Friedman,2009,/genres/young-adult|/genres/mermaids|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/mythology|/genres/young-adult|/genres/teen,dir51/5598960-sea-change.html,5365,Sea Change +3.87,302,0345441702,good_reads:book,https://www.goodreads.com/author/show/12605.Mario_Puzo,1984,/genres/fiction|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery|/genres/classics|/genres/novels|/genres/drama|/genres/historical-fiction|/genres/cultural|/genres/italy|/genres/action,dir51/22026.The_Sicilian.html,9533,The Sicilian +4.27,227,0451462548,good_reads:book,https://www.goodreads.com/author/show/26897.Anne_Bishop,2009,/genres/fantasy|/genres/romance|/genres/fiction|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/dark-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/witches|/genres/romance|/genres/paranormal-romance,dir51/3598830-the-shadow-queen.html,7297,"The Shadow Queen (The Black Jewels, #7)" +3.82,970,0553383051,good_reads:book,https://www.goodreads.com/author/show/346732.George_R_R_Martin,1982,/genres/horror|/genres/historical-fiction|/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/science-fiction|/genres/science-fiction-fantasy,dir51/382450.Fevre_Dream.html,9757,Fevre Dream +3.76,1277,162266910X,good_reads:book,https://www.goodreads.com/author/show/699143.J_Lynn,2012,/genres/romance|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/adult|/genres/new-adult|/genres/womens-fiction|/genres/chick-lit|/genres/adult-fiction|/genres/erotica|/genres/humor|/genres/funny|/genres/realistic-fiction|/genres/romance|/genres/erotic-romance,dir51/13614836-tempting-the-best-man.html,20979,"Tempting the Best Man (Gamble Brothers, #1)" +4.34,712,1480207217,good_reads:book,https://www.goodreads.com/author/show/4951964.Shelly_Crane,2012,/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/contemporary|/genres/new-adult|/genres/young-adult|/genres/young-adult-romance,dir51/13519844-independence.html,10657,"Independence (Significance, #4)" +3.84,773,4103534257,good_reads:book,https://www.goodreads.com/author/show/3354.Haruki_Murakami,2010,/genres/fiction|/genres/fantasy|/genres/asian-literature|/genres/japanese-literature|/genres/cultural|/genres/japan|/genres/magical-realism|/genres/contemporary|/genres/science-fiction|/genres/novels|/genres/romance|/genres/literature,dir51/7717482-1q84.html,8497,"1Q84 (1Q84, #3)" +4.05,919,0553590154,good_reads:book,https://www.goodreads.com/author/show/7581.Kelley_Armstrong,2004,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/paranormal|/genres/witches|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/magic|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/adult,dir51/125926.Dime_Store_Magic.html,23100,"Dime Store Magic (Women of the Otherworld, #3)" +3.84,1010,0060559144,good_reads:book,https://www.goodreads.com/author/show/9432.Joanne_Harris,2005,/genres/fiction|/genres/mystery|/genres/contemporary|/genres/thriller|/genres/book-club|/genres/thriller|/genres/mystery-thriller|/genres/suspense|/genres/mystery|/genres/crime|/genres/european-literature|/genres/british-literature|/genres/romance,dir51/15102.Gentlemen_and_Players.html,7527,Gentlemen and Players +3.87,261,0684848228,good_reads:book,https://www.goodreads.com/author/show/25143.Taylor_Hartman,1987,/genres/non-fiction|/genres/self-help|/genres/psychology|/genres/relationships|/genres/parenting|/genres/book-club|/genres/reference|/genres/business|/genres/sociology|/genres/social-science,dir51/44847.The_Color_Code.html,2280,The Color Code +3.96,361,031285787X,good_reads:book,https://www.goodreads.com/author/show/20602.Brian_Lumley,1986,/genres/horror|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/science-fiction|/genres/fantasy|/genres/supernatural|/genres/thriller|/genres/horror|/genres/zombies,dir51/66655.Necroscope.html,11385,"Necroscope (Necroscope, #1)" +3.66,140,155970361X,good_reads:book,https://www.goodreads.com/author/show/26853.Bertolt_Brecht,1939,/genres/plays|/genres/drama|/genres/classics|/genres/european-literature|/genres/german-literature|/genres/fiction|/genres/plays|/genres/theatre|/genres/literature|/genres/academic|/genres/school|/genres/war|/genres/cultural|/genres/germany,dir51/85679.Mother_Courage_and_Her_Children.html,8149,Mother Courage and Her Children +4.03,312,0345352661,good_reads:book,https://www.goodreads.com/author/show/8732.David_Eddings,1985,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/epic|/genres/science-fiction,dir51/673657.Guardians_of_the_West.html,27121,Guardians of the West (The Malloreon #1) +3.80,385,0312365721,good_reads:book,https://www.goodreads.com/author/show/314195.C_J_Box,2008,/genres/mystery|/genres/fiction|/genres/thriller|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/crime|/genres/parenting|/genres/adoption|/genres/adult-fiction|/genres/adult|/genres/book-club,dir51/3585061-three-weeks-to-say-goodbye.html,3200,Three Weeks To Say Goodbye +4.30,1811,0375866671,good_reads:book,https://www.goodreads.com/author/show/12950.Wendelin_Van_Draanen,2011,/genres/young-adult|/genres/realistic-fiction|/genres/sports-and-games|/genres/sports|/genres/fiction|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/disability|/genres/childrens|/genres/middle-grade,dir51/8354134-the-running-dream.html,9922,The Running Dream +4.01,49,1585424579,good_reads:book,https://www.goodreads.com/author/show/214546.G_I_Gurdjieff,1950,/genres/philosophy|/genres/fiction|/genres/spirituality|/genres/religion|/genres/literature|/genres/science-fiction|/genres/classics|/genres/occult|/genres/religion|/genres/esoterica|/genres/fantasy,dir51/547608.Beelzebub_s_Tales_to_His_Grandson.html,614,Beelzebub's Tales to His Grandson +3.70,1586,0060851988,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2006,/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/fiction|/genres/contemporary|/genres/adult|/genres/humor|/genres/young-adult|/genres/romance|/genres/contemporary-romance|/genres/adult-fiction|/genres/humor|/genres/funny,dir51/23219.Queen_of_Babble.html,42943,"Queen of Babble (Queen of Babble, #1)" +3.81,367,0140255125,good_reads:book,https://www.goodreads.com/author/show/10108.Roddy_Doyle,1996,/genres/fiction|/genres/european-literature|/genres/irish-literature|/genres/cultural|/genres/ireland|/genres/contemporary|/genres/literary-fiction|/genres/novels|/genres/book-club|/genres/literature|/genres/sociology|/genres/abuse|/genres/literature|/genres/20th-century,dir51/52778.The_Woman_Who_Walked_Into_Doors.html,5448,The Woman Who Walked Into Doors +4.27,174,0373803192,good_reads:book,https://www.goodreads.com/author/show/7031278.Michelle_Sagara,2010,/genres/fantasy|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/dragons|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/science-fiction-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy,dir51/7762834-cast-in-chaos.html,4303,"Cast in Chaos (Chronicles of Elantra, #6)" +4.23,268,1569319472,good_reads:book,https://www.goodreads.com/author/show/12948.Rumiko_Takahashi,1997,/genres/sequential-art|/genres/manga|/genres/fantasy|/genres/sequential-art|/genres/graphic-novels|/genres/romance|/genres/sequential-art|/genres/comics|/genres/media-tie-in|/genres/anime|/genres/young-adult|/genres/adventure|/genres/science-fiction|/genres/time-travel|/genres/comics-manga,dir51/330744.InuYasha.html,36014,"InuYasha (InuYasha, #1)" +4.15,1628,0545052394,good_reads:book,https://www.goodreads.com/author/show/99650.Wendy_Mass,2009,/genres/fantasy|/genres/childrens|/genres/middle-grade|/genres/realistic-fiction|/genres/fiction|/genres/childrens|/genres/young-adult|/genres/childrens|/genres/juvenile|/genres/contemporary|/genres/fantasy|/genres/magic|/genres/mystery,dir51/4835838-11-birthdays.html,15713,"11 Birthdays (Willow Falls, #1)" +3.93,101,0486285006,good_reads:book,https://www.goodreads.com/author/show/232932.Nikolai_Gogol,1835,/genres/plays|/genres/classics|/genres/cultural|/genres/russia|/genres/literature|/genres/russian-literature|/genres/drama|/genres/academic|/genres/school|/genres/humor|/genres/literature|/genres/humor|/genres/comedy|/genres/plays|/genres/theatre,dir51/142262.The_Inspector_General.html,4968,The Inspector General +4.02,320,0394402677,good_reads:book,https://www.goodreads.com/author/show/8050.Ira_Levin,1976,/genres/fiction|/genres/horror|/genres/mystery|/genres/science-fiction|/genres/historical-fiction|/genres/suspense|/genres/classics|/genres/mystery|/genres/crime|/genres/thriller|/genres/thriller|/genres/mystery-thriller,dir51/99894.The_Boys_from_Brazil.html,17702,The Boys from Brazil +4.19,186,0451220684,good_reads:book,https://www.goodreads.com/author/show/51304.Catherine_Anderson,2001,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/western|/genres/romance|/genres/western-romance|/genres/adult|/genres/fiction|/genres/romance|/genres/historical-romance|/genres/disability|/genres/love,dir51/89359.Phantom_Waltz.html,3250,Phantom Waltz +3.73,627,0553211587,good_reads:book,https://www.goodreads.com/author/show/1244.Mark_Twain,1893,/genres/classics|/genres/fiction|/genres/literature|/genres/mystery|/genres/humor|/genres/historical-fiction|/genres/literature|/genres/american|/genres/classics|/genres/classic-literature|/genres/academic|/genres/school|/genres/literature|/genres/19th-century,dir51/682793.Pudd_nhead_Wilson.html,9866,Pudd'nhead Wilson +3.98,815,0060560150,good_reads:book,https://www.goodreads.com/author/show/11633.Sharon_Creech,2002,/genres/young-adult|/genres/realistic-fiction|/genres/fiction|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/chapter-books|/genres/adventure|/genres/contemporary|/genres/family,dir52/712807.Ruby_Holler.html,9931,Ruby Holler +4.49,83,158134466X,good_reads:book,https://www.goodreads.com/author/show/2876959.Charles_H_Spurgeon,1866,/genres/christian|/genres/religion|/genres/theology|/genres/religion|/genres/christianity|/genres/non-fiction|/genres/religion|/genres/faith|/genres/spirituality|/genres/religion|/genres/classics|/genres/religion|/genres/church|/genres/leadership,dir52/674342.Morning_and_Evening_Based_on_the_English_Standard_Version.html,4084,"Morning and Evening, Based on the English Standard Version" +4.15,196,0380756293,good_reads:book,https://www.goodreads.com/author/show/29542.Johanna_Lindsey,1993,/genres/romance|/genres/romance|/genres/historical-romance|/genres/regency|/genres/fiction|/genres/historical-fiction|/genres/historical-romance|/genres/regency-romance|/genres/adult|/genres/european-literature|/genres/british-literature|/genres/family|/genres/womens-fiction|/genres/chick-lit,dir52/350710.The_Magic_of_You.html,8346,"The Magic of You (Malory-Anderson Family, #4)" +4.08,564,0060002492,good_reads:book,https://www.goodreads.com/author/show/38809.James_Rollins,2002,/genres/thriller|/genres/adventure|/genres/fiction|/genres/action|/genres/mystery|/genres/science-fiction|/genres/thriller|/genres/mystery-thriller|/genres/suspense|/genres/fantasy|/genres/historical-fiction,dir52/294047.Amazonia.html,14044,Amazonia +3.95,3337,0312383282,good_reads:book,https://www.goodreads.com/author/show/2384.Janet_Evanovich,2009,/genres/mystery|/genres/fiction|/genres/humor|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/mystery|/genres/crime|/genres/humor|/genres/funny|/genres/humor|/genres/comedy|/genres/adult|/genres/thriller|/genres/mystery-thriller,dir52/6048530-finger-lickin-fifteen.html,53911,Finger Lickin' Fifteen (Stephanie Plum #15) +3.93,234,0439436575,good_reads:book,https://www.goodreads.com/author/show/8347.Garth_Nix,2006,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/adventure|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/young-adult-fantasy|/genres/science-fiction-fantasy|/genres/young-adult|/genres/teen|/genres/childrens|/genres/middle-grade,dir52/47618.Sir_Thursday.html,12822,"Sir Thursday (The Keys to the Kingdom, #4)" +4.04,572,0151015376,good_reads:book,https://www.goodreads.com/author/show/908182.Sara_Young,2008,/genres/historical-fiction|/genres/fiction|/genres/world-war-ii|/genres/holocaust|/genres/book-club|/genres/war|/genres/history|/genres/world-war-ii|/genres/romance,dir52/1998880.My_Enemy_s_Cradle.html,3642,My Enemy's Cradle +3.81,399,1932234411,good_reads:book,https://www.goodreads.com/author/show/14465.Koji_Suzuki,1991,/genres/horror|/genres/fiction|/genres/cultural|/genres/japan|/genres/asian-literature|/genres/japanese-literature|/genres/thriller|/genres/mystery|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/literature|/genres/asian-literature,dir52/38379.Ring.html,6647,"Ring (Ring, #1)" +4.35,31,0007179588,good_reads:book,https://www.goodreads.com/author/show/5816.Darren_Shan,2005,/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/horror|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/teen|/genres/childrens,dir52/164720.Vampire_War_Trilogy.html,1434,"Vampire War Trilogy (The Saga of Darren Shan, #7-9)" +3.61,1322,0385740166,good_reads:book,https://www.goodreads.com/author/show/1691206.Stacey_Jay,2011,/genres/young-adult|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/retellings|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen|/genres/fiction|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/magic,dir52/9972882-juliet-immortal.html,7482,"Juliet Immortal (Juliet Immortal, #1)" +4.02,218,1860465021,good_reads:book,https://www.goodreads.com/author/show/1285555.Jos_Saramago,1984,/genres/fiction|/genres/cultural|/genres/portugal|/genres/european-literature|/genres/portuguese-literature|/genres/literature|/genres/novels|/genres/nobel-prize,dir52/2536.The_Year_of_the_Death_of_Ricardo_Reis.html,3218,The Year of the Death of Ricardo Reis +4.01,50,1573922587,good_reads:book,https://www.goodreads.com/author/show/7084.Karl_Marx,1932,/genres/philosophy|/genres/politics|/genres/sociology|/genres/non-fiction|/genres/philosophy|/genres/theory|/genres/history|/genres/classics|/genres/economics|/genres/european-literature|/genres/german-literature|/genres/academic,dir52/188226.The_German_Ideology.html,1547,The German Ideology +3.62,1197,0399154302,good_reads:book,https://www.goodreads.com/author/show/9226.William_Gibson,2007,/genres/fiction|/genres/science-fiction|/genres/science-fiction|/genres/cyberpunk|/genres/thriller|/genres/spy-thriller|/genres/espionage|/genres/literary-fiction|/genres/suspense|/genres/novels|/genres/literature|/genres/american|/genres/politics,dir52/22322.Spook_Country.html,12327,"Spook Country (Blue Ant, #2)" +3.01,3072,0452286530,good_reads:book,https://www.goodreads.com/author/show/1448.Karen_Joy_Fowler,2004,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/book-club|/genres/contemporary|/genres/writing|/genres/books-about-books|/genres/adult-fiction|/genres/adult|/genres/novels|/genres/modern,dir52/2152.The_Jane_Austen_Book_Club.html,44813,The Jane Austen Book Club +4.15,64,0345397002,good_reads:book,https://www.goodreads.com/author/show/7577.Anne_Rice,1999,/genres/fiction|/genres/horror|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/supernatural|/genres/adult|/genres/science-fiction-fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires,dir52/43815.Mayfair_Witches_2_Vol_Boxed_Set.html,4604,Mayfair Witches-2 Vol. Boxed Set +4.17,343,0849921392,good_reads:book,https://www.goodreads.com/author/show/2737.Max_Lucado,2000,/genres/christian|/genres/non-fiction|/genres/religion|/genres/christianity|/genres/religion|/genres/faith|/genres/religion|/genres/spirituality|/genres/inspirational|/genres/self-help,dir52/6436732-fearless.html,5851,Fearless +4.09,401,,good_reads:book,https://www.goodreads.com/author/show/4623294.Sherry_Gammon,2011,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/sociology|/genres/abuse|/genres/realistic-fiction|/genres/young-adult|/genres/high-school|/genres/romance|/genres/contemporary-romance|/genres/new-adult,dir52/10380227-unlovable.html,5032,"Unlovable (Port Fare, #1)" +4.09,890,,good_reads:book,https://www.goodreads.com/author/show/4116333.Cindy_C_Bennett,2010,/genres/young-adult|/genres/romance|/genres/sociology|/genres/abuse|/genres/contemporary|/genres/young-adult|/genres/high-school|/genres/realistic-fiction|/genres/romance|/genres/contemporary-romance|/genres/womens-fiction|/genres/chick-lit|/genres/new-adult|/genres/young-adult|/genres/young-adult-romance,dir52/10295484-heart-on-a-chain.html,13013,Heart on a Chain +3.84,288,0439436567,good_reads:book,https://www.goodreads.com/author/show/8347.Garth_Nix,2004,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/adventure|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/young-adult-fantasy,dir52/47619.Drowned_Wednesday.html,16660,"Drowned Wednesday (The Keys to the Kingdom, #3)" +4.62,225,1442472057,good_reads:book,https://www.goodreads.com/author/show/150038.Cassandra_Clare,2012,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fiction|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/shapeshifters|/genres/werewolves,dir52/14367051-the-mortal-instruments.html,6283,The Mortal Instruments +3.94,3107,0805088415,good_reads:book,https://www.goodreads.com/author/show/2824557.Jacqueline_Kelly,2009,/genres/historical-fiction|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/book-club|/genres/realistic-fiction|/genres/family|/genres/young-adult|/genres/coming-of-age,dir52/6202556-the-evolution-of-calpurnia-tate.html,17076,The Evolution of Calpurnia Tate +3.82,292,0765307294,good_reads:book,https://www.goodreads.com/author/show/72538.Robert_Holdstock,1984,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/urban-fantasy|/genres/european-literature|/genres/british-literature|/genres/science-fiction-fantasy|/genres/horror|/genres/speculative-fiction|/genres/novels|/genres/science-fiction,dir52/126192.Mythago_Wood.html,4351,"Mythago Wood (Mythago Wood, #1)" +3.78,1345,0307393860,good_reads:book,https://www.goodreads.com/author/show/3502.Alice_Hoffman,2009,/genres/fiction|/genres/magical-realism|/genres/contemporary|/genres/fantasy|/genres/book-club|/genres/adult|/genres/adult-fiction|/genres/novels|/genres/literary-fiction|/genres/womens-fiction|/genres/chick-lit,dir52/5802140-the-story-sisters.html,8541,The Story Sisters +4.49,901,,good_reads:book,https://www.goodreads.com/author/show/2958084.Kristen_Ashley,2011,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/romance|/genres/romantic-suspense|/genres/humor|/genres/funny|/genres/adult|/genres/womens-fiction|/genres/chick-lit|/genres/suspense|/genres/humor|/genres/adult-fiction|/genres/erotica,dir52/10813469-rock-chick-renegade.html,15932,"Rock Chick Renegade (Rock Chick, #4)" +4.23,337,0553564935,good_reads:book,https://www.goodreads.com/author/show/8588.Raymond_E_Feist,1982,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/epic|/genres/adventure|/genres/science-fiction|/genres/adult,dir52/13810.Magician.html,44457,"Magician (The Riftwar Saga, #2)" +3.44,717,0385491050,good_reads:book,https://www.goodreads.com/author/show/3472.Margaret_Atwood,1972,/genres/fiction|/genres/cultural|/genres/canada|/genres/contemporary|/genres/literary-fiction|/genres/novels|/genres/literature|/genres/feminism|/genres/classics|/genres/adult-fiction|/genres/literature|/genres/20th-century,dir52/46755.Surfacing.html,12369,Surfacing +3.86,187,048642703X,good_reads:book,https://www.goodreads.com/author/show/42041.Max_Weber,1904,/genres/sociology|/genres/philosophy|/genres/non-fiction|/genres/history|/genres/economics|/genres/religion|/genres/politics|/genres/philosophy|/genres/theory|/genres/classics|/genres/anthropology,dir52/74176.The_Protestant_Ethic_and_the_Spirit_of_Capitalism.html,5037,The Protestant Ethic and the Spirit of Capitalism +4.31,204,0451463153,good_reads:book,https://www.goodreads.com/author/show/26897.Anne_Bishop,2010,/genres/fantasy|/genres/romance|/genres/fiction|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/dark-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/epic-fantasy,dir52/6625002-shalador-s-lady.html,6605,"Shalador's Lady (The Black Jewels, #8)" +4.01,1017,,good_reads:book,https://www.goodreads.com/author/show/3297510.Lacey_Weatherford,2012,/genres/romance|/genres/young-adult|/genres/contemporary|/genres/new-adult|/genres/young-adult|/genres/high-school|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/young-adult-romance|/genres/realistic-fiction|/genres/love|/genres/womens-fiction|/genres/chick-lit,dir52/16045855-crush.html,16912,"Crush (Crush, #1)" +4.68,302,1442483989,good_reads:book,https://www.goodreads.com/author/show/150038.Cassandra_Clare,2013,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/steampunk|/genres/paranormal|/genres/angels|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/vampires,dir52/15803693-the-infernal-devices.html,5817,"The Infernal Devices (The Infernal Devices, #1-3)" +3.88,15,8389011379,good_reads:book,https://www.goodreads.com/author/show/554968.Maja_Lidia_Kossakowska,2004,/genres/fantasy|/genres/european-literature|/genres/polish-literature|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/favorites|/genres/fiction|/genres/mine|/genres/cultural|/genres/poland,dir52/1128399.Siewca_Wiatru.html,1240,"Siewca Wiatru (Zastępy Anielskie, #2)" +4.10,105,014240683X,good_reads:book,https://www.goodreads.com/author/show/5329.Brian_Jacques,2004,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/adventure|/genres/animals|/genres/childrens|/genres/fantasy|/genres/high-fantasy|/genres/childrens|/genres/middle-grade|/genres/science-fiction-fantasy|/genres/action,dir52/7994.Rakkety_Tam.html,6264,"Rakkety Tam (Redwall, #17)" +4.15,127,0061239038,good_reads:book,https://www.goodreads.com/author/show/27498.Erin_Hunter,2007,/genres/fantasy|/genres/animals|/genres/animals|/genres/cats|/genres/fiction|/genres/young-adult|/genres/childrens|/genres/animals|/genres/animal-fiction,dir52/326911.Secrets_of_the_Clans.html,5198,Secrets of the Clans +3.08,2390,1400069262,good_reads:book,https://www.goodreads.com/author/show/811.Yann_Martel,2010,/genres/fiction|/genres/cultural|/genres/canada|/genres/contemporary|/genres/animals|/genres/literature|/genres/world-war-ii|/genres/holocaust|/genres/novels|/genres/book-club|/genres/adult-fiction|/genres/literary-fiction,dir52/7176578-beatrice-and-virgil.html,12760,Beatrice and Virgil +3.69,616,1906727201,good_reads:book,https://www.goodreads.com/author/show/3222611.Mark_Hodder,2010,/genres/science-fiction|/genres/steampunk|/genres/fantasy|/genres/science-fiction|/genres/fiction|/genres/historical-fiction|/genres/science-fiction|/genres/alternate-history|/genres/mystery|/genres/fantasy|/genres/urban-fantasy|/genres/adventure|/genres/science-fiction-fantasy,dir52/7293120-the-strange-affair-of-spring-heeled-jack.html,4033,"The Strange Affair of Spring Heeled Jack (Burton & Swinburne, #1)" +3.67,374,0307350436,good_reads:book,https://www.goodreads.com/author/show/13450.Gabriel_Garc_a_M_rquez,1961,/genres/fiction|/genres/european-literature|/genres/spanish-literature|/genres/classics|/genres/literature|/genres/latin-american-literature|/genres/literature|/genres/novels|/genres/cultural|/genres/latin-american|/genres/magical-realism,dir52/23875.El_coronel_no_tiene_quien_le_escriba.html,9502,El coronel no tiene quien le escriba +3.84,344,0439703700,good_reads:book,https://www.goodreads.com/author/show/8347.Garth_Nix,2004,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/adventure|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/young-adult-fantasy|/genres/science-fiction-fantasy|/genres/childrens|/genres/middle-grade|/genres/young-adult|/genres/teen,dir52/47620.Grim_Tuesday.html,14021,"Grim Tuesday (The Keys to the Kingdom, #2)" +4.45,957,1453720693,good_reads:book,https://www.goodreads.com/author/show/2958084.Kristen_Ashley,2010,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/romance|/genres/romantic-suspense|/genres/humor|/genres/funny|/genres/womens-fiction|/genres/chick-lit|/genres/adult|/genres/suspense|/genres/humor,dir52/9799572-rock-chick-redemption.html,16736,"Rock Chick Redemption (Rock Chick, #3)" +3.96,1348,0316159794,good_reads:book,https://www.goodreads.com/author/show/3780.James_Patterson,2006,/genres/mystery|/genres/fiction|/genres/thriller|/genres/mystery|/genres/crime|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/detective|/genres/mystery|/genres/murder-mystery|/genres/adult|/genres/adult-fiction,dir52/13128.Cross.html,33606,"Cross (Alex Cross, #12)" +3.99,1008,0061477958,good_reads:book,https://www.goodreads.com/author/show/4260.Diana_Wynne_Jones,2008,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/fantasy|/genres/magic|/genres/adventure,dir52/2173611.House_of_Many_Ways.html,12943,"House of Many Ways (Howl's Moving Castle, #3)" +3.94,139,0340717521,good_reads:book,https://www.goodreads.com/author/show/3999.James_Jones,1962,/genres/fiction|/genres/war|/genres/historical-fiction|/genres/classics|/genres/history|/genres/world-war-ii|/genres/war|/genres/military|/genres/literature|/genres/novels,dir52/92417.The_Thin_Red_Line.html,5726,The Thin Red Line +3.98,294,0440167361,good_reads:book,https://www.goodreads.com/author/show/128447.Thomas_Tryon,1971,/genres/horror|/genres/fiction|/genres/mystery|/genres/thriller|/genres/gothic|/genres/suspense|/genres/novels|/genres/fantasy|/genres/supernatural|/genres/classics|/genres/fantasy|/genres/paranormal,dir52/219535.The_Other.html,11677,The Other +3.48,4002,0393061728,good_reads:book,https://www.goodreads.com/author/show/6637.Diane_Ackerman,2007,/genres/non-fiction|/genres/history|/genres/book-club|/genres/world-war-ii|/genres/holocaust|/genres/history|/genres/world-war-ii|/genres/biography|/genres/war|/genres/animals,dir52/1128178.The_Zookeeper_s_Wife.html,22620,The Zookeeper's Wife +3.98,1257,0439692393,good_reads:book,https://www.goodreads.com/author/show/5414.Patricia_Reilly_Giff,2002,/genres/young-adult|/genres/realistic-fiction|/genres/fiction|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/family|/genres/childrens|/genres/chapter-books|/genres/historical-fiction|/genres/contemporary,dir52/828084.Pictures_of_Hollis_Woods.html,19128,Pictures of Hollis Woods +3.74,400,0060876271,good_reads:book,https://www.goodreads.com/author/show/119830.Frances_Hardinge,2005,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/adventure|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/mystery|/genres/young-adult|/genres/young-adult-fantasy|/genres/historical-fiction|/genres/childrens|/genres/juvenile,dir52/710437.Fly_by_Night.html,3281,"Fly by Night (Fly By Night, #1)" +4.12,370,1442413174,good_reads:book,https://www.goodreads.com/author/show/19954.Christopher_Pike,2010,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/supernatural|/genres/horror|/genres/fiction|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/mystery,dir52/7775611-thirst-no-3.html,14034,"Thirst No. 3 (Thirst, #3)" +4.09,372,0441010644,good_reads:book,https://www.goodreads.com/author/show/51204.Alastair_Reynolds,2001,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/space-opera|/genres/space|/genres/speculative-fiction|/genres/science-fiction-fantasy|/genres/mystery|/genres/science-fiction|/genres/hard-science-fiction|/genres/mystery|/genres/noir|/genres/novels,dir52/89185.Chasm_City.html,8844,Chasm City +3.98,201,0007204892,good_reads:book,https://www.goodreads.com/author/show/41542.Helen_Dunmore,2006,/genres/fantasy|/genres/mermaids|/genres/young-adult|/genres/fiction|/genres/adventure|/genres/childrens|/genres/fantasy|/genres/magic,dir52/469954.Tide_Knot.html,3213,"Tide Knot (Ingo, #2)" +3.93,5080,0345504984,good_reads:book,https://www.goodreads.com/author/show/45315.Justin_Cronin,2012,/genres/horror|/genres/fiction|/genres/fantasy|/genres/science-fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/paranormal|/genres/vampires|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/apocalyptic|/genres/thriller|/genres/fantasy|/genres/paranormal,dir52/13281368-the-twelve.html,39698,"The Twelve (The Passage, #2)" +3.99,649,0316353299,good_reads:book,https://www.goodreads.com/author/show/1254084.William_Least_Heat_Moon,1982,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/travel|/genres/adventure|/genres/biography-memoir|/genres/biography|/genres/book-club|/genres/literature|/genres/american|/genres/american|/genres/americana|/genres/history,dir52/63832.Blue_Highways.html,11134,Blue Highways +3.96,1152,0060577363,good_reads:book,https://www.goodreads.com/author/show/157663.Angie_Sage,2006,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/fiction|/genres/childrens|/genres/adventure|/genres/fantasy|/genres/dragons|/genres/childrens|/genres/middle-grade,dir52/355917.Flyte.html,37612,"Flyte (Septimus Heap, #2)" +4.09,1069,1459206401,good_reads:book,https://www.goodreads.com/author/show/2995873.Julie_Kagawa,2011,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/fairies|/genres/romance|/genres/fairies|/genres/fae|/genres/short-stories|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/fiction,dir52/11098871-summer-s-crossing.html,13315,"Summer's Crossing (Iron Fey, #3.5)" +3.78,1599,1607515423,good_reads:book,https://www.goodreads.com/author/show/928415.Julie_Klassen,2009,/genres/historical-fiction|/genres/romance|/genres/christian-fiction|/genres/fiction|/genres/christian|/genres/romance|/genres/historical-romance|/genres/regency|/genres/romance|/genres/christian-romance|/genres/adult|/genres/book-club,dir52/3870943-the-apothecary-s-daughter.html,14585,The Apothecary's Daughter +3.81,287,,good_reads:book,https://www.goodreads.com/author/show/4171164.Susan_Bischoff,2010,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/magic|/genres/romance|/genres/paranormal-romance|/genres/science-fiction,dir52/8768472-hush-money.html,2704,"Hush Money (Talent Chronicles, #1)" +3.75,1710,0061921262,good_reads:book,https://www.goodreads.com/author/show/26638.Claire_LaZebnik,2011,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/high-school|/genres/realistic-fiction|/genres/retellings|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/teen|/genres/fiction,dir52/9266776-epic-fail.html,20840,Epic Fail +3.91,662,1400041988,good_reads:book,https://www.goodreads.com/author/show/5152.Vladimir_Nabokov,1953,/genres/fiction|/genres/classics|/genres/cultural|/genres/russia|/genres/literature|/genres/novels|/genres/literature|/genres/russian-literature|/genres/literature|/genres/20th-century|/genres/literary-fiction|/genres/literature|/genres/american|/genres/book-club,dir52/30593.Pnin.html,9433,Pnin +3.92,429,0425194523,good_reads:book,https://www.goodreads.com/author/show/18411.Clive_Cussler,1976,/genres/fiction|/genres/adventure|/genres/thriller|/genres/action|/genres/mystery|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/historical-fiction|/genres/spy-thriller|/genres/espionage|/genres/novels,dir52/41706.Raise_the_Titanic_.html,14902,"Raise the Titanic! (Dirk Pitt, #4)" +4.00,1771,0062273264,good_reads:book,https://www.goodreads.com/author/show/6535659.Cora_Carmack,2013,/genres/new-adult|/genres/romance|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/adult|/genres/academic|/genres/college|/genres/fiction|/genres/realistic-fiction,dir52/16172634-faking-it.html,17865,"Faking It (Losing It, #2)" +4.46,1787,0061957917,good_reads:book,https://www.goodreads.com/author/show/17054.Kim_Harrison,2013,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/witches|/genres/fiction|/genres/romance|/genres/paranormal-romance|/genres/romance,dir52/13241659-ever-after.html,17137,"Ever After (The Hollows, #11)" +4.07,128,0449205622,good_reads:book,https://www.goodreads.com/author/show/33384.Taylor_Caldwell,1901,/genres/historical-fiction|/genres/fiction|/genres/romance|/genres/classics|/genres/romance|/genres/historical-romance|/genres/novels|/genres/literature|/genres/american|/genres/book-club|/genres/drama|/genres/literature|/genres/19th-century,dir52/369110.Captains_and_the_Kings.html,10481,Captains and the Kings +4.31,731,0425226735,good_reads:book,https://www.goodreads.com/author/show/71688.Nalini_Singh,2009,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/shapeshifters|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/science-fiction,dir52/5628753-branded-by-fire.html,14050,"Branded by Fire (Psy-Changeling, #6)" +4.03,370,0679724699,good_reads:book,https://www.goodreads.com/author/show/1260.Michel_Foucault,1976,/genres/philosophy|/genres/non-fiction|/genres/philosophy|/genres/theory|/genres/history|/genres/sexuality|/genres/sociology|/genres/academic|/genres/glbt|/genres/queer|/genres/gender|/genres/cultural|/genres/france,dir52/1875.The_History_of_Sexuality_1.html,9872,The History of Sexuality 1 +4.16,2101,068983568X,good_reads:book,https://www.goodreads.com/author/show/5086768.Bill_Martin_Jr_,1989,/genres/childrens|/genres/picture-books|/genres/childrens|/genres/fiction,dir52/293595.Chicka_Chicka_Boom_Boom.html,75792,Chicka Chicka Boom Boom +3.95,362,0553383833,good_reads:book,https://www.goodreads.com/author/show/2238.Isabel_Allende,1984,/genres/historical-fiction|/genres/magical-realism|/genres/romance|/genres/cultural|/genres/latin-american|/genres/european-literature|/genres/spanish-literature|/genres/literature|/genres/novels|/genres/literature|/genres/latin-american-literature|/genres/contemporary|/genres/literature|/genres/20th-century,dir52/16532.Of_Love_and_Shadows.html,13751,Of Love and Shadows +4.19,140,0373802692,good_reads:book,https://www.goodreads.com/author/show/7031278.Michelle_Sagara,2007,/genres/fantasy|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/dragons|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/romance|/genres/mystery,dir52/3309615-cast-in-fury.html,4911,Cast in Fury (Chronicles of Elantra #4) +4.10,896,0553815024,good_reads:book,https://www.goodreads.com/author/show/18149.Tess_Gerritsen,2003,/genres/mystery|/genres/mystery|/genres/crime|/genres/fiction|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/thriller,dir52/32257.The_Sinner.html,21482,"The Sinner (Rizzoli & Isles, #3)" +4.31,1401,038573882X,good_reads:book,https://www.goodreads.com/author/show/3393536.Rob_Buyea,2010,/genres/realistic-fiction|/genres/childrens|/genres/middle-grade|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/childrens|/genres/juvenile|/genres/academic|/genres/school|/genres/contemporary|/genres/childrens|/genres/chapter-books|/genres/book-club,dir52/7783920-because-of-mr-terupt.html,11020,Because of Mr. Terupt +3.86,914,0983157278,good_reads:book,https://www.goodreads.com/author/show/4476934.Jennifer_L_Armentrout,2012,/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/mystery|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/young-adult-paranormal,dir52/11945589-cursed.html,6518,Cursed +4.17,530,1566562937,good_reads:book,https://www.goodreads.com/author/show/36378.Amin_Maalouf,1988,/genres/historical-fiction|/genres/fiction|/genres/novels|/genres/literature|/genres/cultural|/genres/france|/genres/cultural|/genres/iran|/genres/religion|/genres/islam|/genres/roman|/genres/european-literature|/genres/french-literature|/genres/classics,dir52/142395.Samarkand.html,7358,Samarkand +4.20,1973,,good_reads:book,https://www.goodreads.com/author/show/73977.Lisa_Renee_Jones,2012,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/erotica|/genres/bdsm|/genres/contemporary|/genres/adult|/genres/romance|/genres/contemporary-romance|/genres/romance|/genres/erotic-romance|/genres/mystery|/genres/suspense|/genres/romance|/genres/romantic-suspense,dir52/15717721-if-i-were-you.html,17657,"If I Were You (Inside Out, #1)" +3.49,534,0385340354,good_reads:book,https://www.goodreads.com/author/show/25205.Gordon_Dahlquist,2006,/genres/fantasy|/genres/science-fiction|/genres/steampunk|/genres/fiction|/genres/mystery|/genres/science-fiction|/genres/adventure|/genres/historical-fiction|/genres/science-fiction-fantasy|/genres/thriller|/genres/fantasy|/genres/urban-fantasy,dir52/44930.The_Glass_Books_of_the_Dream_Eaters.html,3473,"The Glass Books of the Dream Eaters (Miss Temple, Doctor Svenson, and Cardinal Chang, #1)" +3.99,88,2070394824,good_reads:book,https://www.goodreads.com/author/show/1466.Jean_Paul_Sartre,1947,/genres/philosophy|/genres/classics|/genres/literature|/genres/academic|/genres/school|/genres/european-literature|/genres/french-literature|/genres/cultural|/genres/france|/genres/european-literature|/genres/german-literature|/genres/love,dir52/11980.Les_jeux_sont_faits.html,1717,Les jeux sont faits +3.85,422,0143039008,good_reads:book,https://www.goodreads.com/author/show/2533.Graham_Greene,1969,/genres/classics|/genres/fiction|/genres/literature|/genres/novels|/genres/humor|/genres/literary-fiction|/genres/humor|/genres/comedy|/genres/european-literature|/genres/british-literature|/genres/book-club|/genres/literature|/genres/20th-century,dir52/48858.Travels_With_My_Aunt.html,5462,Travels With My Aunt +3.85,154,0198245971,good_reads:book,https://www.goodreads.com/author/show/6188.Georg_Wilhelm_Friedrich_Hegel,1806,/genres/philosophy|/genres/non-fiction|/genres/classics|/genres/european-literature|/genres/german-literature|/genres/philosophy|/genres/theory|/genres/history|/genres/philosophy|/genres/metaphysics|/genres/cultural|/genres/germany|/genres/academic|/genres/school|/genres/academic|/genres/college,dir52/9454.Phenomenology_of_Spirit.html,8304,Phenomenology of Spirit +3.40,1638,0831727527,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1992,/genres/horror|/genres/fiction|/genres/thriller|/genres/suspense|/genres/adult|/genres/mystery|/genres/fantasy,dir52/32692.Gerald_s_Game.html,77182,Gerald's Game +3.97,558,0226458083,good_reads:book,https://www.goodreads.com/author/show/4735497.Thomas_S_Kuhn,1962,/genres/science|/genres/philosophy|/genres/non-fiction|/genres/history|/genres/science|/genres/history-of-science|/genres/sociology|/genres/academic|/genres/philosophy|/genres/theory|/genres/classics|/genres/academic|/genres/school,dir52/61539.The_Structure_of_Scientific_Revolutions.html,11019,The Structure of Scientific Revolutions +3.58,2209,1595143378,good_reads:book,https://www.goodreads.com/author/show/3023658.Brenna_Yovanoff,2010,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/horror|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/paranormal|/genres/fairies|/genres/young-adult|/genres/teen|/genres/romance,dir52/7507908-the-replacement.html,13371,The Replacement +4.22,1478,,good_reads:book,https://www.goodreads.com/author/show/6574132.R_K_Lilley,2012,/genres/romance|/genres/erotica|/genres/bdsm|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/adult|/genres/romance|/genres/erotic-romance|/genres/new-adult|/genres/sociology|/genres/abuse|/genres/love,dir52/16136959-mile-high.html,41312,"Mile High (Up in the Air, #2)" +4.04,205,0345308239,good_reads:book,https://www.goodreads.com/author/show/137261.Barbara_W_Tuchman,1984,/genres/non-fiction|/genres/war|/genres/politics|/genres/history|/genres/world-history|/genres/military|/genres/military-history|/genres/war|/genres/military|/genres/history|/genres/history|/genres/american-history|/genres/history|/genres/european-history|/genres/cultural|/genres/asia,dir52/10302.The_March_of_Folly.html,2822,The March of Folly +4.00,277,0451456750,good_reads:book,https://www.goodreads.com/author/show/14002.S_M_Stirling,1998,/genres/science-fiction|/genres/science-fiction|/genres/alternate-history|/genres/fantasy|/genres/science-fiction|/genres/time-travel|/genres/fiction|/genres/historical-fiction|/genres/science-fiction-fantasy,dir52/99702.Island_in_the_Sea_of_Time.html,4420,"Island in the Sea of Time (Nantucket, #1)" +4.20,639,9793210605,good_reads:book,https://www.goodreads.com/author/show/838768.Tere_Liye,2005,/genres/novels|/genres/fiction|/genres/asian-literature|/genres/indonesian-literature|/genres/religion|/genres/islam|/genres/family|/genres/childrens|/genres/drama|/genres/religion|/genres/inspirational,dir52/1376220.Hafalan_Shalat_Delisa.html,5438,Hafalan Shalat Delisa +4.15,1678,1423368991,good_reads:book,https://www.goodreads.com/author/show/625.Nora_Roberts,2010,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/fiction|/genres/adult|/genres/adult-fiction|/genres/family|/genres/love|/genres/novels,dir52/7074000-happy-ever-after.html,33320,"Happy Ever After (Bride Quartet, #4)" +4.01,2092,1400032059,good_reads:book,https://www.goodreads.com/author/show/22004.Charles_C_Mann,2005,/genres/history|/genres/non-fiction|/genres/anthropology|/genres/history|/genres/american-history|/genres/science|/genres/history|/genres/world-history,dir52/39020.1491.html,26459,1491 +3.99,1188,1579126251,good_reads:book,https://www.goodreads.com/author/show/123715.Agatha_Christie,1930,/genres/mystery|/genres/fiction|/genres/mystery|/genres/crime|/genres/classics|/genres/mystery|/genres/detective|/genres/thriller|/genres/mystery-thriller|/genres/european-literature|/genres/british-literature|/genres/mystery|/genres/cozy-mystery|/genres/thriller|/genres/adult,dir52/16331.Murder_at_the_Vicarage.html,60406,"Murder at the Vicarage (Miss Marple, #1)" +3.91,1055,142315956X,good_reads:book,https://www.goodreads.com/author/show/4792225.Tamara_Ireland_Stone,2012,/genres/young-adult|/genres/science-fiction|/genres/time-travel|/genres/romance|/genres/contemporary|/genres/fantasy|/genres/science-fiction|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/supernatural,dir52/11115457-time-between-us.html,6288,"Time Between Us (Time Between Us, #1)" +4.65,272,0345538277,good_reads:book,https://www.goodreads.com/author/show/48206.Karen_Marie_Moning,2012,/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fairies|/genres/fae|/genres/adult|/genres/paranormal|/genres/fairies|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/supernatural,dir52/15842007-the-fever-series.html,3089,The Fever Series +4.30,970,,good_reads:book,https://www.goodreads.com/author/show/4872191.Abbi_Glines,2013,/genres/new-adult|/genres/romance|/genres/young-adult|/genres/romance|/genres/contemporary-romance|/genres/academic|/genres/college|/genres/contemporary,dir52/15828714-sometimes-it-lasts.html,14804,"Sometimes It Lasts (Sea Breeze, #5)" +4.59,124,1856136639,good_reads:book,https://www.goodreads.com/author/show/1077326.J_K_Rowling,1999,/genres/fantasy|/genres/fiction|/genres/young-adult|/genres/childrens|/genres/cultural|/genres/france|/genres/novels|/genres/media-tie-in|/genres/movies|/genres/classics|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/teen,dir52/2337379.The_Harry_Potter_trilogy.html,3177,"The Harry Potter trilogy (Harry Potter, #1-3)" +4.39,195,0679746315,good_reads:book,https://www.goodreads.com/author/show/123376.Joseph_Mitchell,1992,/genres/non-fiction|/genres/writing|/genres/essays|/genres/short-stories|/genres/new-york|/genres/history|/genres/writing|/genres/journalism|/genres/anthologies|/genres/biography|/genres/adult|/genres/literature|/genres/american,dir52/210783.Up_in_the_Old_Hotel.html,1698,Up in the Old Hotel +3.89,340,1860492827,good_reads:book,https://www.goodreads.com/author/show/14160.Marilyn_French,1977,/genres/fiction|/genres/feminism|/genres/womens|/genres/classics|/genres/novels|/genres/contemporary|/genres/book-club|/genres/literature|/genres/gender|/genres/gender-studies|/genres/womens-fiction|/genres/chick-lit,dir52/46456.The_Women_s_Room.html,4206,The Women's Room +4.28,305,1400079608,good_reads:book,https://www.goodreads.com/author/show/7963.P_G_Wodehouse,1923,/genres/humor|/genres/humor|/genres/comedy|/genres/classics|/genres/humor|/genres/funny|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/fiction|/genres/historical-fiction|/genres/adult,dir52/16415.Leave_It_to_Psmith.html,4304,"Leave It to Psmith (Psmith, #4 ; Blandings Castle, #2)" +4.30,197,0843960604,good_reads:book,https://www.goodreads.com/author/show/1310735.C_L_Wilson,2009,/genres/fantasy|/genres/romance|/genres/romance|/genres/fantasy-romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/adult|/genres/fairies|/genres/fae|/genres/paranormal|/genres/shapeshifters|/genres/fantasy|/genres/high-fantasy,dir52/3354025-queen-of-song-and-souls.html,3589,"Queen of Song and Souls (Tairen Soul, #4)" +4.17,570,1439192634,good_reads:book,https://www.goodreads.com/author/show/580315.Jennifer_Estep,2011,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/magic|/genres/romance|/genres/paranormal|/genres/vampires|/genres/adult|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fiction,dir52/8675994-tangled-threads.html,11419,"Tangled Threads (Elemental Assassin, #4)" +3.94,1222,0805090053,good_reads:book,https://www.goodreads.com/author/show/88507.April_Henry,2010,/genres/young-adult|/genres/realistic-fiction|/genres/mystery|/genres/contemporary|/genres/fiction|/genres/thriller|/genres/suspense|/genres/young-adult|/genres/teen|/genres/adventure,dir52/7906105-girl-stolen.html,7688,"Girl, Stolen" +3.97,1945,0676977731,good_reads:book,https://www.goodreads.com/author/show/99709.Ami_McKay,2006,/genres/fiction|/genres/historical-fiction|/genres/book-club|/genres/cultural|/genres/canada|/genres/adult-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/feminism|/genres/adult|/genres/literature|/genres/canadian-literature|/genres/medical,dir52/171102.The_Birth_House.html,21930,The Birth House +3.20,953,0330412744,good_reads:book,https://www.goodreads.com/author/show/233.Don_DeLillo,2003,/genres/fiction|/genres/contemporary|/genres/novels|/genres/literature|/genres/literature|/genres/american|/genres/literary-fiction,dir52/28703.Cosmopolis.html,9250,Cosmopolis +3.67,57,2070360342,good_reads:book,https://www.goodreads.com/author/show/7617.Andr_Gide,1914,/genres/fiction|/genres/cultural|/genres/france|/genres/classics|/genres/literature|/genres/european-literature|/genres/french-literature|/genres/roman|/genres/novels|/genres/mystery|/genres/nobel-prize|/genres/literature|/genres/20th-century,dir52/413496.Les_caves_du_Vatican.html,1110,Les caves du Vatican +3.77,682,0152047387,good_reads:book,https://www.goodreads.com/author/show/11761.Diane_Duane,1983,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/childrens|/genres/adventure|/genres/science-fiction|/genres/childrens|/genres/middle-grade|/genres/science-fiction-fantasy,dir52/116563.So_You_Want_to_Be_a_Wizard.html,15007,"So You Want to Be a Wizard (Young Wizards, #1)" +4.15,349,0743437349,good_reads:book,https://www.goodreads.com/author/show/74046.D_J_MacHale,2003,/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/adventure|/genres/fiction|/genres/childrens|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/young-adult-fantasy|/genres/science-fiction|/genres/time-travel|/genres/childrens|/genres/middle-grade,dir52/215541.The_Reality_Bug.html,13407,"The Reality Bug (Pendragon, #4)" +4.29,64,0345461525,good_reads:book,https://www.goodreads.com/author/show/66700.Robert_E_Howard,2004,/genres/fantasy|/genres/fiction|/genres/heroic-fantasy|/genres/sword-and-sorcery|/genres/adventure|/genres/pulp|/genres/science-fiction-fantasy|/genres/novels|/genres/short-stories,dir52/21063.The_Bloody_Crown_of_Conan.html,2330,"The Bloody Crown of Conan (Conan the Cimmerian, #2)" +4.25,456,0345329457,good_reads:book,https://www.goodreads.com/author/show/9494.H_P_Lovecraft,1939,/genres/classics|/genres/horror|/genres/horror|/genres/lovecraftian|/genres/fiction|/genres/fantasy|/genres/weird-fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/lovecraftian|/genres/cthulhu-mythos|/genres/literature|/genres/american,dir53/32769.At_the_Mountains_of_Madness_and_Other_Tales_of_Terror.html,16557,At the Mountains of Madness and Other Tales of Terror +4.16,304,0099282992,good_reads:book,https://www.goodreads.com/author/show/35258.Yukio_Mishima,1968,/genres/fiction|/genres/cultural|/genres/japan|/genres/asian-literature|/genres/japanese-literature|/genres/historical-fiction|/genres/literature|/genres/classics|/genres/romance|/genres/novels|/genres/cultural|/genres/asia,dir53/62793.Spring_Snow.html,4624,Spring Snow +3.78,85,0385240864,good_reads:book,https://www.goodreads.com/author/show/8113.John_Barth,1966,/genres/fiction|/genres/literature|/genres/novels|/genres/literature|/genres/american|/genres/literary-fiction|/genres/fantasy|/genres/literature|/genres/20th-century|/genres/psychology|/genres/classics|/genres/science-fiction,dir53/144629.Giles_Goat_Boy.html,1310,Giles Goat-Boy +3.78,342,0451214773,good_reads:book,https://www.goodreads.com/author/show/241301.Lynn_Viehl,2005,/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/fiction|/genres/adult,dir53/780878.If_Angels_Burn.html,5128,"If Angels Burn (Darkyn, #1)" +4.21,457,9793858133,good_reads:book,https://www.goodreads.com/author/show/838768.Tere_Liye,2009,/genres/novels|/genres/fiction|/genres/asian-literature|/genres/indonesian-literature|/genres/romance|/genres/drama|/genres/family|/genres/romantic|/genres/philosophy|/genres/love,dir53/1376124.Rembulan_Tenggelam_Di_Wajahmu.html,3789,Rembulan Tenggelam Di Wajahmu +4.09,162,0452269563,good_reads:book,https://www.goodreads.com/author/show/16893.MacKinlay_Kantor,1955,/genres/historical-fiction|/genres/military-history|/genres/civil-war|/genres/fiction|/genres/war|/genres/classics|/genres/literature|/genres/banned-books|/genres/history|/genres/american-history|/genres/literature|/genres/american-history|/genres/american-civil-war|/genres/war|/genres/military,dir53/77239.Andersonville.html,4330,Andersonville +4.16,1080,1590860624,good_reads:book,https://www.goodreads.com/author/show/5091.Lee_Child,2002,/genres/thriller|/genres/fiction|/genres/mystery|/genres/mystery|/genres/crime|/genres/suspense|/genres/action|/genres/thriller|/genres/mystery-thriller|/genres/adventure|/genres/mystery|/genres/detective|/genres/spy-thriller|/genres/espionage,dir53/21745.Without_Fail.html,37982,"Without Fail (Jack Reacher, #6)" +4.13,3160,,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,2012,/genres/fantasy|/genres/fiction|/genres/horror|/genres/science-fiction|/genres/western|/genres/science-fiction-fantasy|/genres/adventure|/genres/fantasy|/genres/epic-fantasy|/genres/adult|/genres/epic,dir53/12341557-the-wind-through-the-keyhole.html,26816,"The Wind Through the Keyhole (The Dark Tower, #4.5)" +3.70,459,0192833278,good_reads:book,https://www.goodreads.com/author/show/30762.George_Grossmith,1892,/genres/classics|/genres/fiction|/genres/humor|/genres/literature|/genres/19th-century|/genres/european-literature|/genres/british-literature|/genres/humor|/genres/comedy|/genres/literature|/genres/novels|/genres/historical-fiction|/genres/humor|/genres/funny,dir53/535856.The_Diary_of_a_Nobody.html,5425,The Diary of a Nobody +4.12,341,0393311147,good_reads:book,https://www.goodreads.com/author/show/3101.Barry_Unsworth,1992,/genres/fiction|/genres/historical-fiction|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/cultural|/genres/africa|/genres/contemporary|/genres/novels|/genres/literary-fiction|/genres/modern|/genres/literature|/genres/20th-century,dir53/239592.Sacred_Hunger.html,3499,Sacred Hunger +4.07,212,0007173156,good_reads:book,https://www.goodreads.com/author/show/61105.Dr_Seuss,1975,/genres/childrens|/genres/fiction|/genres/childrens|/genres/picture-books|/genres/poetry|/genres/classics|/genres/fantasy|/genres/humor|/genres/young-adult|/genres/kids|/genres/childrens|/genres/juvenile,dir53/41757.Oh_the_Thinks_You_Can_Think_.html,7363,"Oh, the Thinks You Can Think!" +3.87,915,0374529949,good_reads:book,https://www.goodreads.com/author/show/238.Joan_Didion,1970,/genres/fiction|/genres/novels|/genres/classics|/genres/literature|/genres/book-club|/genres/adult-fiction|/genres/contemporary|/genres/literature|/genres/american|/genres/literary-fiction|/genres/womens,dir53/428.Play_It_as_It_Lays.html,11069,Play It as It Lays +4.26,690,0060218053,good_reads:book,https://www.goodreads.com/author/show/6781.Julie_Andrews_Edwards,1974,/genres/fantasy|/genres/childrens|/genres/fiction|/genres/young-adult|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/classics|/genres/academic|/genres/school|/genres/fantasy|/genres/magic,dir53/10336.The_Last_of_the_Really_Great_Whangdoodles.html,6123,The Last of the Really Great Whangdoodles +4.15,1679,,good_reads:book,https://www.goodreads.com/author/show/1152263.M_Leighton,2013,/genres/romance|/genres/new-adult|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/adult-fiction|/genres/erotica|/genres/adult|/genres/suspense|/genres/romance|/genres/erotic-romance|/genres/romance|/genres/romantic-suspense|/genres/mystery,dir53/16093188-up-to-me.html,26472,"Up to Me (The Bad Boys, #2)" +3.53,1405,0545169178,good_reads:book,https://www.goodreads.com/author/show/800187.Siobhan_Vivian,2012,/genres/young-adult|/genres/contemporary|/genres/realistic-fiction|/genres/fiction|/genres/young-adult|/genres/teen|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/high-school|/genres/romance|/genres/young-adult|/genres/young-adult-contemporary|/genres/drama,dir53/10866233-the-list.html,9600,The List +4.16,107,0140445145,good_reads:book,https://www.goodreads.com/author/show/1938.Friedrich_Nietzsche,1889,/genres/philosophy|/genres/non-fiction|/genres/classics|/genres/religion|/genres/european-literature|/genres/german-literature|/genres/literature|/genres/19th-century|/genres/philosophy|/genres/theory|/genres/religion|/genres/theology,dir53/43150.Twilight_of_the_Idols_The_Anti_Christ.html,4973,Twilight of the Idols/The Anti-Christ +3.78,577,0142437298,good_reads:book,https://www.goodreads.com/author/show/4391.Saul_Bellow,1964,/genres/fiction|/genres/classics|/genres/literature|/genres/literature|/genres/american|/genres/novels|/genres/literature|/genres/20th-century|/genres/literature|/genres/jewish|/genres/literary-fiction|/genres/nobel-prize|/genres/classics|/genres/modern-classics,dir53/6551.Herzog.html,10572,Herzog +4.02,336,055327418X,good_reads:book,https://www.goodreads.com/author/show/14078.David_Brin,1983,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/space-opera|/genres/science-fiction-fantasy|/genres/fantasy|/genres/science-fiction|/genres/aliens|/genres/speculative-fiction|/genres/space|/genres/novels|/genres/science-fiction|/genres/hard-science-fiction,dir53/234501.Startide_Rising.html,18836,"Startide Rising (The Uplift Saga, #2)" +4.11,3660,0345522478,good_reads:book,https://www.goodreads.com/author/show/4414255.Kevin_Hearne,2011,/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/mythology|/genres/fiction|/genres/paranormal|/genres/vampires|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/witches|/genres/adult|/genres/science-fiction-fantasy,dir53/9533378-hounded.html,34221,"Hounded (The Iron Druid Chronicles, #1)" +4.07,1529,,good_reads:book,https://www.goodreads.com/author/show/6546441.Katie_Ashley,2013,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/adult|/genres/womens-fiction|/genres/chick-lit|/genres/adult-fiction|/genres/erotica|/genres/new-adult|/genres/romance|/genres/erotic-romance|/genres/realistic-fiction|/genres/love,dir53/16117804-the-proposal.html,26465,"The Proposal (The Proposition, #2)" +3.97,1868,0316017442,good_reads:book,https://www.goodreads.com/author/show/2687.Dan_Simmons,2006,/genres/horror|/genres/historical-fiction|/genres/fiction|/genres/fantasy|/genres/thriller|/genres/mystery|/genres/adventure|/genres/adventure|/genres/survival|/genres/science-fiction|/genres/suspense,dir53/3974.The_Terror.html,15410,The Terror +4.21,211,0691024170,good_reads:book,https://www.goodreads.com/author/show/1429989.Richard_P_Feynman,1985,/genres/science|/genres/science|/genres/physics|/genres/non-fiction|/genres/science|/genres/popular-science|/genres/science|/genres/mathematics|/genres/computer-science|/genres/technical|/genres/philosophy|/genres/classics|/genres/nobel-prize|/genres/academic,dir53/5552.QED.html,7095,QED +4.17,50,0590318799,good_reads:book,https://www.goodreads.com/author/show/4355.Elvira_Woodruff,2000,/genres/holiday|/genres/christmas|/genres/historical-fiction|/genres/fiction|/genres/childrens|/genres/holiday,dir53/1061004.The_Christmas_Doll.html,340,The Christmas Doll +4.14,387,0736918612,good_reads:book,https://www.goodreads.com/author/show/10679.Lori_Wick,1999,/genres/christian-fiction|/genres/christian|/genres/romance|/genres/fiction|/genres/romance|/genres/christian-romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/inspirational|/genres/romance|/genres/contemporary-romance|/genres/historical-fiction,dir53/289747.The_Princess.html,7067,The Princess +3.95,133,0786806540,good_reads:book,https://www.goodreads.com/author/show/33461.Lynne_Ewing,2000,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/teen|/genres/romance|/genres/fiction|/genres/fantasy|/genres/magic,dir53/181439.Into_the_Cold_Fire.html,4996,"Into the Cold Fire (Daughters of the Moon, #2)" +3.94,106,0385722672,good_reads:book,https://www.goodreads.com/author/show/302660.Hjalmar_S_derberg,1905,/genres/classics|/genres/european-literature|/genres/swedish-literature|/genres/fiction|/genres/european-literature|/genres/scandinavian-literature|/genres/cultural|/genres/sweden|/genres/literature,dir53/789497.Doctor_Glas.html,2125,Doctor Glas +4.04,661,038000321X,good_reads:book,https://www.goodreads.com/author/show/40311.Piers_Paul_Read,1974,/genres/non-fiction|/genres/adventure|/genres/adventure|/genres/survival|/genres/biography|/genres/history|/genres/autobiography|/genres/memoir|/genres/travel|/genres/true-story,dir53/401514.Alive.html,33439,Alive +3.93,312,037380315X,good_reads:book,https://www.goodreads.com/author/show/8685.Mercedes_Lackey,2010,/genres/fantasy|/genres/romance|/genres/fantasy|/genres/fairy-tales|/genres/fiction|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/adult|/genres/romance|/genres/fantasy-romance|/genres/fairy-tales|/genres/fairy-tale-retellings|/genres/fantasy|/genres/dragons,dir53/7711273-the-sleeping-beauty.html,4535,"The Sleeping Beauty (Five Hundred Kingdoms, #5)" +3.83,149,0061054879,good_reads:book,https://www.goodreads.com/author/show/4338.Robert_Silverberg,1980,/genres/fantasy|/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/speculative-fiction|/genres/novels|/genres/adult|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction|/genres/space-opera|/genres/sci-fi-fantasy,dir53/252838.Lord_Valentine_s_Castle.html,5033,"Lord Valentine's Castle (Lord Valentine, #1)" +3.94,616,1599953544,good_reads:book,https://www.goodreads.com/author/show/1441.Ted_Dekker,2011,/genres/fantasy|/genres/christian-fiction|/genres/fiction|/genres/christian|/genres/science-fiction|/genres/dystopia|/genres/thriller|/genres/science-fiction|/genres/mystery|/genres/apocalyptic|/genres/post-apocalyptic|/genres/suspense,dir53/10791807-forbidden.html,4899,"Forbidden (The Books of Mortals, #1)" +3.61,1176,,good_reads:book,https://www.goodreads.com/author/show/5544.Frank_E_Peretti,2006,/genres/fantasy|/genres/supernatural|/genres/adult|/genres/fantasy|/genres/paranormal|/genres/adult-fiction|/genres/thriller|/genres/mystery-thriller|/genres/religion|/genres/spirituality|/genres/religion|/genres/christianity|/genres/novels|/genres/adventure,dir53/65685.House.html,15391,House +3.79,580,0679735720,good_reads:book,https://www.goodreads.com/author/show/11337.Martin_Amis,1991,/genres/fiction|/genres/literature|/genres/fantasy|/genres/novels|/genres/historical-fiction|/genres/contemporary|/genres/european-literature|/genres/british-literature|/genres/science-fiction|/genres/literary-fiction|/genres/literature|/genres/20th-century,dir53/23031.Time_s_Arrow.html,7260,Time's Arrow +4.07,958,0007240198,good_reads:book,https://www.goodreads.com/author/show/1387272.Ben_Goldacre,2007,/genres/science|/genres/non-fiction|/genres/science|/genres/popular-science|/genres/health|/genres/medicine|/genres/philosophy|/genres/skepticism|/genres/health|/genres/medical|/genres/psychology|/genres/humor|/genres/politics,dir53/3272165-bad-science.html,15776,Bad Science +3.92,1649,0399257454,good_reads:book,https://www.goodreads.com/author/show/4718528.Jessica_Spotswood,2012,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/paranormal|/genres/historical-fiction|/genres/romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/romance|/genres/paranormal-romance,dir53/11715276-born-wicked.html,9734,"Born Wicked (The Cahill Witch Chronicles, #1)" +4.25,83,0304352314,good_reads:book,https://www.goodreads.com/author/show/517153.Lothar_G_nther_Buchheim,1973,/genres/fiction|/genres/war|/genres/historical-fiction|/genres/history|/genres/world-war-ii|/genres/cultural|/genres/germany|/genres/classics|/genres/war|/genres/military|/genres/european-literature|/genres/german-literature|/genres/literature|/genres/novels,dir53/299596.Das_Boot.html,1750,Das Boot +4.05,417,0349103232,good_reads:book,https://www.goodreads.com/author/show/7628.Iain_Banks,1992,/genres/fiction|/genres/contemporary|/genres/mystery|/genres/cultural|/genres/scotland|/genres/thriller|/genres/literature|/genres/mystery|/genres/crime|/genres/literary-fiction|/genres/literature|/genres/20th-century|/genres/dark,dir53/12021.The_Crow_Road.html,10466,The Crow Road +3.66,1167,0446616419,good_reads:book,https://www.goodreads.com/author/show/8988.Carrie_Vaughn,2005,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/shapeshifters|/genres/werewolves|/genres/paranormal|/genres/vampires|/genres/fiction|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/shapeshifters|/genres/romance|/genres/fantasy|/genres/supernatural,dir53/14461.Kitty_and_the_Midnight_Hour.html,19662,Kitty and the Midnight Hour (Kitty Norville #1) +3.83,148,0671874543,good_reads:book,https://www.goodreads.com/author/show/50873.L_J_Smith,1994,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/magic,dir53/258468.The_Strange_Power.html,4927,"The Strange Power (Dark Visions, #1)" +4.24,162,0449215571,good_reads:book,https://www.goodreads.com/author/show/31845.Marge_Piercy,1987,/genres/historical-fiction|/genres/fiction|/genres/war|/genres/history|/genres/world-war-ii|/genres/world-war-ii|/genres/holocaust|/genres/novels|/genres/literature|/genres/adult|/genres/feminism|/genres/adult-fiction,dir53/862109.Gone_to_Soldiers.html,2226,Gone to Soldiers +4.04,427,039474067X,good_reads:book,https://www.goodreads.com/author/show/24390.Edward_W_Said,1978,/genres/non-fiction|/genres/history|/genres/philosophy|/genres/politics|/genres/philosophy|/genres/theory|/genres/sociology|/genres/anthropology|/genres/academic|/genres/criticism|/genres/literary-criticism|/genres/culture,dir53/355190.Orientalism.html,7649,Orientalism +3.99,1022,0743244583,good_reads:book,https://www.goodreads.com/author/show/8898.Bob_Dylan,2005,/genres/music|/genres/non-fiction|/genres/biography|/genres/autobiography|/genres/memoir|/genres/biography|/genres/autobiography|/genres/biography-memoir|/genres/literature|/genres/american|/genres/history|/genres/music|/genres/rock-n-roll|/genres/book-club,dir53/14318.Chronicles_Vol_1.html,25047,"Chronicles, Vol. 1" +4.27,424,,good_reads:book,https://www.goodreads.com/author/show/838768.Tere_Liye,2008,/genres/novels|/genres/fiction|/genres/family|/genres/asian-literature|/genres/indonesian-literature|/genres/romance,dir53/3971237-bidadari-bidadari-surga.html,4139,Bidadari Bidadari Surga +3.68,415,1582342156,good_reads:book,https://www.goodreads.com/author/show/1886.Douglas_Coupland,2001,/genres/fiction|/genres/cultural|/genres/canada|/genres/contemporary|/genres/humor|/genres/novels|/genres/literary-fiction|/genres/literature|/genres/adult-fiction|/genres/humor|/genres/funny|/genres/adult,dir53/3379.All_Families_are_Psychotic.html,9364,All Families are Psychotic +3.80,50,0140439161,good_reads:book,https://www.goodreads.com/author/show/34937.William_Bligh,1790,/genres/classics|/genres/biography|/genres/adventure|/genres/non-fiction|/genres/adventure|/genres/maritime|/genres/literature|/genres/18th-century|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/travel|/genres/media-tie-in|/genres/movies,dir53/254191.The_Bounty_Mutiny.html,1189,The Bounty Mutiny +3.43,2531,0099481685,good_reads:book,https://www.goodreads.com/author/show/721.John_Grisham,2001,/genres/fiction|/genres/holiday|/genres/christmas|/genres/humor|/genres/book-club|/genres/holiday|/genres/adult-fiction|/genres/adult|/genres/contemporary|/genres/humor|/genres/comedy,dir53/5357.Skipping_Christmas.html,34218,Skipping Christmas +3.55,192,0812976479,good_reads:book,https://www.goodreads.com/author/show/11505.Joe_Klein,1996,/genres/fiction|/genres/politics|/genres/historical-fiction|/genres/novels|/genres/humor|/genres/contemporary|/genres/literature|/genres/american|/genres/literature|/genres/politics|/genres/presidents|/genres/adult-fiction,dir53/261444.Primary_Colors.html,3310,Primary Colors +3.99,527,006440823X,good_reads:book,https://www.goodreads.com/author/show/11633.Sharon_Creech,1998,/genres/young-adult|/genres/realistic-fiction|/genres/fiction|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/contemporary|/genres/young-adult|/genres/coming-of-age|/genres/childrens|/genres/juvenile|/genres/young-adult|/genres/teen|/genres/school-stories|/genres/boarding-school,dir53/742272.Bloomability.html,6588,Bloomability +3.99,925,0684856093,good_reads:book,https://www.goodreads.com/author/show/38343.Sean_Covey,1997,/genres/self-help|/genres/non-fiction|/genres/academic|/genres/school|/genres/psychology|/genres/young-adult|/genres/teen|/genres/parenting|/genres/self-help|/genres/personal-development|/genres/academic|/genres/read-for-school|/genres/reference|/genres/education,dir53/783127.The_7_Habits_Of_Highly_Effective_Teens.html,14012,The 7 Habits Of Highly Effective Teens +3.77,58,009947834X,good_reads:book,https://www.goodreads.com/author/show/10039.John_Fowles,1977,/genres/fiction|/genres/literary-fiction|/genres/literature|/genres/classics|/genres/novels|/genres/european-literature|/genres/british-literature|/genres/contemporary|/genres/philosophy|/genres/romance|/genres/modern,dir53/57529.Daniel_Martin.html,1496,Daniel Martin +4.21,253,0439858054,good_reads:book,https://www.goodreads.com/author/show/28756.John_Marsden,1999,/genres/young-adult|/genres/fiction|/genres/war|/genres/science-fiction|/genres/dystopia|/genres/action|/genres/adventure|/genres/cultural|/genres/australia|/genres/young-adult|/genres/teen|/genres/apocalyptic|/genres/post-apocalyptic|/genres/science-fiction,dir53/71867.The_Other_Side_of_Dawn.html,8416,"The Other Side of Dawn (Tomorrow, #7)" +4.04,34,0393972798,good_reads:book,https://www.goodreads.com/author/show/398497.Alfred_Tennyson,1833,/genres/poetry|/genres/classics|/genres/literature|/genres/fiction|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/19th-century|/genres/anthologies|/genres/academic|/genres/college|/genres/academic|/genres/read-for-school|/genres/classics|/genres/classic-literature,dir53/294395.Poetry.html,5514,Poetry +3.89,1275,0312375069,good_reads:book,https://www.goodreads.com/author/show/117366.Keigo_Higashino,2005,/genres/mystery|/genres/fiction|/genres/cultural|/genres/japan|/genres/thriller|/genres/mystery|/genres/crime|/genres/asian-literature|/genres/japanese-literature|/genres/thriller|/genres/mystery-thriller|/genres/cultural|/genres/asia|/genres/suspense,dir53/8686068-the-devotion-of-suspect-x.html,6828,The Devotion of Suspect X +4.22,371,0582416396,good_reads:book,https://www.goodreads.com/author/show/2448.Arthur_Conan_Doyle,1891,/genres/mystery|/genres/classics|/genres/fiction|/genres/mystery|/genres/crime|/genres/short-stories|/genres/historical-fiction,dir53/1848444.A_Scandal_in_Bohemia.html,47671,"A Scandal in Bohemia (The Adventures of Sherlock Holmes, #1)" +4.46,902,,good_reads:book,https://www.goodreads.com/author/show/2958084.Kristen_Ashley,2011,/genres/romance|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/romance|/genres/romantic-suspense|/genres/womens-fiction|/genres/chick-lit|/genres/humor|/genres/funny|/genres/adult|/genres/humor|/genres/suspense|/genres/adult-fiction|/genres/erotica,dir53/13065142-rock-chick-reckoning.html,15241,"Rock Chick Reckoning (Rock Chick, #6)" +4.21,1777,0547628382,good_reads:book,https://www.goodreads.com/author/show/6914204.Robin_LaFevers,2013,/genres/fantasy|/genres/historical-fiction|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/young-adult|/genres/teen,dir53/9943270-dark-triumph.html,12025,"Dark Triumph (His Fair Assassin, #2)" +4.27,1655,,good_reads:book,https://www.goodreads.com/author/show/5437976.J_A_Redmerski,2013,/genres/new-adult|/genres/romance|/genres/dark|/genres/contemporary|/genres/suspense|/genres/sociology|/genres/abuse|/genres/romance|/genres/contemporary-romance|/genres/adult|/genres/romance|/genres/romantic-suspense|/genres/thriller,dir53/20559676-killing-sarai.html,12776,"Killing Sarai (In the Company of Killers, #1)" +4.31,71,1421518880,good_reads:book,https://www.goodreads.com/author/show/1978.Tsugumi_Ohba,2006,/genres/sequential-art|/genres/manga|/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fantasy|/genres/mystery|/genres/fiction|/genres/horror|/genres/comics-manga|/genres/media-tie-in|/genres/anime|/genres/young-adult,dir53/2021815.Death_Note_Vol_13.html,4076,"Death Note, Vol. 13" +4.13,250,0743450094,good_reads:book,https://www.goodreads.com/author/show/60177.Guy_Gavriel_Kay,1998,/genres/fantasy|/genres/fiction|/genres/historical-fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/cultural|/genres/canada|/genres/science-fiction|/genres/alternate-history|/genres/fantasy|/genres/high-fantasy|/genres/speculative-fiction|/genres/adult,dir53/104097.Sailing_to_Sarantium.html,6607,"Sailing to Sarantium (The Sarantine Mosaic, #1)" +4.12,42,1419324721,good_reads:book,https://www.goodreads.com/author/show/4841825.Marion_Zimmer_Bradley,1982,/genres/fantasy|/genres/fiction|/genres/historical-fiction|/genres/romance|/genres/classics|/genres/fantasy|/genres/mythology|/genres/mythology|/genres/arthurian,dir53/18887.The_Prisoner_in_the_Oak.html,2118,"The Prisoner in the Oak (The Mists of Avalon, #4)" +3.87,437,1612130488,good_reads:book,https://www.goodreads.com/author/show/4496779.Sherri_Hayes,2011,/genres/erotica|/genres/bdsm|/genres/dark|/genres/sociology|/genres/abuse|/genres/romance|/genres/adult|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/erotic-romance|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/fiction,dir53/11690138-slave.html,4574,"Slave (Finding Anna, #1)" +4.33,3079,110160218X,good_reads:book,https://www.goodreads.com/author/show/20248.J_R_Ward,2014,/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult,dir53/17703290-the-king.html,17974,"The King (Black Dagger Brotherhood, #12)" +4.30,159,076530757X,good_reads:book,https://www.goodreads.com/author/show/8185168.Charles_de_Lint,1998,/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/science-fiction-fantasy|/genres/adult|/genres/magical-realism,dir53/186427.Someplace_to_Be_Flying.html,4156,"Someplace to Be Flying (Newford, #8)" +4.27,29,0940450151,good_reads:book,https://www.goodreads.com/author/show/12080.Ralph_Waldo_Emerson,1983,/genres/philosophy|/genres/writing|/genres/essays|/genres/non-fiction|/genres/classics|/genres/literature|/genres/literature|/genres/american|/genres/history|/genres/politics|/genres/literature|/genres/19th-century|/genres/reference,dir53/123843.Essays_and_Lectures.html,1962,Essays and Lectures +4.17,1274,0446690457,good_reads:book,https://www.goodreads.com/author/show/12470.Michael_Connelly,1996,/genres/mystery|/genres/mystery|/genres/crime|/genres/fiction|/genres/thriller|/genres/thriller|/genres/mystery-thriller|/genres/suspense|/genres/mystery|/genres/detective,dir53/32506.The_Poet.html,42678,"The Poet (Jack McEvoy, #1)" +4.38,143,1557048010,good_reads:book,https://www.goodreads.com/author/show/120401.David_Benioff,2008,/genres/novels|/genres/fiction|/genres/drama|/genres/book-club,dir53/2203766.The_Kite_Runner.html,1532,The Kite Runner +3.66,397,0413774031,good_reads:book,https://www.goodreads.com/author/show/5031025.Anton_Chekhov,1904,/genres/plays|/genres/classics|/genres/drama|/genres/cultural|/genres/russia|/genres/fiction|/genres/plays|/genres/theatre|/genres/literature|/genres/russian-literature|/genres/literature|/genres/academic|/genres/school|/genres/literature|/genres/20th-century,dir53/87346.The_Cherry_Orchard.html,15438,The Cherry Orchard +3.22,2257,0143035479,good_reads:book,https://www.goodreads.com/author/show/7375.Melissa_Bank,1998,/genres/womens-fiction|/genres/chick-lit|/genres/short-stories|/genres/contemporary|/genres/romance|/genres/book-club|/genres/adult-fiction|/genres/adult|/genres/novels|/genres/humor|/genres/fiction,dir53/33926.The_Girls_Guide_to_Hunting_and_Fishing.html,95293,The Girls' Guide to Hunting and Fishing +4.28,108,0140237208,good_reads:book,https://www.goodreads.com/author/show/105590.Opal_Whiteley,1977,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/biography|/genres/environment|/genres/nature|/genres/diary|/genres/biography|/genres/autobiography|/genres/canon|/genres/book-club|/genres/literature|/genres/philosophy,dir53/62268.The_Singing_Creek_Where_the_Willows_Grow.html,530,The Singing Creek Where the Willows Grow +3.67,341,0316011851,good_reads:book,https://www.goodreads.com/author/show/12665.Cecily_von_Ziegesar,2005,/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/fiction|/genres/school-stories|/genres/boarding-school|/genres/young-adult|/genres/high-school|/genres/realistic-fiction|/genres/drama,dir53/561403.The_It_Girl.html,9968,"The It Girl (It Girl, #1)" +3.94,352,159554657X,good_reads:book,https://www.goodreads.com/author/show/1441.Ted_Dekker,2007,/genres/fantasy|/genres/christian-fiction|/genres/christian|/genres/young-adult|/genres/fiction|/genres/adventure|/genres/young-adult|/genres/teen|/genres/science-fiction|/genres/thriller|/genres/science-fiction-fantasy,dir53/1620913.Chosen.html,5512,"Chosen (The Lost Books, #1)" +3.77,1782,0689859368,good_reads:book,https://www.goodreads.com/author/show/25422.Holly_Black,2003,/genres/fantasy|/genres/childrens|/genres/young-adult|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/fantasy|/genres/magic|/genres/fiction|/genres/paranormal|/genres/fairies|/genres/fantasy|/genres/urban-fantasy,dir53/444304.The_Field_Guide.html,35252,"The Field Guide (The Spiderwick Chronicles, #1)" +3.92,322,0679724494,good_reads:book,https://www.goodreads.com/author/show/35548.Manuel_Puig,1976,/genres/fiction|/genres/european-literature|/genres/spanish-literature|/genres/glbt|/genres/literature|/genres/cultural|/genres/latin-american|/genres/novels|/genres/literature|/genres/latin-american-literature|/genres/classics|/genres/plays|/genres/academic|/genres/school,dir53/588242.Kiss_of_the_Spider_Woman.html,5930,Kiss of the Spider Woman +4.13,330,0310247918,good_reads:book,https://www.goodreads.com/author/show/639.Lee_Strobel,2000,/genres/christian|/genres/non-fiction|/genres/religion|/genres/religion|/genres/christianity|/genres/religion|/genres/theology|/genres/religion|/genres/faith|/genres/spirituality|/genres/philosophy|/genres/inspirational|/genres/reference,dir53/263972.The_Case_for_Faith.html,17873,The Case for Faith +3.60,224,0006178715,good_reads:book,https://www.goodreads.com/author/show/9068.Sidney_Sheldon,1992,/genres/fiction|/genres/thriller|/genres/mystery|/genres/romance|/genres/suspense|/genres/contemporary|/genres/thriller|/genres/mystery-thriller|/genres/drama|/genres/novels|/genres/mystery|/genres/crime,dir53/84054.The_Stars_Shine_Down.html,9825,The Stars Shine Down +3.92,1238,0671015206,good_reads:book,https://www.goodreads.com/author/show/659.Thomas_J_Stanley,1995,/genres/non-fiction|/genres/business|/genres/self-help|/genres/economics|/genres/psychology|/genres/reference|/genres/how-to|/genres/sociology|/genres/self-help|/genres/personal-development|/genres/social-science,dir53/998.The_Millionaire_Next_Door.html,22742,The Millionaire Next Door +4.14,491,0671024094,good_reads:book,https://www.goodreads.com/author/show/1612.Jeffery_Deaver,1998,/genres/mystery|/genres/mystery|/genres/crime|/genres/thriller|/genres/fiction|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/detective|/genres/mystery|/genres/murder-mystery|/genres/adult|/genres/action,dir53/227729.The_Coffin_Dancer.html,25270,"The Coffin Dancer (Lincoln Rhyme, #2)" +3.60,899,0060891564,good_reads:book,https://www.goodreads.com/author/show/5194.Michael_Crichton,1976,/genres/fiction|/genres/historical-fiction|/genres/fantasy|/genres/thriller|/genres/adventure|/genres/horror|/genres/science-fiction|/genres/action|/genres/novels|/genres/science-fiction-fantasy,dir53/7673.Eaters_of_the_Dead.html,21400,Eaters of the Dead +3.99,231,0451452011,good_reads:book,https://www.goodreads.com/author/show/40119.Grant_Naylor,1989,/genres/science-fiction|/genres/humor|/genres/humor|/genres/comedy|/genres/fantasy|/genres/humor|/genres/funny|/genres/fiction,dir53/349090.Red_Dwarf.html,15448,"Red Dwarf (Red Dwarf, #1)" +3.91,4432,1439164630,good_reads:book,https://www.goodreads.com/author/show/978484.Lisa_Genova,2011,/genres/book-club|/genres/fiction|/genres/contemporary|/genres/adult-fiction|/genres/medical|/genres/psychology,dir53/8492768-left-neglected.html,34301,Left Neglected +4.29,368,0800793013,good_reads:book,https://www.goodreads.com/author/show/46742.Brother_Andrew,1964,/genres/biography|/genres/christian|/genres/non-fiction|/genres/religion|/genres/christianity|/genres/history|/genres/biography|/genres/autobiography|/genres/religion|/genres/religion|/genres/faith|/genres/autobiography|/genres/memoir|/genres/inspirational,dir53/824062.God_s_Smuggler.html,14696,God's Smuggler +4.14,31,1556909179,good_reads:book,https://www.goodreads.com/author/show/4841825.Marion_Zimmer_Bradley,1982,/genres/fantasy|/genres/historical-fiction|/genres/fiction|/genres/romance|/genres/classics|/genres/fantasy|/genres/mythology|/genres/mythology|/genres/arthurian|/genres/historical-fiction|/genres/medieval|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction-fantasy,dir53/18890.The_King_Stag.html,2366,"The King Stag (The Mists of Avalon, #3)" +4.21,122,142151155X,good_reads:book,https://www.goodreads.com/author/show/1978.Tsugumi_Ohba,2006,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fantasy|/genres/sequential-art|/genres/manga|/genres/mystery|/genres/fiction|/genres/horror|/genres/young-adult|/genres/comics-manga|/genres/thriller,dir53/13623.Death_Note_Vol_10.html,6371,"Death Note, Vol. 10 (Death Note, #10)" +,None,None,None,None,NA,,dir53/113138.The_Winner.html,None,None +3.59,1155,0140432108,good_reads:book,https://www.goodreads.com/author/show/8249.Anne_Bront_,1847,/genres/classics|/genres/fiction|/genres/romance|/genres/literature|/genres/19th-century|/genres/literature|/genres/historical-fiction|/genres/european-literature|/genres/british-literature|/genres/classics|/genres/classic-literature|/genres/novels|/genres/literature|/genres/english-literature,dir53/298230.Agnes_Grey.html,23017,Agnes Grey +3.20,171,1573221090,good_reads:book,https://www.goodreads.com/author/show/5684.Alex_Garland,1998,/genres/fiction|/genres/contemporary|/genres/thriller|/genres/mystery|/genres/crime|/genres/novels|/genres/mystery|/genres/literary-fiction|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/cultural|/genres/asia,dir53/243257.The_Tesseract.html,3769,The Tesseract +3.82,1686,1606410938,good_reads:book,https://www.goodreads.com/author/show/2830341.Lisa_Mangum,2009,/genres/young-adult|/genres/fantasy|/genres/romance|/genres/science-fiction|/genres/time-travel|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/young-adult|/genres/teen|/genres/adventure|/genres/fantasy|/genres/supernatural,dir53/6217361-the-hourglass-door.html,7792,"The Hourglass Door (Hourglass Door, #1)" +3.46,1263,0307266354,good_reads:book,https://www.goodreads.com/author/show/4030.Michael_Ondaatje,2007,/genres/fiction|/genres/cultural|/genres/canada|/genres/book-club|/genres/novels|/genres/literature|/genres/contemporary|/genres/literary-fiction|/genres/literature|/genres/canadian-literature|/genres/cultural|/genres/france|/genres/historical-fiction,dir53/80063.Divisadero.html,7603,Divisadero +3.99,2466,0316074144,good_reads:book,https://www.goodreads.com/author/show/2891665.Gail_Carriger,2010,/genres/science-fiction|/genres/steampunk|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/mystery|/genres/shapeshifters|/genres/werewolves|/genres/historical-fiction,dir53/6933876-changeless.html,22241,"Changeless (Parasol Protectorate, #2)" +4.23,143,0304356875,good_reads:book,https://www.goodreads.com/author/show/62110.Paul_Brickhill,1950,/genres/history|/genres/non-fiction|/genres/war|/genres/history|/genres/world-war-ii|/genres/war|/genres/military|/genres/military|/genres/military-history|/genres/classics|/genres/biography|/genres/adventure|/genres/media-tie-in|/genres/movies,dir53/107406.The_Great_Escape.html,3774,The Great Escape +4.00,1195,0373210523,good_reads:book,https://www.goodreads.com/author/show/4086928.Hannah_Harrington,2012,/genres/young-adult|/genres/contemporary|/genres/romance|/genres/realistic-fiction|/genres/fiction|/genres/young-adult|/genres/young-adult-contemporary|/genres/young-adult|/genres/high-school|/genres/glbt|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/teen,dir53/13069681-speechless.html,7415,Speechless +4.10,1779,1439187312,good_reads:book,https://www.goodreads.com/author/show/46097.Richard_Paul_Evans,2010,/genres/fiction|/genres/inspirational|/genres/book-club|/genres/christian-fiction|/genres/adult|/genres/adult-fiction|/genres/christian,dir53/7187395-the-walk.html,12468,"The Walk (The Walk, #1)" +3.99,236,0141186917,good_reads:book,https://www.goodreads.com/author/show/281443.Ernst_J_nger,1920,/genres/history|/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/war|/genres/european-literature|/genres/german-literature|/genres/biography|/genres/war|/genres/military|/genres/cultural|/genres/germany|/genres/classics|/genres/military|/genres/military-history,dir53/240485.Storm_of_Steel.html,2494,Storm of Steel +4.39,297,1421501708,good_reads:book,https://www.goodreads.com/author/show/1978.Tsugumi_Ohba,2004,/genres/sequential-art|/genres/manga|/genres/sequential-art|/genres/graphic-novels|/genres/fantasy|/genres/sequential-art|/genres/comics|/genres/fiction|/genres/horror|/genres/young-adult|/genres/mystery,dir53/13618.Death_Note_Vol_3.html,11628,"Death Note, Vol. 3 (Death Note, #3)" +4.11,226,0553589482,good_reads:book,https://www.goodreads.com/author/show/32498.Iris_Johansen,2000,/genres/mystery|/genres/fiction|/genres/suspense|/genres/thriller|/genres/romance|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/crime|/genres/romance|/genres/romantic-suspense|/genres/contemporary|/genres/adult,dir53/94299.The_Search.html,9842,"The Search (Eve Duncan, #3)" +4.00,2703,074326004X,good_reads:book,https://www.goodreads.com/author/show/2122.Sarah_Vowell,2005,/genres/non-fiction|/genres/travel|/genres/writing|/genres/essays|/genres/history|/genres/autobiography|/genres/memoir|/genres/book-club|/genres/politics|/genres/history|/genres/american-history|/genres/humor|/genres/biography,dir53/3110.Assassination_Vacation.html,26422,Assassination Vacation +3.90,1101,0312573804,good_reads:book,https://www.goodreads.com/author/show/1487748.Courtney_Summers,2010,/genres/young-adult|/genres/contemporary|/genres/realistic-fiction|/genres/romance|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/high-school|/genres/sociology|/genres/abuse|/genres/young-adult|/genres/teen|/genres/drama,dir53/6624871-some-girls-are.html,9207,Some Girls Are +4.28,858,0671023187,good_reads:book,https://www.goodreads.com/author/show/14989.Vince_Flynn,1997,/genres/fiction|/genres/thriller|/genres/suspense|/genres/action|/genres/mystery|/genres/spy-thriller|/genres/espionage|/genres/politics|/genres/thriller|/genres/mystery-thriller|/genres/thriller|/genres/spy-thriller|/genres/adventure,dir53/85392.Term_Limits.html,19196,Term Limits +3.99,646,0380817926,good_reads:book,https://www.goodreads.com/author/show/2687.Dan_Simmons,2003,/genres/science-fiction|/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/mythology|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/space-opera|/genres/speculative-fiction,dir53/3973.Ilium.html,14939,"Ilium (Ilium, #1)" +3.86,4128,0345527712,good_reads:book,https://www.goodreads.com/author/show/2384.Janet_Evanovich,2011,/genres/mystery|/genres/fiction|/genres/humor|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/humor|/genres/funny|/genres/mystery|/genres/crime|/genres/humor|/genres/comedy|/genres/adult|/genres/thriller|/genres/mystery-thriller,dir53/11746513-explosive-eighteen.html,43323,Explosive Eighteen (Stephanie Plum #18) +4.43,805,0425251241,good_reads:book,https://www.goodreads.com/author/show/71688.Nalini_Singh,2013,/genres/paranormal|/genres/angels|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/adult|/genres/fantasy|/genres/supernatural|/genres/fiction,dir53/15808767-archangel-s-legion.html,7553,"Archangel's Legion (Guild Hunter, #6)" +3.92,95,0140424628,good_reads:book,https://www.goodreads.com/author/show/64845.William_Wordsworth,1798,/genres/poetry|/genres/classics|/genres/literature|/genres/literature|/genres/18th-century|/genres/european-literature|/genres/british-literature|/genres/fiction,dir54/112110.Lyrical_Ballads.html,6463,Lyrical Ballads +4.22,936,0312942303,good_reads:book,https://www.goodreads.com/author/show/4430.Sherrilyn_Kenyon,1996,/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/science-fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/science-fiction|/genres/aliens|/genres/adult|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/science-fiction-romance|/genres/fiction,dir54/2992061-born-of-night.html,14235,"Born of Night (The League, #1)" +4.11,3577,0307268195,good_reads:book,https://www.goodreads.com/author/show/54066.Andre_Agassi,1997,/genres/non-fiction|/genres/sports-and-games|/genres/sports|/genres/autobiography|/genres/memoir|/genres/biography|/genres/autobiography|/genres/biography|/genres/biography-memoir,dir54/6480781-open.html,34855,Open +3.46,210,0140296794,good_reads:book,https://www.goodreads.com/author/show/68992.Ali_Smith,2001,/genres/fiction|/genres/contemporary|/genres/short-stories|/genres/novels|/genres/literary-fiction|/genres/literature,dir54/123036.Hotel_World.html,2330,Hotel World +4.48,459,1563891700,good_reads:book,https://www.goodreads.com/author/show/1221698.Neil_Gaiman,1993,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fantasy|/genres/fiction|/genres/graphic-novels-comics|/genres/horror|/genres/comics|/genres/comic-book|/genres/fantasy|/genres/mythology,dir54/25103.The_Sandman_Vol_8.html,26162,"The Sandman, Vol. 8 (The Sandman, #8)" +3.97,281,0425203972,good_reads:book,https://www.goodreads.com/author/show/45984.Lisa_Valdez,2005,/genres/romance|/genres/historical-romance|/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/erotic-romance|/genres/adult|/genres/historical-romance|/genres/regency-romance|/genres/regency|/genres/historical-fiction|/genres/fiction|/genres/erotic-romance|/genres/erotic-historical-romance,dir54/80760.Passion.html,3374,"Passion (Passion Quartet, #1)" +3.89,203,0425184234,good_reads:book,https://www.goodreads.com/author/show/2819300.Robert_Wilson,1999,/genres/mystery|/genres/fiction|/genres/mystery|/genres/crime|/genres/historical-fiction|/genres/thriller|/genres/cultural|/genres/portugal|/genres/spy-thriller|/genres/espionage|/genres/war|/genres/history|/genres/world-war-ii|/genres/thriller|/genres/mystery-thriller,dir54/368250.A_Small_Death_in_Lisbon.html,2617,A Small Death in Lisbon +3.85,2207,0312364105,good_reads:book,https://www.goodreads.com/author/show/54493.Kristin_Hannah,2009,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/book-club|/genres/contemporary,dir54/3975186-true-colors.html,23738,True Colors +3.89,1435,0330425781,good_reads:book,https://www.goodreads.com/author/show/1348627.Cath_Crowley,2010,/genres/young-adult|/genres/contemporary|/genres/romance|/genres/realistic-fiction|/genres/fiction|/genres/art|/genres/young-adult|/genres/young-adult-contemporary,dir54/7863274-graffiti-moon.html,11101,Graffiti Moon +4.30,127,0545326869,good_reads:book,https://www.goodreads.com/author/show/1330292.Maggie_Stiefvater,2010,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/supernatural|/genres/animals|/genres/wolves|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/shapeshifters|/genres/fiction,dir54/10121801-shiver-trilogy-boxset.html,5979,"Shiver Trilogy Boxset (The Wolves of Mercy Falls, #1-3)" +3.70,428,0393301583,good_reads:book,https://www.goodreads.com/author/show/10017.Sigmund_Freud,1930,/genres/psychology|/genres/philosophy|/genres/non-fiction|/genres/classics|/genres/sociology|/genres/philosophy|/genres/theory|/genres/academic|/genres/school|/genres/history|/genres/academic|/genres/college|/genres/politics,dir54/357636.Civilization_and_Its_Discontents.html,15320,Civilization and Its Discontents +4.49,51,,good_reads:book,https://www.goodreads.com/author/show/193164.Ezra_Taft_Benson,1968,/genres/history|/genres/non-fiction|/genres/politics|/genres/politics|/genres/government|/genres/classics|/genres/religion|/genres/philosophy|/genres/christianity|/genres/lds,dir54/2005841.The_Proper_Role_of_Government.html,370,The Proper Role of Government +4.13,42,523700878X,good_reads:book,https://www.goodreads.com/author/show/32637.Sergei_Lukyanenko,1996,/genres/science-fiction|/genres/fantasy|/genres/cultural|/genres/russia|/genres/science-fiction|/genres/cyberpunk|/genres/fiction|/genres/literature|/genres/russian-literature|/genres/adventure|/genres/fantasy|/genres/urban-fantasy|/genres/science-fiction-fantasy|/genres/european-literature|/genres/german-literature,dir54/3247019.html,2149,Лабиринт отражений (Лабиринт отражений #1) +4.67,17,0060891904,good_reads:book,https://www.goodreads.com/author/show/27498.Erin_Hunter,2006,/genres/fantasy|/genres/animals|/genres/cats|/genres/animals|/genres/childrens|/genres/middle-grade|/genres/thriller|/genres/mystery-thriller|/genres/action|/genres/young-adult,dir54/197458.Warriors_Boxed_Set.html,1042,"Warriors Boxed Set (Warriors, #1-3)" +3.98,570,0141311428,good_reads:book,https://www.goodreads.com/author/show/4273.Roald_Dahl,1986,/genres/non-fiction|/genres/biography|/genres/childrens|/genres/autobiography|/genres/memoir|/genres/biography|/genres/autobiography|/genres/adventure|/genres/history|/genres/humor|/genres/biography-memoir|/genres/classics,dir54/6678.Going_Solo.html,10690,Going Solo +4.31,308,0316076252,good_reads:book,https://www.goodreads.com/author/show/543080.Pseudonymous_Bosch,2010,/genres/fantasy|/genres/mystery|/genres/fiction|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/humor|/genres/young-adult|/genres/childrens|/genres/humor|/genres/funny|/genres/fantasy|/genres/magic,dir54/7939759-this-isn-t-what-it-looks-like.html,6784,"This Isn't What It Looks Like (Secret, #4)" +4.01,1903,0375424148,good_reads:book,https://www.goodreads.com/author/show/14151.Craig_Thompson,2011,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fiction|/genres/graphic-novels-comics|/genres/fantasy|/genres/religion|/genres/adult|/genres/romance|/genres/historical-fiction|/genres/religion|/genres/islam,dir54/10138607-habibi.html,18527,Habibi +4.29,157,0983613117,good_reads:book,https://www.goodreads.com/author/show/2876763.Becca_Fitzpatrick,2010,/genres/sequential-art|/genres/graphic-novels|/genres/paranormal|/genres/angels|/genres/young-adult|/genres/sequential-art|/genres/manga|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/sequential-art|/genres/comics|/genres/fantasy|/genres/supernatural,dir54/11514260-hush-hush.html,5349,"Hush, Hush (Hush, Hush: The Graphic Novel, #1)" +4.06,331,038549744X,good_reads:book,https://www.goodreads.com/author/show/8869.Matthew_Kneale,2000,/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/australia|/genres/literature|/genres/travel|/genres/literary-fiction|/genres/contemporary|/genres/novels|/genres/cultural|/genres/tasmania|/genres/adventure,dir54/14257.English_Passengers.html,3457,English Passengers +4.11,272,1423128990,good_reads:book,https://www.goodreads.com/author/show/6244.Ridley_Pearson,2010,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/mystery|/genres/adventure|/genres/childrens|/genres/science-fiction,dir54/6275997-disney-in-shadow.html,4619,"Disney in Shadow (Kingdom Keepers, #3)" +4.36,1761,0451464966,good_reads:book,https://www.goodreads.com/author/show/26897.Anne_Bishop,2013,/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/adult|/genres/shapeshifters|/genres/werewolves|/genres/paranormal|/genres/shapeshifters|/genres/fantasy|/genres/magic|/genres/romance|/genres/fantasy|/genres/supernatural,dir54/15711341-written-in-red.html,10777,"Written in Red (The Others, #1)" +4.22,105,1421511789,good_reads:book,https://www.goodreads.com/author/show/1978.Tsugumi_Ohba,2006,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fantasy|/genres/sequential-art|/genres/manga|/genres/fiction|/genres/mystery|/genres/horror|/genres/young-adult|/genres/thriller|/genres/comics-manga,dir54/445044.Death_Note_Vol_11.html,6095,"Death Note, Vol. 11 (Death Note, #11)" +4.14,646,0743468422,good_reads:book,https://www.goodreads.com/author/show/16094.Lois_McMaster_Bujold,1986,/genres/science-fiction|/genres/science-fiction|/genres/space-opera|/genres/fiction|/genres/romance|/genres/fantasy|/genres/science-fiction-fantasy,dir54/61903.Shards_of_Honour.html,12144,"Shards of Honour (Vorkosigan Saga, #1)" +4.44,388,0300107897,good_reads:book,https://www.goodreads.com/author/show/55349.Richard_Siken,2005,/genres/poetry|/genres/glbt|/genres/queer|/genres/glbt|/genres/romance|/genres/contemporary|/genres/fiction|/genres/love|/genres/adult|/genres/glbt|/genres/gay|/genres/literature|/genres/american,dir54/96259.Crush.html,5103,Crush +4.41,361,0671578855,good_reads:book,https://www.goodreads.com/author/show/16094.Lois_McMaster_Bujold,1999,/genres/science-fiction|/genres/romance|/genres/fiction|/genres/science-fiction|/genres/space-opera|/genres/science-fiction-fantasy|/genres/fantasy|/genres/space|/genres/humor|/genres/adventure|/genres/speculative-fiction,dir54/61899.A_Civil_Campaign.html,8654,"A Civil Campaign (Vorkosigan Saga, #12)" +4.13,5554,1400043468,good_reads:book,https://www.goodreads.com/author/show/3465.Julia_Child,2006,/genres/food-and-drink|/genres/cookbooks|/genres/adult|/genres/food-and-drink|/genres/food|/genres/autobiography|/genres/memoir|/genres/biography|/genres/non-fiction,dir54/5084.My_Life_in_France.html,53948,My Life in France +3.98,105,0156188767,good_reads:book,https://www.goodreads.com/author/show/74572.Katherine_Anne_Porter,1965,/genres/short-stories|/genres/fiction|/genres/classics|/genres/literature|/genres/literature|/genres/american|/genres/academic|/genres/school|/genres/american|/genres/southern|/genres/literature|/genres/20th-century|/genres/academic|/genres/read-for-school|/genres/literary-fiction,dir54/129671.The_Collected_Stories_of_Katherine_Anne_Porter.html,3539,The Collected Stories of Katherine Anne Porter +4.27,799,159038363X,good_reads:book,https://www.goodreads.com/author/show/207452.Gerald_N_Lund,1994,/genres/historical-fiction|/genres/christianity|/genres/lds|/genres/lds|/genres/lds-fiction|/genres/religion|/genres/fiction|/genres/religion|/genres/church|/genres/adult|/genres/spirituality|/genres/adult-fiction|/genres/christian,dir54/625554.Pillar_of_Light.html,12356,"Pillar of Light (The Work and the Glory, #1)" +3.90,541,8401341914,good_reads:book,https://www.goodreads.com/author/show/2238.Isabel_Allende,2007,/genres/autobiography|/genres/memoir|/genres/non-fiction|/genres/european-literature|/genres/spanish-literature|/genres/biography|/genres/biography|/genres/autobiography|/genres/cultural|/genres/latin-american,dir54/1738611.La_suma_de_los_d_as.html,4351,La suma de los días +3.31,737,0767905202,good_reads:book,https://www.goodreads.com/author/show/12915.Jane_Green,1999,/genres/fiction|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/adult|/genres/adult-fiction|/genres/european-literature|/genres/british-literature|/genres/humor|/genres/humor|/genres/funny,dir54/31101.Mr_Maybe.html,59710,Mr. Maybe +4.05,399,1416927050,good_reads:book,https://www.goodreads.com/author/show/11654.Meg_Cabot,2001,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/young-adult|/genres/teen|/genres/mystery|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/fantasy|/genres/supernatural|/genres/adventure,dir54/207682.When_Lightning_Strikes.html,11709,"When Lightning Strikes (1-800-Where-R-You, #1)" +4.17,171,0373802803,good_reads:book,https://www.goodreads.com/author/show/7031278.Michelle_Sagara,2007,/genres/fantasy|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/dragons|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/romance|/genres/mystery,dir54/641910.Cast_In_Secret.html,5674,Cast In Secret (Chronicles of Elantra #3) +3.81,354,0553381903,good_reads:book,https://www.goodreads.com/author/show/6942.Pat_Conroy,2002,/genres/non-fiction|/genres/sports-and-games|/genres/sports|/genres/autobiography|/genres/memoir|/genres/biography|/genres/biography|/genres/autobiography|/genres/sports|/genres/basketball|/genres/biography-memoir|/genres/adult|/genres/american|/genres/southern|/genres/book-club,dir54/119216.My_Losing_Season.html,5638,My Losing Season +3.69,326,0802131867,good_reads:book,https://www.goodreads.com/author/show/1742.Jack_Kerouac,1958,/genres/fiction|/genres/classics|/genres/literature|/genres/literature|/genres/american|/genres/novels|/genres/literature|/genres/20th-century,dir54/330760.The_Subterraneans.html,8768,The Subterraneans +4.33,235,0143039229,good_reads:book,https://www.goodreads.com/author/show/233619.Marcel_Proust,1920,/genres/fiction|/genres/classics|/genres/cultural|/genres/france|/genres/literature|/genres/novels,dir54/18798.The_Guermantes_Way.html,2934,The Guermantes Way +3.89,706,1580050751,good_reads:book,https://www.goodreads.com/author/show/29673.Inga_Muscio,1998,/genres/feminism|/genres/non-fiction|/genres/gender|/genres/sexuality|/genres/womens|/genres/gender|/genres/gender-studies|/genres/feminism|/genres/womens-studies|/genres/sociology|/genres/glbt|/genres/queer|/genres/autobiography|/genres/memoir,dir54/52588.Cunt.html,6903,Cunt +3.56,507,0606298231,good_reads:book,https://www.goodreads.com/author/show/5194.Michael_Crichton,1992,/genres/fiction|/genres/thriller|/genres/mystery|/genres/suspense|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery-thriller|/genres/cultural|/genres/japan|/genres/science-fiction|/genres/novels|/genres/adventure,dir54/7668.Rising_Sun.html,31379,Rising Sun +4.16,109,0099468646,good_reads:book,https://www.goodreads.com/author/show/5735.Anthony_Burgess,1980,/genres/fiction|/genres/classics|/genres/literature|/genres/religion|/genres/glbt|/genres/literary-fiction|/genres/glbt|/genres/gay|/genres/novels|/genres/european-literature|/genres/british-literature|/genres/modern,dir54/8822.Earthly_Powers.html,1489,Earthly Powers +4.23,572,0385265565,good_reads:book,https://www.goodreads.com/author/show/23607.Alex_Kotlowitz,1991,/genres/non-fiction|/genres/sociology|/genres/education|/genres/social-issues|/genres/poverty|/genres/history|/genres/biography|/genres/race|/genres/academic|/genres/school|/genres/social-issues|/genres/social-movements|/genres/social-justice,dir54/41918.There_are_No_Children_Here.html,7864,There are No Children Here +3.37,1868,034549038X,good_reads:book,https://www.goodreads.com/author/show/6247.Matthew_Pearl,2003,/genres/mystery|/genres/fiction|/genres/historical-fiction|/genres/thriller|/genres/mystery|/genres/crime|/genres/book-club|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/historical-mystery|/genres/suspense|/genres/adult-fiction,dir54/18402.The_Dante_Club.html,28197,The Dante Club +3.90,103,0517086719,good_reads:book,https://www.goodreads.com/author/show/6975.Peter_Matthiessen,1990,/genres/fiction|/genres/historical-fiction|/genres/novels|/genres/american|/genres/american-fiction|/genres/mystery|/genres/crime|/genres/literary-fiction|/genres/mystery|/genres/contemporary|/genres/literature|/genres/american,dir54/248623.Killing_Mister_Watson.html,898,Killing Mister Watson +3.80,1838,0316117366,good_reads:book,https://www.goodreads.com/author/show/3780.James_Patterson,2007,/genres/mystery|/genres/fiction|/genres/thriller|/genres/suspense|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/murder-mystery|/genres/adult|/genres/adult-fiction|/genres/book-club,dir54/13133.The_Quickie.html,26804,The Quickie +3.53,562,,good_reads:book,https://www.goodreads.com/author/show/647438.Andrea_Hirata,2008,/genres/novels|/genres/fiction|/genres/asian-literature|/genres/indonesian-literature|/genres/romance|/genres/adventure|/genres/drama|/genres/literature|/genres/young-adult|/genres/inspirational|/genres/anthologies|/genres/collections,dir54/4212386-maryamah-karpov.html,6687,"Maryamah Karpov (Tetralogi Laskar Pelangi, #4)" +4.30,407,0152055576,good_reads:book,https://www.goodreads.com/author/show/170658.L_A_Meyer,2006,/genres/historical-fiction|/genres/young-adult|/genres/adventure|/genres/fiction|/genres/adventure|/genres/pirates|/genres/young-adult|/genres/teen|/genres/romance|/genres/fantasy|/genres/action|/genres/humor|/genres/funny,dir54/295650.In_the_Belly_of_the_Bloodhound.html,6167,"In the Belly of the Bloodhound (Bloody Jack, #4)" +3.90,459,0425213382,good_reads:book,https://www.goodreads.com/author/show/1025097.Patricia_Cornwell,1996,/genres/mystery|/genres/mystery|/genres/crime|/genres/fiction|/genres/thriller|/genres/thriller|/genres/mystery-thriller|/genres/suspense|/genres/mystery|/genres/murder-mystery|/genres/mystery|/genres/detective|/genres/adult-fiction|/genres/adult,dir54/6541.Cause_of_Death.html,28352,"Cause of Death (Kay Scarpetta, #7)" +3.65,324,019832006X,good_reads:book,https://www.goodreads.com/author/show/947.William_Shakespeare,1608,/genres/plays|/genres/classics|/genres/drama|/genres/fiction|/genres/plays|/genres/theatre|/genres/literature|/genres/poetry|/genres/european-literature|/genres/british-literature|/genres/tragedy|/genres/academic|/genres/school,dir54/108171.Coriolanus.html,6168,Coriolanus +4.36,302,045123054X,good_reads:book,https://www.goodreads.com/author/show/15292.Rachel_Caine,2009,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/horror,dir54/6571723-the-morganville-vampires-volume-1.html,13601,"The Morganville Vampires, Volume 1 (The Morganville Vampires, #1-2)" +4.28,1061,,good_reads:book,https://www.goodreads.com/author/show/7056140.Laurelin_Paige,2013,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/adult|/genres/new-adult|/genres/romance|/genres/erotic-romance|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/drama,dir54/17930773-found-in-you.html,17004,"Found in You (Fixed, #2)" +4.04,1669,,good_reads:book,https://www.goodreads.com/author/show/4851199.Tijan,2013,/genres/new-adult|/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/dark|/genres/suspense|/genres/romance|/genres/romantic-suspense|/genres/sociology|/genres/abuse|/genres/mystery|/genres/crime|/genres/adult,dir54/18221931-carter-reed.html,14900,Carter Reed +4.00,1440,098870742X,good_reads:book,https://www.goodreads.com/author/show/6581091.Kelly_Elliott,2012,/genres/romance|/genres/new-adult|/genres/contemporary|/genres/young-adult|/genres/academic|/genres/college|/genres/romance|/genres/contemporary-romance|/genres/sociology|/genres/abuse|/genres/drama|/genres/love|/genres/adult,dir54/16152943-wanted.html,20326,"Wanted (Wanted, #1)" +4.13,249,0749311614,good_reads:book,https://www.goodreads.com/author/show/7995.James_A_Michener,1980,/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/africa|/genres/adult-fiction|/genres/novels|/genres/literature|/genres/epic|/genres/drama|/genres/adventure|/genres/classics,dir54/12663.The_Covenant.html,11381,The Covenant +3.96,315,1590388003,good_reads:book,https://www.goodreads.com/author/show/125984.Obert_Skye,2007,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/magic|/genres/childrens|/genres/science-fiction-fantasy|/genres/childrens|/genres/juvenile|/genres/young-adult|/genres/young-adult-fantasy|/genres/childrens|/genres/middle-grade,dir54/1211904.Leven_Thumps_and_the_Eyes_of_the_Want.html,9621,"Leven Thumps and the Eyes of the Want (Leven Thumps, #3)" +3.86,1504,0061345695,good_reads:book,https://www.goodreads.com/author/show/548551.Anna_Godbersen,2007,/genres/historical-fiction|/genres/young-adult|/genres/romance|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/teen|/genres/romance|/genres/historical-romance|/genres/drama|/genres/new-york|/genres/young-adult|/genres/young-adult-historical-fiction,dir54/2218252.Rumors.html,26623,"Rumors (Luxe, #2)" +3.91,600,0842329218,good_reads:book,https://www.goodreads.com/author/show/7625163.Tim_F_LaHaye,1996,/genres/christian-fiction|/genres/fiction|/genres/christian|/genres/religion|/genres/fantasy|/genres/thriller|/genres/religion|/genres/christianity|/genres/spirituality|/genres/adult|/genres/science-fiction|/genres/apocalyptic,dir54/228258.Tribulation_Force.html,24638,"Tribulation Force (Left Behind, #2)" +3.99,310,0195087453,good_reads:book,https://www.goodreads.com/author/show/5031312.Dante_Alighieri,1321,/genres/classics|/genres/poetry|/genres/fiction|/genres/literature|/genres/religion|/genres/european-literature|/genres/italian-literature|/genres/fantasy|/genres/historical-fiction|/genres/medieval|/genres/cultural|/genres/italy|/genres/philosophy,dir54/19164.Purgatorio.html,11787,"Purgatorio (The Divine Comedy, #2)" +4.27,144,0486281221,good_reads:book,https://www.goodreads.com/author/show/13453.William_Blake,1790,/genres/poetry|/genres/classics|/genres/philosophy|/genres/art|/genres/religion|/genres/literature|/genres/fiction|/genres/literature|/genres/18th-century|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/english-literature,dir54/23913.The_Marriage_of_Heaven_and_Hell.html,4576,The Marriage of Heaven and Hell +4.05,185,0743482867,good_reads:book,https://www.goodreads.com/author/show/49699.Jackie_Collins,1985,/genres/fiction|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/drama|/genres/thriller|/genres/adult|/genres/romance|/genres/contemporary-romance|/genres/novels|/genres/suspense,dir54/152402.Lucky.html,7474,"Lucky (Lucky Santangelo, #2)" +3.86,1716,0062103733,good_reads:book,https://www.goodreads.com/author/show/5073459.Elizabeth_Norris,2012,/genres/young-adult|/genres/science-fiction|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/mystery|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/urban-fantasy,dir54/12157365-unraveling.html,13557,"Unraveling (Unraveling, #1)" +4.01,125,0886779065,good_reads:book,https://www.goodreads.com/author/show/6587.Tad_Williams,1999,/genres/fantasy|/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/cyberpunk|/genres/adventure|/genres/fantasy|/genres/epic-fantasy|/genres/speculative-fiction|/genres/epic|/genres/fantasy|/genres/urban-fantasy,dir54/10090.Mountain_of_Black_Glass.html,9188,"Mountain of Black Glass (Otherland, #3)" +4.00,1514,0374351384,good_reads:book,https://www.goodreads.com/author/show/3390621.Leila_Sales,2013,/genres/young-adult|/genres/contemporary|/genres/music|/genres/realistic-fiction|/genres/romance|/genres/fiction|/genres/young-adult|/genres/young-adult-contemporary,dir54/15777621-this-song-will-save-your-life.html,8270,This Song Will Save Your Life +3.84,237,006092411X,good_reads:book,https://www.goodreads.com/author/show/5209.Annie_Dillard,1992,/genres/fiction|/genres/historical-fiction|/genres/literature|/genres/adult-fiction|/genres/literary-fiction|/genres/novels|/genres/contemporary|/genres/environment|/genres/nature|/genres/womens|/genres/literature|/genres/american,dir54/213347.The_Living.html,1773,The Living +3.66,374,0743484908,good_reads:book,https://www.goodreads.com/author/show/947.William_Shakespeare,1603,/genres/plays|/genres/classics|/genres/drama|/genres/fiction|/genres/plays|/genres/theatre|/genres/literature|/genres/academic|/genres/school|/genres/poetry|/genres/european-literature|/genres/british-literature|/genres/humor|/genres/comedy,dir54/91571.Measure_for_Measure.html,12480,Measure for Measure +3.57,1187,0399246770,good_reads:book,https://www.goodreads.com/author/show/5339.Robin_McKinley,2010,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/young-adult-fantasy|/genres/young-adult|/genres/teen|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/animals,dir54/7507951-pegasus.html,5804,"Pegasus (Pegasus, #1)" +3.72,1111,0451197968,good_reads:book,https://www.goodreads.com/author/show/3389.Stephen_King,1982,/genres/horror|/genres/fiction|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/thriller|/genres/fantasy|/genres/suspense|/genres/adventure|/genres/literature|/genres/american|/genres/novels,dir54/11607.The_Running_Man.html,44537,The Running Man +4.09,916,0312546602,good_reads:book,https://www.goodreads.com/author/show/4430.Sherrilyn_Kenyon,2011,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/paranormal|/genres/demons|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/supernatural,dir54/9065265-retribution.html,12987,"Retribution (Dark-Hunter, #10)" +3.71,312,0099750619,good_reads:book,https://www.goodreads.com/author/show/345873.Joan_Lindsay,1967,/genres/classics|/genres/fiction|/genres/mystery|/genres/cultural|/genres/australia|/genres/historical-fiction|/genres/literature|/genres/novels|/genres/young-adult|/genres/literary-fiction|/genres/drama,dir54/791345.Picnic_at_Hanging_Rock.html,3665,Picnic at Hanging Rock +4.21,232,1423138570,good_reads:book,https://www.goodreads.com/author/show/6244.Ridley_Pearson,2011,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/adventure|/genres/childrens|/genres/mystery|/genres/fantasy|/genres/magic|/genres/science-fiction|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile,dir54/8329766-power-play.html,3359,"Power Play (Kingdom Keepers, #4)" +4.07,133,0872206335,good_reads:book,https://www.goodreads.com/author/show/879.Plato,-360,/genres/philosophy|/genres/classics|/genres/non-fiction|/genres/academic|/genres/school|/genres/academic|/genres/college|/genres/history|/genres/literature|/genres/literature|/genres/ancient|/genres/textbooks|/genres/politics,dir54/30292.Five_Dialogues.html,9964,Five Dialogues +4.12,504,0679740244,good_reads:book,https://www.goodreads.com/author/show/8155.Terry_Tempest_Williams,1991,/genres/autobiography|/genres/memoir|/genres/non-fiction|/genres/environment|/genres/nature|/genres/environment|/genres/biography|/genres/history|/genres/biography-memoir|/genres/biology|/genres/ecology|/genres/book-club|/genres/adult,dir54/820924.Refuge.html,5145,Refuge +3.93,227,0449911837,good_reads:book,https://www.goodreads.com/author/show/7385.Chaim_Potok,1985,/genres/fiction|/genres/historical-fiction|/genres/literature|/genres/jewish|/genres/religion|/genres/judaism|/genres/literature|/genres/religion|/genres/classics|/genres/novels|/genres/book-club|/genres/young-adult,dir54/14769.Davita_s_Harp.html,3841,Davita's Harp +4.12,1841,0446613347,good_reads:book,https://www.goodreads.com/author/show/3780.James_Patterson,2001,/genres/romance|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/adult-fiction|/genres/adult|/genres/mystery|/genres/love|/genres/book-club|/genres/drama,dir54/80568.Sam_s_Letters_to_Jennifer.html,58640,Sam's Letters to Jennifer +3.78,117,,good_reads:book,https://www.goodreads.com/author/show/5098993.Madison_Daniel,2011,/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy,dir54/12256544-ember.html,412,Ember (Ember #1) +3.98,161,0886778441,good_reads:book,https://www.goodreads.com/author/show/6587.Tad_Williams,1998,/genres/fantasy|/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/cyberpunk|/genres/science-fiction-fantasy|/genres/adventure,dir54/10084.River_of_Blue_Fire.html,9650,"River of Blue Fire (Otherland, #2)" +4.13,232,0764228498,good_reads:book,https://www.goodreads.com/author/show/4049.Janette_Oke,1979,/genres/christian-fiction|/genres/christian|/genres/romance|/genres/historical-fiction|/genres/fiction|/genres/romance|/genres/christian-romance|/genres/young-adult|/genres/inspirational|/genres/religion|/genres/adult,dir54/31507.Love_s_Enduring_Promise.html,7445,Love's Enduring Promise (Love Comes Softly #2) +3.71,1840,0241141826,good_reads:book,https://www.goodreads.com/author/show/4408937.Paul_Murray,2010,/genres/fiction|/genres/cultural|/genres/ireland|/genres/contemporary|/genres/book-club|/genres/novels|/genres/literary-fiction|/genres/european-literature|/genres/irish-literature|/genres/humor|/genres/young-adult|/genres/coming-of-age|/genres/young-adult,dir54/7146335-skippy-dies.html,12837,Skippy Dies +3.76,729,0755300203,good_reads:book,https://www.goodreads.com/author/show/3780.James_Patterson,2003,/genres/mystery|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/crime|/genres/historical-fiction|/genres/fiction|/genres/adult|/genres/book-club|/genres/novels|/genres/mystery|/genres/murder-mystery|/genres/fantasy,dir54/13157.The_Jester.html,13505,The Jester +3.95,299,0684813467,good_reads:book,https://www.goodreads.com/author/show/191681.Joseph_F_Girzone,1983,/genres/fiction|/genres/christian|/genres/christian-fiction|/genres/religion|/genres/spirituality|/genres/inspirational|/genres/religion|/genres/faith|/genres/religion|/genres/christianity|/genres/novels|/genres/classics,dir54/486324.Joshua.html,2583,Joshua +4.31,547,1934964107,good_reads:book,https://www.goodreads.com/author/show/16807.Bryan_Lee_O_Malley,2009,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fiction|/genres/sequential-art|/genres/manga|/genres/humor|/genres/young-adult|/genres/fantasy|/genres/graphic-novels-comics|/genres/romance|/genres/comics|/genres/comic-book,dir54/5989573-scott-pilgrim-vs-the-universe.html,16954,"Scott Pilgrim Vs. the Universe (Scott Pilgrim, #5)" +4.03,458,1416532811,good_reads:book,https://www.goodreads.com/author/show/8688.Eric_Flint,2000,/genres/science-fiction|/genres/alternate-history|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/science-fiction|/genres/time-travel|/genres/historical-fiction|/genres/war|/genres/science-fiction-fantasy|/genres/cultural|/genres/germany|/genres/adventure,dir54/16967.1632.html,5753,"1632 (Assiti Shards, #1)" +3.77,1179,1595143084,good_reads:book,https://www.goodreads.com/author/show/109354.Kirsten_Miller,2010,/genres/young-adult|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/mystery|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/urban-fantasy,dir54/7130788-the-eternal-ones.html,8558,"The Eternal Ones (Eternal Ones, #1)" +4.23,1673,0545284155,good_reads:book,https://www.goodreads.com/author/show/3267859.Jennifer_A_Nielsen,2013,/genres/fantasy|/genres/young-adult|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/fiction|/genres/young-adult|/genres/young-adult-fantasy|/genres/romance|/genres/historical-fiction|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/pirates,dir54/15703770-the-runaway-king.html,10893,"The Runaway King (The Ascendance Trilogy, #2)" +4.32,712,0749955473,good_reads:book,https://www.goodreads.com/author/show/375143.Larissa_Ione,2011,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/demons|/genres/paranormal|/genres/angels|/genres/fantasy|/genres/adult|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/vampires|/genres/adult-fiction|/genres/erotica,dir54/9868970-immortal-rider.html,10824,"Immortal Rider (Lords of Deliverance, #2; Demonica, #7)" +3.71,180,014044274X,good_reads:book,https://www.goodreads.com/author/show/136729.Alessandro_Manzoni,1840,/genres/classics|/genres/fiction|/genres/european-literature|/genres/italian-literature|/genres/historical-fiction|/genres/cultural|/genres/italy|/genres/literature|/genres/literature|/genres/19th-century|/genres/novels|/genres/romance|/genres/academic|/genres/school,dir54/566328.The_Betrothed.html,2531,The Betrothed +4.13,967,042521575X,good_reads:book,https://www.goodreads.com/author/show/71688.Nalini_Singh,2007,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/shapeshifters|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/adult|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/supernatural,dir54/215643.Visions_of_Heat.html,16174,"Visions of Heat (Psy-Changeling, #2)" +3.70,737,0804113475,good_reads:book,https://www.goodreads.com/author/show/457.Anne_Tyler,1995,/genres/fiction|/genres/book-club|/genres/contemporary|/genres/literary-fiction|/genres/adult-fiction|/genres/novels|/genres/adult|/genres/drama|/genres/womens-fiction|/genres/chick-lit|/genres/literature,dir54/202948.Ladder_of_Years.html,9012,Ladder of Years +4.15,902,0684818701,good_reads:book,https://www.goodreads.com/author/show/42697.Irma_S_Rombauer,1931,/genres/food-and-drink|/genres/cookbooks|/genres/food-and-drink|/genres/cooking|/genres/food-and-drink|/genres/food|/genres/non-fiction|/genres/reference|/genres/classics|/genres/food-and-drink|/genres/culinary|/genres/food-and-drink|/genres/foodie|/genres/food-and-drink|/genres/adult,dir54/327847.The_Joy_of_Cooking.html,60550,The Joy of Cooking +3.83,2918,0061240273,good_reads:book,https://www.goodreads.com/author/show/66631.Marisa_de_los_Santos,2008,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/book-club|/genres/adult|/genres/adult-fiction|/genres/contemporary|/genres/novels|/genres/family|/genres/womens-fiction|/genres/literary-fiction,dir54/2113410.Belong_to_Me.html,19048,Belong to Me +4.20,655,0810993236,good_reads:book,https://www.goodreads.com/author/show/65335.Michael_Buckley,2005,/genres/fantasy|/genres/mystery|/genres/fantasy|/genres/fairy-tales|/genres/young-adult|/genres/childrens|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/magic|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/middle-grade,dir54/295834.The_Unusual_Suspects.html,12464,"The Unusual Suspects (The Sisters Grimm, #2)" +3.92,461,0061914681,good_reads:book,https://www.goodreads.com/author/show/1051591.Tera_Lynn_Childs,2011,/genres/mermaids|/genres/young-adult|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic,dir54/9471670-fins-are-forever.html,5532,"Fins Are Forever (Fins, #2)" +4.06,314,0553271989,good_reads:book,https://www.goodreads.com/author/show/36714.Frederick_Forsyth,1972,/genres/thriller|/genres/fiction|/genres/historical-fiction|/genres/spy-thriller|/genres/espionage|/genres/mystery|/genres/suspense|/genres/adventure|/genres/mystery|/genres/crime|/genres/action|/genres/thriller|/genres/mystery-thriller,dir54/149572.The_Odessa_File.html,28964,The Odessa File +3.91,856,0375758771,good_reads:book,https://www.goodreads.com/author/show/3369.Amitav_Ghosh,2000,/genres/fiction|/genres/historical-fiction|/genres/cultural|/genres/india|/genres/cultural|/genres/asia|/genres/asian-literature|/genres/indian-literature|/genres/novels|/genres/literature|/genres/literary-fiction|/genres/literature|/genres/asian-literature|/genres/travel,dir54/77103.The_Glass_Palace.html,11835,The Glass Palace +4.36,116,1414301081,good_reads:book,https://www.goodreads.com/author/show/1085845.Bodie_Thoene,1989,/genres/historical-fiction|/genres/christian-fiction|/genres/christian|/genres/fiction|/genres/history|/genres/world-war-ii|/genres/world-war-ii|/genres/holocaust|/genres/adult-fiction|/genres/romance|/genres/war|/genres/religion,dir54/92491.Prague_Counterpoint.html,3954,"Prague Counterpoint (Zion Covenant, #2)" +4.34,272,1591826047,good_reads:book,https://www.goodreads.com/author/show/26306.Natsuki_Takaya,1999,/genres/sequential-art|/genres/manga|/genres/fantasy|/genres/romance|/genres/sequential-art|/genres/graphic-novels|/genres/young-adult|/genres/media-tie-in|/genres/anime|/genres/fiction|/genres/manga|/genres/shojo,dir54/836606.Fruits_Basket_Volume_02.html,11370,"Fruits Basket, Volume 02" +3.93,81,0312243081,good_reads:book,https://www.goodreads.com/author/show/337.Walker_Percy,1966,/genres/fiction|/genres/literature|/genres/classics|/genres/american|/genres/southern|/genres/novels|/genres/literature|/genres/american|/genres/literary-fiction,dir54/84903.The_Last_Gentleman.html,1404,The Last Gentleman +3.96,139,0142401447,good_reads:book,https://www.goodreads.com/author/show/5329.Brian_Jacques,1996,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/animals|/genres/adventure|/genres/science-fiction-fantasy|/genres/childrens|/genres/middle-grade|/genres/fantasy|/genres/high-fantasy|/genres/childrens|/genres/juvenile,dir54/7980.Pearls_of_Lutra.html,11077,"Pearls of Lutra (Redwall, #9)" +4.05,1537,081297736X,good_reads:book,https://www.goodreads.com/author/show/2778055.Kurt_Vonnegut,2005,/genres/non-fiction|/genres/writing|/genres/essays|/genres/autobiography|/genres/memoir|/genres/humor|/genres/biography|/genres/politics|/genres/classics|/genres/literature|/genres/literature|/genres/american|/genres/philosophy,dir54/4979.A_Man_Without_a_Country.html,24726,A Man Without a Country +4.23,1683,0316156116,good_reads:book,https://www.goodreads.com/author/show/4339.David_Foster_Wallace,2005,/genres/non-fiction|/genres/writing|/genres/essays|/genres/humor|/genres/short-stories|/genres/literature|/genres/philosophy|/genres/literature|/genres/american|/genres/contemporary|/genres/writing|/genres/journalism|/genres/literary-fiction,dir54/6751.Consider_the_Lobster_and_Other_Essays.html,19193,Consider the Lobster and Other Essays +3.99,554,1419700251,good_reads:book,https://www.goodreads.com/author/show/4722094.Jonathan_Auxier,2011,/genres/fantasy|/genres/childrens|/genres/middle-grade|/genres/adventure|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/fantasy|/genres/magic,dir54/10806008-peter-nimble-and-his-fantastic-eyes.html,3301,Peter Nimble and His Fantastic Eyes +3.99,349,0441013465,good_reads:book,https://www.goodreads.com/author/show/65471.Robert_Lynn_Asprin,1978,/genres/fantasy|/genres/humor|/genres/fiction|/genres/science-fiction-fantasy|/genres/humor|/genres/comedy|/genres/fantasy|/genres/magic|/genres/science-fiction|/genres/young-adult|/genres/humor|/genres/funny|/genres/adventure,dir54/64401.Another_Fine_Myth.html,12504,"Another Fine Myth (Myth Adventures, #1)" +3.91,239,0345459857,good_reads:book,https://www.goodreads.com/author/show/12980.Stephen_R_Donaldson,1986,/genres/fantasy|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction|/genres/romance|/genres/fantasy|/genres/magic|/genres/adult|/genres/speculative-fiction,dir54/177250.The_Mirror_of_Her_Dreams.html,8088,The Mirror of Her Dreams +4.01,125,9896370974,good_reads:book,https://www.goodreads.com/author/show/346732.George_R_R_Martin,2005,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/novels|/genres/fantasy|/genres/dragons|/genres/european-literature|/genres/portuguese-literature|/genres/literature|/genres/american|/genres/epic|/genres/adult,dir55/6383644-o-festim-dos-corvos.html,2091,O Festim dos Corvos +3.81,870,0449911594,good_reads:book,https://www.goodreads.com/author/show/457.Anne_Tyler,1982,/genres/book-club|/genres/contemporary|/genres/novels|/genres/literature|/genres/classics|/genres/literary-fiction|/genres/fiction|/genres/literature|/genres/american|/genres/adult-fiction|/genres/adult,dir55/77699.Dinner_at_the_Homesick_Restaurant.html,12349,Dinner at the Homesick Restaurant +4.03,101,0425203549,good_reads:book,https://www.goodreads.com/author/show/5561.Dick_Francis,1960,/genres/mystery|/genres/fiction|/genres/thriller|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery-thriller|/genres/animals|/genres/horses|/genres/suspense|/genres/mystery|/genres/detective|/genres/mystery|/genres/murder-mystery|/genres/european-literature|/genres/british-literature,dir55/8574.Whip_Hand.html,3835,"Whip Hand (Sid Halley, #2)" +4.04,976,1595145060,good_reads:book,https://www.goodreads.com/author/show/4873609.Scott_Speer,2012,/genres/paranormal|/genres/angels|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/demons|/genres/mystery,dir55/11443325-immortal-city.html,9087,"Immortal City (Immortal City, #1)" +4.37,8,098006810X,good_reads:book,https://www.goodreads.com/author/show/2051713.William_C_Samples,201,/genres/philosophy,dir55/4934651-fe-fi-foe-comes.html,19,Fe Fi FOE Comes +4.32,87,0393320359,good_reads:book,https://www.goodreads.com/author/show/30702.Ian_Kershaw,1998,/genres/history|/genres/biography|/genres/non-fiction|/genres/history|/genres/world-war-ii|/genres/cultural|/genres/germany|/genres/war|/genres/politics|/genres/history|/genres/european-history|/genres/history|/genres/world-history|/genres/world-war-ii|/genres/holocaust,dir55/93996.Hitler_Vol_1.html,1886,"Hitler, Vol 1" +3.60,11,3869191252,good_reads:book,https://www.goodreads.com/author/show/2803746.Georg_Miggel,2009,/genres/mystery|/genres/crime|/genres/fiction|/genres/european-literature|/genres/german-literature,dir55/6150382-notwendige-streitgenossen.html,20,Notwendige Streitgenossen +4.10,16,1897512112,good_reads:book,https://www.goodreads.com/author/show/1633234.Ali_Marsman,2008,/genres/cultural|/genres/canada,dir55/3830244-sporadic-memories.html,42,Sporadic Memories +4.59,121,,good_reads:book,https://www.goodreads.com/author/show/5158478.Anonymous,1961,/genres/religion|/genres/classics|/genres/spirituality|/genres/fiction|/genres/inspirational|/genres/religion|/genres/christianity|/genres/reference,dir55/2381176.New_World_Translation_of_the_Holy_Scriptures.html,832,New World Translation of the Holy Scriptures +3.96,417,0345434870,good_reads:book,https://www.goodreads.com/author/show/6583.Alison_Weir,1999,/genres/history|/genres/non-fiction|/genres/biography|/genres/historical-fiction|/genres/medieval|/genres/european-literature|/genres/british-literature|/genres/cultural|/genres/france|/genres/biography-memoir|/genres/womens|/genres/biography|/genres/autobiography|/genres/adult,dir55/111220.Eleanor_of_Aquitaine.html,8661,Eleanor of Aquitaine +3.79,925,0718153227,good_reads:book,https://www.goodreads.com/author/show/335919.Karen_Maitland,2008,/genres/historical-fiction|/genres/fiction|/genres/mystery|/genres/historical-fiction|/genres/medieval|/genres/fantasy|/genres/european-literature|/genres/british-literature|/genres/horror,dir55/2761171-company-of-liars.html,7344,Company Of Liars +4.25,3,1450556566,good_reads:book,https://www.goodreads.com/author/show/3335237.Nelson_Caldwell,2010,,dir55/8176759-a-terrace-on-the-tower-of-babel.html,12,A Terrace On The Tower Of Babel +3.64,44,0982869118,good_reads:book,https://www.goodreads.com/author/show/2982216.Daniel_Pyle,2009,/genres/horror|/genres/suspense|/genres/fiction,dir55/9487892-dismember.html,164,Dismember +3.97,45,0615412580,good_reads:book,https://www.goodreads.com/author/show/4141550.R_A_McDonald,2011,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/suspense|/genres/young-adult|/genres/coming-of-age,dir55/10087445-ada.html,117,Ada +4.19,21,1466475420,good_reads:book,https://www.goodreads.com/author/show/4846217.John_Zunski,2011,/genres/romance,dir55/11468048-cemetery-street.html,54,Cemetery Street +3.76,10,,good_reads:book,https://www.goodreads.com/author/show/2964069.Lucy_Felthouse,2011,/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/anthologies|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/mythology,dir55/12042088-seducing-the-myth.html,45,Seducing the Myth +4.12,6,1859642810,good_reads:book,https://www.goodreads.com/author/show/5024916.Alexander_Jovy,2011,/genres/history,dir55/11980440-i-am-cyrus.html,24,I Am Cyrus +4.05,60,,good_reads:book,https://www.goodreads.com/author/show/4100421.Sharon_Cramer,2012,/genres/historical-fiction|/genres/historical-fiction|/genres/medieval|/genres/romance|/genres/fantasy,dir55/13511702-the-execution.html,324,The Execution +4.01,200,,good_reads:book,https://www.goodreads.com/author/show/240840.Evangeline_Anderson,2011,/genres/romance|/genres/science-fiction|/genres/science-fiction|/genres/aliens|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/science-fiction-romance|/genres/fantasy|/genres/adult|/genres/romance|/genres/erotic-romance,dir55/11273356-hunted.html,3994,"Hunted (Brides of the Kindred, #2)" +3.87,675,1611139856,good_reads:book,https://www.goodreads.com/author/show/3780.James_Patterson,2011,/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/paranormal|/genres/witches|/genres/adventure|/genres/young-adult|/genres/teen,dir55/10778410-the-fire.html,11195,"The Fire (Witch & Wizard, #3)" +3.85,8,,good_reads:book,https://www.goodreads.com/author/show/6159717.Dorothy_Gravelle,2012,/genres/science-fiction|/genres/time-travel|/genres/romance|/genres/fantasy|/genres/science-fiction|/genres/fiction|/genres/adventure|/genres/spirituality|/genres/history|/genres/prehistory,dir55/14789333-where-the-deer-dwell.html,41,Where the Deer Dwell +4.07,8,1477570446,good_reads:book,https://www.goodreads.com/author/show/6444286.John_Kellett,2012,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/fiction,dir55/15757292-amaranth.html,44,Amaranth +4.48,9,1620861410,good_reads:book,https://www.goodreads.com/author/show/6623256.Barry_Jordan_Jr_,2012,/genres/childrens,dir55/16246620-grandma-can-i-get-a-dog.html,25,Grandma! Can I Get a Dog? +3.66,21,9780991778,good_reads:book,https://www.goodreads.com/author/show/6940748.Helen_Argiro,2013,/genres/fiction|/genres/cultural|/genres/canada|/genres/womens-fiction|/genres/chick-lit,dir55/17380595-tales-of-sex-suburban-lunacy.html,61,Tales of Sex & Suburban Lunacy +3.95,8,,good_reads:book,https://www.goodreads.com/author/show/3465862.Keith_Ellison,2013,/genres/politics|/genres/autobiography|/genres/memoir|/genres/religion|/genres/non-fiction|/genres/religion|/genres/islam|/genres/biography|/genres/race,dir55/13260207-my-country-tis-of-thee.html,43,My Country 'Tis of Thee +3.91,88,,good_reads:book,https://www.goodreads.com/author/show/6653864.Gena_D_Lutz,2012,/genres/fantasy|/genres/paranormal|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/paranormal-romance|/genres/paranormal|/genres/shapeshifters|/genres/romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/adult|/genres/paranormal|/genres/witches|/genres/contemporary,dir55/16300325-ember-s-curse.html,321,"Ember's Curse (Prime Wolf, #1)" +3.78,26,,good_reads:book,https://www.goodreads.com/author/show/7104097.Hannah_Pole,2013,/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal|/genres/shapeshifters|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/fantasy,dir55/17974764-silence-of-the-wolves.html,51,Silence of the Wolves (Call of the Wilderness #1) +3.67,6,1484081315,good_reads:book,https://www.goodreads.com/author/show/7178889.S_E_Meyer,2013,/genres/fantasy|/genres/science-fiction,dir55/18213083-origins.html,21,Origins +4.28,252,,good_reads:book,https://www.goodreads.com/author/show/6431156.Cheryl_McIntyre,2013,/genres/new-adult|/genres/romance|/genres/academic|/genres/college|/genres/sociology|/genres/abuse|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/drama|/genres/music|/genres/love,dir55/18121041-long-after.html,3681,"Long After (Sometimes Never, #3)" +4.45,5,,good_reads:book,https://www.goodreads.com/author/show/7373870.Marsha_Gujurati,2013,,dir55/18752404-it-comes-natural---understanding-natural-and-integrative-medicine.html,11,It Comes Natural - Understanding Natural and Integrative Medicine +4.39,51,0975309382,good_reads:book,https://www.goodreads.com/author/show/79431.Ernest_Holmes,1938,/genres/spirituality|/genres/philosophy|/genres/metaphysics|/genres/psychology|/genres/science|/genres/self-help|/genres/reference|/genres/non-fiction|/genres/philosophy|/genres/religion|/genres/spirituality|/genres/new-age,dir55/149197.The_Science_of_Mind.html,1073,The Science of Mind +4.53,5,1596085460,good_reads:book,https://www.goodreads.com/author/show/8021610.Carlos_Rivera,2005,/genres/leadership,dir55/21058784-leadership.html,15,Leadership +4.15,68,1599324652,good_reads:book,https://www.goodreads.com/author/show/7690844.T_S_Krupa,2014,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary,dir55/20256797-safe-sound.html,109,Safe & Sound +4.60,3,,good_reads:book,https://www.goodreads.com/author/show/8187644.Danelle_O_Donnell,2014,,dir55/22038750-new-zigon---the-founder-s-curse.html,5,New Zigon - The Founder's Curse +4.53,8,1460206630,good_reads:book,https://www.goodreads.com/author/show/6942370.Richard_Myerscough,2013,/genres/horror|/genres/thriller,dir55/22051319-bat-blood.html,15,Bat Blood +4.48,6,,good_reads:book,https://www.goodreads.com/author/show/5132169.J_M_Walker,2014,,dir55/22671084-bound-anthology.html,23,Bound Anthology +4.15,200,037542248X,good_reads:book,https://www.goodreads.com/author/show/51936.Ng_g_wa_Thiong_o,2006,/genres/cultural|/genres/africa|/genres/fiction|/genres/cultural|/genres/kenya|/genres/magical-realism|/genres/fantasy|/genres/literature|/genres/novels|/genres/literature|/genres/african-literature|/genres/contemporary|/genres/politics,dir55/57485.Wizard_of_the_Crow.html,1212,Wizard of the Crow +3.98,667,0440229383,good_reads:book,https://www.goodreads.com/author/show/28010.Chris_Crutcher,2001,/genres/young-adult|/genres/sports-and-games|/genres/sports|/genres/fiction|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/contemporary|/genres/literature|/genres/banned-books|/genres/young-adult|/genres/high-school|/genres/young-adult|/genres/coming-of-age|/genres/academic|/genres/school,dir55/49746.Whale_Talk.html,7214,Whale Talk +4.19,63,0061660094,good_reads:book,https://www.goodreads.com/author/show/27498.Erin_Hunter,2009,/genres/fantasy|/genres/animals|/genres/animals|/genres/cats|/genres/fiction|/genres/animals|/genres/animal-fiction|/genres/adventure|/genres/childrens|/genres/young-adult|/genres/childrens|/genres/middle-grade|/genres/reference|/genres/guides,dir55/5498077-code-of-the-clans.html,3293,Code of the Clans +4.52,121,0670034851,good_reads:book,https://www.goodreads.com/author/show/6584435.Abolqasem_Ferdowsi,1010,/genres/poetry|/genres/classics|/genres/history|/genres/cultural|/genres/iran|/genres/literature|/genres/fantasy|/genres/mythology|/genres/epic|/genres/non-fiction|/genres/culture|/genres/poetry|/genres/epic-poetry,dir55/157985.Shahnameh.html,2310,Shahnameh +4.00,362,0006479758,good_reads:book,https://www.goodreads.com/author/show/3892.Tom_Clancy,1994,/genres/fiction|/genres/thriller|/genres/war|/genres/military|/genres/spy-thriller|/genres/espionage|/genres/action|/genres/suspense|/genres/adventure|/genres/war|/genres/politics|/genres/mystery,dir55/19675.Executive_Orders.html,27734,"Executive Orders (Jack Ryan, #8)" +4.04,149,0380732289,good_reads:book,https://www.goodreads.com/author/show/47232.Liz_Berry,1996,/genres/young-adult|/genres/fantasy|/genres/romance|/genres/mystery|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/young-adult-fantasy,dir55/82648.The_China_Garden.html,2012,The China Garden +4.11,12,3800055392,good_reads:book,https://www.goodreads.com/author/show/1284067.Lynn_Raven,2010,/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance|/genres/love|/genres/european-literature|/genres/german-literature,dir55/7532858-das-blut-des-d-mons.html,279,"Das Blut des Dämons (Dawn & Julien, #3)" +4.15,14,0982816308,good_reads:book,https://www.goodreads.com/author/show/4524500.Celso_Cukierkorn,2010,,dir55/9972090-secrets-of-jewish-wealth-revealed.html,61,Secrets of Jewish Wealth Revealed! +3.85,1163,0763628115,good_reads:book,https://www.goodreads.com/author/show/93726.Liz_Kessler,2003,/genres/fantasy|/genres/mermaids|/genres/childrens|/genres/fiction|/genres/childrens|/genres/middle-grade|/genres/young-adult|/genres/adventure|/genres/fantasy|/genres/magic|/genres/childrens|/genres/juvenile|/genres/fantasy|/genres/paranormal,dir55/161656.The_Tail_of_Emily_Windsnap.html,12071,"The Tail of Emily Windsnap (Emily Windsnap, #1)" +3.76,534,1595541217,good_reads:book,https://www.goodreads.com/author/show/5544.Frank_E_Peretti,2005,/genres/fiction|/genres/christian|/genres/christian-fiction|/genres/horror|/genres/thriller|/genres/mystery|/genres/suspense|/genres/fantasy|/genres/science-fiction|/genres/fantasy|/genres/supernatural,dir55/65684.Monster.html,13658,Monster +4.36,208,,good_reads:book,https://www.goodreads.com/author/show/4728994.Rachel_Higginson,2011,/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/young-adult|/genres/young-adult-paranormal|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/supernatural|/genres/fiction,dir55/12955738-fearless-magic.html,3905,"Fearless Magic (Star-Crossed, #3)" +4.30,517,1595540342,good_reads:book,https://www.goodreads.com/author/show/1441.Ted_Dekker,2004,/genres/fantasy|/genres/christian-fiction|/genres/fiction|/genres/christian|/genres/thriller|/genres/science-fiction|/genres/suspense|/genres/mystery|/genres/adventure|/genres/adult,dir55/456028.Red.html,15353,"Red (The Circle, #2)" +4.25,368,081091610X,good_reads:book,https://www.goodreads.com/author/show/65335.Michael_Buckley,2007,/genres/fantasy|/genres/mystery|/genres/fantasy|/genres/fairy-tales|/genres/young-adult|/genres/childrens|/genres/adventure|/genres/fiction|/genres/fantasy|/genres/magic,dir55/112879.Once_Upon_a_Crime.html,10322,"Once Upon a Crime (The Sisters Grimm, #4)" +4.77,86,0988270714,good_reads:book,https://www.goodreads.com/author/show/5819163.Cindy_Springsteen,2012,/genres/childrens,dir55/16219585-waffles-and-pancakes.html,144,Waffles and Pancakes +4.13,57,,good_reads:book,https://www.goodreads.com/author/show/6595274.Folami_Morris,2013,/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/magic|/genres/romance|/genres/science-fiction|/genres/adventure,dir55/16189172-the-exemeus.html,102,"The Exemeus (The Exemeus, #1)" +4.02,126,1481934902,good_reads:book,https://www.goodreads.com/author/show/6887119.Vi_Keeland,2013,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/erotica|/genres/bdsm|/genres/romance|/genres/contemporary-romance|/genres/romance|/genres/erotic-romance|/genres/contemporary|/genres/new-adult,dir55/17233806-first-thing-i-see.html,1791,First Thing I See +3.85,198,,good_reads:book,https://www.goodreads.com/author/show/6571021.J_C_Valentine,2013,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/adult|/genres/romance|/genres/erotic-romance|/genres/humor|/genres/funny,dir55/17224751-that-first-kiss.html,1056,"That First Kiss (Night Calls, #2)" +3.96,23,1500116483,good_reads:book,https://www.goodreads.com/author/show/6572080.C_E_Kilgore,2012,/genres/science-fiction|/genres/romance|/genres/science-fiction|/genres/space-opera|/genres/fantasy|/genres/paranormal|/genres/science-fiction-fantasy|/genres/romance|/genres/science-fiction-romance|/genres/science-fiction|/genres/aliens|/genres/fiction,dir55/16128338-ghost-in-the-machine.html,101,"Ghost in the Machine (Corwint Central Agent Files, #1)" +3.50,2,1481961861,good_reads:book,https://www.goodreads.com/author/show/5100743.Alexei_Maxim_Russell,2013,/genres/cultural|/genres/japan|/genres/philosophy,dir55/17354744-instruction-manual-for-the-21st-century-samurai.html,18,Instruction Manual for the 21st Century Samurai +4.04,707,0439918480,good_reads:book,https://www.goodreads.com/author/show/310364.Lisa_Ann_Sandell,2007,/genres/young-adult|/genres/historical-fiction|/genres/fantasy|/genres/romance|/genres/poetry|/genres/fiction|/genres/mythology|/genres/arthurian|/genres/fantasy|/genres/mythology|/genres/retellings|/genres/young-adult|/genres/teen,dir55/566825.Song_of_the_Sparrow.html,6615,Song of the Sparrow +3.73,242,0812972589,good_reads:book,https://www.goodreads.com/author/show/25852.Walter_Van_Tilburg_Clark,1940,/genres/fiction|/genres/classics|/genres/western|/genres/historical-fiction|/genres/literature|/genres/novels|/genres/book-club|/genres/literature|/genres/american|/genres/classics|/genres/classic-literature|/genres/philosophy,dir55/46212.The_Ox_Bow_Incident.html,2706,The Ox-Bow Incident +4.15,264,0802141323,good_reads:book,https://www.goodreads.com/author/show/37728.Frantz_Fanon,1961,/genres/non-fiction|/genres/history|/genres/politics|/genres/philosophy|/genres/cultural|/genres/africa|/genres/philosophy|/genres/theory|/genres/race|/genres/sociology|/genres/psychology|/genres/literature|/genres/post-colonial,dir55/66933.The_Wretched_of_the_Earth.html,8288,The Wretched of the Earth +4.25,3,1311059164,good_reads:book,https://www.goodreads.com/author/show/8507331.Author_Neva_Squires_Rodriguez,2014,,dir55/23118840-liliana.html,8,Liliana +3.94,583,0515142867,good_reads:book,https://www.goodreads.com/author/show/625.Nora_Roberts,2001,/genres/romance|/genres/fiction|/genres/mystery|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/romance|/genres/romantic-suspense|/genres/suspense|/genres/romance|/genres/paranormal-romance|/genres/womens-fiction|/genres/chick-lit,dir55/114132.Midnight_Bayou.html,22082,Midnight Bayou +3.94,3632,0767927567,good_reads:book,https://www.goodreads.com/author/show/427437.Carolyn_Jessop,2007,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/biography|/genres/religion|/genres/book-club|/genres/biography-memoir|/genres/biography|/genres/autobiography|/genres/religion|/genres/cults|/genres/womens|/genres/adult,dir55/818811.Escape.html,22783,Escape +3.96,106,0451206479,good_reads:book,https://www.goodreads.com/author/show/4333.Sylvia_Browne,2000,/genres/spirituality|/genres/non-fiction|/genres/fantasy|/genres/paranormal|/genres/spirituality|/genres/new-age|/genres/religion|/genres/philosophy|/genres/metaphysics|/genres/paranormal|/genres/angels|/genres/self-help,dir55/6393.Life_on_the_Other_Side.html,1555,Life on the Other Side +4.11,96,014004891X,good_reads:book,https://www.goodreads.com/author/show/585.John_Steinbeck,1949,/genres/classics|/genres/fiction|/genres/literature|/genres/american|/genres/literature|/genres/academic|/genres/school|/genres/disability|/genres/novels|/genres/literature|/genres/20th-century|/genres/book-club|/genres/classics|/genres/classic-literature,dir55/170192.Of_Mice_and_Men_Cannery_Row.html,1608,Of Mice and Men/Cannery Row +4.12,105,1590200659,good_reads:book,https://www.goodreads.com/author/show/1171746.Max_Frei,1996,/genres/fantasy|/genres/cultural|/genres/russia|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/science-fiction|/genres/humor|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/adventure|/genres/horror,dir55/4904977-the-stranger.html,1290,"The Stranger (The Labyrinths of Echo, #1)" +3.82,343,0679772596,good_reads:book,https://www.goodreads.com/author/show/463.Philip_Roth,1995,/genres/fiction|/genres/literature|/genres/literature|/genres/american|/genres/novels|/genres/literary-fiction|/genres/contemporary|/genres/literature|/genres/jewish|/genres/academic|/genres/college|/genres/literature|/genres/20th-century|/genres/culture,dir55/11654.Sabbath_s_Theater.html,4511,Sabbath's Theater +4.43,71,0670869295,good_reads:book,https://www.goodreads.com/author/show/4000.Pat_Barker,1996,/genres/fiction|/genres/historical-fiction|/genres/war|/genres/modern,dir55/5877.The_Regeneration_Trilogy.html,1068,The Regeneration Trilogy +4.32,615,019516895X,good_reads:book,https://www.goodreads.com/author/show/12144.James_M_McPherson,1988,/genres/military-history|/genres/civil-war|/genres/non-fiction|/genres/war|/genres/american-history|/genres/american-civil-war|/genres/military|/genres/military-history|/genres/war|/genres/military|/genres/history|/genres/american-history|/genres/politics,dir55/35100.Battle_Cry_of_Freedom.html,13941,Battle Cry of Freedom +3.67,1329,0316014532,good_reads:book,https://www.goodreads.com/author/show/19093.Sara_Zarr,2007,/genres/young-adult|/genres/realistic-fiction|/genres/fiction|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/romance|/genres/young-adult|/genres/coming-of-age|/genres/womens-fiction|/genres/chick-lit|/genres/family|/genres/young-adult|/genres/high-school,dir55/33906.Story_of_a_Girl.html,11700,Story of a Girl +3.93,712,0679733973,good_reads:book,https://www.goodreads.com/author/show/7621.Jim_Thompson,1952,/genres/fiction|/genres/mystery|/genres/crime|/genres/mystery|/genres/mystery|/genres/noir|/genres/thriller|/genres/horror|/genres/novels|/genres/classics|/genres/thriller|/genres/mystery-thriller|/genres/suspense,dir55/298663.The_Killer_Inside_Me.html,9174,The Killer Inside Me +4.22,241,0689870043,good_reads:book,https://www.goodreads.com/author/show/68871.Sherryl_Jordan,1999,/genres/young-adult|/genres/historical-fiction|/genres/romance|/genres/fiction|/genres/fantasy|/genres/romance|/genres/historical-romance|/genres/young-adult|/genres/teen|/genres/historical-fiction|/genres/medieval|/genres/young-adult|/genres/young-adult-historical-fiction|/genres/childrens,dir55/118754.The_Raging_Quiet.html,2523,The Raging Quiet +3.37,208,8129120216,good_reads:book,https://www.goodreads.com/author/show/61124.Chetan_Bhagat,2012,/genres/non-fiction|/genres/cultural|/genres/india|/genres/asian-literature|/genres/indian-literature,dir55/15743828-what-young-india-wants.html,4440,What Young India Wants +3.96,2179,052595158X,good_reads:book,https://www.goodreads.com/author/show/24689.Harlan_Coben,2010,/genres/mystery|/genres/thriller|/genres/fiction|/genres/suspense|/genres/mystery|/genres/crime|/genres/thriller|/genres/mystery-thriller|/genres/adult|/genres/adult-fiction|/genres/drama|/genres/contemporary,dir55/6681454-caught.html,25899,Caught +4.03,207,0615436366,good_reads:book,https://www.goodreads.com/author/show/1280953.Ben_Peller,2011,/genres/humor|/genres/love|/genres/romance|/genres/sexuality|/genres/humor|/genres/funny|/genres/autobiography|/genres/memoir|/genres/young-adult|/genres/coming-of-age|/genres/book-club|/genres/classics|/genres/short-stories,dir55/11393301-to-live-and-drink-in-l-a.html,344,To Live and Drink in L.A. +4.15,307,0316078654,good_reads:book,https://www.goodreads.com/author/show/5816.Darren_Shan,2010,/genres/fantasy|/genres/young-adult|/genres/horror|/genres/fiction|/genres/adventure|/genres/science-fiction|/genres/dystopia|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/mythology|/genres/action|/genres/childrens,dir55/7128767-the-thin-executioner.html,2811,The Thin Executioner +4.26,8,184905262X,good_reads:book,https://www.goodreads.com/author/show/5100743.Alexei_Maxim_Russell,2011,/genres/mystery,dir55/12262889-trueman-bradley.html,19,Trueman Bradley +4.66,33,1780810172,good_reads:book,https://www.goodreads.com/author/show/137902.Richelle_Mead,2010,/genres/paranormal|/genres/vampires|/genres/romance|/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy,dir55/11872688-vampire-academy.html,1497,"Vampire Academy (Vampire Academy, #1-5)" +3.88,3751,1594485755,good_reads:book,https://www.goodreads.com/author/show/1218.Jon_Ronson,2011,/genres/non-fiction|/genres/psychology|/genres/science|/genres/book-club|/genres/sociology|/genres/writing|/genres/journalism|/genres/mental-health|/genres/mental-illness|/genres/humor|/genres/health|/genres/mental-health|/genres/mystery|/genres/crime,dir55/12391521-the-psychopath-test.html,43416,The Psychopath Test +4.38,105,,good_reads:book,https://www.goodreads.com/author/show/6863455.Luca_Rossi,2012,/genres/science-fiction|/genres/short-stories|/genres/fantasy|/genres/science-fiction|/genres/cyberpunk|/genres/adult-fiction|/genres/erotica|/genres/adventure|/genres/anthologies|/genres/romance|/genres/adult-fiction|/genres/science-fiction|/genres/dystopia,dir55/18224520-galactic-energies.html,311,Galactic Energies +3.65,62,9350880768,good_reads:book,https://www.goodreads.com/author/show/4513317.Faraaz_Kazi,2013,/genres/horror|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/short-stories|/genres/thriller|/genres/fantasy|/genres/supernatural,dir55/18337823-the-other-side.html,176,The Other Side +4.66,4,,good_reads:book,https://www.goodreads.com/author/show/7456408.Meredith_T_Taylor,2013,,dir55/19055068-churning-waters.html,32,Churning Waters +4.83,3,1495416739,good_reads:book,https://www.goodreads.com/author/show/7399883.Maria_Johnsen,2014,,dir55/20773953-this-land-of-streams.html,6,This Land of Streams +3.79,94,041525387X,good_reads:book,https://www.goodreads.com/author/show/10017.Sigmund_Freud,1913,/genres/psychology|/genres/non-fiction|/genres/philosophy|/genres/religion|/genres/anthropology|/genres/philosophy|/genres/theory|/genres/sociology|/genres/classics|/genres/science|/genres/european-literature|/genres/german-literature,dir55/132464.Totem_and_Taboo.html,4111,Totem and Taboo +3.46,492,1566891817,good_reads:book,https://www.goodreads.com/author/show/200335.Sam_Savage,2006,/genres/fiction|/genres/fantasy|/genres/writing|/genres/books-about-books|/genres/animals|/genres/literature|/genres/novels|/genres/humor|/genres/contemporary|/genres/literature|/genres/american|/genres/book-club,dir55/349164.Firmin.html,3353,Firmin +4.52,11,0992502802,good_reads:book,https://www.goodreads.com/author/show/7949493.Kia_Carrington_Russell,2014,/genres/fantasy,dir55/21878763-possession-of-my-soul.html,21,"Possession Of My Soul (The Three Immortal Blades, #1)" +4.11,105,0786913142,good_reads:book,https://www.goodreads.com/author/show/869.Margaret_Weis,1998,/genres/fantasy|/genres/dungeons-and-dragons|/genres/dragonlance|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/dragons,dir55/28524.The_Soulforge.html,6519,"The Soulforge (Dragonlance: Raistlin Chronicles, #1)" +4.19,210,0743457587,good_reads:book,https://www.goodreads.com/author/show/859143.William_Gibson,1956,/genres/plays|/genres/biography|/genres/classics|/genres/non-fiction|/genres/drama|/genres/academic|/genres/school|/genres/history|/genres/plays|/genres/theatre,dir55/22327.The_Miracle_Worker.html,19996,The Miracle Worker +3.99,1942,0688163181,good_reads:book,https://www.goodreads.com/author/show/10289.Dennis_Lehane,2008,/genres/historical-fiction|/genres/fiction|/genres/mystery|/genres/book-club|/genres/mystery|/genres/crime|/genres/thriller|/genres/novels|/genres/drama|/genres/literature|/genres/adult,dir55/2830067-the-given-day.html,12765,The Given Day (Coughlin #1) +3.63,515,0440223016,good_reads:book,https://www.goodreads.com/author/show/1315.Louisa_May_Alcott,1995,/genres/classics|/genres/fiction|/genres/romance|/genres/gothic|/genres/literature|/genres/book-club|/genres/historical-fiction|/genres/literature|/genres/19th-century|/genres/suspense|/genres/mystery,dir55/620790.A_Long_Fatal_Love_Chase.html,3550,A Long Fatal Love Chase +4.05,11,1439228027,good_reads:book,https://www.goodreads.com/author/show/2910748.Brian_Celio,2009,/genres/fiction|/genres/cultural|/genres/counter-culture,dir55/6423085-catapult-soul.html,40,Catapult Soul +3.80,673,0312421850,good_reads:book,https://www.goodreads.com/author/show/9387.Michael_Dorris,1987,/genres/fiction|/genres/book-club|/genres/classics|/genres/adult-fiction|/genres/academic|/genres/school|/genres/young-adult|/genres/novels|/genres/literature|/genres/literary-fiction|/genres/young-adult|/genres/high-school,dir55/17174.A_Yellow_Raft_in_Blue_Water.html,10908,A Yellow Raft in Blue Water +4.15,119,0380817705,good_reads:book,https://www.goodreads.com/author/show/1221698.Neil_Gaiman,1996,/genres/fantasy|/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fiction|/genres/short-stories|/genres/anthologies|/genres/horror|/genres/science-fiction-fantasy,dir55/92377.The_Sandman.html,4182,The Sandman +3.60,1317,0142414123,good_reads:book,https://www.goodreads.com/author/show/27837.Greg_Mortenson,2006,/genres/non-fiction|/genres/book-club|/genres/autobiography|/genres/memoir|/genres/academic|/genres/school|/genres/education|/genres/childrens|/genres/biography|/genres/childrens|/genres/middle-grade|/genres/cultural|/genres/inspirational,dir55/3788053-three-cups-of-tea.html,7734,Three Cups of Tea +4.54,19,0974056030,good_reads:book,https://www.goodreads.com/author/show/5813307.Belzebuub,2004,/genres/spirituality,dir55/1012794.A_Course_in_Astral_Travel_and_Dreams.html,80,A Course in Astral Travel and Dreams +4.39,242,1416974318,good_reads:book,https://www.goodreads.com/author/show/140125.Heather_Vogel_Frederick,2010,/genres/young-adult|/genres/fiction|/genres/realistic-fiction|/genres/childrens|/genres/middle-grade|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/romance|/genres/childrens,dir55/7597710-pies-prejudice.html,2994,"Pies & Prejudice (The Mother-Daughter Book Club, #4)" +3.81,7,,good_reads:book,https://www.goodreads.com/author/show/5077755.Jonathan_Culver,2008,,dir55/12260599-huey-lambert-s-walking-nuclear-circus.html,16,Huey Lambert's Walking Nuclear Circus +4.07,655,,good_reads:book,https://www.goodreads.com/author/show/4512224.Lindsay_Buroker,2010,/genres/fantasy|/genres/science-fiction|/genres/steampunk|/genres/fiction|/genres/mystery|/genres/adventure|/genres/fantasy|/genres/magic|/genres/science-fiction|/genres/adult|/genres/fantasy|/genres/urban-fantasy|/genres/romance,dir55/10031259-the-emperor-s-edge.html,4856,"The Emperor's Edge (The Emperor's Edge, #1)" +4.10,945,0586008357,good_reads:book,https://www.goodreads.com/author/show/16667.Isaac_Asimov,1954,/genres/science-fiction|/genres/fiction|/genres/mystery|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/robots|/genres/classics|/genres/mystery|/genres/crime|/genres/mystery|/genres/detective|/genres/novels|/genres/fantasy,dir55/41811.The_Caves_of_Steel.html,36359,"The Caves of Steel (Robot, #1)" +4.28,327,0810993589,good_reads:book,https://www.goodreads.com/author/show/65335.Michael_Buckley,2007,/genres/fantasy|/genres/mystery|/genres/fantasy|/genres/fairy-tales|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/adventure|/genres/fantasy|/genres/magic|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/middle-grade,dir55/668710.Magic_and_Other_Misdemeanors.html,11174,"Magic and Other Misdemeanors (The Sisters Grimm, #5)" +4.80,34,1933455098,good_reads:book,https://www.goodreads.com/author/show/5834131.Muna_Imady,2012,,dir55/13645330-syrian-folktales.html,50,Syrian Folktales +4.11,109,0812579844,good_reads:book,https://www.goodreads.com/author/show/58124.John_C_Wright,2002,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/space-opera|/genres/science-fiction-fantasy|/genres/fantasy|/genres/novels|/genres/speculative-fiction|/genres/philosophy|/genres/science-fiction|/genres/hard-science-fiction|/genres/adventure,dir55/207410.The_Golden_Age.html,1481,The Golden Age (Golden Age #1) +4.71,12,,good_reads:book,https://www.goodreads.com/author/show/5895074.Ruth_Watson_Morris,2011,,dir56/16075193-fantacia.html,31,"Fantacia (Voxian, #1)" +3.95,17,1614342474,good_reads:book,https://www.goodreads.com/author/show/4878292.Michael_Barnett,2012,/genres/fantasy|/genres/science-fiction|/genres/science-fiction|/genres/aliens|/genres/fiction|/genres/science-fiction|/genres/time-travel|/genres/action|/genres/adventure,dir56/13574635-when-earthlings-weep.html,41,When Earthlings Weep +4.03,97,1477849793,good_reads:book,https://www.goodreads.com/author/show/6892507.Eva_Garc_a_S_enz,2012,/genres/romance|/genres/fantasy|/genres/historical-fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance|/genres/contemporary|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/science-fiction,dir56/18640815-the-immortal-collection.html,730,The Immortal Collection +4.41,684,074995552X,good_reads:book,https://www.goodreads.com/author/show/375143.Larissa_Ione,2011,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/demons|/genres/paranormal|/genres/angels|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/adult|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/mythology,dir56/11512712-lethal-rider.html,9493,"Lethal Rider (Lords of Deliverance, #3; Demonica, #8)" +4.21,1107,0765335344,good_reads:book,https://www.goodreads.com/author/show/7168230.V_E_Schwab,2013,/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/adult|/genres/fiction|/genres/young-adult|/genres/comics|/genres/superheroes,dir56/13638125-vicious.html,4685,Vicious +4.08,236,1402199031,good_reads:book,https://www.goodreads.com/author/show/15865.William_James,1902,/genres/religion|/genres/philosophy|/genres/psychology|/genres/non-fiction|/genres/spirituality|/genres/classics|/genres/science|/genres/religion|/genres/theology,dir56/28820.The_Varieties_of_Religious_Experience.html,5555,The Varieties of Religious Experience +3.61,2852,0374292795,good_reads:book,https://www.goodreads.com/author/show/18675.Thomas_L_Friedman,2005,/genres/history|/genres/economics|/genres/business|/genres/non-fiction|/genres/politics|/genres/science|/genres/technology|/genres/sociology|/genres/science|/genres/education|/genres/philosophy,dir56/1911.The_World_Is_Flat.html,60856,The World Is Flat +4.24,330,0441005969,good_reads:book,https://www.goodreads.com/author/show/25.Patricia_A_McKillip,1976,/genres/young-adult|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/adventure|/genres/fantasy|/genres/magic|/genres/adult|/genres/speculative-fiction|/genres/romance|/genres/epic,dir56/19821.Riddle_Master.html,7038,"Riddle-Master (Riddle-Master, #1-3)" +4.24,509,0340752475,good_reads:book,https://www.goodreads.com/author/show/20849.Rosamunde_Pilcher,1969,/genres/fiction|/genres/romance|/genres/historical-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/war|/genres/history|/genres/world-war-ii|/genres/european-literature|/genres/british-literature|/genres/adult-fiction|/genres/book-club|/genres/drama,dir56/60471.Coming_Home.html,8757,Coming Home +3.68,443,0440419808,good_reads:book,https://www.goodreads.com/author/show/2493.Lois_Lowry,2003,/genres/young-adult|/genres/historical-fiction|/genres/fiction|/genres/childrens|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/middle-grade|/genres/disability|/genres/young-adult|/genres/teen|/genres/realistic-fiction|/genres/fantasy,dir56/12935.The_Silent_Boy.html,3434,The Silent Boy +4.32,70,0976422611,good_reads:book,https://www.goodreads.com/author/show/291916.Robert_Fanney,2008,/genres/fantasy|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/feminism|/genres/adventure|/genres/fantasy|/genres/dragons|/genres/shapeshifters|/genres/werewolves|/genres/epic|/genres/science-fiction-fantasy|/genres/paranormal|/genres/fairies,dir56/6655491-the-war-of-mists.html,377,"The War of Mists (Luthiel's Song, #2)" +3.97,768,0689867468,good_reads:book,https://www.goodreads.com/author/show/8360.Nancy_Farmer,2004,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/mythology|/genres/adventure|/genres/fiction|/genres/historical-fiction|/genres/childrens|/genres/young-adult|/genres/young-adult-fantasy|/genres/fantasy|/genres/magic|/genres/childrens|/genres/middle-grade,dir56/100476.The_Sea_of_Trolls.html,9565,"The Sea of Trolls (Sea of Trolls, #1)" +4.15,69,1569310033,good_reads:book,https://www.goodreads.com/author/show/3450.Yukito_Kishiro,1991,/genres/sequential-art|/genres/manga|/genres/sequential-art|/genres/comics|/genres/sequential-art|/genres/graphic-novels|/genres/science-fiction|/genres/science-fiction|/genres/cyberpunk|/genres/fiction|/genres/science-fiction|/genres/dystopia|/genres/comics-manga|/genres/graphic-novels-comics|/genres/comics|/genres/comic-book,dir56/844422.Battle_Angel_Alita_Volume_01.html,2566,"Battle Angel Alita, Volume 01" +4.11,116,1933963832,good_reads:book,https://www.goodreads.com/author/show/758992.Jennifer_Laurens,2010,/genres/paranormal|/genres/angels|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/young-adult|/genres/young-adult-paranormal|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/contemporary,dir56/7933894-penitence.html,1004,"Penitence (Heavenly, #2)" +3.94,166,0553506021,good_reads:book,https://www.goodreads.com/author/show/17739.Michael_A_Stackpole,1998,/genres/media-tie-in|/genres/star-wars|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/space-opera|/genres/novels|/genres/adventure|/genres/space|/genres/media-tie-in,dir56/758654.I_Jedi.html,7679,"I, Jedi" +4.26,1746,0061930059,good_reads:book,https://www.goodreads.com/author/show/4113892.Conor_Grennan,2011,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/travel|/genres/book-club|/genres/cultural|/genres/asia|/genres/biography|/genres/biography-memoir|/genres/adult|/genres/inspirational|/genres/adventure,dir56/8564644-little-princes.html,10500,Little Princes +4.62,12,0974056049,good_reads:book,https://www.goodreads.com/author/show/503388.Belsebuub,2006,,dir56/6319131-the-peace-of-the-spirit-within.html,68,The Peace of the Spirit Within +4.55,15,0978986415,good_reads:book,https://www.goodreads.com/author/show/603577.Armando_Cosani,1953,/genres/spirituality,dir56/7247586-the-flight-of-the-feathered-serpent.html,64,The Flight of the Feathered Serpent +4.08,32,8420422754,good_reads:book,https://www.goodreads.com/author/show/3073582.Jos_Antonio_Cotrina,2009,/genres/fantasy|/genres/young-adult,dir56/6856867-la-cosecha-de-samhein.html,247,"La cosecha de Samhein (El Ciclo de la Luna Roja, #1)" +4.54,689,1615812261,good_reads:book,https://www.goodreads.com/author/show/1122775.Abigail_Roux,2010,/genres/romance|/genres/m-m-romance|/genres/romance|/genres/contemporary|/genres/mystery|/genres/mystery|/genres/crime|/genres/suspense|/genres/thriller|/genres/romance|/genres/contemporary-romance|/genres/romance|/genres/romantic-suspense|/genres/glbt,dir56/9578482-fish-chips.html,6368,"Fish & Chips (Cut & Run, #3)" +4.14,517,1606410296,good_reads:book,https://www.goodreads.com/author/show/4124325.M_L_Forman,2009,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/dragons|/genres/adventure|/genres/fantasy|/genres/magic|/genres/fiction|/genres/young-adult|/genres/young-adult-fantasy|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/science-fiction-fantasy,dir56/5027092-slathbog-s-gold.html,5685,"Slathbog's Gold (Adventurers Wanted, #1)" +4.45,9,1753052391,good_reads:book,https://www.goodreads.com/author/show/5764521.Emily_Guido,2012,/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/fiction,dir56/14288932-ransom.html,31,"Ransom (The Light-Bearer, #5)" +4.17,348,,good_reads:book,https://www.goodreads.com/author/show/4601855.Jessica_Sorensen,2011,/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic,dir56/12760903-the-vision.html,9924,"The Vision (Fallen Star, #3)" +3.93,98,0451166639,good_reads:book,https://www.goodreads.com/author/show/14444.Isaac_Bashevis_Singer,1972,/genres/fiction|/genres/literature|/genres/jewish|/genres/world-war-ii|/genres/holocaust|/genres/novels|/genres/classics|/genres/nobel-prize|/genres/history|/genres/world-war-ii|/genres/literature|/genres/american|/genres/literature|/genres/war,dir56/25739.Enemies.html,1243,Enemies +4.27,170,0810970600,good_reads:book,https://www.goodreads.com/author/show/58103.Aidan_Chambers,2005,/genres/young-adult|/genres/fiction|/genres/romance|/genres/realistic-fiction|/genres/contemporary|/genres/young-adult|/genres/coming-of-age|/genres/young-adult|/genres/teen|/genres/book-club|/genres/drama|/genres/diary,dir56/590348.This_is_All.html,1366,This is All +3.72,79,1481972995,good_reads:book,https://www.goodreads.com/author/show/6889132.B_Kristin_McMichael,2013,/genres/romance|/genres/young-adult|/genres/fantasy|/genres/young-adult|/genres/young-adult-fantasy|/genres/fiction,dir56/17283555-to-stand-beside-her.html,290,To Stand Beside Her +3.91,644,0310727618,good_reads:book,https://www.goodreads.com/author/show/3408059.Melanie_Dickerson,2011,/genres/historical-fiction|/genres/romance|/genres/christian-fiction|/genres/young-adult|/genres/christian|/genres/fantasy|/genres/fairy-tales|/genres/fantasy|/genres/romance|/genres/historical-romance|/genres/fiction|/genres/retellings,dir56/10742462-the-merchant-s-daughter.html,4008,The Merchant's Daughter +3.92,1827,0060735414,good_reads:book,https://www.goodreads.com/author/show/16218.Christopher_Moore,1995,/genres/humor|/genres/fiction|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/humor|/genres/comedy|/genres/fantasy|/genres/urban-fantasy|/genres/horror|/genres/humor|/genres/funny|/genres/romance,dir56/33454.Bloodsucking_Fiends.html,41137,"Bloodsucking Fiends (A Love Story, #1)" +4.05,404,,good_reads:book,https://www.goodreads.com/author/show/5423648.Elle_Casey,2013,/genres/romance|/genres/sociology|/genres/abuse|/genres/new-adult|/genres/romance|/genres/contemporary-romance|/genres/dark|/genres/contemporary|/genres/romance|/genres/romantic-suspense|/genres/suspense|/genres/adult|/genres/drama,dir56/17981514-don-t-make-me-beautiful.html,2653,Don't Make Me Beautiful +4.02,216,1857239407,good_reads:book,https://www.goodreads.com/author/show/3231.George_Lucas,1976,/genres/media-tie-in|/genres/star-wars|/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/space-opera|/genres/adventure|/genres/classics|/genres/media-tie-in|/genres/space,dir56/599090.Star_Wars_Episode_IV.html,8496,"Star Wars Episode IV (Star Wars, #4)" +4.57,92,,good_reads:book,https://www.goodreads.com/author/show/7690948.Jerilee_Kaye,2013,/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/contemporary-romance|/genres/new-adult|/genres/contemporary,dir56/20257391-knight-in-shining-suit.html,922,Knight in Shining Suit +3.81,760,0142003808,good_reads:book,https://www.goodreads.com/author/show/1064072.T_C_Boyle,2003,/genres/fiction|/genres/novels|/genres/book-club|/genres/historical-fiction|/genres/literature|/genres/contemporary|/genres/literary-fiction|/genres/literature|/genres/american|/genres/humor|/genres/adult-fiction,dir56/24724.Drop_City.html,7645,Drop City +4.86,4,1477504540,good_reads:book,https://www.goodreads.com/author/show/5989528.Subhajit_Ganguly,2013,,dir56/17695243-call-of-the-lost-ages.html,7,Call Of The Lost Ages +4.36,918,0373210779,good_reads:book,https://www.goodreads.com/author/show/48192.Gena_Showalter,2013,/genres/horror|/genres/zombies|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/horror|/genres/fantasy|/genres/supernatural,dir56/15755296-through-the-zombie-glass.html,5809,"Through the Zombie Glass (White Rabbit Chronicles, #2)" +3.55,5,1853408670,good_reads:book,https://www.goodreads.com/author/show/1278014.Hilary_Freeman,2006,/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/romance,dir56/2961799-loving-danny.html,104,Loving Danny +4.31,205,,good_reads:book,https://www.goodreads.com/author/show/1410883._,2008,/genres/religion|/genres/non-fiction|/genres/religion|/genres/islam,dir56/6427759.html,1774,مع الله +3.49,307,0446610178,good_reads:book,https://www.goodreads.com/author/show/9068.Sidney_Sheldon,2000,/genres/fiction|/genres/thriller|/genres/mystery|/genres/suspense|/genres/novels|/genres/romance|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/crime|/genres/drama|/genres/contemporary,dir56/43327.The_Sky_Is_Falling.html,11618,The Sky Is Falling +3.91,609,0671227424,good_reads:book,https://www.goodreads.com/author/show/8088.Carlos_Castaneda,1968,/genres/philosophy|/genres/spirituality|/genres/non-fiction|/genres/religion|/genres/anthropology|/genres/spirituality|/genres/new-age|/genres/literature|/genres/american|/genres/science|/genres/biography|/genres/occult|/genres/mysticism,dir56/78250.The_Teachings_of_Don_Juan.html,21368,The Teachings of Don Juan +3.80,2093,0763644102,good_reads:book,https://www.goodreads.com/author/show/13663.Kate_DiCamillo,2009,/genres/fantasy|/genres/fiction|/genres/childrens|/genres/young-adult|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile|/genres/animals|/genres/fantasy|/genres/magic|/genres/adventure|/genres/kids,dir56/6345760-the-magician-s-elephant.html,10669,The Magician's Elephant +3.87,582,1616142472,good_reads:book,https://www.goodreads.com/author/show/57858.Clay_Griffith,2010,/genres/science-fiction|/genres/steampunk|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/adult|/genres/romance|/genres/paranormal-romance|/genres/fiction|/genres/young-adult,dir56/8140709-the-greyfriar.html,3267,"The Greyfriar (Vampire Empire, #1)" +3.77,1337,0385339097,good_reads:book,https://www.goodreads.com/author/show/721.John_Grisham,1998,/genres/fiction|/genres/mystery|/genres/contemporary|/genres/thriller|/genres/legal-thriller|/genres/thriller|/genres/mystery|/genres/crime|/genres/action|/genres/adult-fiction|/genres/thriller|/genres/mystery-thriller|/genres/adventure,dir56/5351.The_Street_Lawyer.html,68927,The Street Lawyer +4.07,346,0553290029,good_reads:book,https://www.goodreads.com/author/show/8050.Ira_Levin,1970,/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/fiction|/genres/horror|/genres/apocalyptic|/genres/post-apocalyptic|/genres/classics|/genres/novels,dir56/139390.This_Perfect_Day.html,3605,This Perfect Day +3.86,427,0141183721,good_reads:book,https://www.goodreads.com/author/show/3706.George_Orwell,1391,/genres/fiction|/genres/classics|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/novels|/genres/literature|/genres/20th-century,dir56/9648.Keep_the_Aspidistra_Flying.html,7029,Keep the Aspidistra Flying +3.36,1704,1439167397,good_reads:book,https://www.goodreads.com/author/show/3194936.F_lix_J_Palma,2008,/genres/science-fiction|/genres/steampunk|/genres/historical-fiction|/genres/fiction|/genres/science-fiction|/genres/science-fiction|/genres/time-travel|/genres/mystery|/genres/science-fiction-fantasy|/genres/adult|/genres/science-fiction|/genres/alternate-history|/genres/young-adult,dir56/9766078-the-map-of-time.html,7301,"The Map of Time (Trilogía Victoriana, #1)" +4.25,463,1419935836,good_reads:book,https://www.goodreads.com/author/show/3190846.Laurann_Dohner,2011,/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/paranormal|/genres/shapeshifters|/genres/science-fiction|/genres/fantasy|/genres/adult|/genres/romance|/genres/erotic-romance|/genres/contemporary,dir56/12257347-slade.html,8680,"Slade (New Species, #2)" +3.84,5685,1451629184,good_reads:book,https://www.goodreads.com/author/show/4842866.Jaycee_Dugard,2011,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/biography|/genres/crime|/genres/true-crime|/genres/biography|/genres/autobiography|/genres/biography-memoir|/genres/mystery|/genres/crime|/genres/book-club|/genres/adult|/genres/sociology|/genres/abuse,dir56/11330361-a-stolen-life.html,55852,A Stolen Life +4.41,118,0375753117,good_reads:book,https://www.goodreads.com/author/show/233619.Marcel_Proust,1925,/genres/fiction|/genres/classics|/genres/cultural|/genres/france|/genres/literature|/genres/european-literature|/genres/french-literature|/genres/novels|/genres/literary-fiction|/genres/literature|/genres/20th-century|/genres/classics|/genres/classic-literature|/genres/romance,dir56/18801.The_Captive_The_Fugitive.html,1265,"The Captive & The Fugitive (In Search of Lost Time, #5-6)" +3.94,272,0141186615,good_reads:book,https://www.goodreads.com/author/show/1209.Ford_Madox_Ford,1928,/genres/classics|/genres/fiction|/genres/historical-fiction|/genres/war|/genres/literature|/genres/literature|/genres/20th-century,dir56/777824.Parade_s_End.html,2685,Parade's End +3.60,6,0967493722,good_reads:book,https://www.goodreads.com/author/show/2829101.Leonard_Seet,2012,/genres/philosophy,dir56/15733160-meditation-on-space-time.html,15,Meditation on Space-Time +4.62,13,0882408704,good_reads:book,https://www.goodreads.com/author/show/947.William_Shakespeare,1899,/genres/classics|/genres/fiction|/genres/poetry|/genres/romance|/genres/reference|/genres/plays|/genres/literature|/genres/fantasy|/genres/humor|/genres/comedy,dir56/17134346-the-complete-works-of-william-shakespeare.html,217,The Complete Works of William Shakespeare +3.44,378,0802796087,good_reads:book,https://www.goodreads.com/author/show/262616.Ibi_Kaslik,2004,/genres/young-adult|/genres/fiction|/genres/realistic-fiction|/genres/contemporary|/genres/mental-health|/genres/mental-illness|/genres/health|/genres/mental-health|/genres/psychology|/genres/young-adult|/genres/teen|/genres/adult|/genres/cultural|/genres/canada,dir56/468657.Skinny.html,4179,Skinny +4.09,560,145151705X,good_reads:book,https://www.goodreads.com/author/show/2990843.Mark_Tufo,2010,/genres/horror|/genres/zombies|/genres/horror|/genres/fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/science-fiction|/genres/apocalyptic|/genres/fantasy|/genres/paranormal|/genres/fantasy,dir56/8167001-zombie-fallout.html,4715,"Zombie Fallout (Zombie Fallout, #1)" +3.89,11303,0399159010,good_reads:book,https://www.goodreads.com/author/show/5272674.Jenny_Lawson,2012,/genres/non-fiction|/genres/humor|/genres/autobiography|/genres/memoir|/genres/book-club|/genres/biography|/genres/humor|/genres/funny|/genres/humor|/genres/comedy|/genres/biography-memoir|/genres/adult,dir56/12868761-let-s-pretend-this-never-happened.html,75770,Let's Pretend This Never Happened +4.31,453,0060198818,good_reads:book,https://www.goodreads.com/author/show/67629.Ramachandra_Guha,2007,/genres/history|/genres/cultural|/genres/india|/genres/non-fiction|/genres/politics|/genres/cultural|/genres/asia|/genres/asian-literature|/genres/indian-literature,dir56/356824.India_After_Gandhi.html,5549,India After Gandhi +3.92,18523,0316204277,good_reads:book,https://www.goodreads.com/author/show/1588088.Maria_Semple,2012,/genres/book-club|/genres/humor|/genres/contemporary|/genres/mystery|/genres/adult-fiction|/genres/adult|/genres/womens-fiction|/genres/chick-lit|/genres/humor|/genres/funny|/genres/fiction|/genres/novels,dir56/13526165-where-d-you-go-bernadette.html,129045,"Where'd You Go, Bernadette" +3.90,362,1414333056,good_reads:book,https://www.goodreads.com/author/show/3343132.Gina_Holmes,2010,/genres/fiction|/genres/womens-fiction|/genres/christian-fiction|/genres/american|/genres/southern,dir56/7640543-crossing-oceans.html,2010,Crossing Oceans +4.05,689,0545509890,good_reads:book,https://www.goodreads.com/author/show/1304838.Bill_Konigsberg,2013,/genres/young-adult|/genres/glbt|/genres/contemporary|/genres/romance|/genres/realistic-fiction|/genres/fiction|/genres/romance|/genres/m-m-romance|/genres/young-adult|/genres/coming-of-age|/genres/glbt|/genres/gay,dir56/16100972-openly-straight.html,3947,Openly Straight +4.61,14,,good_reads:book,https://www.goodreads.com/author/show/32401.Alison_Croggon,2006,/genres/fantasy|/genres/young-adult,dir56/13488552-the-books-of-pellinor.html,394,The Books of Pellinor +4.17,1358,,good_reads:book,https://www.goodreads.com/author/show/6983012.Belle_Aurora,2013,/genres/romance|/genres/new-adult|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/humor|/genres/funny|/genres/humor|/genres/romance|/genres/romantic-suspense|/genres/adult,dir56/18071296-willing-captive.html,11265,Willing Captive +4.01,1009,1423168232,good_reads:book,https://www.goodreads.com/author/show/164187.Jennifer_Lynn_Barnes,2013,/genres/young-adult|/genres/mystery|/genres/thriller|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/mystery|/genres/crime|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/fiction,dir56/13597723-the-naturals.html,5596,"The Naturals (The Naturals, #1)" +4.00,1,,good_reads:book,https://www.goodreads.com/author/show/7518486._,2013,,dir56/21569585.html,10,اموال ودماء +3.69,2765,0062067753,good_reads:book,https://www.goodreads.com/author/show/1654.Terry_Pratchett,2012,/genres/science-fiction|/genres/fantasy|/genres/fiction|/genres/science-fiction-fantasy,dir56/13147230-the-long-earth.html,20168,The Long Earth (The Long Earth #1) +4.14,232,0380769840,good_reads:book,https://www.goodreads.com/author/show/88445.Kathleen_E_Woodiwiss,1979,/genres/romance|/genres/romance|/genres/historical-romance|/genres/historical-fiction|/genres/fiction|/genres/military-history|/genres/civil-war|/genres/adult|/genres/war|/genres/american-history|/genres/american-civil-war|/genres/womens-fiction|/genres/chick-lit|/genres/literature|/genres/american,dir56/896627.Ashes_in_the_Wind.html,5687,Ashes in the Wind +4.70,30,,good_reads:book,https://www.goodreads.com/author/show/7153266.Tali_Carmi,2014,/genres/childrens,dir56/20445451-children-s-book.html,57,Children's book +5.00,9,,good_reads:book,https://www.goodreads.com/author/show/7738947.Sarah_Robinson,2014,/genres/romance|/genres/new-adult,dir56/21902777-untainted.html,14,"Untainted (Photographer Trilogy, #3)" +4.50,5,,good_reads:book,https://www.goodreads.com/author/show/8262567.Leonard_Belmont,2014,,dir56/22524731-five-years---the-meeting.html,10,Five Years - The Meeting +4.19,229,0156334607,good_reads:book,https://www.goodreads.com/author/show/5001.Milton_Friedman,1980,/genres/non-fiction|/genres/politics|/genres/economics|/genres/philosophy|/genres/business|/genres/history|/genres/politics|/genres/political-science|/genres/science|/genres/literature|/genres/american|/genres/culture|/genres/society,dir56/97820.Free_to_Choose.html,3199,Free to Choose +4.10,361,0553275186,good_reads:book,https://www.goodreads.com/author/show/858.Louis_L_Amour,1983,/genres/western|/genres/fiction|/genres/historical-fiction|/genres/classics|/genres/adventure|/genres/book-club|/genres/education|/genres/novels|/genres/adult|/genres/action,dir56/1123549.The_Lonesome_Gods.html,4125,The Lonesome Gods +3.85,210,0553565214,good_reads:book,https://www.goodreads.com/author/show/44003.Katharine_Kerr,1986,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/romance|/genres/fantasy|/genres/dragons|/genres/adventure|/genres/epic,dir56/498214.Daggerspell.html,8302,"Daggerspell (Deverry, #1)" +3.90,150,0142400300,good_reads:book,https://www.goodreads.com/author/show/5329.Brian_Jacques,1994,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/adventure|/genres/animals|/genres/science-fiction-fantasy|/genres/novels|/genres/childrens|/genres/middle-grade|/genres/fantasy|/genres/high-fantasy,dir56/7979.The_Bellmaker.html,13039,"The Bellmaker (Redwall, #7)" +4.13,492,0330340328,good_reads:book,https://www.goodreads.com/author/show/25375.Peter_F_Hamilton,1996,/genres/science-fiction|/genres/science-fiction|/genres/space-opera|/genres/fiction|/genres/fantasy|/genres/space,dir56/45245.The_Reality_Dysfunction.html,14572,"The Reality Dysfunction (Night's Dawn, #1)" +4.04,526,0316010766,good_reads:book,https://www.goodreads.com/author/show/4339.David_Foster_Wallace,2004,/genres/short-stories|/genres/fiction|/genres/literature|/genres/literary-fiction|/genres/contemporary|/genres/literature|/genres/american,dir56/6749.Oblivion.html,7010,Oblivion +3.71,35,8423336603,good_reads:book,https://www.goodreads.com/author/show/285658.Efraim_Medina_Reyes,NA,/genres/fiction,dir56/890680._rase_una_vez_el_amor_pero_tuve_que_matarlo_Musica_de_Sex_Pistols_y_Nirvana.html,403,Érase una vez el amor pero tuve que matarlo. Musica de Sex Pistols y Nirvana +3.77,1540,1416989536,good_reads:book,https://www.goodreads.com/author/show/25422.Holly_Black,2010,/genres/fantasy|/genres/short-stories|/genres/young-adult|/genres/anthologies|/genres/horror|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/unicorns|/genres/humor|/genres/horror|/genres/zombies,dir56/7171748-zombies-vs-unicorns.html,8892,Zombies Vs. Unicorns +3.69,973,1841954802,good_reads:book,https://www.goodreads.com/author/show/16272.Michel_Faber,2000,/genres/fiction|/genres/horror|/genres/science-fiction|/genres/thriller|/genres/fantasy|/genres/mystery|/genres/book-club|/genres/science-fiction-fantasy|/genres/cultural|/genres/scotland|/genres/contemporary,dir56/123063.Under_the_Skin.html,6892,Under the Skin +3.65,160,,good_reads:book,https://www.goodreads.com/author/show/346732.George_R_R_Martin,1983,/genres/fantasy|/genres/horror|/genres/fiction|/genres/science-fiction|/genres/thriller|/genres/music|/genres/fantasy|/genres/urban-fantasy,dir56/67948.The_Armageddon_Rag.html,1599,The Armageddon Rag +4.33,129,0590112058,good_reads:book,https://www.goodreads.com/author/show/1036736.Katherine_Applegate,1997,/genres/science-fiction|/genres/childrens|/genres/young-adult|/genres/fantasy|/genres/fiction|/genres/science-fiction|/genres/aliens|/genres/animals,dir56/3326828-animorphs.html,2029,"Animorphs (Animorphs, #1-54)" +4.29,586,0007352840,good_reads:book,https://www.goodreads.com/author/show/1045593.Stacia_Kane,2010,/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/ghosts|/genres/fantasy|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/witches|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/adult|/genres/science-fiction|/genres/dystopia,dir56/7352840-city-of-ghosts.html,6006,"City of Ghosts (Downside Ghosts, #3)" +3.53,2077,1416549129,good_reads:book,https://www.goodreads.com/author/show/9987.Philippa_Gregory,2008,/genres/historical-fiction|/genres/fiction|/genres/romance|/genres/european-literature|/genres/british-literature|/genres/adult|/genres/romance|/genres/historical-romance,dir56/2241558.The_Other_Queen.html,25483,"The Other Queen (The Tudor Court, #6)" +4.10,229,0330266632,good_reads:book,https://www.goodreads.com/author/show/49699.Jackie_Collins,1975,/genres/romance|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/contemporary|/genres/drama|/genres/romance|/genres/contemporary-romance|/genres/adult|/genres/mystery|/genres/mystery|/genres/crime|/genres/womens-fiction,dir56/152403.Chances.html,6799,"Chances (Lucky Santangelo, #1)" +3.83,983,0575088877,good_reads:book,https://www.goodreads.com/author/show/2768002.Hannu_Rajaniemi,2010,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/cyberpunk|/genres/fantasy|/genres/mystery|/genres/science-fiction|/genres/space-opera,dir56/7562764-the-quantum-thief.html,8257,The Quantum Thief +4.01,623,0749935081,good_reads:book,https://www.goodreads.com/author/show/41313.Susan_Elizabeth_Phillips,2004,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/humor,dir56/373606.Ain_t_She_Sweet.html,12349,Ain't She Sweet +4.20,190,0140154272,good_reads:book,https://www.goodreads.com/author/show/874602.Ursula_K_Le_Guin,1984,/genres/fantasy|/genres/fiction|/genres/young-adult|/genres/classics|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/fantasy|/genres/dragons,dir56/68041.The_Earthsea_Quartet.html,4215,The Earthsea Quartet +3.86,1043,034911188X,good_reads:book,https://www.goodreads.com/author/show/4339.David_Foster_Wallace,1997,/genres/short-stories|/genres/fiction|/genres/literature|/genres/literature|/genres/american|/genres/literary-fiction|/genres/contemporary|/genres/writing|/genres/essays|/genres/humor|/genres/book-club|/genres/short-stories|/genres/short-story-collection,dir56/6753.Brief_Interviews_with_Hideous_Men.html,13257,Brief Interviews with Hideous Men +4.75,3,1481959824,good_reads:book,https://www.goodreads.com/author/show/5100743.Alexei_Maxim_Russell,2013,,dir56/17606460-why-not-world.html,8,Why Not-World +4.22,29,1489524509,good_reads:book,https://www.goodreads.com/author/show/6583811.Cristiane_Serruya,2014,/genres/romance,dir56/17801272-trust.html,89,"Trust (Trust Trilogy, #3)" +4.11,111,0915957671,good_reads:book,https://www.goodreads.com/author/show/22627.Jeffrey_Lang,1954,/genres/religion|/genres/islam|/genres/religion|/genres/non-fiction|/genres/spirituality|/genres/biography|/genres/asian-literature|/genres/indonesian-literature|/genres/biography|/genres/autobiography,dir56/533327.Even_Angels_Ask.html,818,Even Angels Ask +3.65,3602,1451695195,good_reads:book,https://www.goodreads.com/author/show/7046622.Eben_Alexander,2012,/genres/non-fiction|/genres/spirituality|/genres/religion|/genres/book-club|/genres/autobiography|/genres/memoir|/genres/biography|/genres/science|/genres/christian|/genres/medical|/genres/inspirational,dir56/15851746-proof-of-heaven.html,28405,Proof of Heaven +4.66,190,,good_reads:book,https://www.goodreads.com/author/show/4942228.Santino_Hassell,2011,/genres/romance|/genres/m-m-romance|/genres/science-fiction|/genres/dystopia|/genres/romance|/genres/dark|/genres/science-fiction|/genres/sociology|/genres/abuse|/genres/adult-fiction|/genres/erotica|/genres/action,dir56/11737700-fade.html,996,"Fade (In the company of shadows, #4)" +3.57,83,0684869241,good_reads:book,https://www.goodreads.com/author/show/49103.Jeanne_Kalogridis,2001,/genres/historical-fiction|/genres/fiction|/genres/fantasy|/genres/historical-fiction|/genres/medieval|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/witches|/genres/cultural|/genres/france|/genres/mystery|/genres/adult|/genres/fantasy|/genres/magic,dir56/1038645.The_Burning_Times.html,812,The Burning Times +4.44,40,149284490X,good_reads:book,https://www.goodreads.com/author/show/7153266.Tali_Carmi,2013,/genres/childrens,dir56/19332307-terry-treetop-finds-new-friends.html,93,Terry Treetop Finds New Friends +4.58,31,1500118680,good_reads:book,https://www.goodreads.com/author/show/7738947.Sarah_Robinson,2014,/genres/romance|/genres/new-adult,dir56/22023804-logan-s-story.html,45,"Logan's Story (Sand & Clay, #0.5)" +3.85,717,0553278746,good_reads:book,https://www.goodreads.com/author/show/14078.David_Brin,1985,/genres/science-fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fiction|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/apocalyptic|/genres/fantasy|/genres/science-fiction-fantasy|/genres/speculative-fiction|/genres/war|/genres/adventure,dir56/889284.The_Postman.html,18567,The Postman +4.45,93,1598160230,good_reads:book,https://www.goodreads.com/author/show/26306.Natsuki_Takaya,2004,/genres/sequential-art|/genres/manga|/genres/fantasy|/genres/romance|/genres/sequential-art|/genres/graphic-novels|/genres/young-adult|/genres/media-tie-in|/genres/anime|/genres/manga|/genres/shojo|/genres/fiction|/genres/comics-manga|/genres/sequential-art|/genres/comics,dir56/46906.Fruits_Basket_Volume_15.html,10623,"Fruits Basket, Volume 15" +4.03,139,8423919153,good_reads:book,https://www.goodreads.com/author/show/25536.Miguel_de_Unamuno,1914,/genres/european-literature|/genres/spanish-literature|/genres/fiction|/genres/classics|/genres/cultural|/genres/spain|/genres/literature|/genres/philosophy|/genres/novels|/genres/literature|/genres/20th-century|/genres/academic|/genres/school|/genres/adult-fiction,dir56/63137.Niebla.html,4117,Niebla +4.17,180,0062517392,good_reads:book,https://www.goodreads.com/author/show/6456288.Raymond_A_Moody_Jr_,1975,/genres/spirituality|/genres/non-fiction|/genres/psychology|/genres/religion|/genres/science|/genres/fantasy|/genres/paranormal|/genres/death|/genres/spirituality|/genres/new-age|/genres/philosophy|/genres/classics,dir56/59598.Life_After_Life.html,3339,Life After Life +3.85,587,0312351747,good_reads:book,https://www.goodreads.com/author/show/55824.Paul_Neilan,2006,/genres/fiction|/genres/humor|/genres/humor|/genres/funny|/genres/humor|/genres/comedy|/genres/thriller|/genres/contemporary|/genres/mystery|/genres/dark|/genres/mystery|/genres/crime|/genres/culture,dir56/97084.Apathy_and_Other_Small_Victories.html,5520,Apathy and Other Small Victories +4.00,3794,0446696617,good_reads:book,https://www.goodreads.com/author/show/3780.James_Patterson,2000,/genres/mystery|/genres/fiction|/genres/mystery|/genres/crime|/genres/thriller|/genres/suspense|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/murder-mystery|/genres/mystery|/genres/detective|/genres/adult|/genres/adult-fiction,dir56/13137.1st_to_Die.html,161838,"1st to Die (Women's Murder Club, #1)" +4.21,83,0940322668,good_reads:book,https://www.goodreads.com/author/show/9796.Robert_Burton,1621,/genres/psychology|/genres/philosophy|/genres/non-fiction|/genres/classics|/genres/writing|/genres/essays|/genres/science|/genres/history|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/literature|/genres/17th-century,dir56/557658.The_Anatomy_of_Melancholy.html,720,The Anatomy of Melancholy +4.30,136,0064401103,good_reads:book,https://www.goodreads.com/author/show/5306.Maud_Hart_Lovelace,1945,/genres/classics|/genres/historical-fiction|/genres/fiction|/genres/young-adult|/genres/childrens|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/childrens-classics|/genres/family|/genres/literature|/genres/american|/genres/childrens|/genres/middle-grade,dir56/7907.Heaven_to_Betsy.html,3773,"Heaven to Betsy (Betsy-Tacy, #5)" +4.14,196,037572706X,good_reads:book,https://www.goodreads.com/author/show/5657.Gore_Vidal,1964,/genres/historical-fiction|/genres/fiction|/genres/literature|/genres/novels|/genres/cultural|/genres/italy|/genres/religion|/genres/literature|/genres/ancient|/genres/literature|/genres/american|/genres/roman|/genres/politics,dir57/8719.Julian.html,3157,Julian +4.66,312,0842384898,good_reads:book,https://www.goodreads.com/author/show/5158478.Anonymous,1902,/genres/christian|/genres/religion|/genres/non-fiction|/genres/reference|/genres/religion|/genres/christianity|/genres/religion|/genres/faith|/genres/spirituality|/genres/religion|/genres/theology|/genres/history|/genres/classics,dir57/930470.Holy_Bible.html,2666,Holy Bible +4.30,216,0743203305,good_reads:book,https://www.goodreads.com/author/show/9334.Nicholas_Christopher,2000,/genres/fiction|/genres/magical-realism|/genres/fantasy|/genres/novels|/genres/contemporary|/genres/book-club|/genres/young-adult|/genres/coming-of-age|/genres/literary-fiction,dir57/14967.A_Trip_to_the_Stars.html,1305,A Trip to the Stars +4.10,277,,good_reads:book,https://www.goodreads.com/author/show/6522377._,1999,/genres/self-help|/genres/non-fiction,dir57/2029495._.html,3478,المفاتيح العشرة للنجاح +3.88,408,0312997140,good_reads:book,https://www.goodreads.com/author/show/4820.Jeffrey_Archer,1982,/genres/fiction|/genres/thriller|/genres/historical-fiction|/genres/drama|/genres/novels|/genres/mystery|/genres/thriller|/genres/mystery-thriller|/genres/politics|/genres/contemporary|/genres/suspense,dir57/78987.The_Prodigal_Daughter.html,17850,"The Prodigal Daughter (Kane & Abel, #2)" +4.13,291,0515131083,good_reads:book,https://www.goodreads.com/author/show/36935.Dorothea_Benton_Frank,2001,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/american|/genres/southern|/genres/romance|/genres/adult|/genres/womens-fiction|/genres/contemporary|/genres/drama|/genres/womens|/genres/adult-fiction,dir57/65397.Plantation.html,5754,Plantation (Lowcountry Tales #2) +3.87,601,1439171211,good_reads:book,https://www.goodreads.com/author/show/16593.Sam_Harris,2010,/genres/philosophy|/genres/science|/genres/non-fiction|/genres/religion|/genres/religion|/genres/atheism|/genres/psychology|/genres/biology|/genres/neuroscience|/genres/sociology|/genres/culture|/genres/philosophy|/genres/skepticism,dir57/7785194-the-moral-landscape.html,9821,The Moral Landscape +4.66,513,0007444397,good_reads:book,https://www.goodreads.com/author/show/4659154.One_Direction,2011,/genres/non-fiction|/genres/biography,dir57/11792612-dare-to-dream.html,5572,Dare to Dream (100% Official) +4.18,598,0345515587,good_reads:book,https://www.goodreads.com/author/show/1045593.Stacia_Kane,2010,/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/ghosts|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/witches|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/adult|/genres/mystery,dir57/6557156-unholy-magic.html,5756,"Unholy Magic (Downside Ghosts, #2)" +3.81,730,0345455916,good_reads:book,https://www.goodreads.com/author/show/3502.Alice_Hoffman,2003,/genres/fiction|/genres/magical-realism|/genres/fantasy|/genres/womens-fiction|/genres/chick-lit|/genres/adult-fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/magic|/genres/contemporary|/genres/fantasy|/genres/supernatural|/genres/romance,dir57/22898.The_Probable_Future.html,8531,The Probable Future +3.82,489,,good_reads:book,https://www.goodreads.com/author/show/240840.Evangeline_Anderson,2011,/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/science-fiction|/genres/science-fiction|/genres/aliens|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/adult|/genres/romance|/genres/science-fiction-romance|/genres/romance|/genres/erotic-romance,dir57/10439221-claimed.html,6129,"Claimed (Brides of the Kindred, #1)" +4.25,248,074344647X,good_reads:book,https://www.goodreads.com/author/show/56002.James_O_Barr,1989,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/horror|/genres/fantasy|/genres/fiction|/genres/graphic-novels-comics|/genres/gothic|/genres/mystery|/genres/crime|/genres/dark|/genres/comics|/genres/comic-book,dir57/97486.The_Crow.html,6959,The Crow +3.79,1900,0316032220,good_reads:book,https://www.goodreads.com/author/show/1351359.Josh_Bazell,2008,/genres/fiction|/genres/thriller|/genres/mystery|/genres/mystery|/genres/crime|/genres/humor|/genres/thriller|/genres/mystery-thriller|/genres/book-club|/genres/suspense|/genres/adult-fiction|/genres/adult,dir57/3173125-beat-the-reaper.html,10089,Beat the Reaper (Peter Brown #1) +3.89,547,,good_reads:book,https://www.goodreads.com/author/show/838768.Tere_Liye,2010,/genres/novels|/genres/romance|/genres/fiction|/genres/asian-literature|/genres/indonesian-literature|/genres/love|/genres/young-adult|/genres/drama|/genres/family,dir57/8343444-daun-yang-jatuh-tak-pernah-membenci-angin.html,4812,Daun Yang Jatuh Tak Pernah Membenci Angin +3.72,698,,good_reads:book,https://www.goodreads.com/author/show/1340291._,2012,/genres/novels|/genres/politics,dir57/15722923.html,3913,مولانا +3.75,80,0452275717,good_reads:book,https://www.goodreads.com/author/show/12584.E_L_Doctorow,1960,/genres/fiction|/genres/western|/genres/historical-fiction|/genres/literature|/genres/literary-fiction|/genres/american|/genres/americana|/genres/literature|/genres/american|/genres/novels|/genres/american|/genres/american-fiction|/genres/history|/genres/american-history,dir57/24915.Welcome_to_Hard_Times.html,807,Welcome to Hard Times +4.28,45,0373828799,good_reads:book,https://www.goodreads.com/author/show/2983922.Carla_Capshaw,2011,/genres/christian-fiction|/genres/historical-fiction|/genres/romance|/genres/romance|/genres/historical-romance|/genres/christian|/genres/category-romance|/genres/love-inspired|/genres/romance|/genres/christian-romance|/genres/love-inspired|/genres/love-inspired-historical|/genres/fiction|/genres/inspirational,dir57/10662095-the-champion.html,306,The Champion +4.37,59,0966446119,good_reads:book,https://www.goodreads.com/author/show/756.Warren_Buffett,1998,/genres/business|/genres/non-fiction|/genres/economics|/genres/management|/genres/writing|/genres/essays|/genres/biography|/genres/biography|/genres/autobiography,dir57/145565.The_Essays_of_Warren_Buffett.html,1681,The Essays of Warren Buffett +4.44,4,1495907791,good_reads:book,https://www.goodreads.com/author/show/7399883.Maria_Johnsen,2014,,dir57/20835408-the-afternoon-when-she-died.html,9,The Afternoon When She Died +4.52,462,0991190920,good_reads:book,https://www.goodreads.com/author/show/7092218.Amelia_Hutchins,2014,/genres/fantasy|/genres/paranormal|/genres/fairies|/genres/fae|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/paranormal|/genres/vampires|/genres/adult-fiction|/genres/erotica|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/adult,dir57/18188649-escaping-destiny.html,3795,"Escaping Destiny (The Fae Chronicles, #3)" +4.11,74,2070367983,good_reads:book,https://www.goodreads.com/author/show/7732.Marguerite_Yourcenar,1968,/genres/fiction|/genres/historical-fiction|/genres/cultural|/genres/france|/genres/european-literature|/genres/french-literature|/genres/classics|/genres/literature|/genres/roman|/genres/novels|/genres/literature|/genres/20th-century|/genres/cultural|/genres/belgium,dir57/953435.L_uvre_au_noir.html,1601,L'Œuvre au noir +3.87,1363,0802170374,good_reads:book,https://www.goodreads.com/author/show/4174.Sherman_Alexie,2007,/genres/fiction|/genres/young-adult|/genres/fantasy|/genres/science-fiction|/genres/time-travel|/genres/historical-fiction|/genres/novels|/genres/book-club|/genres/magical-realism|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/coming-of-age,dir57/52872.Flight.html,8269,Flight +4.00,901,,good_reads:book,https://www.goodreads.com/author/show/3012699.Ahmad_Fuadi,2009,/genres/novels|/genres/fiction|/genres/asian-literature|/genres/indonesian-literature|/genres/inspirational|/genres/religion|/genres/islam|/genres/religion|/genres/drama|/genres/true-story|/genres/adventure|/genres/realistic-fiction|/genres/slice-of-life,dir57/6688121-negeri-5-menara.html,7278,"Negeri 5 Menara (Negeri 5 Menara, #1)" +3.72,1104,0618959718,good_reads:book,https://www.goodreads.com/author/show/361963.Catherine_Gilbert_Murdock,2008,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/fairy-tales|/genres/romance|/genres/fantasy|/genres/magic|/genres/fiction|/genres/young-adult|/genres/teen|/genres/adventure|/genres/young-adult|/genres/young-adult-fantasy|/genres/fantasy|/genres/dragons,dir57/2153427.Princess_Ben.html,12149,Princess Ben +3.92,385,0425184226,good_reads:book,https://www.goodreads.com/author/show/3892.Tom_Clancy,1990,/genres/fiction|/genres/thriller|/genres/action|/genres/spy-thriller|/genres/espionage|/genres/war|/genres/military|/genres/suspense|/genres/adventure|/genres/mystery,dir57/34993.The_Sum_of_All_Fears.html,31831,"The Sum of All Fears (Jack Ryan, #6)" +3.74,657,0007382227,good_reads:book,https://www.goodreads.com/author/show/3002235.Rebecca_Lim,2010,/genres/paranormal|/genres/angels|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/mystery|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/teen,dir57/8373527-mercy.html,5085,"Mercy (Mercy, #1)" +3.56,2052,0061728918,good_reads:book,https://www.goodreads.com/author/show/4415.Candace_Bushnell,2010,/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/romance|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/realistic-fiction|/genres/young-adult|/genres/high-school|/genres/young-adult|/genres/coming-of-age|/genres/young-adult|/genres/young-adult-contemporary,dir57/7091370-the-carrie-diaries.html,24953,"The Carrie Diaries (The Carrie Diaries, #1)" +3.95,467,0803733402,good_reads:book,https://www.goodreads.com/author/show/2753954.Nick_Burd,2009,/genres/young-adult|/genres/glbt|/genres/fiction|/genres/romance|/genres/realistic-fiction|/genres/contemporary|/genres/romance|/genres/m-m-romance|/genres/glbt|/genres/gay|/genres/young-adult|/genres/coming-of-age|/genres/glbt|/genres/queer,dir57/6017769-the-vast-fields-of-ordinary.html,6053,The Vast Fields of Ordinary +4.17,355,0765319233,good_reads:book,https://www.goodreads.com/author/show/13026.Glen_Cook,1986,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/dark-fantasy|/genres/science-fiction-fantasy|/genres/war|/genres/military|/genres/dark|/genres/fantasy|/genres/high-fantasy|/genres/war|/genres/epic,dir57/400924.Chronicles_of_the_Black_Company.html,11736,"Chronicles of the Black Company (The Chronicles of the Black Company, #1-3)" +3.79,5,,good_reads:book,https://www.goodreads.com/author/show/5065152.T_D_McMichael,2011,/genres/fantasy|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/glbt|/genres/lesbian,dir57/12126366-the-wiccan-diaries.html,90,"The Wiccan Diaries (The Wiccan Diaries, #1)" +4.33,585,0312550057,good_reads:book,https://www.goodreads.com/author/show/4430.Sherrilyn_Kenyon,2011,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/demons|/genres/adult|/genres/paranormal|/genres/shapeshifters,dir57/10649555-the-guardian.html,10884,"The Guardian (Dream-Hunter, #5; Were-Hunter, #6)" +4.30,213,0684864185,good_reads:book,https://www.goodreads.com/author/show/79095.Claude_Brown,1965,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/biography|/genres/cultural|/genres/african-american|/genres/biography|/genres/autobiography|/genres/classics|/genres/history|/genres/race|/genres/biography-memoir,dir57/289114.Manchild_in_the_Promised_Land.html,4386,Manchild in the Promised Land +4.25,450,0810949148,good_reads:book,https://www.goodreads.com/author/show/65335.Michael_Buckley,2006,/genres/fantasy|/genres/mystery|/genres/fantasy|/genres/fairy-tales|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/adventure|/genres/fantasy|/genres/magic|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/juvenile,dir57/176326.The_Problem_Child.html,11047,"The Problem Child (The Sisters Grimm, #3)" +4.25,28,,good_reads:book,https://www.goodreads.com/author/show/6549592.Maggie_Thom,2012,/genres/romance|/genres/suspense|/genres/mystery|/genres/thriller|/genres/mystery-thriller,dir57/16069470-captured-lies.html,44,"Captured Lies (Caspian Wine, #1)" +3.98,95,0486286118,good_reads:book,https://www.goodreads.com/author/show/38266.Selma_Lagerl_f,1907,/genres/fantasy|/genres/childrens|/genres/european-literature|/genres/scandinavian-literature|/genres/european-literature|/genres/swedish-literature|/genres/adventure|/genres/classics|/genres/cultural|/genres/sweden|/genres/nobel-prize|/genres/travel|/genres/literature|/genres/20th-century,dir57/771287.The_Wonderful_Adventures_of_Nils.html,4681,The Wonderful Adventures of Nils +4.54,958,0778315703,good_reads:book,https://www.goodreads.com/author/show/4480131.Tiffany_Reisz,2013,/genres/erotica|/genres/bdsm|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/dark|/genres/adult|/genres/contemporary|/genres/romance|/genres/erotic-romance|/genres/romance|/genres/contemporary-romance|/genres/fiction|/genres/romance|/genres/m-m-romance,dir57/17251444-the-mistress.html,4869,"The Mistress (The Original Sinners, #4)" +4.33,37,0373828403,good_reads:book,https://www.goodreads.com/author/show/2983922.Carla_Capshaw,2010,/genres/christian-fiction|/genres/romance|/genres/category-romance|/genres/love-inspired|/genres/historical-fiction|/genres/christian|/genres/romance|/genres/historical-romance|/genres/love-inspired|/genres/love-inspired-historical|/genres/romance|/genres/christian-romance|/genres/fiction,dir57/7685306-the-protector.html,289,The Protector +4.27,416,0375724427,good_reads:book,https://www.goodreads.com/author/show/7464.John_Cheever,1978,/genres/short-stories|/genres/fiction|/genres/classics|/genres/literature|/genres/literature|/genres/american,dir57/11686.The_Stories_of_John_Cheever.html,8755,The Stories of John Cheever +3.60,138,0606255206,good_reads:book,https://www.goodreads.com/author/show/26.Anne_McCaffrey,1997,/genres/fantasy|/genres/science-fiction|/genres/science-fiction-fantasy|/genres/fiction|/genres/young-adult|/genres/science-fiction|/genres/aliens|/genres/fantasy|/genres/unicorns|/genres/adult|/genres/adventure|/genres/science-fiction|/genres/space-opera,dir57/177928.Acorna.html,6840,Acorna (Acorna #1) +4.17,209,1405208198,good_reads:book,https://www.goodreads.com/author/show/2802356.Herg_,1959,/genres/sequential-art|/genres/comics|/genres/sequential-art|/genres/graphic-novels|/genres/adventure|/genres/fiction|/genres/sequential-art|/genres/bande-dessin%C3%A9e|/genres/childrens|/genres/comics|/genres/comic-book|/genres/graphic-novels-comics|/genres/sequential-art|/genres/komik|/genres/cultural|/genres/france,dir57/87425.Tintin_in_Tibet.html,8199,"Tintin in Tibet (Tintin, #20)" +3.97,267,0684874318,good_reads:book,https://www.goodreads.com/author/show/1432.Michael_Cunningham,1982,/genres/fiction|/genres/contemporary|/genres/glbt|/genres/literature|/genres/glbt|/genres/gay|/genres/literary-fiction|/genres/family|/genres/literature|/genres/american|/genres/glbt|/genres/queer|/genres/adult-fiction,dir57/2139.Flesh_And_Blood.html,3224,Flesh And Blood +3.96,752,0060094893,good_reads:book,https://www.goodreads.com/author/show/28010.Chris_Crutcher,1993,/genres/young-adult|/genres/fiction|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/sports-and-games|/genres/sports|/genres/contemporary|/genres/young-adult|/genres/coming-of-age|/genres/academic|/genres/school|/genres/sociology|/genres/abuse|/genres/mental-health|/genres/mental-illness,dir57/51740.Staying_Fat_for_Sarah_Byrnes.html,9216,Staying Fat for Sarah Byrnes +4.70,158,1417642165,good_reads:book,https://www.goodreads.com/author/show/13778.Bill_Watterson,1992,/genres/sequential-art|/genres/comics|/genres/humor|/genres/fiction|/genres/sequential-art|/genres/graphic-novels|/genres/comics|/genres/comic-book|/genres/sequential-art|/genres/comic-strips|/genres/humor|/genres/comedy|/genres/humor|/genres/funny|/genres/sequential-art|/genres/cartoon|/genres/graphic-novels-comics,dir57/70487.Calvin_and_Hobbes.html,9224,Calvin and Hobbes +3.55,193,0061122165,good_reads:book,https://www.goodreads.com/author/show/166079.Emily_Maguire,2004,/genres/fiction|/genres/dark|/genres/adult-fiction|/genres/erotica|/genres/adult|/genres/sociology|/genres/abuse|/genres/romance|/genres/adult-fiction|/genres/contemporary|/genres/drama,dir57/286276.Taming_the_Beast.html,1064,Taming the Beast +3.73,273,031601768X,good_reads:book,https://www.goodreads.com/author/show/12665.Cecily_von_Ziegesar,2007,/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/romance|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/high-school|/genres/realistic-fiction|/genres/drama|/genres/adolescence,dir57/561402.It_Had_to_Be_You.html,8520,"It Had to Be You (Gossip Girl, #0.5)" +4.20,206,0850515033,good_reads:book,https://www.goodreads.com/author/show/22458.Machado_de_Assis,1889,/genres/fiction|/genres/cultural|/genres/brazil|/genres/literature|/genres/classics|/genres/romance|/genres/literature|/genres/19th-century|/genres/academic|/genres/school|/genres/novels|/genres/cultural|/genres/latin-american|/genres/academic|/genres/read-for-school,dir57/82888.Dom_Casmurro.html,7121,Dom Casmurro +3.84,172,1596921862,good_reads:book,https://www.goodreads.com/author/show/41586.Will_Christopher_Baer,1998,/genres/fiction|/genres/mystery|/genres/mystery|/genres/noir|/genres/thriller|/genres/mystery|/genres/crime|/genres/contemporary|/genres/dark|/genres/adult-fiction|/genres/thriller|/genres/mystery-thriller|/genres/novels,dir57/185748.Kiss_Me_Judas.html,2666,"Kiss Me, Judas" +3.85,162,0486419266,good_reads:book,https://www.goodreads.com/author/show/439723.Karel_apek,1921,/genres/science-fiction|/genres/plays|/genres/drama|/genres/european-literature|/genres/czech-literature|/genres/classics|/genres/fiction|/genres/academic|/genres/school|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/robots,dir57/436562.R_U_R_.html,2810,R.U.R. +4.18,1096,0060929510,good_reads:book,https://www.goodreads.com/author/show/13485.Ralph_Helfer,1997,/genres/non-fiction|/genres/animals|/genres/biography|/genres/book-club|/genres/autobiography|/genres/memoir|/genres/history|/genres/environment|/genres/nature|/genres/adventure|/genres/adult|/genres/childrens|/genres/picture-books,dir57/23982.Modoc.html,5244,Modoc +4.06,156,1416925236,good_reads:book,https://www.goodreads.com/author/show/31468.Todd_Strasser,2009,/genres/young-adult|/genres/realistic-fiction|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/teen|/genres/fiction|/genres/contemporary|/genres/family|/genres/cultural|/genres/african-american|/genres/mystery|/genres/crime|/genres/academic|/genres/school,dir57/4418237-if-i-grow-up.html,897,If I Grow Up +3.89,568,1595544941,good_reads:book,https://www.goodreads.com/author/show/230226.Robert_Liparulo,2008,/genres/young-adult|/genres/fantasy|/genres/horror|/genres/mystery|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/time-travel|/genres/christian|/genres/christian-fiction|/genres/adventure,dir57/2330877.House_of_Dark_Shadows.html,4207,"House of Dark Shadows (Dreamhouse Kings, #1)" +4.32,74,9584520865,good_reads:book,https://www.goodreads.com/author/show/3094787.Carolina_Andujar,2009,/genres/paranormal|/genres/vampires|/genres/romance|/genres/fantasy|/genres/horror|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/european-literature|/genres/spanish-literature,dir57/6917863-vampyr.html,803,Vampyr +3.69,1072,1439197059,good_reads:book,https://www.goodreads.com/author/show/3387293.Alma_Katsu,2011,/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/historical-fiction|/genres/romance|/genres/fiction|/genres/romance|/genres/paranormal-romance|/genres/adult|/genres/mystery|/genres/fantasy|/genres/supernatural|/genres/adult-fiction,dir57/7766064-the-taker.html,5235,"The Taker (The Taker, #1)" +4.41,300,0571220320,good_reads:book,https://www.goodreads.com/author/show/77295.Martin_McDonagh,2003,/genres/plays|/genres/drama|/genres/plays|/genres/theatre|/genres/fiction|/genres/european-literature|/genres/irish-literature|/genres/horror|/genres/mystery|/genres/crime|/genres/science-fiction|/genres/dystopia,dir57/133974.The_Pillowman.html,5083,The Pillowman +4.16,229,0440219760,good_reads:book,https://www.goodreads.com/author/show/18.Gary_Paulsen,1998,/genres/science-fiction|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/adventure|/genres/science-fiction|/genres/time-travel|/genres/science-fiction|/genres/dystopia|/genres/childrens|/genres/adventure|/genres/survival|/genres/young-adult|/genres/teen,dir57/121807.The_Transall_Saga.html,2591,The Transall Saga +4.11,566,1601421125,good_reads:book,https://www.goodreads.com/author/show/1398188.Alex_Harris,2008,/genres/non-fiction|/genres/christian|/genres/religion|/genres/christianity|/genres/parenting|/genres/self-help|/genres/inspirational|/genres/religion|/genres/religion|/genres/theology|/genres/religion|/genres/faith|/genres/education,dir57/1958785.Do_Hard_Things.html,6589,Do Hard Things +3.94,543,,good_reads:book,https://www.goodreads.com/author/show/75844.Allan_Pease,2006,/genres/psychology|/genres/non-fiction|/genres/self-help|/genres/business|/genres/science|/genres/language|/genres/communication|/genres/reference|/genres/humanities|/genres/language|/genres/sociology|/genres/self-help|/genres/personal-development,dir57/262731.The_Definitive_Book_of_Body_Language.html,9576,The Definitive Book of Body Language +4.80,8,1469908530,good_reads:book,https://www.goodreads.com/author/show/4695431.Joe_Egly,2012,/genres/fantasy,dir57/15734769-myrtle-mae-and-the-mirror-in-the-attic.html,10,"Myrtle Mae and the Mirror in the Attic (The Mae Chronicles, #1)" +4.32,44,,good_reads:book,https://www.goodreads.com/author/show/25307.Robin_Hobb,NA,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/high-fantasy|/genres/sci-fi-fantasy|/genres/adventure,dir57/5533041-assassin-s-apprentice-royal-assassin.html,3850,"Assassin's Apprentice / Royal Assassin (Farseer Trilogy, #1-2)" +4.03,2203,0778329860,good_reads:book,https://www.goodreads.com/author/show/93345.Diane_Chamberlain,2011,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/book-club|/genres/mystery|/genres/drama|/genres/contemporary|/genres/adult-fiction|/genres/adult|/genres/womens-fiction|/genres/family,dir57/10059498-the-midwife-s-confession.html,17548,The Midwife's Confession +4.26,312,1419939041,good_reads:book,https://www.goodreads.com/author/show/3190846.Laurann_Dohner,2012,/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/science-fiction|/genres/paranormal|/genres/shapeshifters|/genres/fantasy|/genres/adult,dir57/13107661-wrath.html,7128,"Wrath (New Species, #6)" +4.06,1296,0141311401,good_reads:book,https://www.goodreads.com/author/show/4273.Roald_Dahl,1984,/genres/non-fiction|/genres/biography|/genres/childrens|/genres/autobiography|/genres/memoir|/genres/biography|/genres/autobiography|/genres/biography-memoir|/genres/classics|/genres/humor|/genres/academic|/genres/school|/genres/european-literature|/genres/british-literature,dir57/6667.Boy.html,28605,Boy +4.10,182,0802135358,good_reads:book,https://www.goodreads.com/author/show/40577.Matt_Ruff,1988,/genres/fantasy|/genres/fiction|/genres/humor|/genres/fantasy|/genres/urban-fantasy|/genres/literature|/genres/american|/genres/magical-realism|/genres/contemporary|/genres/science-fiction-fantasy|/genres/academic|/genres/college|/genres/humor|/genres/comedy,dir57/71840.Fool_on_the_Hill.html,2598,Fool on the Hill +3.66,3111,0385533853,good_reads:book,https://www.goodreads.com/author/show/33773.Daniel_H_Wilson,2011,/genres/science-fiction|/genres/fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/robots|/genres/thriller|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/apocalyptic,dir57/9634967-robopocalypse.html,21656,"Robopocalypse (Robopocalypse, #1)" +3.73,13,,good_reads:book,https://www.goodreads.com/author/show/2968774.Nathan_Erez,2014,/genres/mystery|/genres/thriller|/genres/thriller|/genres/mystery-thriller|/genres/suspense,dir57/22084848-the-kabbalistic-murder-code.html,41,The Kabbalistic Murder Code +4.53,61,,good_reads:book,https://www.goodreads.com/author/show/7738947.Sarah_Robinson,2014,/genres/romance|/genres/new-adult|/genres/mystery|/genres/crime|/genres/mystery,dir57/20975446-tainted-pictures.html,103,"Tainted Pictures (Photographer Trilogy, #2)" +4.47,102,0764210262,good_reads:book,https://www.goodreads.com/author/show/3145809.Anne_Elisabeth_Stengl,2012,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/christian|/genres/christian-fiction|/genres/fantasy|/genres/dragons|/genres/fiction|/genres/young-adult|/genres/young-adult-fantasy|/genres/fantasy|/genres/fairy-tales|/genres/adventure,dir57/13496575-starflower.html,339,"Starflower (Tales of Goldstone Wood, #4)" +4.24,375,0671870114,good_reads:book,https://www.goodreads.com/author/show/6251.Julie_Garwood,1993,/genres/romance|/genres/romance|/genres/historical-romance|/genres/historical-fiction|/genres/medieval|/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/scotland|/genres/historical-romance|/genres/medieval-romance|/genres/adult|/genres/humor|/genres/funny|/genres/adult-fiction,dir57/133241.Saving_Grace.html,14678,Saving Grace +3.85,179,0440219507,good_reads:book,https://www.goodreads.com/author/show/106.Madeleine_L_Engle,1994,/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/childrens|/genres/adventure|/genres/mystery|/genres/young-adult|/genres/teen|/genres/science-fiction|/genres/romance|/genres/adult,dir57/129647.Troubling_a_Star.html,5212,"Troubling a Star (Austin Family, #7)" +4.43,120,1595324038,good_reads:book,https://www.goodreads.com/author/show/26306.Natsuki_Takaya,2002,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/manga|/genres/young-adult|/genres/media-tie-in|/genres/anime|/genres/manga|/genres/shojo|/genres/fiction|/genres/sequential-art|/genres/comics|/genres/fantasy|/genres/supernatural|/genres/comics-manga,dir57/856937.Fruits_Basket_Volume_08.html,9972,"Fruits Basket, Volume 08" +3.72,492,0375760903,good_reads:book,https://www.goodreads.com/author/show/27874.David_Liss,2002,/genres/historical-fiction|/genres/fiction|/genres/mystery|/genres/book-club|/genres/thriller|/genres/literature|/genres/jewish|/genres/mystery|/genres/historical-mystery|/genres/novels|/genres/economics|/genres/cultural|/genres/holland,dir57/49491.The_Coffee_Trader.html,4407,The Coffee Trader +3.95,295,0312367929,good_reads:book,https://www.goodreads.com/author/show/768194.Autumn_Cornwell,2007,/genres/young-adult|/genres/fiction|/genres/travel|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/adventure|/genres/realistic-fiction|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/humor,dir57/1663664.Carpe_Diem.html,1696,Carpe Diem +4.16,859,,good_reads:book,https://www.goodreads.com/author/show/1408290._,1963,/genres/novels|/genres/fiction|/genres/short-stories|/genres/literature|/genres/politics|/genres/academic|/genres/school|/genres/academic|/genres/read-for-school|/genres/historical-fiction|/genres/literature|/genres/20th-century|/genres/war,dir57/4653511.html,5993,رجال في الشمس +3.88,235,0553383574,good_reads:book,https://www.goodreads.com/author/show/33919.Jeff_VanderMeer,2002,/genres/fantasy|/genres/fiction|/genres/short-stories|/genres/weird-fiction|/genres/new-weird|/genres/science-fiction|/genres/steampunk|/genres/science-fiction|/genres/fantasy|/genres/weird-fiction|/genres/speculative-fiction|/genres/horror|/genres/fantasy|/genres/urban-fantasy,dir57/230852.City_of_Saints_and_Madmen.html,2828,"City of Saints and Madmen (Ambergris, #1)" +3.52,541,159514062X,good_reads:book,https://www.goodreads.com/author/show/13957.Scott_Westerfeld,2006,/genres/young-adult|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/science-fiction|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/horror|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural,dir57/24764.The_Last_Days.html,7757,"The Last Days (Peeps, #2)" +4.11,153,1847288650,good_reads:book,https://www.goodreads.com/author/show/332067.Jesse_Hajicek,2006,/genres/fantasy|/genres/romance|/genres/m-m-romance|/genres/romance|/genres/glbt|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/steampunk|/genres/glbt|/genres/gay|/genres/fantasy|/genres/magic|/genres/science-fiction,dir57/613268.The_God_Eaters.html,1598,The God Eaters +4.13,237,1416914161,good_reads:book,https://www.goodreads.com/author/show/74046.D_J_MacHale,2007,/genres/fantasy|/genres/young-adult|/genres/science-fiction|/genres/adventure|/genres/fiction|/genres/young-adult|/genres/teen|/genres/childrens|/genres/science-fiction|/genres/time-travel|/genres/young-adult|/genres/young-adult-fantasy|/genres/childrens|/genres/middle-grade,dir57/215539.The_Pilgrims_of_Rayne.html,17796,"The Pilgrims of Rayne (Pendragon, #8)" +4.18,200,0671697994,good_reads:book,https://www.goodreads.com/author/show/16094.Lois_McMaster_Bujold,1989,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/space-opera|/genres/science-fiction-fantasy|/genres/space|/genres/adventure|/genres/fantasy|/genres/speculative-fiction|/genres/war|/genres/military|/genres/sci-fi-fantasy,dir57/296182.Brothers_in_Arms.html,7576,"Brothers in Arms (Vorkosigan Saga, #5)" +3.88,587,0671729462,good_reads:book,https://www.goodreads.com/author/show/1353301.V_C_Andrews,1982,/genres/fiction|/genres/horror|/genres/young-adult|/genres/gothic|/genres/romance|/genres/mystery|/genres/womens-fiction|/genres/chick-lit|/genres/thriller|/genres/drama|/genres/adult-fiction,dir57/805023.My_Sweet_Audrina.html,15084,My Sweet Audrina +3.94,11,8617049901,good_reads:book,https://www.goodreads.com/author/show/1105348.Vladan_Desnica,1957,/genres/fiction|/genres/classics|/genres/novels|/genres/european-literature|/genres/serbian-literature,dir57/6621972-prolje-a-ivana-galeba.html,308,Proljeća Ivana Galeba +4.03,536,0312575947,good_reads:book,https://www.goodreads.com/author/show/51118.Jenna_Black,2010,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fairies|/genres/fantasy|/genres/paranormal|/genres/fairies|/genres/fae|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/magic|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural,dir57/8161632-shadowspell.html,9661,"Shadowspell (Faeriewalker, #2)" +3.90,267,0765356163,good_reads:book,https://www.goodreads.com/author/show/82540.Sara_Douglass,1995,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/science-fiction|/genres/adult|/genres/romance|/genres/fantasy|/genres/magic|/genres/epic,dir57/231989.The_Wayfarer_Redemption.html,11245,"The Wayfarer Redemption (Wayfarer Redemption, #1)" +4.33,956,,good_reads:book,https://www.goodreads.com/author/show/1408290._,1969,/genres/novels,dir57/3331756.html,5276,عائد إلى حيفا +4.56,204,,good_reads:book,https://www.goodreads.com/author/show/3097905.Colleen_Houck,NA,/genres/fantasy|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/paranormal,dir57/12474623-tiger-s-dream.html,895,"Tiger's Dream (The Tiger Saga, #5)" +3.38,130,067973449X,good_reads:book,https://www.goodreads.com/author/show/11337.Martin_Amis,1975,/genres/fiction|/genres/thriller|/genres/contemporary|/genres/dark|/genres/novels|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/adult-fiction|/genres/literature|/genres/20th-century|/genres/social,dir57/18833.Dead_Babies.html,2987,Dead Babies +4.33,329,0192793519,good_reads:book,https://www.goodreads.com/author/show/4042181.Joss_Stirling,2012,/genres/romance|/genres/young-adult|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/supernatural|/genres/mystery|/genres/young-adult|/genres/young-adult-paranormal|/genres/action,dir57/13181901-seeking-crystal.html,3078,"Seeking Crystal (Benedicts, #3)" +4.13,559,067002497X,good_reads:book,https://www.goodreads.com/author/show/3618.Philip_Pullman,2012,/genres/fantasy|/genres/classics|/genres/fiction|/genres/fantasy|/genres/fairy-tales|/genres/short-stories|/genres/childrens,dir57/13554713-fairy-tales-from-the-brothers-grimm.html,16448,Fairy Tales from the Brothers Grimm +3.95,708,0060817321,good_reads:book,https://www.goodreads.com/author/show/63356.Josh_Kilmer_Purcell,2006,/genres/autobiography|/genres/memoir|/genres/non-fiction|/genres/glbt|/genres/biography|/genres/humor|/genres/glbt|/genres/queer|/genres/glbt|/genres/gay|/genres/biography-memoir|/genres/biography|/genres/autobiography|/genres/book-club,dir57/109520.I_Am_Not_Myself_These_Days.html,7860,I Am Not Myself These Days +3.80,257,0671451626,good_reads:book,https://www.goodreads.com/author/show/25545.Oriana_Fallaci,1975,/genres/novels|/genres/fiction|/genres/literature|/genres/cultural|/genres/italy|/genres/european-literature|/genres/italian-literature|/genres/womens,dir57/79429.Letter_to_a_Child_Never_Born.html,4241,Letter to a Child Never Born +3.78,300,0224090577,good_reads:book,https://www.goodreads.com/author/show/490256.Kevin_Barry,2011,/genres/fiction|/genres/fantasy|/genres/european-literature|/genres/irish-literature|/genres/cultural|/genres/ireland|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/novels|/genres/book-club|/genres/contemporary|/genres/literary-fiction,dir57/10277268-city-of-bohane.html,1450,City of Bohane +4.26,93,0812970047,good_reads:book,https://www.goodreads.com/author/show/1240.Jack_London,1915,/genres/fiction|/genres/classics|/genres/science-fiction|/genres/fantasy|/genres/novels|/genres/literature|/genres/literature|/genres/american|/genres/science-fiction-fantasy|/genres/historical-fiction|/genres/drama,dir57/862311.The_Star_Rover.html,1563,The Star Rover +3.90,116,0571195261,good_reads:book,https://www.goodreads.com/author/show/45497.John_McGahern,1990,/genres/fiction|/genres/european-literature|/genres/irish-literature|/genres/cultural|/genres/ireland|/genres/literary-fiction|/genres/literature|/genres/20th-century|/genres/novels|/genres/modern|/genres/contemporary|/genres/literature|/genres/cultural|/genres/international,dir57/304209.Amongst_Women.html,1445,Amongst Women +5.00,0,,good_reads:book,https://www.goodreads.com/author/show/5989528.Subhajit_Ganguly,2012,,dir57/14288412-abstraction-in-theory---laws-of-physical-transaction.html,6,Abstraction In Theory - Laws Of Physical Transaction +4.14,4335,0385743564,good_reads:book,https://www.goodreads.com/author/show/38550.Brandon_Sanderson,2013,/genres/science-fiction|/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/comics|/genres/superheroes|/genres/fantasy|/genres/apocalyptic|/genres/post-apocalyptic|/genres/science-fiction-fantasy|/genres/fantasy|/genres/paranormal,dir57/17182126-steelheart.html,36773,"Steelheart (Reckoners, #1)" +4.34,63,0764207814,good_reads:book,https://www.goodreads.com/author/show/3145809.Anne_Elisabeth_Stengl,2012,/genres/fantasy|/genres/christian-fiction|/genres/young-adult|/genres/christian|/genres/fantasy|/genres/dragons|/genres/romance|/genres/fantasy|/genres/fairy-tales|/genres/fiction|/genres/young-adult|/genres/young-adult-fantasy|/genres/science-fiction-fantasy,dir57/11756117-moonblood.html,366,"Moonblood (Tales of Goldstone Wood, #3)" +3.35,14,0977937909,good_reads:book,https://www.goodreads.com/author/show/1219754.Michael_T_Dolan,2006,/genres/classics|/genres/philosophy|/genres/contemporary|/genres/fiction,dir57/2798647-walden.html,368,Walden +3.97,61,0449908208,good_reads:book,https://www.goodreads.com/author/show/35623.Susan_Brownmiller,1975,/genres/feminism|/genres/non-fiction|/genres/sociology|/genres/history|/genres/gender|/genres/gender-studies|/genres/politics|/genres/psychology|/genres/womens|/genres/gender|/genres/social-movements|/genres/social-justice,dir57/103180.Against_Our_Will.html,1965,Against Our Will +3.78,907,0060535458,good_reads:book,https://www.goodreads.com/author/show/193.Kevin_Henkes,2003,/genres/young-adult|/genres/realistic-fiction|/genres/fiction|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/childrens|/genres/juvenile|/genres/young-adult|/genres/coming-of-age|/genres/literature|/genres/banned-books|/genres/death|/genres/family,dir57/282773.Olive_s_Ocean.html,8895,Olive's Ocean +3.61,1312,1400033543,good_reads:book,https://www.goodreads.com/author/show/3371.Dave_Eggers,2002,/genres/fiction|/genres/novels|/genres/travel|/genres/contemporary|/genres/literature|/genres/book-club|/genres/literature|/genres/american|/genres/literary-fiction|/genres/adult-fiction|/genres/modern,dir57/4954.You_Shall_Know_Our_Velocity_.html,20843,You Shall Know Our Velocity! +4.23,233,080213663X,good_reads:book,https://www.goodreads.com/author/show/44415.Tom_Spanbauer,1991,/genres/fiction|/genres/glbt|/genres/queer|/genres/historical-fiction|/genres/glbt|/genres/glbt|/genres/gay|/genres/book-club|/genres/gender|/genres/magical-realism|/genres/literature|/genres/adult-fiction,dir57/78269.The_Man_Who_Fell_in_Love_with_the_Moon.html,1689,The Man Who Fell in Love with the Moon +3.81,491,0345396936,good_reads:book,https://www.goodreads.com/author/show/7577.Anne_Rice,1982,/genres/fiction|/genres/historical-fiction|/genres/horror|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/m-m-romance|/genres/music|/genres/glbt|/genres/cultural|/genres/italy,dir58/31335.Cry_to_Heaven.html,14994,Cry to Heaven +4.37,236,0842371516,good_reads:book,https://www.goodreads.com/author/show/6264.Elisabeth_Elliot,1956,/genres/christian|/genres/non-fiction|/genres/biography|/genres/religion|/genres/christianity|/genres/history|/genres/religion|/genres/religion|/genres/faith|/genres/inspirational|/genres/autobiography|/genres/memoir|/genres/religion|/genres/theology,dir58/56634.Through_Gates_of_Splendor.html,10477,Through Gates of Splendor +4.07,211,0848805240,good_reads:book,https://www.goodreads.com/author/show/1455.Ernest_Hemingway,1972,/genres/fiction|/genres/short-stories|/genres/classics|/genres/literature|/genres/literature|/genres/american|/genres/literary-fiction|/genres/classics|/genres/classic-literature|/genres/academic|/genres/school|/genres/academic|/genres/college|/genres/adventure,dir58/225297.The_Nick_Adams_Stories.html,4471,The Nick Adams Stories +3.73,234,0982500505,good_reads:book,https://www.goodreads.com/author/show/2980339.Shelena_Shorts,2009,/genres/young-adult|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/young-adult|/genres/young-adult-paranormal|/genres/fiction|/genres/science-fiction|/genres/time-travel|/genres/mystery|/genres/fantasy|/genres/supernatural,dir58/6599113-the-pace.html,1209,"The Pace (The Pace, #1)" +3.45,760,1847244130,good_reads:book,https://www.goodreads.com/author/show/479779.John_Ajvide_Lindqvist,2005,/genres/horror|/genres/horror|/genres/zombies|/genres/fiction|/genres/fantasy|/genres/european-literature|/genres/swedish-literature|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/cultural|/genres/sweden|/genres/european-literature|/genres/scandinavian-literature|/genres/science-fiction,dir58/4328472-handling-the-undead.html,5882,Handling the Undead +3.70,667,0671722921,good_reads:book,https://www.goodreads.com/author/show/947.William_Shakespeare,1589,/genres/plays|/genres/classics|/genres/drama|/genres/fiction|/genres/plays|/genres/theatre|/genres/literature|/genres/academic|/genres/school|/genres/tragedy|/genres/european-literature|/genres/british-literature|/genres/poetry,dir58/72978.Titus_Andronicus.html,13070,Titus Andronicus +4.34,534,0316080845,good_reads:book,https://www.goodreads.com/author/show/2988406.Yana_Toboso,2007,/genres/sequential-art|/genres/manga|/genres/fantasy|/genres/sequential-art|/genres/graphic-novels|/genres/media-tie-in|/genres/anime|/genres/sequential-art|/genres/comics|/genres/paranormal|/genres/demons|/genres/horror|/genres/young-adult|/genres/fantasy|/genres/supernatural|/genres/historical-fiction,dir58/6690979-black-butler-vol-01.html,41853,"Black Butler, Vol. 01 (Black Butler, #1)" +4.16,275,0394751019,good_reads:book,https://www.goodreads.com/author/show/38185.Mary_Renault,1972,/genres/historical-fiction|/genres/fiction|/genres/romance|/genres/m-m-romance|/genres/glbt|/genres/gay|/genres/glbt|/genres/romance|/genres/classics|/genres/cultural|/genres/greece|/genres/war,dir58/67700.The_Persian_Boy.html,4175,"The Persian Boy (Alexander the Great, #2)" +4.22,230,0553575430,good_reads:book,https://www.goodreads.com/author/show/42110.Lynn_Flewelling,1997,/genres/fantasy|/genres/romance|/genres/m-m-romance|/genres/glbt|/genres/fiction|/genres/glbt|/genres/gay|/genres/romance|/genres/glbt|/genres/queer|/genres/adventure|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic,dir58/74275.Stalking_Darkness.html,6684,"Stalking Darkness (Nightrunner, #2)" +4.04,334,1934781827,good_reads:book,https://www.goodreads.com/author/show/29694.Adam_Levin,2010,/genres/fiction|/genres/contemporary|/genres/literature|/genres/jewish|/genres/novels|/genres/literary-fiction|/genres/literature|/genres/literature|/genres/american,dir58/8380409-the-instructions.html,1617,The Instructions +3.78,482,0525479953,good_reads:book,https://www.goodreads.com/author/show/21701.Mari_Mancusi,2008,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/realistic-fiction|/genres/fiction|/genres/young-adult|/genres/teen|/genres/womens-fiction|/genres/chick-lit|/genres/fantasy|/genres/sequential-art|/genres/manga|/genres/games|/genres/gaming,dir58/2850535-gamer-girl.html,2919,Gamer Girl +3.91,870,0060875070,good_reads:book,https://www.goodreads.com/author/show/12676.Heather_O_Neill,2006,/genres/fiction|/genres/cultural|/genres/canada|/genres/contemporary|/genres/book-club|/genres/young-adult|/genres/coming-of-age|/genres/young-adult|/genres/literature|/genres/canadian-literature|/genres/novels|/genres/adult|/genres/dark,dir58/22207.Lullabies_for_Little_Criminals.html,9471,Lullabies for Little Criminals +3.91,144,2266169548,good_reads:book,https://www.goodreads.com/author/show/282080.Guillaume_Musso,2006,/genres/romance|/genres/cultural|/genres/france|/genres/fiction|/genres/contemporary|/genres/science-fiction|/genres/time-travel|/genres/mystery|/genres/fantasy|/genres/adult|/genres/european-literature|/genres/french-literature|/genres/science-fiction,dir58/1912426.Seras_tu_l_.html,2250,Seras-tu là? +4.19,299,1904633684,good_reads:book,https://www.goodreads.com/author/show/2448.Arthur_Conan_Doyle,1925,/genres/mystery|/genres/classics|/genres/fiction|/genres/short-stories|/genres/mystery|/genres/crime|/genres/mystery|/genres/detective|/genres/historical-fiction|/genres/literature|/genres/european-literature|/genres/british-literature|/genres/adventure,dir58/162823.The_Case_Book_of_Sherlock_Holmes.html,7944,"The Case-Book of Sherlock Holmes (Sherlock Holmes, #9)" +3.95,254,0060997028,good_reads:book,https://www.goodreads.com/author/show/6343.Milan_Kundera,1973,/genres/fiction|/genres/literature|/genres/european-literature|/genres/czech-literature|/genres/novels|/genres/philosophy|/genres/contemporary|/genres/classics|/genres/literary-fiction|/genres/cultural|/genres/france|/genres/literature|/genres/european-literature,dir58/44559.Life_is_Elsewhere.html,7362,Life is Elsewhere +3.92,1010,0062001817,good_reads:book,https://www.goodreads.com/author/show/1051591.Tera_Lynn_Childs,2011,/genres/young-adult|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/mythology|/genres/greek-mythology|/genres/fantasy|/genres/urban-fantasy|/genres/romance,dir58/10429067-sweet-venom.html,8503,"Sweet Venom (Medusa Girls, #1)" +4.67,34,0810117134,good_reads:book,https://www.goodreads.com/author/show/205563.Me_a_Selimovi_,1970,/genres/classics|/genres/fiction|/genres/historical-fiction|/genres/literature|/genres/academic|/genres/school|/genres/novels,dir58/1679497.The_Fortress.html,1335,The Fortress +4.71,4,,good_reads:book,https://www.goodreads.com/author/show/5838022.J_R_Ortiz,2012,,dir58/13741511-american-amaranth.html,14,American Amaranth +4.60,656,1613725132,good_reads:book,https://www.goodreads.com/author/show/1122775.Abigail_Roux,2012,/genres/romance|/genres/m-m-romance|/genres/romance|/genres/contemporary|/genres/mystery|/genres/suspense|/genres/mystery|/genres/crime|/genres/romance|/genres/romantic-suspense|/genres/thriller|/genres/glbt|/genres/gay|/genres/glbt,dir58/13246997-armed-dangerous.html,5268,"Armed & Dangerous (Cut & Run, #5)" +4.06,589,1439181780,good_reads:book,https://www.goodreads.com/author/show/29655.Rhonda_Byrne,2010,/genres/self-help|/genres/non-fiction|/genres/spirituality|/genres/psychology|/genres/inspirational|/genres/spirituality|/genres/new-age|/genres/self-help|/genres/personal-development|/genres/philosophy|/genres/reference,dir58/8579016-the-power.html,11349,"The Power (The Secret, #2)" +3.79,830,,good_reads:book,https://www.goodreads.com/author/show/2919562.Lori_Brighton,2010,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/mystery|/genres/fantasy|/genres/urban-fantasy|/genres/science-fiction,dir58/9858714-the-mind-readers.html,8727,"The Mind Readers (Mind Readers, #1)" +4.22,111,1593072287,good_reads:book,https://www.goodreads.com/author/show/4866.Masamune_Shirow,1991,/genres/sequential-art|/genres/manga|/genres/sequential-art|/genres/comics|/genres/sequential-art|/genres/graphic-novels|/genres/science-fiction|/genres/science-fiction|/genres/cyberpunk|/genres/fiction|/genres/comics|/genres/comic-book|/genres/comics-manga|/genres/cultural|/genres/japan|/genres/graphic-novels-comics,dir58/35870.Ghost_in_the_Shell.html,4309,Ghost in the Shell +3.90,275,0312423187,good_reads:book,https://www.goodreads.com/author/show/14080.Colum_McCann,2003,/genres/fiction|/genres/historical-fiction|/genres/cultural|/genres/russia|/genres/glbt|/genres/novels|/genres/european-literature|/genres/irish-literature|/genres/contemporary|/genres/art|/genres/glbt|/genres/gay|/genres/adult-fiction,dir58/110896.Dancer.html,2162,Dancer +4.10,2459,0778325318,good_reads:book,https://www.goodreads.com/author/show/93345.Diane_Chamberlain,2006,/genres/fiction|/genres/book-club|/genres/womens-fiction|/genres/chick-lit|/genres/mystery|/genres/drama|/genres/contemporary|/genres/suspense|/genres/thriller|/genres/adult-fiction|/genres/mystery|/genres/crime,dir58/2485785.The_Secret_Life_of_CeeCee_Wilkes.html,23203,The Secret Life of CeeCee Wilkes +4.01,75,0743471792,good_reads:book,https://www.goodreads.com/author/show/38234.Michael_Z_Williamson,2003,/genres/science-fiction|/genres/fiction|/genres/war|/genres/military|/genres/science-fiction|/genres/military-science-fiction|/genres/science-fiction|/genres/space-opera|/genres/war|/genres/fantasy|/genres/space|/genres/science-fiction-fantasy|/genres/sci-fi-fantasy,dir58/700604.Freehold.html,1834,Freehold +4.17,38,1557042578,good_reads:book,https://www.goodreads.com/author/show/157249.William_Wharton,1982,/genres/fiction|/genres/historical-fiction|/genres/war|/genres/history|/genres/world-war-ii|/genres/novels|/genres/literature|/genres/american|/genres/literature,dir58/720234.A_Midnight_Clear.html,767,A Midnight Clear +4.55,106,1594170347,good_reads:book,https://www.goodreads.com/author/show/5158478.Anonymous,1952,/genres/religion|/genres/reference|/genres/religion|/genres/christianity|/genres/christianity|/genres/catholic|/genres/christian|/genres/religion|/genres/theology|/genres/philosophy|/genres/non-fiction|/genres/history|/genres/classics,dir58/147635.Holy_Bible.html,1750,Holy Bible +4.19,3432,0307713547,good_reads:book,https://www.goodreads.com/author/show/22580.Julie_Orringer,2010,/genres/historical-fiction|/genres/fiction|/genres/book-club|/genres/history|/genres/world-war-ii|/genres/world-war-ii|/genres/holocaust|/genres/war|/genres/cultural|/genres/hungary|/genres/literature|/genres/jewish|/genres/cultural|/genres/france,dir58/7274337-the-invisible-bridge.html,25645,The Invisible Bridge +4.20,25,,good_reads:book,https://www.goodreads.com/author/show/7153266.Tali_Carmi,2013,/genres/childrens,dir58/18914978-where-is-my-home.html,100,Where Is My Home? +4.83,16,,good_reads:book,https://www.goodreads.com/author/show/7058502.O_L_Ramos,2014,,dir58/22312293-the-keeper.html,29,"The Keeper (The Keeper, #5)" +4.14,78,,good_reads:book,https://www.goodreads.com/author/show/7738947.Sarah_Robinson,2014,/genres/romance|/genres/new-adult|/genres/romance|/genres/romantic-suspense|/genres/mystery|/genres/crime|/genres/mystery,dir58/20445713-tainted-bodies.html,150,"Tainted Bodies (Photographer Trilogy, #1)" +4.00,269,1594480869,good_reads:book,https://www.goodreads.com/author/show/43784.Lian_Hearn,2003,/genres/fantasy|/genres/fiction|/genres/historical-fiction|/genres/cultural|/genres/japan|/genres/young-adult|/genres/romance|/genres/asian-literature|/genres/japanese-literature|/genres/literature|/genres/asian-literature|/genres/novels|/genres/adventure,dir58/186669.Brilliance_of_the_Moon.html,11171,"Brilliance of the Moon (Tales of the Otori, #3)" +4.20,380,1406308021,good_reads:book,https://www.goodreads.com/author/show/32401.Alison_Croggon,2008,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/fiction|/genres/young-adult|/genres/young-adult-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/adventure|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/young-adult|/genres/teen,dir58/2550219.The_Singing.html,8059,"The Singing (The Books of Pellinor, #4)" +3.89,334,0743460502,good_reads:book,https://www.goodreads.com/author/show/9678.Ann_Rule,2004,/genres/crime|/genres/true-crime|/genres/non-fiction|/genres/mystery|/genres/crime|/genres/mystery|/genres/true-story|/genres/adult|/genres/thriller|/genres/biography|/genres/history|/genres/book-club,dir58/225384.Green_River_Running_Red.html,5891,"Green River, Running Red" +3.86,56,0141318007,good_reads:book,https://www.goodreads.com/author/show/10896.Eoin_Colfer,2004,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/science-fiction|/genres/adventure|/genres/childrens|/genres/short-stories|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/fairies|/genres/science-fiction-fantasy,dir58/904896.The_Seventh_Dwarf.html,2477,The Seventh Dwarf (Artemis Fowl #1.5) +4.38,10,1577314034,good_reads:book,https://www.goodreads.com/author/show/20105.Joseph_Campbell,2003,/genres/fantasy|/genres/mythology|/genres/religion|/genres/non-fiction|/genres/spirituality|/genres/philosophy|/genres/psychology,dir58/35514.Myths_of_Light.html,197,Myths of Light +3.71,530,0192835203,good_reads:book,https://www.goodreads.com/author/show/45896.Mary_Elizabeth_Braddon,1862,/genres/mystery|/genres/classics|/genres/gothic|/genres/literature|/genres/19th-century|/genres/historical-fiction|/genres/european-literature|/genres/british-literature|/genres/mystery|/genres/crime|/genres/literature|/genres/fiction|/genres/classics|/genres/classic-literature,dir58/588747.Lady_Audley_s_Secret.html,9110,Lady Audley's Secret +3.54,586,0571240763,good_reads:book,https://www.goodreads.com/author/show/296961.Paul_Auster,2008,/genres/fiction|/genres/literature|/genres/novels|/genres/literature|/genres/american|/genres/contemporary|/genres/literary-fiction|/genres/war|/genres/drama|/genres/american|/genres/american-fiction|/genres/adult-fiction,dir58/3136288-man-in-the-dark.html,5276,Man in the Dark +3.70,1608,038532328X,good_reads:book,https://www.goodreads.com/author/show/9059.Caroline_B_Cooney,1990,/genres/young-adult|/genres/mystery|/genres/fiction|/genres/childrens|/genres/realistic-fiction|/genres/young-adult|/genres/teen|/genres/childrens|/genres/middle-grade|/genres/suspense|/genres/literature|/genres/banned-books|/genres/academic|/genres/school,dir58/19469.The_Face_on_the_Milk_Carton.html,34198,"The Face on the Milk Carton (Janie Johnson, #1)" +4.08,305,067166607X,good_reads:book,https://www.goodreads.com/author/show/262262.Felix_Salten,1923,/genres/classics|/genres/fiction|/genres/childrens|/genres/animals|/genres/fantasy|/genres/young-adult|/genres/literature|/genres/environment|/genres/nature|/genres/media-tie-in|/genres/movies|/genres/childrens|/genres/juvenile,dir58/739840.Bambi.html,22292,Bambi +4.15,147,1580800467,good_reads:book,https://www.goodreads.com/author/show/47118.Nicholas_Monsarrat,1951,/genres/fiction|/genres/historical-fiction|/genres/war|/genres/classics|/genres/history|/genres/world-war-ii|/genres/war|/genres/military|/genres/adventure|/genres/literature|/genres/military|/genres/military-history|/genres/literature|/genres/20th-century,dir58/183586.The_Cruel_Sea.html,2769,The Cruel Sea +3.90,1605,0143035746,good_reads:book,https://www.goodreads.com/author/show/8865.Mary_Karr,1995,/genres/autobiography|/genres/memoir|/genres/non-fiction|/genres/biography|/genres/book-club|/genres/biography-memoir|/genres/biography|/genres/autobiography|/genres/adult|/genres/young-adult|/genres/coming-of-age|/genres/american|/genres/southern|/genres/literature,dir58/14241.The_Liars_Club.html,34859,The Liars' Club +3.59,1117,0142404128,good_reads:book,https://www.goodreads.com/author/show/4273.Roald_Dahl,1972,/genres/childrens|/genres/fantasy|/genres/fiction|/genres/classics|/genres/young-adult|/genres/humor,dir58/6687.Charlie_and_the_Great_Glass_Elevator.html,47574,"Charlie and the Great Glass Elevator (Charlie Bucket, #2)" +4.08,370,0385604793,good_reads:book,https://www.goodreads.com/author/show/172977.Malorie_Blackman,2010,/genres/young-adult|/genres/contemporary|/genres/realistic-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/young-adult|/genres/teen|/genres/family|/genres/young-adult|/genres/young-adult-contemporary|/genres/drama|/genres/young-adult|/genres/coming-of-age,dir58/8239438-boys-don-t-cry.html,4172,Boys Don't Cry +4.41,67,0451233557,good_reads:book,https://www.goodreads.com/author/show/15292.Rachel_Caine,2010,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/horror|/genres/young-adult|/genres/young-adult-paranormal,dir58/8462184-the-morganville-vampires-volume-3.html,10725,"The Morganville Vampires, Volume 3 (The Morganville Vampires, #5-6)" +3.82,3034,0385722435,good_reads:book,https://www.goodreads.com/author/show/9993.Mark_Dunn,2001,/genres/fiction|/genres/book-club|/genres/humor|/genres/young-adult|/genres/fantasy|/genres/adult|/genres/adult-fiction|/genres/humanities|/genres/language|/genres/novels|/genres/science-fiction|/genres/dystopia,dir58/16200.Ella_Minnow_Pea.html,15135,Ella Minnow Pea +3.92,617,080279839X,good_reads:book,https://www.goodreads.com/author/show/3020684.Alyxandra_Harvey,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/ghosts|/genres/historical-fiction|/genres/fantasy|/genres/mystery|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fiction,dir58/8685644-haunting-violet.html,4904,"Haunting Violet (Haunting Violet, #1)" +3.71,1962,0385528191,good_reads:book,https://www.goodreads.com/author/show/5156034.Wes_Moore,2010,/genres/book-club|/genres/biography|/genres/autobiography|/genres/memoir|/genres/sociology|/genres/academic|/genres/school|/genres/biography|/genres/autobiography|/genres/biography-memoir|/genres/non-fiction|/genres/cultural|/genres/african-american|/genres/literature|/genres/american,dir58/7099273-the-other-wes-moore.html,12034,The Other Wes Moore +3.82,2302,1400063515,good_reads:book,https://www.goodreads.com/author/show/21559.Nassim_Nicholas_Taleb,2007,/genres/non-fiction|/genres/economics|/genres/business|/genres/philosophy|/genres/science|/genres/psychology|/genres/sociology|/genres/history|/genres/science|/genres/mathematics|/genres/social-science,dir58/242472.The_Black_Swan.html,34673,The Black Swan +4.05,399,1618429949,good_reads:book,https://www.goodreads.com/author/show/5753331.Sophie_Davis,2012,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/science-fiction|/genres/dystopia|/genres/science-fiction,dir58/13466202-talented.html,1931,"Talented (Talented Saga, #1)" +4.09,158,0312317115,good_reads:book,https://www.goodreads.com/author/show/4043.Wilbur_Smith,1997,/genres/historical-fiction|/genres/fiction|/genres/adventure|/genres/cultural|/genres/africa|/genres/thriller|/genres/mystery|/genres/action|/genres/novels|/genres/adventure|/genres/pirates|/genres/literature,dir58/16954.Birds_of_Prey.html,5405,Birds of Prey (Courtney #9) +3.98,304,0152045694,good_reads:book,https://www.goodreads.com/author/show/123463.Mary_E_Pearson,2001,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/fiction|/genres/young-adult|/genres/teen|/genres/womens-fiction|/genres/chick-lit|/genres/realistic-fiction|/genres/retellings|/genres/love|/genres/young-adult|/genres/high-school,dir58/645149.Scribbler_of_Dreams.html,2799,Scribbler of Dreams +4.36,285,0345501330,good_reads:book,https://www.goodreads.com/author/show/150810.Hiro_Mashima,2006,/genres/sequential-art|/genres/manga|/genres/fantasy|/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fantasy|/genres/magic|/genres/media-tie-in|/genres/anime|/genres/manga|/genres/shonen|/genres/adventure|/genres/comics-manga|/genres/humor|/genres/comedy,dir58/2454986.Fairy_Tail_Vol_01.html,34991,"Fairy Tail, Vol. 01 (Fairy Tail, #1)" +4.61,811,1937551865,good_reads:book,https://www.goodreads.com/author/show/1122775.Abigail_Roux,2013,/genres/romance|/genres/m-m-romance|/genres/romance|/genres/contemporary|/genres/mystery|/genres/mystery|/genres/crime|/genres/suspense|/genres/war|/genres/military|/genres/romance|/genres/romantic-suspense|/genres/thriller|/genres/glbt,dir58/16159276-touch-geaux.html,4212,"Touch & Geaux (Cut & Run, #7)" +4.29,168,,good_reads:book,https://www.goodreads.com/author/show/5409221.Pepper_Pace,2012,/genres/romance|/genres/romance|/genres/interracial-romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/war|/genres/military|/genres/adult-fiction|/genres/erotica|/genres/fairy-tales|/genres/beauty-and-the-beast|/genres/adult|/genres/womens-fiction|/genres/chick-lit|/genres/war|/genres/soldiers,dir58/16050911-beast.html,1334,Beast +3.95,3761,0670026611,good_reads:book,https://www.goodreads.com/author/show/281810.Jojo_Moyes,2012,/genres/historical-fiction|/genres/romance|/genres/book-club|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/contemporary|/genres/adult-fiction|/genres/cultural|/genres/france|/genres/war|/genres/adult,dir58/17572903-the-girl-you-left-behind.html,33678,The Girl You Left Behind +4.32,2654,,good_reads:book,https://www.goodreads.com/author/show/6860574.Gail_McHugh,2013,/genres/romance|/genres/new-adult|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/adult-fiction|/genres/erotica|/genres/adult|/genres/romance|/genres/erotic-romance|/genres/sociology|/genres/abuse|/genres/love|/genres/drama,dir58/17267122-pulse.html,28866,"Pulse (Collide, #2)" +4.16,152,080215042X,good_reads:book,https://www.goodreads.com/author/show/7469.Octavio_Paz,1950,/genres/non-fiction|/genres/history|/genres/writing|/genres/essays|/genres/european-literature|/genres/spanish-literature|/genres/cultural|/genres/latin-american|/genres/poetry|/genres/literature|/genres/latin-american-literature,dir58/11702.The_Labyrinth_of_Solitude_and_Other_Writings.html,4065,The Labyrinth of Solitude and Other Writings +4.26,100,1742758517,good_reads:book,https://www.goodreads.com/author/show/6568891.Allyse_Near,2013,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/fairy-tales|/genres/gothic|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/ghosts|/genres/fiction|/genres/mystery|/genres/paranormal|/genres/fairies,dir58/16120434-fairytales-for-wilde-girls.html,341,Fairytales for Wilde Girls +4.18,1096,0857532014,good_reads:book,https://www.goodreads.com/author/show/33467.Jonathan_Stroud,2013,/genres/fantasy|/genres/young-adult|/genres/mystery|/genres/fantasy|/genres/paranormal|/genres/horror|/genres/childrens|/genres/middle-grade|/genres/paranormal|/genres/ghosts|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/supernatural,dir58/13555073-the-screaming-staircase.html,5398,"The Screaming Staircase (Lockwood & Co., #1)" +4.48,146,,good_reads:book,https://www.goodreads.com/author/show/6869072.C_L_Stone,2013,/genres/young-adult|/genres/romance|/genres/mystery|/genres/sociology|/genres/abuse|/genres/contemporary|/genres/young-adult|/genres/high-school|/genres/spy-thriller|/genres/espionage|/genres/suspense|/genres/fiction|/genres/romance|/genres/contemporary-romance,dir58/18891400-friends-vs-family.html,3069,"Friends vs. Family (The Ghost Bird, #3)" +3.73,179,8884902231,good_reads:book,https://www.goodreads.com/author/show/35371.Giorgio_Faletti,2002,/genres/thriller|/genres/mystery|/genres/crime|/genres/mystery|/genres/european-literature|/genres/italian-literature|/genres/fiction|/genres/suspense,dir58/1280960.Io_uccido.html,2902,Io uccido +4.42,17,,good_reads:book,https://www.goodreads.com/author/show/6585024.Ashley_Chappell,2012,/genres/fantasy|/genres/childrens|/genres/middle-grade|/genres/fantasy|/genres/paranormal,dir58/16163229-alice-will.html,36,Alice Will (Dreams of Chaos #1) +3.81,61,1494430533,good_reads:book,https://www.goodreads.com/author/show/7153266.Tali_Carmi,2013,/genres/childrens|/genres/childrens|/genres/picture-books,dir58/20367560-terry-treetop-and-the-lost-egg.html,472,Terry Treetop and the Lost Egg +4.54,228,,good_reads:book,https://www.goodreads.com/author/show/2112402.Demi_Lovato,2013,/genres/non-fiction|/genres/self-help|/genres/inspirational|/genres/autobiography|/genres/memoir|/genres/psychology|/genres/biography|/genres/mental-health|/genres/mental-illness|/genres/spirituality|/genres/health|/genres/young-adult|/genres/teen,dir58/18479831-staying-strong.html,2343,Staying Strong +4.05,547,0140297995,good_reads:book,https://www.goodreads.com/author/show/6580622.W_G_Sebald,2001,/genres/fiction|/genres/european-literature|/genres/german-literature|/genres/historical-fiction|/genres/literature|/genres/cultural|/genres/germany|/genres/novels|/genres/world-war-ii|/genres/holocaust|/genres/war|/genres/history|/genres/world-war-ii|/genres/contemporary,dir58/88442.Austerlitz.html,6467,Austerlitz +3.80,484,0670022780,good_reads:book,https://www.goodreads.com/author/show/2101135.Laura_Harrington,2011,/genres/fiction|/genres/young-adult|/genres/contemporary|/genres/war|/genres/realistic-fiction|/genres/adult|/genres/young-adult|/genres/coming-of-age|/genres/family|/genres/romance,dir58/9816578-alice-bliss.html,2019,Alice Bliss +4.32,513,0399154019,good_reads:book,https://www.goodreads.com/author/show/17065.J_D_Robb,2007,/genres/mystery|/genres/mystery|/genres/crime|/genres/fiction|/genres/suspense|/genres/romance|/genres/romantic-suspense|/genres/science-fiction|/genres/romance|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/detective|/genres/adult,dir58/74033.Innocent_in_Death.html,15207,"Innocent in Death (In Death, #24)" +4.11,1425,0312936222,good_reads:book,https://www.goodreads.com/author/show/2384.Janet_Evanovich,2004,/genres/mystery|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/humor|/genres/romance|/genres/mystery|/genres/crime|/genres/humor|/genres/funny|/genres/humor|/genres/comedy|/genres/thriller|/genres/mystery-thriller|/genres/contemporary,dir58/86663.Ten_Big_Ones.html,62215,"Ten Big Ones (Stephanie Plum, #10)" +3.94,575,0515141399,good_reads:book,https://www.goodreads.com/author/show/625.Nora_Roberts,2005,/genres/mystery|/genres/fiction|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/suspense|/genres/womens-fiction|/genres/chick-lit|/genres/thriller|/genres/mystery|/genres/crime|/genres/adult|/genres/thriller|/genres/mystery-thriller,dir58/114184.Blue_Smoke.html,20492,Blue Smoke +3.19,246,0452287316,good_reads:book,https://www.goodreads.com/author/show/131321.Hitomi_Kanehara,2003,/genres/asian-literature|/genres/japanese-literature|/genres/fiction|/genres/cultural|/genres/japan|/genres/contemporary|/genres/literature|/genres/asian-literature|/genres/cultural|/genres/asia|/genres/young-adult|/genres/romance|/genres/novels|/genres/literature,dir58/224439.Snakes_and_Earrings.html,2215,Snakes and Earrings +3.75,296,0974320625,good_reads:book,https://www.goodreads.com/author/show/15463.Travis_Bradberry,2003,/genres/psychology|/genres/business|/genres/non-fiction|/genres/self-help|/genres/leadership|/genres/self-help|/genres/personal-development|/genres/management,dir58/6486483-emotional-intelligence-2-0.html,35345,Emotional Intelligence 2.0 +4.29,280,031024756X,good_reads:book,https://www.goodreads.com/author/show/3159984.Karen_Kingsbury,2006,/genres/christian-fiction|/genres/christian|/genres/fiction|/genres/romance|/genres/womens-fiction|/genres/chick-lit|/genres/adult-fiction|/genres/inspirational|/genres/romance|/genres/christian-romance|/genres/contemporary|/genres/religion,dir58/11429.Ever_After.html,7259,"Ever After (Lost Love Series, #2)" +3.95,126,0142501085,good_reads:book,https://www.goodreads.com/author/show/5329.Brian_Jacques,1998,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/animals|/genres/adventure,dir58/7999.Marlfox.html,10352,"Marlfox (Redwall, #11)" +3.84,230,1416546626,good_reads:book,https://www.goodreads.com/author/show/93971.Laura_Wiess,2008,/genres/young-adult|/genres/contemporary|/genres/fiction|/genres/realistic-fiction|/genres/sociology|/genres/abuse|/genres/young-adult|/genres/teen|/genres/young-adult|/genres/high-school|/genres/adult|/genres/dark|/genres/romance,dir58/768192.Leftovers.html,2254,Leftovers +4.29,486,0006499163,good_reads:book,https://www.goodreads.com/author/show/5600.Patrick_O_Brian,1972,/genres/fiction|/genres/adventure|/genres/historical-fiction|/genres/war|/genres/war|/genres/military|/genres/literature|/genres/novels|/genres/classics|/genres/european-literature|/genres/british-literature|/genres/action,dir58/17768.Post_Captain.html,9472,"Post Captain (Aubrey/Maturin, #2)" +3.93,464,0679725768,good_reads:book,https://www.goodreads.com/author/show/15882.Nicholson_Baker,1988,/genres/fiction|/genres/novels|/genres/literature|/genres/contemporary|/genres/literature|/genres/american|/genres/book-club|/genres/literary-fiction|/genres/adult-fiction|/genres/modern|/genres/humor,dir58/247000.The_Mezzanine.html,3816,The Mezzanine +3.75,683,1582348014,good_reads:book,https://www.goodreads.com/author/show/459128.Lisa_M_Klein,2006,/genres/historical-fiction|/genres/young-adult|/genres/romance|/genres/fiction|/genres/retellings|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/classics|/genres/romance|/genres/historical-romance|/genres/drama,dir58/293583.Ophelia.html,7339,Ophelia +4.63,0,,good_reads:book,https://www.goodreads.com/author/show/4808225.Dennis_Sharpe,2010,,dir58/11187937-un-spoken.html,19,(Un) Spoken +3.89,315,033048933X,good_reads:book,https://www.goodreads.com/author/show/1556719.Christopher_Rice,2000,/genres/fiction|/genres/mystery|/genres/glbt|/genres/gay|/genres/glbt|/genres/thriller|/genres/horror|/genres/contemporary|/genres/glbt|/genres/queer|/genres/romance|/genres/m-m-romance|/genres/novels,dir58/99641.A_Density_of_Souls.html,5951,A Density of Souls +3.97,252,1416908994,good_reads:book,https://www.goodreads.com/author/show/53974.Alex_Sanchez,2007,/genres/young-adult|/genres/glbt|/genres/glbt|/genres/gay|/genres/fiction|/genres/religion|/genres/romance|/genres/glbt|/genres/queer|/genres/young-adult|/genres/teen|/genres/contemporary|/genres/romance|/genres/m-m-romance,dir58/673498.The_God_Box.html,3127,The God Box +4.14,435,1406800163,good_reads:book,https://www.goodreads.com/author/show/82608.Rafael_Sabatini,1922,/genres/classics|/genres/adventure|/genres/historical-fiction|/genres/fiction|/genres/adventure|/genres/pirates|/genres/adventure|/genres/swashbuckling|/genres/romance|/genres/action|/genres/literature,dir58/158446.Captain_Blood.html,7205,Captain Blood +4.32,609,0307968316,good_reads:book,https://www.goodreads.com/author/show/47672.Trenton_Lee_Stewart,2012,/genres/mystery|/genres/fiction|/genres/young-adult|/genres/childrens|/genres/adventure|/genres/childrens|/genres/middle-grade|/genres/fantasy|/genres/realistic-fiction|/genres/childrens|/genres/juvenile|/genres/humor,dir58/13152282-the-extraordinary-education-of-nicholas-benedict.html,4955,"The Extraordinary Education of Nicholas Benedict (The Mysterious Benedict Society, #0.5)" +3.84,374,0312367953,good_reads:book,https://www.goodreads.com/author/show/256405.Julie_Halpern,2007,/genres/young-adult|/genres/realistic-fiction|/genres/mental-health|/genres/mental-illness|/genres/contemporary|/genres/fiction|/genres/young-adult|/genres/teen|/genres/romance|/genres/health|/genres/mental-health|/genres/humor,dir58/457060.Get_Well_Soon.html,3498,"Get Well Soon (Anna Bloom, #1)" +3.81,216,037571927X,good_reads:book,https://www.goodreads.com/author/show/4764.Philip_K_Dick,1959,/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/novels|/genres/science-fiction|/genres/dystopia|/genres/speculative-fiction,dir58/698034.Time_Out_of_Joint.html,4846,Time Out of Joint +4.24,530,9971395599,good_reads:book,https://www.goodreads.com/author/show/1856386._,1989,/genres/religion|/genres/religion|/genres/islam|/genres/self-help|/genres/spirituality|/genres/philosophy|/genres/non-fiction,dir58/3553395.html,5546,جدد حياتك +4.18,133,0312317123,good_reads:book,https://www.goodreads.com/author/show/4043.Wilbur_Smith,1999,/genres/historical-fiction|/genres/adventure|/genres/fiction|/genres/cultural|/genres/africa|/genres/action|/genres/novels|/genres/thriller|/genres/mystery|/genres/epic|/genres/adult-fiction,dir58/37609.Monsoon.html,5281,Monsoon (Courtney #10) +3.84,1856,0345524497,good_reads:book,https://www.goodreads.com/author/show/33918.China_Mi_ville,2011,/genres/science-fiction|/genres/fiction|/genres/fantasy|/genres/science-fiction-fantasy|/genres/speculative-fiction|/genres/humanities|/genres/language|/genres/science-fiction|/genres/aliens|/genres/weird-fiction|/genres/new-weird|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/weird-fiction,dir58/9265453-embassytown.html,12822,Embassytown +4.03,261,0345336976,good_reads:book,https://www.goodreads.com/author/show/10356.Woody_Allen,1972,/genres/humor|/genres/fiction|/genres/short-stories|/genres/humor|/genres/comedy|/genres/humor|/genres/funny|/genres/literature|/genres/american|/genres/writing|/genres/essays|/genres/contemporary|/genres/plays|/genres/literature,dir58/35503.Without_Feathers.html,6140,Without Feathers +4.20,174,0349001715,good_reads:book,https://www.goodreads.com/author/show/5430378.C_J_Daugherty,2013,/genres/young-adult|/genres/romance|/genres/mystery|/genres/fantasy|/genres/paranormal|/genres/thriller|/genres/fantasy|/genres/school-stories|/genres/boarding-school|/genres/young-adult|/genres/high-school|/genres/contemporary|/genres/paranormal|/genres/vampires,dir58/17345616-fracture.html,1408,"Fracture (Night School, #3)" +4.29,378,,good_reads:book,https://www.goodreads.com/author/show/6869072.C_L_Stone,2012,/genres/young-adult|/genres/romance|/genres/contemporary|/genres/mystery|/genres/young-adult|/genres/high-school|/genres/sociology|/genres/abuse,dir58/18403921-introductions.html,4088,"Introductions (The Ghost Bird, #1)" +3.82,824,1442407603,good_reads:book,https://www.goodreads.com/author/show/3169806.Kristi_Cook,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/shapeshifters|/genres/werewolves|/genres/romance|/genres/paranormal-romance,dir58/8527908-haven.html,7659,"Haven (Winterhaven, #1)" +3.99,839,1935089498,good_reads:book,https://www.goodreads.com/author/show/4984399.Chelsea_Fine,2011,/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/mystery|/genres/young-adult|/genres/young-adult-paranormal,dir58/12875436-anew.html,10344,"Anew (The Archers of Avalon, #1)" +4.32,44,0988936429,good_reads:book,https://www.goodreads.com/author/show/6893006.Roy_Huff,2013,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/adventure,dir58/17968674-the-city-of-worms.html,146,"The City of Worms (Everville, #2)" +4.15,2571,0345539788,good_reads:book,https://www.goodreads.com/author/show/6474348.Pierce_Brown,2014,/genres/science-fiction|/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/fiction|/genres/adult|/genres/science-fiction-fantasy|/genres/adventure|/genres/war|/genres/fantasy|/genres/mythology,dir58/15839976-red-rising.html,12540,"Red Rising (Red Rising Trilogy, #1)" +3.93,261,0857382055,good_reads:book,https://www.goodreads.com/author/show/4118351.Cat_Clarke,2011,/genres/young-adult|/genres/contemporary|/genres/mystery|/genres/romance|/genres/thriller|/genres/realistic-fiction|/genres/fiction|/genres/young-adult|/genres/teen|/genres/thriller|/genres/mystery-thriller|/genres/drama,dir58/12968828-torn.html,1914,Torn +3.99,386,1594480036,good_reads:book,https://www.goodreads.com/author/show/43784.Lian_Hearn,2003,/genres/fantasy|/genres/fiction|/genres/historical-fiction|/genres/cultural|/genres/japan|/genres/young-adult|/genres/romance|/genres/adventure|/genres/literature|/genres/asian-literature|/genres/asian-literature|/genres/japanese-literature|/genres/novels,dir58/77161.Grass_for_His_Pillow.html,12877,"Grass for His Pillow (Tales of the Otori, #2)" +3.72,686,0224064924,good_reads:book,https://www.goodreads.com/author/show/4273.Roald_Dahl,1990,/genres/childrens|/genres/fiction|/genres/fantasy|/genres/young-adult|/genres/classics|/genres/humor,dir58/194755.Esio_Trot.html,15702,Esio Trot +3.98,134,0192803735,good_reads:book,https://www.goodreads.com/author/show/5158478.Anonymous,1106,/genres/fantasy|/genres/mythology|/genres/classics|/genres/cultural|/genres/ireland|/genres/poetry|/genres/european-literature|/genres/irish-literature|/genres/fiction|/genres/literature|/genres/historical-fiction|/genres/medieval|/genres/fantasy|/genres/folklore,dir58/75586.The_T_in.html,1988,The Táin +3.94,48,0743480716,good_reads:book,https://www.goodreads.com/author/show/6620.Greg_Cox,2003,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/urban-fantasy|/genres/horror|/genres/fiction|/genres/romance|/genres/adult|/genres/paranormal|/genres/shapeshifters,dir58/33024.Underworld.html,930,"Underworld (Underworld, #1)" +4.26,205,4770026099,good_reads:book,https://www.goodreads.com/author/show/58917.Eiji_Yoshikawa,1967,/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/japan|/genres/novels|/genres/asian-literature|/genres/japanese-literature|/genres/literature|/genres/classics|/genres/epic,dir59/336228.Taiko.html,2090,Taiko +3.85,1231,0618685502,good_reads:book,https://www.goodreads.com/author/show/2493.Lois_Lowry,2006,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/middle-grade|/genres/young-adult|/genres/teen|/genres/science-fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/paranormal,dir59/12931.Gossamer.html,9443,Gossamer +3.77,1299,9832672368,good_reads:book,https://www.goodreads.com/author/show/489970.Habiburrahman_El_Shirazy,2004,/genres/novels|/genres/fiction|/genres/romance|/genres/asian-literature|/genres/indonesian-literature|/genres/religion|/genres/islam|/genres/religion|/genres/love|/genres/drama|/genres/young-adult|/genres/spirituality,dir59/969177.Ayat_Ayat_Cinta.html,10290,Ayat-Ayat Cinta +4.01,527,0684193957,good_reads:book,https://www.goodreads.com/author/show/1025097.Patricia_Cornwell,1992,/genres/mystery|/genres/mystery|/genres/crime|/genres/fiction|/genres/thriller|/genres/thriller|/genres/mystery-thriller|/genres/suspense|/genres/mystery|/genres/murder-mystery|/genres/mystery|/genres/detective|/genres/adult|/genres/adult-fiction,dir59/232123.All_That_Remains.html,36433,"All That Remains (Kay Scarpetta, #3)" +3.71,1191,0060540745,good_reads:book,https://www.goodreads.com/author/show/12696.Jerry_Spinelli,2002,/genres/realistic-fiction|/genres/fiction|/genres/young-adult|/genres/childrens|/genres/academic|/genres/school|/genres/childrens|/genres/middle-grade|/genres/contemporary|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/chapter-books|/genres/young-adult|/genres/teen,dir59/87220.Loser.html,11716,Loser +3.94,357,8493388335,good_reads:book,https://www.goodreads.com/author/show/48143.Annemarie_Selinko,1951,/genres/historical-fiction|/genres/fiction|/genres/novels|/genres/romance|/genres/cultural|/genres/france|/genres/romance|/genres/historical-romance|/genres/roman|/genres/media-tie-in|/genres/movies|/genres/cultural|/genres/sweden|/genres/book-club,dir59/84049.D_sir_e.html,4559,Désirée +4.57,121,0679777458,good_reads:book,https://www.goodreads.com/author/show/8361.Dorothy_Dunnett,1966,/genres/historical-fiction|/genres/fiction|/genres/cultural|/genres/scotland|/genres/adventure|/genres/romance|/genres/historical-romance|/genres/literature|/genres/literature|/genres/16th-century|/genres/classics|/genres/romance|/genres/novels,dir59/351211.The_Disorderly_Knights.html,2177,"The Disorderly Knights (The Lymond Chronicles, #3)" +3.29,1024,0316113573,good_reads:book,https://www.goodreads.com/author/show/1112218.Tonya_Hurley,2008,/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/ghosts|/genres/fantasy|/genres/supernatural|/genres/young-adult|/genres/teen|/genres/humor|/genres/young-adult|/genres/young-adult|/genres/high-school|/genres/death|/genres/fantasy|/genres/horror,dir59/2508164.Ghostgirl.html,11286,"Ghostgirl (Ghostgirl, #1)" +3.67,168,0446364754,good_reads:book,https://www.goodreads.com/author/show/2687.Dan_Simmons,1992,/genres/horror|/genres/paranormal|/genres/vampires|/genres/fiction|/genres/fantasy|/genres/thriller|/genres/science-fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/mystery|/genres/novels,dir59/11290.Children_of_the_Night.html,3744,Children of the Night +3.98,109,0425217450,good_reads:book,https://www.goodreads.com/author/show/11859.Sunny,2008,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/demons|/genres/paranormal|/genres/vampires|/genres/fiction|/genres/paranormal|/genres/shapeshifters,dir59/1274345.Mona_Lisa_Craving.html,1895,"Mona Lisa Craving (Monère: Children of the Moon, #3)" +3.82,2143,0670061018,good_reads:book,https://www.goodreads.com/author/show/10003.Laurie_Halse_Anderson,2007,/genres/young-adult|/genres/realistic-fiction|/genres/fiction|/genres/young-adult|/genres/teen|/genres/contemporary|/genres/young-adult|/genres/coming-of-age|/genres/romance|/genres/young-adult|/genres/high-school|/genres/family|/genres/academic|/genres/school,dir59/123106.Twisted.html,22628,Twisted +4.25,67,1406923397,good_reads:book,https://www.goodreads.com/author/show/2413.George_MacDonald,1879,/genres/fiction|/genres/classics|/genres/christian-fiction|/genres/christian|/genres/historical-fiction|/genres/fantasy|/genres/novels|/genres/religion|/genres/christianity|/genres/book-club|/genres/childrens|/genres/juvenile,dir59/541924.Sir_Gibbie.html,994,Sir Gibbie +4.20,798,0152802177,good_reads:book,https://www.goodreads.com/author/show/54711.Janell_Cannon,1993,/genres/childrens|/genres/picture-books|/genres/childrens|/genres/animals|/genres/fiction|/genres/family|/genres/fantasy|/genres/classics|/genres/kids|/genres/young-adult|/genres/childrens|/genres/juvenile,dir59/786256.Stellaluna.html,63424,Stellaluna +3.92,61,8422623536,good_reads:book,https://www.goodreads.com/author/show/37020.Eduardo_Mendoza,1986,/genres/fiction|/genres/european-literature|/genres/spanish-literature|/genres/historical-fiction|/genres/cultural|/genres/spain|/genres/literature|/genres/contemporary|/genres/novels|/genres/drama|/genres/humor,dir59/87819.La_ciudad_de_los_prodigios.html,1072,La ciudad de los prodigios +3.77,174,0340696761,good_reads:book,https://www.goodreads.com/author/show/16491.Giles_Milton,1999,/genres/history|/genres/non-fiction|/genres/food-and-drink|/genres/food|/genres/travel|/genres/cultural|/genres/asia|/genres/history|/genres/world-history|/genres/history|/genres/food-history|/genres/biography|/genres/adventure|/genres/literature|/genres/17th-century,dir59/29386.Nathaniel_s_Nutmeg.html,1783,Nathaniel's Nutmeg +3.57,2085,031238078X,good_reads:book,https://www.goodreads.com/author/show/20258.Lisa_Scottoline,2011,/genres/fiction|/genres/mystery|/genres/book-club|/genres/womens-fiction|/genres/chick-lit|/genres/suspense|/genres/adult-fiction,dir59/9296438-save-me.html,14792,Save Me +3.67,1582,0307393879,good_reads:book,https://www.goodreads.com/author/show/3502.Alice_Hoffman,2011,/genres/fiction|/genres/historical-fiction|/genres/magical-realism|/genres/short-stories|/genres/fantasy|/genres/adult-fiction|/genres/book-club|/genres/adult|/genres/literary-fiction|/genres/contemporary,dir59/8389671-the-red-garden.html,9598,The Red Garden +3.15,1330,,good_reads:book,https://www.goodreads.com/author/show/5754828._,2012,/genres/non-fiction,dir59/13489517-28.html,12927,28 حرف +4.31,380,1400096936,good_reads:book,https://www.goodreads.com/author/show/37795.Don_Winslow,2005,/genres/mystery|/genres/crime|/genres/fiction|/genres/thriller|/genres/mystery|/genres/historical-fiction|/genres/mystery|/genres/noir|/genres/literature|/genres/american|/genres/contemporary|/genres/suspense|/genres/thriller|/genres/mystery-thriller,dir59/206236.The_Power_of_the_Dog.html,3700,The Power of the Dog +4.18,4745,0312364423,good_reads:book,https://www.goodreads.com/author/show/54493.Kristin_Hannah,2011,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/book-club|/genres/romance|/genres/contemporary|/genres/drama|/genres/adult-fiction|/genres/adult|/genres/family|/genres/womens-fiction,dir59/8949352-night-road.html,40410,Night Road +4.50,1107,0778313999,good_reads:book,https://www.goodreads.com/author/show/4480131.Tiffany_Reisz,2012,/genres/erotica|/genres/bdsm|/genres/adult-fiction|/genres/erotica|/genres/romance|/genres/dark|/genres/adult|/genres/contemporary|/genres/romance|/genres/erotic-romance|/genres/romance|/genres/m-m-romance|/genres/romance|/genres/contemporary-romance|/genres/fiction,dir59/13548075-the-angel.html,8030,"The Angel (The Original Sinners, #2)" +4.25,360,,good_reads:book,https://www.goodreads.com/author/show/1409619._,1941,/genres/religion|/genres/biography|/genres/history|/genres/non-fiction|/genres/religion|/genres/islam|/genres/literature,dir59/3437465.html,3816,عبقرية عمر +4.27,293,0679723005,good_reads:book,https://www.goodreads.com/author/show/1501668.Alan_Wilson_Watts,1966,/genres/philosophy|/genres/non-fiction|/genres/spirituality|/genres/psychology|/genres/religion|/genres/religion|/genres/buddhism|/genres/self-help|/genres/buddhism|/genres/zen|/genres/philosophy|/genres/eastern-philosophy|/genres/philosophy|/genres/metaphysics,dir59/60551.The_Book_on_the_Taboo_Against_Knowing_Who_You_Are.html,5858,The Book on the Taboo Against Knowing Who You Are +4.15,120,,good_reads:book,https://www.goodreads.com/author/show/4026673.Blue_Jeans,2013,/genres/young-adult|/genres/romance,dir59/16636589-no-sonr-as-que-me-enamoro.html,1291,"No sonrías, que me enamoro (El club de los incomprendidos, #2)" +4.35,914,1423194551,good_reads:book,https://www.goodreads.com/author/show/15872.Rick_Riordan,2013,/genres/fantasy|/genres/fantasy|/genres/mythology|/genres/young-adult|/genres/short-stories|/genres/adventure|/genres/mythology|/genres/greek-mythology,dir59/17312201-the-son-of-sobek.html,9971,"The Son of Sobek (Percy Jackson & Kane Chronicles Crossover, #1)" +4.48,145,,good_reads:book,https://www.goodreads.com/author/show/6869072.C_L_Stone,2013,/genres/young-adult|/genres/romance|/genres/mystery|/genres/contemporary|/genres/young-adult|/genres/high-school|/genres/sociology|/genres/abuse|/genres/spy-thriller|/genres/espionage|/genres/suspense,dir59/18411969-first-days.html,3329,"First Days (The Ghost Bird, #2)" +4.17,544,9780991379,good_reads:book,https://www.goodreads.com/author/show/7056140.Laurelin_Paige,2014,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/adult-fiction|/genres/erotica|/genres/contemporary|/genres/adult|/genres/drama|/genres/new-adult|/genres/romance|/genres/erotic-romance|/genres/fiction|/genres/womens-fiction|/genres/chick-lit,dir59/21417430-hudson.html,4943,"Hudson (Fixed, #4)" +3.86,42,1494707616,good_reads:book,https://www.goodreads.com/author/show/7738947.Sarah_Robinson,2013,/genres/music|/genres/romance|/genres/new-adult,dir59/18464372-sand-and-clay.html,94,"Sand and Clay (Sand & Clay, #1)" +3.53,910,1416936343,good_reads:book,https://www.goodreads.com/author/show/21981.Robin_Wasserman,2008,/genres/young-adult|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/fiction|/genres/young-adult|/genres/teen|/genres/romance|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fantasy|/genres/paranormal|/genres/science-fiction-fantasy,dir59/2791536-skinned.html,9757,"Skinned (Cold Awakening, #1)" +3.72,32182,0316160202,good_reads:book,https://www.goodreads.com/author/show/941441.Stephenie_Meyer,2007,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/vampires|/genres/romance|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/shapeshifters|/genres/werewolves|/genres/young-adult|/genres/teen,dir59/428263.Eclipse.html,932291,"Eclipse (Twilight, #3)" +4.17,546,0156226006,good_reads:book,https://www.goodreads.com/author/show/155517.Italo_Calvino,1965,/genres/fiction|/genres/short-stories|/genres/fantasy|/genres/science-fiction|/genres/european-literature|/genres/italian-literature|/genres/literature|/genres/magical-realism|/genres/cultural|/genres/italy|/genres/science-fiction-fantasy|/genres/literary-fiction,dir59/59780.Cosmicomics.html,8198,Cosmicomics +3.42,118,8489163936,good_reads:book,https://www.goodreads.com/author/show/5158478.Anonymous,1140,/genres/poetry|/genres/classics|/genres/european-literature|/genres/spanish-literature|/genres/historical-fiction|/genres/medieval|/genres/literature|/genres/cultural|/genres/spain|/genres/academic|/genres/school|/genres/fiction|/genres/epic|/genres/historical-fiction,dir59/73419.Poema_de_M_o_Cid.html,3463,Poema de Mío Cid +4.14,78,0898159954,good_reads:book,https://www.goodreads.com/author/show/115313.Marilyn_Wann,1998,/genres/non-fiction|/genres/feminism|/genres/fat|/genres/fat-acceptance|/genres/health|/genres/self-help|/genres/fat|/genres/fat-studies|/genres/humor|/genres/health|/genres/fat|/genres/social-movements|/genres/social-justice|/genres/feminism|/genres/womens-studies,dir59/197923.FAT_SO_.html,693,FAT!SO? +3.86,272,006447030X,good_reads:book,https://www.goodreads.com/author/show/70750.Harold_Keith,1957,/genres/historical-fiction|/genres/young-adult|/genres/fiction|/genres/military-history|/genres/civil-war|/genres/childrens|/genres/war,dir59/529474.Rifles_for_Watie.html,5743,Rifles for Watie +3.78,459,0061122831,good_reads:book,https://www.goodreads.com/author/show/363405.Elizabeth_Scott,2009,/genres/young-adult|/genres/contemporary|/genres/romance|/genres/realistic-fiction|/genres/fiction|/genres/young-adult|/genres/teen|/genres/womens-fiction|/genres/chick-lit|/genres/death|/genres/young-adult|/genres/high-school|/genres/drama,dir59/5245026-love-you-hate-you-miss-you.html,5637,Love You Hate You Miss You +3.67,467,1595141952,good_reads:book,https://www.goodreads.com/author/show/16264.Allegra_Goodman,2008,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/science-fiction|/genres/fiction|/genres/apocalyptic|/genres/post-apocalyptic|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/adventure|/genres/family|/genres/childrens,dir59/3032314-the-other-side-of-the-island.html,3122,The Other Side of the Island +4.50,1538,0470372273,good_reads:book,https://www.goodreads.com/author/show/1970104.Donalyn_Miller,2009,/genres/education|/genres/non-fiction|/genres/teaching|/genres/adult|/genres/writing|/genres/books-about-books|/genres/academic|/genres/school|/genres/parenting|/genres/academic|/genres/teachers|/genres/reference|/genres/childrens,dir59/4732276-the-book-whisperer.html,7007,The Book Whisperer +3.56,338,0060559128,good_reads:book,https://www.goodreads.com/author/show/9432.Joanne_Harris,2003,/genres/fiction|/genres/historical-fiction|/genres/romance|/genres/cultural|/genres/france|/genres/magical-realism|/genres/mystery|/genres/religion|/genres/novels|/genres/contemporary|/genres/literature|/genres/17th-century,dir59/321572.Holy_Fools.html,5268,Holy Fools +4.11,112,0941419746,good_reads:book,https://www.goodreads.com/author/show/7702.Luigi_Pirandello,1906,/genres/european-literature|/genres/italian-literature|/genres/cultural|/genres/italy|/genres/fiction|/genres/classics|/genres/novels|/genres/literature|/genres/20th-century|/genres/nobel-prize|/genres/academic|/genres/read-for-school|/genres/literature|/genres/plays,dir59/12117.One_No_One_and_One_Hundred_Thousand.html,2511,"One, No One, and One Hundred Thousand" +4.29,482,0062039741,good_reads:book,https://www.goodreads.com/author/show/4019884.Justin_Bieber,2010,/genres/biography|/genres/non-fiction|/genres/biography|/genres/autobiography|/genres/music|/genres/young-adult|/genres/teen|/genres/autobiography|/genres/memoir|/genres/music|/genres/musicians|/genres/culture|/genres/pop-culture|/genres/biography-memoir,dir59/8752457-first-step-2-forever.html,4064,First Step 2 Forever +3.95,400,0142405825,good_reads:book,https://www.goodreads.com/author/show/57462.Eva_Ibbotson,1999,/genres/historical-fiction|/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/childrens|/genres/mystery|/genres/adventure|/genres/childrens|/genres/middle-grade,dir59/402141.The_Star_of_Kazan.html,4412,The Star of Kazan +4.29,415,0684813785,good_reads:book,https://www.goodreads.com/author/show/10263.Richard_Rhodes,1986,/genres/history|/genres/science|/genres/non-fiction|/genres/science|/genres/physics|/genres/war|/genres/war|/genres/military|/genres/history|/genres/american-history|/genres/history|/genres/world-war-ii|/genres/politics|/genres/military|/genres/military-history,dir59/16884.The_Making_of_the_Atomic_Bomb.html,9135,The Making of the Atomic Bomb +3.97,249,1846164257,good_reads:book,https://www.goodreads.com/author/show/179712.Chris_d_Lacey,2007,/genres/fantasy|/genres/fantasy|/genres/dragons|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/magic|/genres/childrens|/genres/adventure|/genres/fantasy|/genres/urban-fantasy|/genres/science-fiction-fantasy|/genres/childrens|/genres/middle-grade,dir59/1891296.The_Fire_Eternal.html,8820,"The Fire Eternal (The Last Dragon Chronicles, #4)" +4.00,475,0142000329,good_reads:book,https://www.goodreads.com/author/show/91236.Maggie_O_Farrell,2000,/genres/fiction|/genres/contemporary|/genres/romance|/genres/book-club|/genres/womens-fiction|/genres/chick-lit|/genres/adult-fiction|/genres/literary-fiction|/genres/novels|/genres/family|/genres/cultural|/genres/scotland,dir59/675323.After_You_d_Gone.html,4732,After You'd Gone +2.97,1399,0395083621,good_reads:book,https://www.goodreads.com/author/show/30691.Adolf_Hitler,1925,/genres/history|/genres/non-fiction|/genres/biography|/genres/politics|/genres/philosophy|/genres/classics|/genres/biography|/genres/autobiography|/genres/war|/genres/history|/genres/world-war-ii|/genres/autobiography|/genres/memoir,dir59/54270.Mein_Kampf.html,12417,Mein Kampf +4.07,2433,1841499889,good_reads:book,https://www.goodreads.com/author/show/4192148.James_S_A_Corey,2011,/genres/science-fiction|/genres/science-fiction|/genres/space-opera|/genres/fiction|/genres/horror|/genres/mystery|/genres/space|/genres/science-fiction-fantasy|/genres/fantasy|/genres/thriller|/genres/adventure,dir59/8855321-leviathan-wakes.html,24373,"Leviathan Wakes (Expanse, #1)" +3.91,160,1585677280,good_reads:book,https://www.goodreads.com/author/show/8587.R_Scott_Bakker,2004,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/philosophy|/genres/fantasy|/genres/high-fantasy|/genres/epic|/genres/science-fiction-fantasy|/genres/fantasy|/genres/dark-fantasy|/genres/science-fiction|/genres/speculative-fiction,dir59/18877.The_Warrior_Prophet.html,6759,"The Warrior Prophet (The Prince of Nothing, #2)" +4.07,114,,good_reads:book,https://www.goodreads.com/author/show/7294.Susan_Howatch,1971,/genres/historical-fiction|/genres/fiction|/genres/romance|/genres/gothic|/genres/romance|/genres/historical-romance|/genres/novels|/genres/european-literature|/genres/british-literature|/genres/womens-fiction|/genres/classics|/genres/literature|/genres/20th-century,dir59/782898.Penmarric.html,2622,Penmarric +3.93,101,0671743856,good_reads:book,https://www.goodreads.com/author/show/28574.Jude_Deveraux,1989,/genres/romance|/genres/romance|/genres/historical-romance|/genres/fiction|/genres/historical-fiction|/genres/womens-fiction|/genres/chick-lit|/genres/fantasy|/genres/paranormal|/genres/adult|/genres/romance|/genres/paranormal-romance|/genres/american|/genres/americana|/genres/contemporary,dir59/50805.Wishes.html,3624,Wishes +3.82,1863,1400066336,good_reads:book,https://www.goodreads.com/author/show/489673.Kaui_Hart_Hemmings,2007,/genres/fiction|/genres/contemporary|/genres/book-club|/genres/adult-fiction|/genres/adult,dir59/968403.The_Descendants.html,12474,The Descendants +4.13,44,9750507144,good_reads:book,https://www.goodreads.com/author/show/3309862.Murat_Mente_,2009,/genres/asian-literature|/genres/turkish-literature|/genres/roman|/genres/cultural|/genres/turkish|/genres/novels,dir59/7544517-korkma-ben-var-m.html,1206,Korkma Ben Varım +3.96,1176,0062020560,good_reads:book,https://www.goodreads.com/author/show/4916529.Emily_M_Danforth,2012,/genres/young-adult|/genres/glbt|/genres/fiction|/genres/contemporary|/genres/realistic-fiction|/genres/glbt|/genres/queer|/genres/romance|/genres/young-adult|/genres/coming-of-age|/genres/young-adult|/genres/teen|/genres/glbt|/genres/lesbian,dir59/11595276-the-miseducation-of-cameron-post.html,7805,The Miseducation of Cameron Post +3.81,266,0340919205,good_reads:book,https://www.goodreads.com/author/show/1045163.Lucy_Dillon,2009,/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/romance|/genres/animals|/genres/dogs|/genres/animals|/genres/contemporary|/genres/adult|/genres/european-literature|/genres/british-literature|/genres/womens-fiction|/genres/novels,dir59/6878217-lost-dogs-and-lonely-hearts.html,1999,Lost Dogs and Lonely Hearts +4.09,347,0552143545,good_reads:book,https://www.goodreads.com/author/show/9885.Judith_McNaught,1994,/genres/romance|/genres/historical-romance|/genres/romance|/genres/regency|/genres/fiction|/genres/historical-fiction|/genres/historical-romance|/genres/regency-romance|/genres/adult|/genres/womens-fiction|/genres/chick-lit|/genres/european-literature|/genres/british-literature|/genres/love,dir59/129618.Until_You.html,11251,"Until You (Westmoreland, #3)" +3.87,340,0557522935,good_reads:book,https://www.goodreads.com/author/show/4200019.Jamie_Magee,2010,/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/young-adult|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/magic|/genres/paranormal|/genres/ghosts|/genres/mystery|/genres/young-adult|/genres/young-adult-fantasy,dir59/9132056-insight-insight-1.html,3375,"Insight (Insight, #1) (Insight, #1) (Web of Hearts and Souls #1)" +4.05,315,0230768806,good_reads:book,https://www.goodreads.com/author/show/9233.Jeff_Noon,1993,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/cyberpunk|/genres/fantasy|/genres/science-fiction|/genres/dystopia|/genres/speculative-fiction|/genres/novels|/genres/science-fiction-fantasy|/genres/adult-fiction|/genres/science-fiction|/genres/near-future,dir59/17401136-vurt.html,5415,Vurt +4.00,1466,0425267083,good_reads:book,https://www.goodreads.com/author/show/24978.Maya_Banks,2013,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/erotica|/genres/bdsm|/genres/romance|/genres/contemporary-romance|/genres/romance|/genres/erotic-romance|/genres/contemporary|/genres/adult|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/new-adult,dir59/16033909-burn.html,22174,"Burn (Breathless, #3)" +3.95,489,2253152854,good_reads:book,https://www.goodreads.com/author/show/3524.Joyce_Carol_Oates,2000,/genres/fiction|/genres/historical-fiction|/genres/contemporary|/genres/novels|/genres/book-club|/genres/literary-fiction|/genres/literature|/genres/adult|/genres/literature|/genres/american|/genres/drama,dir59/15975.Blonde.html,5158,Blonde +4.09,3237,,good_reads:book,https://www.goodreads.com/author/show/2994581._,2014,/genres/novels|/genres/romantic|/genres/literature|/genres/romance|/genres/fiction,dir59/20317106.html,17832,هيبتا +4.17,45,,good_reads:book,https://www.goodreads.com/author/show/1349023.Julie_Elizabeth_Powell,2007,/genres/fiction|/genres/fantasy,dir59/3166194-gone.html,80,Gone +4.09,62,055338564X,good_reads:book,https://www.goodreads.com/author/show/396931.Christopher_Barzak,2008,/genres/fiction|/genres/fantasy|/genres/cultural|/genres/japan|/genres/magical-realism|/genres/contemporary|/genres/science-fiction|/genres/short-stories|/genres/literary-fiction|/genres/literature|/genres/asian-literature|/genres/anthologies,dir59/4717491-the-love-we-share-without-knowing.html,346,The Love We Share Without Knowing +4.18,78,1400072514,good_reads:book,https://www.goodreads.com/author/show/100752.Donita_K_Paul,2007,/genres/fantasy|/genres/fantasy|/genres/dragons|/genres/young-adult|/genres/christian|/genres/fiction|/genres/christian-fiction|/genres/adventure|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/young-adult|/genres/teen,dir59/1189399.DragonFire.html,3451,"DragonFire (DragonKeeper Chronicles, #4)" +3.84,617,0307346528,good_reads:book,https://www.goodreads.com/author/show/79922.Megan_McCafferty,2009,/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/fiction|/genres/romance|/genres/contemporary|/genres/adult|/genres/new-adult|/genres/young-adult|/genres/teen|/genres/realistic-fiction|/genres/adult-fiction,dir59/3996887-perfect-fifths.html,6754,"Perfect Fifths (Jessica Darling, #5)" +4.17,207,0143039237,good_reads:book,https://www.goodreads.com/author/show/213527.Vera_Brittain,1933,/genres/non-fiction|/genres/history|/genres/autobiography|/genres/memoir|/genres/biography|/genres/war|/genres/classics|/genres/biography|/genres/autobiography|/genres/european-literature|/genres/british-literature|/genres/biography-memoir|/genres/literature|/genres/20th-century,dir59/374388.Testament_of_Youth.html,1883,Testament of Youth +3.50,516,0440228441,good_reads:book,https://www.goodreads.com/author/show/26819.Lois_Duncan,1973,/genres/young-adult|/genres/horror|/genres/mystery|/genres/fiction|/genres/thriller|/genres/suspense|/genres/young-adult|/genres/teen|/genres/media-tie-in|/genres/movies|/genres/realistic-fiction|/genres/childrens,dir59/47763.I_Know_What_You_Did_Last_Summer.html,6649,I Know What You Did Last Summer +4.21,1030,0439598389,good_reads:book,https://www.goodreads.com/author/show/21346.David_Shannon,1998,/genres/childrens|/genres/childrens|/genres/picture-books|/genres/fantasy|/genres/fiction|/genres/humor|/genres/academic|/genres/school|/genres/kids|/genres/food-and-drink|/genres/food|/genres/health|/genres/childrens|/genres/juvenile,dir59/474858.A_Bad_Case_of_Stripes.html,38699,A Bad Case of Stripes +4.03,350,,good_reads:book,https://www.goodreads.com/author/show/696355.Ilana_Tan,2008,/genres/romance|/genres/asian-literature|/genres/indonesian-literature|/genres/novels|/genres/fiction|/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/love|/genres/cultural|/genres/japan|/genres/romantic|/genres/romance|/genres/love-story,dir59/4566934-winter-in-tokyo.html,5705,Winter in Tokyo +3.83,105,0847826465,good_reads:book,https://www.goodreads.com/author/show/1730.Umberto_Eco,2004,/genres/art|/genres/non-fiction|/genres/history|/genres/philosophy|/genres/art|/genres/art-history|/genres/european-literature|/genres/italian-literature|/genres/reference|/genres/writing|/genres/essays,dir59/10505.History_of_Beauty.html,15350,History of Beauty +3.90,196,0440244048,good_reads:book,https://www.goodreads.com/author/show/14255.Danielle_Steel,1985,/genres/romance|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/historical-fiction|/genres/romance|/genres/historical-romance|/genres/contemporary|/genres/drama|/genres/adult|/genres/novels|/genres/asian-literature|/genres/indonesian-literature,dir59/415909.No_Greater_Love.html,5709,No Greater Love +3.98,1313,0380715430,good_reads:book,https://www.goodreads.com/author/show/7.Bill_Bryson,1990,/genres/non-fiction|/genres/humanities|/genres/language|/genres/history|/genres/humor|/genres/travel|/genres/language|/genres/writing|/genres/reference|/genres/science|/genres/adult|/genres/humor|/genres/funny,dir59/29.The_Mother_Tongue.html,19104,The Mother Tongue +4.10,783,1416991689,good_reads:book,https://www.goodreads.com/author/show/588558.Lisa_Schroeder,2009,/genres/young-adult|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/contemporary|/genres/paranormal|/genres/ghosts|/genres/poetry|/genres/fiction|/genres/fantasy|/genres/realistic-fiction|/genres/death,dir59/6556855-chasing-brooklyn.html,5763,Chasing Brooklyn +3.92,290,0843123486,good_reads:book,https://www.goodreads.com/author/show/626995.Cherie_Currie,1989,/genres/music|/genres/non-fiction|/genres/biography|/genres/autobiography|/genres/memoir|/genres/biography|/genres/autobiography|/genres/biography-memoir,dir59/1309943.Neon_Angel.html,2469,Neon Angel +4.18,674,,good_reads:book,https://www.goodreads.com/author/show/4833990.Jillian_Dodd,2012,/genres/romance|/genres/new-adult|/genres/contemporary|/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/contemporary-romance,dir59/13361570-that-wedding.html,8271,"That Wedding (That Boy, #2)" +4.55,103,144247372X,good_reads:book,https://www.goodreads.com/author/show/2876763.Becca_Fitzpatrick,2012,/genres/fantasy|/genres/paranormal|/genres/angels|/genres/romance|/genres/young-adult|/genres/fantasy|/genres/paranormal,dir59/14367071-the-complete-hush-hush-saga.html,2869,"The Complete Hush, Hush Saga" +4.78,18,2851944371,good_reads:book,https://www.goodreads.com/author/show/318835.Odysseus_Elytis,1972,/genres/poetry|/genres/fiction|/genres/nobel-prize|/genres/classics,dir59/2014000.Le_Monogramme.html,565,Le Monogramme +3.78,2134,0316043915,good_reads:book,https://www.goodreads.com/author/show/2917917.N_K_Jemisin,2010,/genres/fantasy|/genres/fiction|/genres/romance|/genres/fantasy|/genres/epic-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/adult|/genres/young-adult|/genres/fantasy|/genres/mythology,dir59/6437061-the-hundred-thousand-kingdoms.html,16112,"The Hundred Thousand Kingdoms (The Inheritance Trilogy, #1)" +3.88,1606,0761169253,good_reads:book,https://www.goodreads.com/author/show/2985039.Austin_Kleon,2012,/genres/non-fiction|/genres/art|/genres/language|/genres/writing|/genres/self-help|/genres/design|/genres/business,dir59/13099738-steal-like-an-artist.html,32836,Steal Like an Artist +3.81,1234,1408312751,good_reads:book,https://www.goodreads.com/author/show/1330287.R_J_Anderson,2011,/genres/young-adult|/genres/science-fiction|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/mystery|/genres/science-fiction|/genres/aliens|/genres/romance|/genres/fiction|/genres/fantasy|/genres/supernatural|/genres/contemporary,dir59/8843789-ultraviolet.html,5881,"Ultraviolet (Ultraviolet, #1)" +4.03,255,0345327861,good_reads:book,https://www.goodreads.com/author/show/26.Anne_McCaffrey,1982,/genres/science-fiction|/genres/fantasy|/genres/fiction|/genres/science-fiction-fantasy|/genres/romance|/genres/music|/genres/space|/genres/science-fiction|/genres/space-opera|/genres/adventure|/genres/adult,dir59/653711.Crystal_Singer.html,12133,"Crystal Singer (Crystal Singer, #1)" +4.28,900,0425256855,good_reads:book,https://www.goodreads.com/author/show/4721536.Mark_Lawrence,2013,/genres/fantasy|/genres/fantasy|/genres/dark-fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/apocalyptic|/genres/post-apocalyptic|/genres/adventure|/genres/science-fiction,dir59/15985373-emperor-of-thorns.html,11600,"Emperor of Thorns (The Broken Empire, #3)" +4.61,123,,good_reads:book,https://www.goodreads.com/author/show/4942228.Santino_Hassell,2010,/genres/romance|/genres/m-m-romance|/genres/science-fiction|/genres/dystopia|/genres/romance|/genres/science-fiction|/genres/dark|/genres/action,dir59/10506860-the-interludes.html,1031,"The Interludes (In the company of shadows, #3)" +4.10,196,0142501468,good_reads:book,https://www.goodreads.com/author/show/26946.Mildred_D_Taylor,1974,/genres/historical-fiction|/genres/young-adult|/genres/fiction|/genres/cultural|/genres/african-american|/genres/childrens|/genres/classics|/genres/childrens|/genres/juvenile|/genres/cultural,dir59/130208.The_Land.html,2933,The Land +4.35,1139,,good_reads:book,https://www.goodreads.com/author/show/7056140.Laurelin_Paige,2014,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/adult-fiction|/genres/erotica|/genres/contemporary|/genres/adult|/genres/new-adult|/genres/romance|/genres/erotic-romance|/genres/drama|/genres/fiction|/genres/womens-fiction|/genres/chick-lit,dir59/18138755-forever-with-you.html,13472,"Forever with You (Fixed, #3)" +4.30,1049,0525426361,good_reads:book,https://www.goodreads.com/author/show/7014881.Esther_Earl,2014,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/biography|/genres/contemporary|/genres/biography|/genres/autobiography|/genres/young-adult|/genres/teen|/genres/biography-memoir|/genres/family|/genres/health|/genres/illness|/genres/inspirational,dir59/17675031-this-star-won-t-go-out.html,6954,This Star Won't Go Out +3.83,2046,0670016780,good_reads:book,https://www.goodreads.com/author/show/7314532.Sally_Green,2014,/genres/fantasy|/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/magic|/genres/fiction|/genres/fantasy|/genres/urban-fantasy,dir59/18079804-half-bad.html,9201,"Half Bad (Half Life, #1)" +4.02,136,158485782X,good_reads:book,https://www.goodreads.com/author/show/13589.Megan_McDonald,2003,/genres/realistic-fiction|/genres/childrens|/genres/middle-grade|/genres/childrens|/genres/humor|/genres/childrens|/genres/chapter-books|/genres/family|/genres/fiction|/genres/childrens|/genres/juvenile|/genres/retellings|/genres/relationships,dir59/1865735.The_Sisters_Club.html,1328,The Sisters Club +4.05,277,0451211030,good_reads:book,https://www.goodreads.com/author/show/5768.John_Jakes,1974,/genres/historical-fiction|/genres/fiction|/genres/war|/genres/adult|/genres/history|/genres/american-history|/genres/romance|/genres/historical-romance|/genres/literature|/genres/american|/genres/romance|/genres/epic|/genres/literature|/genres/18th-century,dir59/71771.The_Bastard.html,13286,"The Bastard (Kent Family Chronicles, #1)" +3.92,988,0375760911,good_reads:book,https://www.goodreads.com/author/show/5098.Laurie_Notaro,2002,/genres/humor|/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/womens-fiction|/genres/chick-lit|/genres/writing|/genres/essays|/genres/humor|/genres/funny|/genres/book-club|/genres/humor|/genres/comedy|/genres/biography|/genres/short-stories,dir59/7531.The_Idiot_Girls_Action_Adventure_Club.html,11870,The Idiot Girls' Action-Adventure Club +3.94,175,1416972277,good_reads:book,https://www.goodreads.com/author/show/27206.Nancy_Holder,2009,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/witches|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/romance|/genres/paranormal-romance,dir59/5989059-resurrection.html,7791,"Resurrection (Wicked, #5)" +3.85,323,0586071393,good_reads:book,https://www.goodreads.com/author/show/8588.Raymond_E_Feist,1988,/genres/fantasy|/genres/horror|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/dark-fantasy|/genres/fantasy|/genres/paranormal|/genres/paranormal|/genres/fairies,dir59/43919.Faerie_Tale.html,6155,Faerie Tale +3.90,1585,0553807056,good_reads:book,https://www.goodreads.com/author/show/9355.Dean_Koontz,2008,/genres/horror|/genres/fiction|/genres/thriller|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/suspense|/genres/fantasy|/genres/supernatural|/genres/mystery|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/ghosts,dir59/2029927.Odd_Hours.html,26367,"Odd Hours (Odd Thomas, #4)" +4.03,637,0553805096,good_reads:book,https://www.goodreads.com/author/show/933665.Alice_Schroeder,2008,/genres/biography|/genres/business|/genres/non-fiction|/genres/economics|/genres/history|/genres/biography-memoir,dir59/2054761.The_Snowball.html,12532,The Snowball +3.86,28,9722333453,good_reads:book,https://www.goodreads.com/author/show/2728905.Sandra_Carvalho,2005,/genres/fantasy|/genres/romance|/genres/european-literature|/genres/portuguese-literature|/genres/fiction|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/high-fantasy,dir59/6333188-a-ltima-feiticeira.html,472,"A Última Feiticeira (A Saga das Pedras Mágicas, #1)" +4.24,348,0553373803,good_reads:book,https://www.goodreads.com/author/show/6376.Starhawk,1993,/genres/fiction|/genres/fantasy|/genres/spirituality|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/feminism|/genres/religion|/genres/paganism|/genres/speculative-fiction|/genres/religion|/genres/wicca|/genres/apocalyptic|/genres/post-apocalyptic,dir59/80689.The_Fifth_Sacred_Thing.html,3285,"The Fifth Sacred Thing (Maya Greenwood, #1)" +3.81,2892,159420229X,good_reads:book,https://www.goodreads.com/author/show/2867569.Joshua_Foer,2011,/genres/non-fiction|/genres/science|/genres/psychology|/genres/autobiography|/genres/memoir|/genres/book-club|/genres/biography|/genres/biology|/genres/neuroscience|/genres/self-help|/genres/neuroscience|/genres/brain|/genres/education,dir59/6346975-moonwalking-with-einstein.html,32862,Moonwalking with Einstein +4.26,900,1401229697,good_reads:book,https://www.goodreads.com/author/show/454774.F_bio_Moon,2011,/genres/graphic-novels-comics|/genres/sequential-art|/genres/graphic-novels|/genres/fantasy|/genres/sequential-art|/genres/comics|/genres/comics|/genres/comic-book|/genres/magical-realism|/genres/adult|/genres/death|/genres/sequential-art|/genres/book-club,dir59/8477057-daytripper.html,10189,Daytripper +4.14,833,1401201911,good_reads:book,https://www.goodreads.com/author/show/12736.Mark_Millar,2003,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/comics|/genres/comic-book|/genres/fiction|/genres/dc-comics|/genres/superman|/genres/superheroes|/genres/dc-comics|/genres/comics|/genres/superheroes|/genres/graphic-novels-comics|/genres/fantasy|/genres/science-fiction,dir59/154798.Superman.html,23982,Superman +4.30,1775,0062076108,good_reads:book,https://www.goodreads.com/author/show/669810.Jeaniene_Frost,2013,/genres/paranormal|/genres/vampires|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/adult|/genres/fantasy|/genres/magic,dir59/13125234-twice-tempted.html,17718,"Twice Tempted (Night Prince, #2)" +4.08,1245,1481258885,good_reads:book,https://www.goodreads.com/author/show/7426289.T_E_Sivec,2013,/genres/romance|/genres/new-adult|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/romance|/genres/romantic-suspense|/genres/suspense|/genres/war|/genres/military|/genres/adult|/genres/mystery|/genres/adult-fiction|/genres/erotica,dir59/16085614-a-beautiful-lie.html,10559,"A Beautiful Lie (Playing with Fire, #1)" +3.87,1426,0007432275,good_reads:book,https://www.goodreads.com/author/show/10317.Maureen_Johnson,2013,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/mystery|/genres/paranormal|/genres/ghosts|/genres/fantasy|/genres/supernatural|/genres/fiction|/genres/fantasy|/genres/urban-fantasy|/genres/young-adult|/genres/teen|/genres/romance,dir59/12937427-the-madness-underneath.html,7679,"The Madness Underneath (Shades of London, #2)" +4.13,489,,good_reads:book,https://www.goodreads.com/author/show/696355.Ilana_Tan,2012,/genres/romance|/genres/asian-literature|/genres/indonesian-literature|/genres/novels|/genres/fiction|/genres/young-adult|/genres/womens-fiction|/genres/chick-lit|/genres/drama|/genres/love|/genres/anthologies|/genres/collections|/genres/adult,dir60/13232499-sunshine-becomes-you.html,4717,Sunshine Becomes You +3.65,1115,0061370495,good_reads:book,https://www.goodreads.com/author/show/149625.Alice_Kuipers,2007,/genres/fiction|/genres/young-adult|/genres/contemporary|/genres/womens-fiction|/genres/chick-lit|/genres/family|/genres/drama|/genres/adult-fiction|/genres/realistic-fiction|/genres/adult|/genres/novels,dir60/256003.Life_on_the_Refrigerator_Door.html,4953,Life on the Refrigerator Door +4.00,2363,1455549002,good_reads:book,https://www.goodreads.com/author/show/5437976.J_A_Redmerski,2013,/genres/new-adult|/genres/romance|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/young-adult|/genres/travel|/genres/road-trip|/genres/fiction|/genres/love|/genres/womens-fiction|/genres/chick-lit|/genres/adult,dir60/17899696-the-edge-of-always.html,21779,"The Edge of Always (The Edge of Never, #2)" +3.79,1785,0374316414,good_reads:book,https://www.goodreads.com/author/show/4906436.Gennifer_Albin,2012,/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/science-fiction|/genres/romance|/genres/fantasy|/genres/paranormal,dir60/11556960-crewel.html,10383,"Crewel (Crewel World, #1)" +3.47,633,0385482388,good_reads:book,https://www.goodreads.com/author/show/51589.Chitra_Banerjee_Divakaruni,1996,/genres/fantasy|/genres/magical-realism|/genres/fiction|/genres/romance|/genres/novels|/genres/book-club|/genres/cultural|/genres/india|/genres/contemporary|/genres/literature|/genres/literary-fiction,dir60/94669.The_Mistress_of_Spices.html,7822,The Mistress of Spices +3.84,309,0449019942,good_reads:book,https://www.goodreads.com/author/show/25092.Victoria_Holt,1960,/genres/romance|/genres/mystery|/genres/historical-fiction|/genres/gothic|/genres/fiction|/genres/romance|/genres/historical-romance|/genres/gothic|/genres/gothic-romance|/genres/romance|/genres/romantic-suspense|/genres/suspense|/genres/womens-fiction|/genres/chick-lit,dir60/211953.Mistress_of_Mellyn.html,4757,Mistress of Mellyn +4.23,544,0156001454,good_reads:book,https://www.goodreads.com/author/show/18.Gary_Paulsen,1994,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/animals|/genres/adventure|/genres/book-club|/genres/animals|/genres/dogs|/genres/biography|/genres/sports-and-games|/genres/sports|/genres/humor|/genres/travel,dir60/2923.Winterdance.html,3174,Winterdance +4.00,171,0743439740,good_reads:book,https://www.goodreads.com/author/show/9678.Ann_Rule,2000,/genres/crime|/genres/true-crime|/genres/non-fiction|/genres/mystery|/genres/crime|/genres/mystery|/genres/adult|/genres/autobiography|/genres/memoir|/genres/thriller|/genres/mystery-thriller|/genres/psychology,dir60/266346.Every_Breath_You_Take.html,4154,Every Breath You Take +4.24,78,0395120985,good_reads:book,https://www.goodreads.com/author/show/11368.Galway_Kinnell,1971,/genres/poetry|/genres/literature|/genres/contemporary|/genres/literature|/genres/american|/genres/literary-fiction,dir60/18901.The_Book_of_Nightmares.html,1454,The Book of Nightmares +3.84,580,0143039571,good_reads:book,https://www.goodreads.com/author/show/4391.Saul_Bellow,1953,/genres/fiction|/genres/classics|/genres/literature|/genres/novels|/genres/literature|/genres/american|/genres/historical-fiction|/genres/literature|/genres/20th-century|/genres/literary-fiction|/genres/adventure|/genres/literature|/genres/jewish,dir60/11908.The_Adventures_of_Augie_March.html,9338,The Adventures of Augie March +4.03,231,0345422554,good_reads:book,https://www.goodreads.com/author/show/8732.David_Eddings,1995,/genres/fantasy|/genres/fiction|/genres/fantasy|/genres/epic-fantasy|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/magic|/genres/young-adult|/genres/adventure|/genres/adult|/genres/science-fiction,dir60/18884.Polgara_the_Sorceress.html,17832,Polgara the Sorceress +3.98,1118,141591561X,good_reads:book,https://www.goodreads.com/author/show/9355.Dean_Koontz,2005,/genres/fiction|/genres/thriller|/genres/mystery|/genres/fantasy|/genres/science-fiction|/genres/horror|/genres/suspense|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/supernatural|/genres/thriller|/genres/mystery-thriller,dir60/21337.Prodigal_Son.html,21543,"Prodigal Son (Dean Koontz's Frankenstein, #1)" +3.81,371,0843956968,good_reads:book,https://www.goodreads.com/author/show/90070.Jack_Ketchum,1980,/genres/horror|/genres/fiction|/genres/thriller|/genres/horror|/genres/splatterpunk,dir60/179734.Off_Season.html,4836,Off Season +3.97,496,0618754458,good_reads:book,https://www.goodreads.com/author/show/26256.Marya_Hornbacher,2008,/genres/autobiography|/genres/memoir|/genres/non-fiction|/genres/psychology|/genres/mental-health|/genres/mental-illness|/genres/health|/genres/mental-health|/genres/biography|/genres/biography-memoir|/genres/health|/genres/biography|/genres/autobiography|/genres/self-help,dir60/2177563.Madness.html,6732,Madness +3.80,1226,0451232682,good_reads:book,https://www.goodreads.com/author/show/2812835.Gwen_Hayes,2011,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/paranormal|/genres/demons|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/magic,dir60/7948945-falling-under.html,13230,"Falling Under (Falling Under, #1)" +4.02,357,0671203231,good_reads:book,https://www.goodreads.com/author/show/17854.Bertrand_Russell,1927,/genres/philosophy|/genres/non-fiction|/genres/writing|/genres/essays|/genres/religion|/genres/atheism|/genres/science|/genres/religion|/genres/christianity|/genres/religion|/genres/theology|/genres/spirituality|/genres/religion|/genres/european-literature|/genres/british-literature,dir60/472025.Why_I_Am_Not_a_Christian_and_Other_Essays_on_Religion_and_Related_Subjects.html,10761,Why I Am Not a Christian and Other Essays on Religion and Related Subjects +4.50,140,185549664X,good_reads:book,https://www.goodreads.com/author/show/1077326.J_K_Rowling,2003,/genres/fantasy|/genres/young-adult|/genres/fiction|/genres/fantasy|/genres/magic|/genres/childrens|/genres/adventure|/genres/young-adult|/genres/teen|/genres/fantasy|/genres/paranormal|/genres/novels|/genres/academic|/genres/school,dir60/1317181.Harry_Potter_and_the_Order_of_the_Phoenix.html,9440,"Harry Potter and the Order of the Phoenix (Harry Potter, #5, Part 1)" +4.09,2700,0316098795,good_reads:book,https://www.goodreads.com/author/show/4730894.Daniel_O_Malley,2012,/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/mystery|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/thriller|/genres/fantasy|/genres/supernatural|/genres/adult|/genres/humor,dir60/10836728-the-rook.html,15955,"The Rook (The Checquy Files, #1)" +4.12,3374,0312577206,good_reads:book,https://www.goodreads.com/author/show/54493.Kristin_Hannah,2012,/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/book-club|/genres/contemporary|/genres/war|/genres/drama|/genres/womens-fiction|/genres/adult|/genres/family,dir60/12022079-home-front.html,26824,Home Front +4.02,1080,1408803402,good_reads:book,https://www.goodreads.com/author/show/3020684.Alyxandra_Harvey,2009,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/romance|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/adventure|/genres/fiction,dir60/6707693-my-love-lies-bleeding.html,12969,"My Love Lies Bleeding (Drake Chronicles, #1)" +4.11,3879,1455520659,good_reads:book,https://www.goodreads.com/author/show/2345.Nicholas_Sparks,2012,/genres/romance|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/book-club|/genres/contemporary|/genres/adult,dir60/17407748-the-longest-ride.html,29107,The Longest Ride +3.70,697,0156032732,good_reads:book,https://www.goodreads.com/author/show/1285555.Jos_Saramago,2004,/genres/fiction|/genres/literature|/genres/novels|/genres/european-literature|/genres/portuguese-literature|/genres/contemporary|/genres/science-fiction|/genres/science-fiction|/genres/dystopia|/genres/cultural|/genres/portugal|/genres/nobel-prize,dir60/47667.Seeing.html,7500,"Seeing (Blindness, #2)" +4.09,32,0156344076,good_reads:book,https://www.goodreads.com/author/show/6530.Max_Frisch,1964,/genres/european-literature|/genres/german-literature|/genres/fiction|/genres/classics|/genres/novels|/genres/literature|/genres/roman|/genres/love|/genres/literature|/genres/20th-century,dir60/74183.Gantenbein.html,885,Gantenbein +4.11,847,0224063979,good_reads:book,https://www.goodreads.com/author/show/5112.Chris_Ware,2000,/genres/sequential-art|/genres/graphic-novels|/genres/sequential-art|/genres/comics|/genres/fiction|/genres/graphic-novels-comics|/genres/sequential-art|/genres/comix|/genres/comics|/genres/comic-book|/genres/art,dir60/34072.Jimmy_Corrigan_the_Smartest_Kid_on_Earth.html,14679,"Jimmy Corrigan, the Smartest Kid on Earth" +3.69,1721,0743243781,good_reads:book,https://www.goodreads.com/author/show/3347.Frank_McCourt,2005,/genres/non-fiction|/genres/autobiography|/genres/memoir|/genres/biography|/genres/education|/genres/teaching|/genres/biography|/genres/autobiography|/genres/biography-memoir|/genres/european-literature|/genres/irish-literature|/genres/book-club|/genres/cultural|/genres/ireland,dir60/4909.Teacher_Man.html,20482,Teacher Man +4.27,63,2070367622,good_reads:book,https://www.goodreads.com/author/show/107564.Jacques_Pr_vert,1949,/genres/poetry|/genres/cultural|/genres/france|/genres/european-literature|/genres/french-literature|/genres/classics|/genres/literature|/genres/fiction|/genres/literature|/genres/20th-century|/genres/academic|/genres/school|/genres/young-adult|/genres/high-school|/genres/contemporary,dir60/230200.Paroles.html,2615,Paroles +3.79,41,0140017836,good_reads:book,https://www.goodreads.com/author/show/58411.Keith_Waterhouse,1959,/genres/fiction|/genres/classics|/genres/humor|/genres/european-literature|/genres/british-literature|/genres/humor|/genres/comedy|/genres/plays|/genres/novels|/genres/young-adult|/genres/coming-of-age|/genres/literature|/genres/20th-century|/genres/humor|/genres/funny,dir60/578644.Billy_Liar.html,727,Billy Liar +3.84,1515,0375821821,good_reads:book,https://www.goodreads.com/author/show/8178.Carl_Hiaasen,2005,/genres/young-adult|/genres/fiction|/genres/realistic-fiction|/genres/mystery|/genres/humor|/genres/childrens|/genres/childrens|/genres/middle-grade|/genres/adventure|/genres/childrens|/genres/juvenile|/genres/humor|/genres/funny,dir60/13067.Flush.html,15428,Flush +4.09,498,1416589430,good_reads:book,https://www.goodreads.com/author/show/2503028.Molly_Harper,2009,/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy|/genres/womens-fiction|/genres/chick-lit|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/fiction|/genres/humor,dir60/5999242-nice-girls-don-t-date-dead-men.html,8512,"Nice Girls Don't Date Dead Men (Jane Jameson, #2)" +3.91,270,0060751584,good_reads:book,https://www.goodreads.com/author/show/13450.Gabriel_Garc_a_M_rquez,1972,/genres/fiction|/genres/short-stories|/genres/magical-realism|/genres/literature|/genres/european-literature|/genres/spanish-literature|/genres/cultural|/genres/latin-american|/genres/classics|/genres/nobel-prize|/genres/novels|/genres/literature|/genres/latin-american-literature,dir60/31741.Innocent_Erendira_and_Other_Stories.html,6147,Innocent Erendira and Other Stories +3.97,433,087923573X,good_reads:book,https://www.goodreads.com/author/show/72120.Arthur_Ransome,1930,/genres/childrens|/genres/fiction|/genres/classics|/genres/adventure|/genres/young-adult|/genres/historical-fiction|/genres/european-literature|/genres/british-literature|/genres/childrens|/genres/juvenile|/genres/childrens|/genres/middle-grade|/genres/literature,dir60/125190.Swallows_and_Amazons.html,15170,"Swallows and Amazons (Swallows and Amazons, #1)" +3.32,309,0060882034,good_reads:book,https://www.goodreads.com/author/show/12180.Francine_Prose,2000,/genres/fiction|/genres/novels|/genres/contemporary|/genres/literary-fiction|/genres/literature|/genres/book-club|/genres/literature|/genres/american|/genres/academic|/genres/academia|/genres/adult|/genres/modern,dir60/39937.Blue_Angel.html,2374,Blue Angel +3.88,192,055329024X,good_reads:book,https://www.goodreads.com/author/show/14078.David_Brin,1990,/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/speculative-fiction|/genres/science-fiction|/genres/hard-science-fiction|/genres/science-fiction|/genres/near-future|/genres/environment|/genres/fantasy|/genres/science-fiction|/genres/cyberpunk|/genres/novels,dir60/96471.Earth.html,4233,Earth +4.12,126,054528368X,good_reads:book,https://www.goodreads.com/author/show/179712.Chris_d_Lacey,2011,/genres/fantasy|/genres/fantasy|/genres/dragons|/genres/young-adult|/genres/fantasy|/genres/magic|/genres/fiction|/genres/childrens|/genres/adventure|/genres/science-fiction-fantasy|/genres/childrens|/genres/juvenile|/genres/mystery,dir60/7842739-fire-world.html,2259,"Fire World (The Last Dragon Chronicles, #6)" +3.75,797,1442421177,good_reads:book,https://www.goodreads.com/author/show/4074044.Karsten_Knight,2011,/genres/young-adult|/genres/fantasy|/genres/mythology|/genres/fantasy|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/supernatural|/genres/mythology|/genres/gods|/genres/young-adult|/genres/teen,dir60/9758765-wildefire.html,6170,"Wildefire (Wildefire, #1)" +3.89,549,6000030118,good_reads:book,https://www.goodreads.com/author/show/1446295._,2007,/genres/self-help|/genres/psychology,dir60/3438058.html,4540,لماذا من حولك أغبياء؟ +3.81,344,0547550766,good_reads:book,https://www.goodreads.com/author/show/4074084.Megan_Bostic,2012,/genres/young-adult|/genres/contemporary|/genres/realistic-fiction|/genres/romance|/genres/travel|/genres/road-trip|/genres/young-adult|/genres/teen|/genres/death|/genres/fiction|/genres/young-adult|/genres/young-adult-contemporary|/genres/family,dir60/8419647-never-eighteen.html,1498,Never Eighteen +3.54,91,357030258X,good_reads:book,https://www.goodreads.com/author/show/18786.Monika_Feth,2003,/genres/thriller|/genres/young-adult|/genres/european-literature|/genres/german-literature|/genres/mystery|/genres/crime|/genres/mystery|/genres/contemporary|/genres/young-adult|/genres/teen|/genres/horror|/genres/young-adult|/genres/young-adult-contemporary|/genres/young-adult|/genres/high-school,dir60/1655091.Der_Erdbeerpfl_cker.html,1556,Der Erdbeerpflücker (Jette-Thriller #1) +3.56,423,0802118062,good_reads:book,https://www.goodreads.com/author/show/128607.Elfriede_Jelinek,1983,/genres/fiction|/genres/european-literature|/genres/german-literature|/genres/nobel-prize|/genres/literature|/genres/contemporary,dir60/219879.The_Piano_Teacher.html,4065,The Piano Teacher +4.12,215,0373802447,good_reads:book,https://www.goodreads.com/author/show/7031278.Michelle_Sagara,2006,/genres/fantasy|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/dragons|/genres/fantasy|/genres/paranormal|/genres/fiction|/genres/science-fiction-fantasy|/genres/romance|/genres/fantasy|/genres/high-fantasy|/genres/mystery,dir60/30189.Cast_In_Courtlight.html,6147,Cast In Courtlight (Chronicles of Elantra #2) +3.68,703,0060527986,good_reads:book,https://www.goodreads.com/author/show/566.Paulo_Coelho,1997,/genres/fiction|/genres/philosophy|/genres/spirituality|/genres/inspirational|/genres/self-help|/genres/novels|/genres/religion|/genres/fantasy|/genres/literature|/genres/contemporary,dir60/1426.Warrior_of_the_Light.html,15163,Warrior of the Light +4.48,460,0393048470,good_reads:book,https://www.goodreads.com/author/show/8164.Lewis_Carroll,1960,/genres/classics|/genres/fiction|/genres/fantasy|/genres/childrens|/genres/literature|/genres/reference|/genres/young-adult|/genres/fantasy|/genres/fairy-tales|/genres/european-literature|/genres/british-literature|/genres/literature|/genres/19th-century,dir60/176972.The_Annotated_Alice.html,5312,The Annotated Alice +4.29,147,,good_reads:book,https://www.goodreads.com/author/show/9494.H_P_Lovecraft,2011,/genres/science-fiction|/genres/classics|/genres/science-fiction-fantasy|/genres/fantasy|/genres/weird-fiction|/genres/literature|/genres/novels|/genres/horror|/genres/lovecraftian|/genres/literature|/genres/american|/genres/mystery|/genres/gothic,dir60/11851522-the-complete-works-of-h-p-lovecraft.html,6532,The Complete Works of H.P. Lovecraft +4.35,707,0373210663,good_reads:book,https://www.goodreads.com/author/show/415967.Rachel_Vincent,2013,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/fantasy|/genres/fantasy|/genres/urban-fantasy|/genres/paranormal|/genres/demons|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural,dir60/13508069-with-all-my-soul.html,4711,"With All My Soul (Soul Screamers, #7)" +4.24,391,,good_reads:book,https://www.goodreads.com/author/show/838768.Tere_Liye,2012,/genres/novels|/genres/fiction|/genres/asian-literature|/genres/indonesian-literature|/genres/thriller|/genres/politics|/genres/action|/genres/family|/genres/thriller|/genres/mystery-thriller|/genres/mystery|/genres/crime|/genres/adult,dir60/15721334-negeri-para-bedebah.html,2410,Negeri Para Bedebah +3.94,435,1423101715,good_reads:book,https://www.goodreads.com/author/show/485981.Carole_Wilkinson,2005,/genres/fantasy|/genres/fantasy|/genres/dragons|/genres/young-adult|/genres/adventure|/genres/historical-fiction|/genres/childrens|/genres/fantasy|/genres/magic|/genres/fiction|/genres/cultural|/genres/china|/genres/childrens|/genres/middle-grade,dir60/1162185.Dragon_Keeper.html,6348,"Dragon Keeper (Dragon Keeper, #1)" +4.22,1159,0373211120,good_reads:book,https://www.goodreads.com/author/show/2995873.Julie_Kagawa,2014,/genres/paranormal|/genres/vampires|/genres/young-adult|/genres/science-fiction|/genres/dystopia|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/apocalyptic|/genres/post-apocalyptic|/genres/fantasy|/genres/supernatural|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/urban-fantasy,dir60/17883441-the-forever-song.html,5953,"The Forever Song (Blood of Eden, #3)" +4.02,1881,0425267067,good_reads:book,https://www.goodreads.com/author/show/24978.Maya_Banks,2013,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/erotica|/genres/bdsm|/genres/romance|/genres/erotic-romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/adult|/genres/erotica|/genres/menage|/genres/fiction|/genres/new-adult,dir60/16033906-fever.html,29805,"Fever (Breathless, #2)" +4.02,273,0684865378,good_reads:book,https://www.goodreads.com/author/show/239579.Charles_Dickens,1934,/genres/classics|/genres/religion|/genres/holiday|/genres/christmas|/genres/non-fiction|/genres/book-club|/genres/childrens|/genres/christian|/genres/biography|/genres/inspirational|/genres/religion|/genres/christianity,dir60/5342.The_Life_of_Our_Lord.html,1270,The Life of Our Lord +4.12,286,0800758188,good_reads:book,https://www.goodreads.com/author/show/6264.Elisabeth_Elliot,1984,/genres/christian|/genres/non-fiction|/genres/religion|/genres/christianity|/genres/relationships|/genres/religion|/genres/faith|/genres/marriage|/genres/religion|/genres/biography|/genres/spirituality|/genres/inspirational,dir60/56480.Passion_and_Purity.html,10316,Passion and Purity +3.97,190,0641587716,good_reads:book,https://www.goodreads.com/author/show/1401.Stephen_Hawking,1983,/genres/science|/genres/non-fiction|/genres/science|/genres/physics|/genres/philosophy|/genres/science|/genres/astronomy|/genres/space|/genres/history|/genres/reference|/genres/science|/genres/popular-science|/genres/education,dir60/449573.The_Theory_of_Everything.html,3064,The Theory of Everything +4.11,123,1400071291,good_reads:book,https://www.goodreads.com/author/show/100752.Donita_K_Paul,2005,/genres/fantasy|/genres/fantasy|/genres/dragons|/genres/young-adult|/genres/christian|/genres/christian-fiction|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy,dir60/238968.DragonQuest.html,5777,"DragonQuest (DragonKeeper Chronicles, #2)" +4.12,153,1416958843,good_reads:book,https://www.goodreads.com/author/show/94091.Kate_Brian,2009,/genres/young-adult|/genres/mystery|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/young-adult|/genres/teen|/genres/school-stories|/genres/boarding-school|/genres/contemporary|/genres/realistic-fiction|/genres/suspense|/genres/drama,dir60/3997399-paradise-lost.html,4492,"Paradise Lost (Private, #9)" +4.27,568,0395181569,good_reads:book,https://www.goodreads.com/author/show/15450.Virginia_Lee_Burton,1942,/genres/childrens|/genres/picture-books|/genres/childrens|/genres/fiction|/genres/classics|/genres/childrens|/genres/juvenile|/genres/kids|/genres/fantasy|/genres/academic|/genres/school|/genres/realistic-fiction|/genres/historical-fiction,dir60/153540.The_Little_House.html,25765,The Little House +4.13,603,0553572989,good_reads:book,https://www.goodreads.com/author/show/2687.Dan_Simmons,1997,/genres/science-fiction|/genres/fiction|/genres/science-fiction|/genres/space-opera|/genres/fantasy|/genres/science-fiction-fantasy|/genres/speculative-fiction|/genres/science-fiction|/genres/time-travel|/genres/religion|/genres/novels|/genres/adventure,dir60/11289.The_Rise_of_Endymion.html,20335,"The Rise of Endymion (Hyperion Cantos, #4)" +4.14,368,0821780662,good_reads:book,https://www.goodreads.com/author/show/64364.Jacquelyn_Frank,2007,/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/paranormal|/genres/romance|/genres/paranormal|/genres/demons|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/adult|/genres/fantasy|/genres/urban-fantasy|/genres/fiction|/genres/fantasy|/genres/magic,dir60/702051.Gideon.html,9661,"Gideon (Nightwalkers, #2)" +3.81,337,0373802609,good_reads:book,https://www.goodreads.com/author/show/8685.Mercedes_Lackey,2006,/genres/fantasy|/genres/romance|/genres/fantasy|/genres/fairy-tales|/genres/fiction|/genres/fantasy|/genres/dragons|/genres/science-fiction-fantasy|/genres/fantasy|/genres/magic|/genres/adult,dir60/13978.One_Good_Knight.html,7167,"One Good Knight (Five Hundred Kingdoms, #2)" +4.72,104,178048044X,good_reads:book,https://www.goodreads.com/author/show/20248.J_R_Ward,2010,/genres/romance|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/paranormal|/genres/fantasy|/genres/romance|/genres/paranormal-romance|/genres/love|/genres/horror,dir60/10780042-j-r-ward-collection.html,1788,J. R. Ward Collection +3.29,2951,0452281423,good_reads:book,https://www.goodreads.com/author/show/437669.A_N_Roquelaure,1983,/genres/adult-fiction|/genres/erotica|/genres/fiction|/genres/fantasy|/genres/romance|/genres/erotica|/genres/bdsm|/genres/adult|/genres/fantasy|/genres/fairy-tales|/genres/adult-fiction|/genres/horror|/genres/sexuality,dir60/26582.The_Claiming_of_Sleeping_Beauty.html,32671,"The Claiming of Sleeping Beauty (Sleeping Beauty, #1)" +4.18,1210,0865471185,good_reads:book,https://www.goodreads.com/author/show/1054.Beryl_Markham,1942,/genres/non-fiction|/genres/biography|/genres/autobiography|/genres/memoir|/genres/cultural|/genres/africa|/genres/book-club|/genres/travel|/genres/adventure|/genres/history|/genres/biography-memoir|/genres/biography|/genres/autobiography,dir60/1624.West_with_the_Night.html,12583,West with the Night +4.05,242,0810942119,good_reads:book,https://www.goodreads.com/author/show/157676.Lauren_Myracle,2009,/genres/realistic-fiction|/genres/childrens|/genres/middle-grade|/genres/womens-fiction|/genres/chick-lit|/genres/childrens|/genres/fiction|/genres/young-adult|/genres/young-adult|/genres/teen|/genres/contemporary|/genres/academic|/genres/school|/genres/childrens|/genres/juvenile,dir60/6439641-luv-ya-bunches.html,3042,"Luv Ya Bunches (Flower Power, #1)" +3.84,276,3746611091,good_reads:book,https://www.goodreads.com/author/show/4750._mile_Zola,1880,/genres/fiction|/genres/cultural|/genres/france|/genres/classics|/genres/european-literature|/genres/french-literature|/genres/literature|/genres/19th-century|/genres/literature|/genres/romance,dir60/371456.Nana.html,10479,"Nana (Les Rougon-Macquart, #9)" +3.76,122,0439944368,good_reads:book,https://www.goodreads.com/author/show/594898.Tom_Becker,2007,/genres/fantasy|/genres/young-adult|/genres/horror|/genres/paranormal|/genres/vampires|/genres/fantasy|/genres/supernatural|/genres/shapeshifters|/genres/werewolves|/genres/adventure|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/teen|/genres/fiction,dir60/1228406.Darkside.html,918,"Darkside (Darkside, #1)" +4.11,434,0140439056,good_reads:book,https://www.goodreads.com/author/show/239579.Charles_Dickens,1843,/genres/classics|/genres/fiction|/genres/holiday|/genres/christmas|/genres/literature|/genres/short-stories|/genres/literature|/genres/19th-century|/genres/european-literature|/genres/british-literature|/genres/holiday|/genres/fantasy|/genres/classics|/genres/classic-literature,dir60/5338.A_Christmas_Carol_and_Other_Christmas_Writings.html,23290,A Christmas Carol and Other Christmas Writings +3.41,663,,good_reads:book,https://www.goodreads.com/author/show/33503.L_Ron_Hubbard,1982,/genres/science-fiction|/genres/fiction|/genres/science-fiction-fantasy|/genres/fantasy|/genres/adventure|/genres/apocalyptic|/genres/post-apocalyptic|/genres/science-fiction|/genres/space-opera|/genres/classics,dir60/769658.Battlefield_Earth.html,9695,Battlefield Earth +4.33,605,0316187704,good_reads:book,https://www.goodreads.com/author/show/2063919.Michael_J_Sullivan,2010,/genres/fantasy|/genres/fantasy|/genres/epic-fantasy|/genres/fiction|/genres/adventure|/genres/fantasy|/genres/magic|/genres/fantasy|/genres/high-fantasy|/genres/adult,dir60/10790277-rise-of-empire.html,12296,"Rise of Empire (The Riyria Revelations, #3-4)" +3.84,352,1400078652,good_reads:book,https://www.goodreads.com/author/show/1728.Orhan_Pamuk,1990,/genres/fiction|/genres/asian-literature|/genres/turkish-literature|/genres/mystery|/genres/literature|/genres/cultural|/genres/turkish|/genres/novels|/genres/literary-fiction|/genres/nobel-prize,dir60/11692.The_Black_Book.html,4432,The Black Book +4.16,359,031021923X,good_reads:book,https://www.goodreads.com/author/show/9204.Philip_Yancey,1995,/genres/christian|/genres/non-fiction|/genres/religion|/genres/christianity|/genres/religion|/genres/religion|/genres/theology|/genres/religion|/genres/faith|/genres/spirituality|/genres/inspirational|/genres/philosophy|/genres/history,dir60/53834.The_Jesus_I_Never_Knew.html,11426,The Jesus I Never Knew +3.92,196,0007261306,good_reads:book,https://www.goodreads.com/author/show/1304819.D_B_Shan,1999,/genres/fantasy|/genres/horror|/genres/fiction|/genres/mystery|/genres/fantasy|/genres/urban-fantasy|/genres/fantasy|/genres/paranormal|/genres/thriller|/genres/adult|/genres/mystery|/genres/crime,dir60/3040004-procession-of-the-dead.html,1637,"Procession of the Dead (The City Trilogy, #1)" +4.36,865,1582406197,good_reads:book,https://www.goodreads.com/author/show/12425.Robert_Kirkman,2004,/genres/sequential-art|/genres/graphic-novels|/genres/horror|/genres/horror|/genres/zombies|/genres/sequential-art|/genres/comics|/genres/fiction|/genres/graphic-novels-comics|/genres/apocalyptic|/genres/post-apocalyptic|/genres/comics|/genres/comic-book|/genres/science-fiction|/genres/dystopia|/genres/science-fiction,dir60/30071.The_Walking_Dead_Book_One.html,20577,"The Walking Dead, Book One" +3.97,182,0399151311,good_reads:book,https://www.goodreads.com/author/show/33987.LaVyrle_Spencer,1985,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/fiction|/genres/adult|/genres/womens-fiction|/genres/chick-lit|/genres/romance|/genres/historical-romance|/genres/novels|/genres/romantic|/genres/family,dir60/572626.Separate_Beds.html,3544,Separate Beds +4.24,72,0413748308,good_reads:book,https://www.goodreads.com/author/show/29185.Sarah_Kane,2000,/genres/plays|/genres/drama|/genres/plays|/genres/theatre|/genres/poetry|/genres/psychology|/genres/european-literature|/genres/british-literature|/genres/literature,dir60/146548.4_48_Psychosis.html,1016,4.48 Psychosis +4.19,1670,,good_reads:book,https://www.goodreads.com/author/show/4586597.R_L_Mathewson,2011,/genres/romance|/genres/romance|/genres/contemporary-romance|/genres/contemporary|/genres/humor|/genres/funny|/genres/adult|/genres/adult-fiction|/genres/erotica|/genres/humor|/genres/womens-fiction|/genres/chick-lit|/genres/new-adult|/genres/love,dir60/12351649-perfection.html,35197,"Perfection (Neighbor from Hell, #2)" +4.17,789,1401324290,good_reads:book,https://www.goodreads.com/author/show/4627059.Luis_Carlos_Montalv_n,2011,/genres/biography|/genres/animals|/genres/autobiography|/genres/memoir|/genres/book-club|/genres/non-fiction|/genres/animals|/genres/dogs|/genres/biography|/genres/autobiography|/genres/history|/genres/psychology|/genres/biography-memoir,dir60/10393675-until-tuesday.html,4685,Until Tuesday +3.99,2944,0425267040,good_reads:book,https://www.goodreads.com/author/show/24978.Maya_Banks,2013,/genres/romance|/genres/adult-fiction|/genres/erotica|/genres/erotica|/genres/bdsm|/genres/contemporary|/genres/romance|/genres/contemporary-romance|/genres/romance|/genres/erotic-romance|/genres/adult|/genres/new-adult|/genres/fiction|/genres/womens-fiction|/genres/chick-lit,dir60/16033902-rush.html,41287,"Rush (Breathless, #1)" +4.07,10585,0061950726,good_reads:book,https://www.goodreads.com/author/show/157146.Christina_Baker_Kline,2013,/genres/historical-fiction|/genres/book-club|/genres/fiction|/genres/adult-fiction|/genres/adult|/genres/contemporary|/genres/young-adult|/genres/novels|/genres/drama|/genres/young-adult|/genres/coming-of-age,dir60/15818107-orphan-train.html,76606,Orphan Train +4.23,1185,,good_reads:book,https://www.goodreads.com/author/show/5160667.Shay_Savage,2014,/genres/romance|/genres/science-fiction|/genres/time-travel|/genres/romance|/genres/historical-romance|/genres/fantasy|/genres/adult|/genres/new-adult|/genres/fantasy|/genres/paranormal|/genres/science-fiction|/genres/historical-fiction|/genres/humor|/genres/funny,dir60/20504754-transcendence.html,4942,Transcendence +4.03,218,,good_reads:book,https://www.goodreads.com/author/show/5769580.Abdul_Rahman_Munif,1987,/genres/fiction|/genres/novels|/genres/literature|/genres/historical-fiction|/genres/politics,dir60/5948927.html,1607,التيه +3.99,27,1853408360,good_reads:book,https://www.goodreads.com/author/show/851161.Kate_le_Vann,2005,/genres/young-adult|/genres/romance|/genres/contemporary,dir60/2274992.Tessa_in_Love.html,294,Tessa in Love +2.77,800,0060988649,good_reads:book,https://www.goodreads.com/author/show/7025.Gregory_Maguire,2001,/genres/fantasy|/genres/fiction|/genres/mystery|/genres/horror|/genres/fantasy|/genres/fairy-tales|/genres/adult|/genres/contemporary|/genres/science-fiction-fantasy|/genres/paranormal|/genres/ghosts|/genres/fantasy|/genres/supernatural,dir60/24929.Lost.html,11128,Lost +3.84,165,0571207995,good_reads:book,https://www.goodreads.com/author/show/16865.Timothy_Findley,1977,/genres/fiction|/genres/cultural|/genres/canada|/genres/historical-fiction|/genres/classics|/genres/war|/genres/literature|/genres/canadian-literature|/genres/literature|/genres/academic|/genres/school|/genres/literary-fiction|/genres/academic|/genres/read-for-school,dir60/29898.The_Wars.html,4160,The Wars +3.36,1693,0312424442,good_reads:book,https://www.goodreads.com/author/show/3083854.Tom_Wolfe,2003,/genres/fiction|/genres/novels|/genres/contemporary|/genres/academic|/genres/college|/genres/literature|/genres/book-club|/genres/literature|/genres/american|/genres/young-adult|/genres/coming-of-age|/genres/adult-fiction|/genres/literary-fiction,dir60/231.I_am_Charlotte_Simmons.html,17743,I am Charlotte Simmons +4.09,362,1407103946,good_reads:book,https://www.goodreads.com/author/show/81096.Chris_Wooding,2009,/genres/fantasy|/genres/horror|/genres/young-adult|/genres/sequential-art|/genres/graphic-novels|/genres/adventure|/genres/fiction|/genres/fantasy|/genres/paranormal|/genres/young-adult|/genres/teen|/genres/mystery|/genres/thriller,dir60/6364017-malice.html,2013,"Malice (Malice, #1)" +4.23,137,1582430438,good_reads:book,https://www.goodreads.com/author/show/8567.Wendell_Berry,1974,/genres/fiction|/genres/novels|/genres/literature|/genres/book-club|/genres/american|/genres/southern|/genres/environment|/genres/nature|/genres/classics|/genres/american|/genres/american-novels,dir60/227274.The_Memory_of_Old_Jack.html,1085,The Memory of Old Jack +4.02,531,0575085150,good_reads:book,https://www.goodreads.com/author/show/81096.Chris_Wooding,2009,/genres/science-fiction|/genres/steampunk|/genres/fantasy|/genres/science-fiction|/genres/adventure|/genres/fiction|/genres/adventure|/genres/pirates|/genres/science-fiction-fantasy|/genres/adult|/genres/fantasy|/genres/urban-fantasy|/genres/action,dir60/6285903-retribution-falls.html,3878,"Retribution Falls (Tales of the Ketty Jay, #1)" +3.61,109,1401360106,good_reads:book,https://www.goodreads.com/author/show/183537.Kitty_Fitzgerald,2005,/genres/fiction|/genres/young-adult|/genres/book-club|/genres/young-adult|/genres/young-adult-contemporary|/genres/sociology|/genres/abuse,dir60/319403.Pigtopia.html,529,Pigtopia +4.06,954,1606840584,good_reads:book,https://www.goodreads.com/author/show/2891503.Bree_Despain,2010,/genres/young-adult|/genres/fantasy|/genres/paranormal|/genres/shapeshifters|/genres/werewolves|/genres/fantasy|/genres/romance|/genres/romance|/genres/paranormal-romance|/genres/fantasy|/genres/supernatural|/genres/fantasy|/genres/urban-fantasy|/genres/animals|/genres/wolves|/genres/fiction,dir60/7831742-the-lost-saint.html,12690,"The Lost Saint (The Dark Divine, #2)" +4.26,477,0517548233,good_reads:book,https://www.goodreads.com/author/show/2062.Henry_Hazlitt,1946,/genres/economics|/genres/non-fiction|/genres/politics|/genres/business|/genres/philosophy|/genres/history|/genres/classics|/genres/education|/genres/reference|/genres/science,dir60/3028.Economics_in_One_Lesson.html,5767,Economics in One Lesson +4.34,93,0575070706,good_reads:book,https://www.goodreads.com/author/show/58.Frank_Herbert,1977,/genres/science-fiction|/genres/fantasy|/genres/fiction|/genres/classics|/genres/science-fiction-fantasy|/genres/science-fiction|/genres/space-opera,dir60/53764.The_Great_Dune_Trilogy.html,41378,The Great Dune Trilogy +3.36,192,842534607X,good_reads:book,https://www.goodreads.com/author/show/3493970.Albert_Espinosa,2011,/genres/european-literature|/genres/spanish-literature|/genres/drama|/genres/fiction,dir60/10832326-si-t-me-dices-ven-lo-dejo-todo-pero-dime-ven.html,1914,Si tú me dices ven lo dejo todo... pero dime ven +4.12,1150,0140143459,good_reads:book,https://www.goodreads.com/author/show/776.Michael_Lewis,1989,/genres/non-fiction|/genres/economics|/genres/history|/genres/biography|/genres/politics|/genres/biography|/genres/autobiography|/genres/literature|/genres/american|/genres/culture|/genres/humor|/genres/funny|/genres/biography-memoir,dir60/1171.Liar_s_Poker.html,32637,Liar's Poker +4.20,650,,good_reads:book,https://www.goodreads.com/author/show/1112683._,2009,/genres/novels|/genres/fiction|/genres/religion|/genres/literature|/genres/philosophy|/genres/religion|/genres/islam|/genres/inspirational|/genres/historical-fiction|/genres/spirituality,dir60/6976667.html,2899,ألواح ودسر +3.89,132,1400303400,good_reads:book,https://www.goodreads.com/author/show/5544.Frank_E_Peretti,2002,/genres/christian-fiction|/genres/christian|/genres/young-adult|/genres/fiction|/genres/thriller|/genres/suspense|/genres/mystery|/genres/fantasy|/genres/horror|/genres/religion,dir60/65686.Nightmare_Academy.html,3531,"Nightmare Academy (Veritas Project, #2)" +4.09,1256,0345515501,good_reads:book,https://www.goodreads.com/author/show/18149.Tess_Gerritsen,2011,/genres/mystery|/genres/mystery|/genres/crime|/genres/thriller|/genres/suspense|/genres/thriller|/genres/mystery-thriller,dir60/9578677-the-silent-girl.html,16312,"The Silent Girl (Rizzoli & Isles, #9)" +4.37,28,0393062260,good_reads:book,https://www.goodreads.com/author/show/62157.Robert_Alter,2007,/genres/poetry|/genres/religion|/genres/christian|/genres/religion|/genres/theology|/genres/reference|/genres/religion|/genres/judaism|/genres/non-fiction|/genres/religion|/genres/christianity|/genres/religion|/genres/scripture,dir60/1251125.The_Book_of_Psalms.html,242,The Book of Psalms +4.17,2226,0767913736,good_reads:book,https://www.goodreads.com/author/show/44565.Candice_Millard,2005,/genres/history|/genres/non-fiction|/genres/biography|/genres/adventure|/genres/book-club|/genres/travel|/genres/politics|/genres/presidents|/genres/history|/genres/american-history|/genres/biography-memoir,dir60/78508.The_River_of_Doubt.html,16618,The River of Doubt +3.99,775,1416909427,good_reads:book,https://www.goodreads.com/author/show/151371.Jenny_Han,2006,/genres/young-adult|/genres/realistic-fiction|/genres/romance|/genres/contemporary|/genres/childrens|/genres/middle-grade|/genres/fiction|/genres/womens-fiction|/genres/chick-lit|/genres/young-adult|/genres/coming-of-age|/genres/childrens|/genres/young-adult|/genres/teen,dir60/259068.Shug.html,6179,Shug +3.78,540,1620612321,good_reads:book,https://www.goodreads.com/author/show/5761314.Kate_Avelynn,2012,/genres/contemporary|/genres/romance|/genres/young-adult|/genres/sociology|/genres/abuse|/genres/new-adult|/genres/dark|/genres/realistic-fiction|/genres/drama,dir60/13503247-flawed.html,2971,Flawed +3.91,281,,good_reads:book,https://www.goodreads.com/author/show/1201952.A_id_al_Qarni,2006,/genres/religion|/genres/islam|/genres/religion|/genres/self-help|/genres/spirituality|/genres/psychology|/genres/non-fiction,dir60/2750008.html,3083,أسعد امرأة في العالم +4.35,61,0786929081,good_reads:book,https://www.goodreads.com/author/show/1023510.R_A_Salvatore,2001,/genres/fiction|/genres/fantasy|/genres/magic|/genres/science-fiction-fantasy|/genres/fantasy|/genres/high-fantasy|/genres/fantasy|/genres/dungeons-and-dragons|/genres/forgotten-realms|/genres/novels|/genres/role-playing-games|/genres/dungeons-and-dragons|/genres/anthologies|/genres/collections|/genres/epic,dir60/66677.Legacy_of_the_Drow_Collector_s_Edition.html,3982,"Legacy of the Drow Collector's Edition (Legacy of the Drow, #1-4; Legend of Drizzt, #7-10)" diff --git a/branches.png b/branches.png new file mode 100644 index 0000000000000000000000000000000000000000..e473cf455fb431bdf16d9c2ddf102c3246f8c649 GIT binary patch literal 55589 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 u5oCYU&xB$J74>z;YP_xmrZ?x{Led-v{M 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�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/jZLq}4H7@5jK4$l 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 BM%w@Y literal 0 HcmV?d00001 diff --git a/git-prompt.sh b/git-prompt.sh new file mode 100644 index 0000000..1f17faa --- /dev/null +++ b/git-prompt.sh @@ -0,0 +1,533 @@ +# bash/zsh git prompt support +# +# Copyright (C) 2006,2007 Shawn O. Pearce +# Distributed under the GNU General Public License, version 2.0. +# +# This script allows you to see repository status in your prompt. +# +# To enable: +# +# 1) Copy this file to somewhere (e.g. ~/.git-prompt.sh). +# 2) Add the following line to your .bashrc/.zshrc: +# source ~/.git-prompt.sh +# 3a) Change your PS1 to call __git_ps1 as +# command-substitution: +# Bash: PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ ' +# ZSH: setopt PROMPT_SUBST ; PS1='[%n@%m %c$(__git_ps1 " (%s)")]\$ ' +# the optional argument will be used as format string. +# 3b) Alternatively, for a slightly faster prompt, __git_ps1 can +# be used for PROMPT_COMMAND in Bash or for precmd() in Zsh +# with two parameters,
 and , which are strings
+#        you would put in $PS1 before and after the status string
+#        generated by the git-prompt machinery.  e.g.
+#        Bash: PROMPT_COMMAND='__git_ps1 "\u@\h:\w" "\\\$ "'
+#          will show username, at-sign, host, colon, cwd, then
+#          various status string, followed by dollar and SP, as
+#          your prompt.
+#        ZSH:  precmd () { __git_ps1 "%n" ":%~$ " "|%s" }
+#          will show username, pipe, then various status string,
+#          followed by colon, cwd, dollar and SP, as your prompt.
+#        Optionally, you can supply a third argument with a printf
+#        format string to finetune the output of the branch status
+#
+# The repository status will be displayed only if you are currently in a
+# git repository. The %s token is the placeholder for the shown status.
+#
+# The prompt status always includes the current branch name.
+#
+# In addition, if you set GIT_PS1_SHOWDIRTYSTATE to a nonempty value,
+# unstaged (*) and staged (+) changes will be shown next to the branch
+# name.  You can configure this per-repository with the
+# bash.showDirtyState variable, which defaults to true once
+# GIT_PS1_SHOWDIRTYSTATE is enabled.
+#
+# You can also see if currently something is stashed, by setting
+# GIT_PS1_SHOWSTASHSTATE to a nonempty value. If something is stashed,
+# then a '$' will be shown next to the branch name.
+#
+# If you would like to see if there're untracked files, then you can set
+# GIT_PS1_SHOWUNTRACKEDFILES to a nonempty value. If there're untracked
+# files, then a '%' will be shown next to the branch name.  You can
+# configure this per-repository with the bash.showUntrackedFiles
+# variable, which defaults to true once GIT_PS1_SHOWUNTRACKEDFILES is
+# enabled.
+#
+# If you would like to see the difference between HEAD and its upstream,
+# set GIT_PS1_SHOWUPSTREAM="auto".  A "<" indicates you are behind, ">"
+# indicates you are ahead, "<>" indicates you have diverged and "="
+# indicates that there is no difference. You can further control
+# behaviour by setting GIT_PS1_SHOWUPSTREAM to a space-separated list
+# of values:
+#
+#     verbose       show number of commits ahead/behind (+/-) upstream
+#     name          if verbose, then also show the upstream abbrev name
+#     legacy        don't use the '--count' option available in recent
+#                   versions of git-rev-list
+#     git           always compare HEAD to @{upstream}
+#     svn           always compare HEAD to your SVN upstream
+#
+# You can change the separator between the branch name and the above
+# state symbols by setting GIT_PS1_STATESEPARATOR. The default separator
+# is SP.
+#
+# By default, __git_ps1 will compare HEAD to your SVN upstream if it can
+# find one, or @{upstream} otherwise.  Once you have set
+# GIT_PS1_SHOWUPSTREAM, you can override it on a per-repository basis by
+# setting the bash.showUpstream config variable.
+#
+# If you would like to see more information about the identity of
+# commits checked out as a detached HEAD, set GIT_PS1_DESCRIBE_STYLE
+# to one of these values:
+#
+#     contains      relative to newer annotated tag (v1.6.3.2~35)
+#     branch        relative to newer tag or branch (master~4)
+#     describe      relative to older annotated tag (v1.6.3.1-13-gdd42c2f)
+#     default       exactly matching tag
+#
+# If you would like a colored hint about the current dirty state, set
+# GIT_PS1_SHOWCOLORHINTS to a nonempty value. The colors are based on
+# the colored output of "git status -sb" and are available only when
+# using __git_ps1 for PROMPT_COMMAND or precmd.
+#
+# If you would like __git_ps1 to do nothing in the case when the current
+# directory is set up to be ignored by git, then set
+# GIT_PS1_HIDE_IF_PWD_IGNORED to a nonempty value. Override this on the
+# repository level by setting bash.hideIfPwdIgnored to "false".
+
+# check whether printf supports -v
+__git_printf_supports_v=
+printf -v __git_printf_supports_v -- '%s' yes >/dev/null 2>&1
+
+# stores the divergence from upstream in $p
+# used by GIT_PS1_SHOWUPSTREAM
+__git_ps1_show_upstream ()
+{
+	local key value
+	local svn_remote svn_url_pattern count n
+	local upstream=git legacy="" verbose="" name=""
+
+	svn_remote=()
+	# get some config options from git-config
+	local output="$(git config -z --get-regexp '^(svn-remote\..*\.url|bash\.showupstream)$' 2>/dev/null | tr '\0\n' '\n ')"
+	while read -r key value; do
+		case "$key" in
+		bash.showupstream)
+			GIT_PS1_SHOWUPSTREAM="$value"
+			if [[ -z "${GIT_PS1_SHOWUPSTREAM}" ]]; then
+				p=""
+				return
+			fi
+			;;
+		svn-remote.*.url)
+			svn_remote[$((${#svn_remote[@]} + 1))]="$value"
+			svn_url_pattern="$svn_url_pattern\\|$value"
+			upstream=svn+git # default upstream is SVN if available, else git
+			;;
+		esac
+	done <<< "$output"
+
+	# parse configuration values
+	for option in ${GIT_PS1_SHOWUPSTREAM}; do
+		case "$option" in
+		git|svn) upstream="$option" ;;
+		verbose) verbose=1 ;;
+		legacy)  legacy=1  ;;
+		name)    name=1 ;;
+		esac
+	done
+
+	# Find our upstream
+	case "$upstream" in
+	git)    upstream="@{upstream}" ;;
+	svn*)
+		# get the upstream from the "git-svn-id: ..." in a commit message
+		# (git-svn uses essentially the same procedure internally)
+		local -a svn_upstream
+		svn_upstream=($(git log --first-parent -1 \
+					--grep="^git-svn-id: \(${svn_url_pattern#??}\)" 2>/dev/null))
+		if [[ 0 -ne ${#svn_upstream[@]} ]]; then
+			svn_upstream=${svn_upstream[${#svn_upstream[@]} - 2]}
+			svn_upstream=${svn_upstream%@*}
+			local n_stop="${#svn_remote[@]}"
+			for ((n=1; n <= n_stop; n++)); do
+				svn_upstream=${svn_upstream#${svn_remote[$n]}}
+			done
+
+			if [[ -z "$svn_upstream" ]]; then
+				# default branch name for checkouts with no layout:
+				upstream=${GIT_SVN_ID:-git-svn}
+			else
+				upstream=${svn_upstream#/}
+			fi
+		elif [[ "svn+git" = "$upstream" ]]; then
+			upstream="@{upstream}"
+		fi
+		;;
+	esac
+
+	# Find how many commits we are ahead/behind our upstream
+	if [[ -z "$legacy" ]]; then
+		count="$(git rev-list --count --left-right \
+				"$upstream"...HEAD 2>/dev/null)"
+	else
+		# produce equivalent output to --count for older versions of git
+		local commits
+		if commits="$(git rev-list --left-right "$upstream"...HEAD 2>/dev/null)"
+		then
+			local commit behind=0 ahead=0
+			for commit in $commits
+			do
+				case "$commit" in
+				"<"*) ((behind++)) ;;
+				*)    ((ahead++))  ;;
+				esac
+			done
+			count="$behind	$ahead"
+		else
+			count=""
+		fi
+	fi
+
+	# calculate the result
+	if [[ -z "$verbose" ]]; then
+		case "$count" in
+		"") # no upstream
+			p="" ;;
+		"0	0") # equal to upstream
+			p="=" ;;
+		"0	"*) # ahead of upstream
+			p=">" ;;
+		*"	0") # behind upstream
+			p="<" ;;
+		*)	    # diverged from upstream
+			p="<>" ;;
+		esac
+	else
+		case "$count" in
+		"") # no upstream
+			p="" ;;
+		"0	0") # equal to upstream
+			p=" u=" ;;
+		"0	"*) # ahead of upstream
+			p=" u+${count#0	}" ;;
+		*"	0") # behind upstream
+			p=" u-${count%	0}" ;;
+		*)	    # diverged from upstream
+			p=" u+${count#*	}-${count%	*}" ;;
+		esac
+		if [[ -n "$count" && -n "$name" ]]; then
+			__git_ps1_upstream_name=$(git rev-parse \
+				--abbrev-ref "$upstream" 2>/dev/null)
+			if [ $pcmode = yes ] && [ $ps1_expanded = yes ]; then
+				p="$p \${__git_ps1_upstream_name}"
+			else
+				p="$p ${__git_ps1_upstream_name}"
+				# not needed anymore; keep user's
+				# environment clean
+				unset __git_ps1_upstream_name
+			fi
+		fi
+	fi
+
+}
+
+# Helper function that is meant to be called from __git_ps1.  It
+# injects color codes into the appropriate gitstring variables used
+# to build a gitstring.
+__git_ps1_colorize_gitstring ()
+{
+	if [[ -n ${ZSH_VERSION-} ]]; then
+		local c_red='%F{red}'
+		local c_green='%F{green}'
+		local c_lblue='%F{blue}'
+		local c_clear='%f'
+	else
+		# Using \[ and \] around colors is necessary to prevent
+		# issues with command line editing/browsing/completion!
+		local c_red='\[\e[31m\]'
+		local c_green='\[\e[32m\]'
+		local c_lblue='\[\e[1;34m\]'
+		local c_clear='\[\e[0m\]'
+	fi
+	local bad_color=$c_red
+	local ok_color=$c_green
+	local flags_color="$c_lblue"
+
+	local branch_color=""
+	if [ $detached = no ]; then
+		branch_color="$ok_color"
+	else
+		branch_color="$bad_color"
+	fi
+	c="$branch_color$c"
+
+	z="$c_clear$z"
+	if [ "$w" = "*" ]; then
+		w="$bad_color$w"
+	fi
+	if [ -n "$i" ]; then
+		i="$ok_color$i"
+	fi
+	if [ -n "$s" ]; then
+		s="$flags_color$s"
+	fi
+	if [ -n "$u" ]; then
+		u="$bad_color$u"
+	fi
+	r="$c_clear$r"
+}
+
+__git_eread ()
+{
+	local f="$1"
+	shift
+	test -r "$f" && read "$@" <"$f"
+}
+
+# __git_ps1 accepts 0 or 1 arguments (i.e., format string)
+# when called from PS1 using command substitution
+# in this mode it prints text to add to bash PS1 prompt (includes branch name)
+#
+# __git_ps1 requires 2 or 3 arguments when called from PROMPT_COMMAND (pc)
+# in that case it _sets_ PS1. The arguments are parts of a PS1 string.
+# when two arguments are given, the first is prepended and the second appended
+# to the state string when assigned to PS1.
+# The optional third parameter will be used as printf format string to further
+# customize the output of the git-status string.
+# In this mode you can request colored hints using GIT_PS1_SHOWCOLORHINTS=true
+__git_ps1 ()
+{
+	# preserve exit status
+	local exit=$?
+	local pcmode=no
+	local detached=no
+	local ps1pc_start='\u@\h:\w '
+	local ps1pc_end='\$ '
+	local printf_format=' (%s)'
+
+	case "$#" in
+		2|3)	pcmode=yes
+			ps1pc_start="$1"
+			ps1pc_end="$2"
+			printf_format="${3:-$printf_format}"
+			# set PS1 to a plain prompt so that we can
+			# simply return early if the prompt should not
+			# be decorated
+			PS1="$ps1pc_start$ps1pc_end"
+		;;
+		0|1)	printf_format="${1:-$printf_format}"
+		;;
+		*)	return $exit
+		;;
+	esac
+
+	# ps1_expanded:  This variable is set to 'yes' if the shell
+	# subjects the value of PS1 to parameter expansion:
+	#
+	#   * bash does unless the promptvars option is disabled
+	#   * zsh does not unless the PROMPT_SUBST option is set
+	#   * POSIX shells always do
+	#
+	# If the shell would expand the contents of PS1 when drawing
+	# the prompt, a raw ref name must not be included in PS1.
+	# This protects the user from arbitrary code execution via
+	# specially crafted ref names.  For example, a ref named
+	# 'refs/heads/$(IFS=_;cmd=sudo_rm_-rf_/;$cmd)' might cause the
+	# shell to execute 'sudo rm -rf /' when the prompt is drawn.
+	#
+	# Instead, the ref name should be placed in a separate global
+	# variable (in the __git_ps1_* namespace to avoid colliding
+	# with the user's environment) and that variable should be
+	# referenced from PS1.  For example:
+	#
+	#     __git_ps1_foo=$(do_something_to_get_ref_name)
+	#     PS1="...stuff...\${__git_ps1_foo}...stuff..."
+	#
+	# If the shell does not expand the contents of PS1, the raw
+	# ref name must be included in PS1.
+	#
+	# The value of this variable is only relevant when in pcmode.
+	#
+	# Assume that the shell follows the POSIX specification and
+	# expands PS1 unless determined otherwise.  (This is more
+	# likely to be correct if the user has a non-bash, non-zsh
+	# shell and safer than the alternative if the assumption is
+	# incorrect.)
+	#
+	local ps1_expanded=yes
+	[ -z "$ZSH_VERSION" ] || [[ -o PROMPT_SUBST ]] || ps1_expanded=no
+	[ -z "$BASH_VERSION" ] || shopt -q promptvars || ps1_expanded=no
+
+	local repo_info rev_parse_exit_code
+	repo_info="$(git rev-parse --git-dir --is-inside-git-dir \
+		--is-bare-repository --is-inside-work-tree \
+		--short HEAD 2>/dev/null)"
+	rev_parse_exit_code="$?"
+
+	if [ -z "$repo_info" ]; then
+		return $exit
+	fi
+
+	local short_sha
+	if [ "$rev_parse_exit_code" = "0" ]; then
+		short_sha="${repo_info##*$'\n'}"
+		repo_info="${repo_info%$'\n'*}"
+	fi
+	local inside_worktree="${repo_info##*$'\n'}"
+	repo_info="${repo_info%$'\n'*}"
+	local bare_repo="${repo_info##*$'\n'}"
+	repo_info="${repo_info%$'\n'*}"
+	local inside_gitdir="${repo_info##*$'\n'}"
+	local g="${repo_info%$'\n'*}"
+
+	if [ "true" = "$inside_worktree" ] &&
+	   [ -n "${GIT_PS1_HIDE_IF_PWD_IGNORED-}" ] &&
+	   [ "$(git config --bool bash.hideIfPwdIgnored)" != "false" ] &&
+	   git check-ignore -q .
+	then
+		return $exit
+	fi
+
+	local r=""
+	local b=""
+	local step=""
+	local total=""
+	if [ -d "$g/rebase-merge" ]; then
+		__git_eread "$g/rebase-merge/head-name" b
+		__git_eread "$g/rebase-merge/msgnum" step
+		__git_eread "$g/rebase-merge/end" total
+		if [ -f "$g/rebase-merge/interactive" ]; then
+			r="|REBASE-i"
+		else
+			r="|REBASE-m"
+		fi
+	else
+		if [ -d "$g/rebase-apply" ]; then
+			__git_eread "$g/rebase-apply/next" step
+			__git_eread "$g/rebase-apply/last" total
+			if [ -f "$g/rebase-apply/rebasing" ]; then
+				__git_eread "$g/rebase-apply/head-name" b
+				r="|REBASE"
+			elif [ -f "$g/rebase-apply/applying" ]; then
+				r="|AM"
+			else
+				r="|AM/REBASE"
+			fi
+		elif [ -f "$g/MERGE_HEAD" ]; then
+			r="|MERGING"
+		elif [ -f "$g/CHERRY_PICK_HEAD" ]; then
+			r="|CHERRY-PICKING"
+		elif [ -f "$g/REVERT_HEAD" ]; then
+			r="|REVERTING"
+		elif [ -f "$g/BISECT_LOG" ]; then
+			r="|BISECTING"
+		fi
+
+		if [ -n "$b" ]; then
+			:
+		elif [ -h "$g/HEAD" ]; then
+			# symlink symbolic ref
+			b="$(git symbolic-ref HEAD 2>/dev/null)"
+		else
+			local head=""
+			if ! __git_eread "$g/HEAD" head; then
+				return $exit
+			fi
+			# is it a symbolic ref?
+			b="${head#ref: }"
+			if [ "$head" = "$b" ]; then
+				detached=yes
+				b="$(
+				case "${GIT_PS1_DESCRIBE_STYLE-}" in
+				(contains)
+					git describe --contains HEAD ;;
+				(branch)
+					git describe --contains --all HEAD ;;
+				(describe)
+					git describe HEAD ;;
+				(* | default)
+					git describe --tags --exact-match HEAD ;;
+				esac 2>/dev/null)" ||
+
+				b="$short_sha..."
+				b="($b)"
+			fi
+		fi
+	fi
+
+	if [ -n "$step" ] && [ -n "$total" ]; then
+		r="$r $step/$total"
+	fi
+
+	local w=""
+	local i=""
+	local s=""
+	local u=""
+	local c=""
+	local p=""
+
+	if [ "true" = "$inside_gitdir" ]; then
+		if [ "true" = "$bare_repo" ]; then
+			c="BARE:"
+		else
+			b="GIT_DIR!"
+		fi
+	elif [ "true" = "$inside_worktree" ]; then
+		if [ -n "${GIT_PS1_SHOWDIRTYSTATE-}" ] &&
+		   [ "$(git config --bool bash.showDirtyState)" != "false" ]
+		then
+			git diff --no-ext-diff --quiet --exit-code || w="*"
+			if [ -n "$short_sha" ]; then
+				git diff-index --cached --quiet HEAD -- || i="+"
+			else
+				i="#"
+			fi
+		fi
+		if [ -n "${GIT_PS1_SHOWSTASHSTATE-}" ] &&
+		   git rev-parse --verify --quiet refs/stash >/dev/null
+		then
+			s="$"
+		fi
+
+		if [ -n "${GIT_PS1_SHOWUNTRACKEDFILES-}" ] &&
+		   [ "$(git config --bool bash.showUntrackedFiles)" != "false" ] &&
+		   git ls-files --others --exclude-standard --directory --no-empty-directory --error-unmatch -- ':/*' >/dev/null 2>/dev/null
+		then
+			u="%${ZSH_VERSION+%}"
+		fi
+
+		if [ -n "${GIT_PS1_SHOWUPSTREAM-}" ]; then
+			__git_ps1_show_upstream
+		fi
+	fi
+
+	local z="${GIT_PS1_STATESEPARATOR-" "}"
+
+	# NO color option unless in PROMPT_COMMAND mode
+	if [ $pcmode = yes ] && [ -n "${GIT_PS1_SHOWCOLORHINTS-}" ]; then
+		__git_ps1_colorize_gitstring
+	fi
+
+	b=${b##refs/heads/}
+	if [ $pcmode = yes ] && [ $ps1_expanded = yes ]; then
+		__git_ps1_branch_name=$b
+		b="\${__git_ps1_branch_name}"
+	fi
+
+	local f="$w$i$s$u"
+	local gitstring="$c$b${f:+$z$f}$r$p"
+
+	if [ $pcmode = yes ]; then
+		if [ "${__git_printf_supports_v-}" != yes ]; then
+			gitstring=$(printf -- "$printf_format" "$gitstring")
+		else
+			printf -v gitstring -- "$printf_format" "$gitstring"
+		fi
+		PS1="$ps1pc_start$gitstring$ps1pc_end"
+	else
+		printf -- "$printf_format" "$gitstring"
+	fi
+
+	return $exit
+}
+PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ '
diff --git a/git_add.png b/git_add.png
new file mode 100644
index 0000000000000000000000000000000000000000..8a2e4145affe59c39e680391faf71a62f560f099
GIT binary patch
literal 12961
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
NB&YtgT*fr;{{X<~6XE~>

literal 0
HcmV?d00001

diff --git a/git_branch.png b/git_branch.png
new file mode 100644
index 0000000000000000000000000000000000000000..789083d90dda78b318eb07d960ef5dd0f5fc84b6
GIT binary patch
literal 12704
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ⅆU>BT?OTm!Dk7%<8mX1@90%C?V**{
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

literal 0
HcmV?d00001

diff --git a/git_fetch.png b/git_fetch.png
new file mode 100644
index 0000000000000000000000000000000000000000..36e1b0e2dc6a9095741d07d5fc934edaa05fb999
GIT binary patch
literal 13162
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
WBqi9318dNL*E9JSa>X(x@BbHr3J*d6

literal 0
HcmV?d00001

diff --git a/git_push.png b/git_push.png
new file mode 100644
index 0000000000000000000000000000000000000000..059465d1acab129e75a839f23c5d23acb6afa8b1
GIT binary patch
literal 13044
zcmZ{K1yq#X6E`5zN_UrlbW3+hqjX6uA>BxKhe(5fh=@w>(j7~efOJYKy)3cx_uw1<
z_xsNI_8gXd=DGLI+_`h-&dmMAYH27v!lJ-JLPC0^qAah2goI)R{Eo#y1HNCyNL2y<
zkUeyiWRWUHseS_wn6Ao(9!N-7(EC4R8>g@zK!Yj!mj<2&>T04^E>2t))-IMHE?*~C
zpfwVbxUVSi(+T8hLFen_=;-P%S}M_%#o?!c1-gPo_Rt0*_OkB<+R4?mZSyDc}bh=>R`4<9!lA1Ba)
z)8mb^r-d)4vj^i}gZwj&Jjlb!-QLyH-o=^jeq0Mn7cWl<28Me^|9<|G)6?GOf1I2>
z{+<>vLGJrE+`L>o-2aXZbQQm+ipse-xw?ZqJb>{f1;zig{J&`b@hPQ3M
z4?LT*Em$!dn|G+JJzHKUU?Idrrl&)V2*JZck(I{qd>BgJbgb9<5(DFZWI)#-wS@mQ
z!U*MJpaYe~ukKC(UH)m9rG*_v_Pm$(c51Nn6M-f`KsOo%4x*j(i&=d-N>u^5jU^XP4yrWLqV1nZpHLZ7+g@S@
zsd+|yI08(S>}(p#J(L1Gu8)tDGPD>LCKQJJ%m}zSooP1oX}#h^&G$cObR}6zry2)G
zCqgq@r`FbnQqJ(qRGry_Bt&>T)l*=TU~prd8%2FlX0T
zFu_2FHBAWc50bSZ0+J<3Lh}qG=>Ws7kEEkdgsiakYdAf%F(v%5!w?3JkO%+6Nx
zpe&VuIk9r?Hjdgz1UN#WehivfOoC^gQS~blqWDM3PMGi>buhO8jaP>$6>;^fP^(V8
z#x!G4GXk9YWhN*S;f_iP13A(B?xltmBfyja`WtzPz7SdR_(%q8`6VT~<}&4Thshg?
z81Cj3v>$*(%a7NF+{K%`nAS7Ch7q{P27&QFz&o)WlULU96aC$M^PPJCndu
zC=H|KWJ2|ZC-P7
z4wL8BRq?V%30-h$UrLg?MKo!Cue`fC46e*o63&(TP(Dbu`+Bcwx8ke|oBQRD9Vnq@
zjU2ATkD!YobG^l@nf6=I)qZ`!2yY)1@p+C4Vx9KRZadG%Y)Q$v>Gu<{^F@!{t?`jg
zMWi5O?>W%^PHAPG;Iu)v_wpNCWA_1Or(}tHvT9^i^sZEk++
zxRrTz*m_=<9JpuI8P_ytlRGE6TSiF4TUM_rdGU$b^Sca)7M|ID-IMRP^A%j9XBtCm
z9QkPwA4T@V3ZC@x?P+E3e*NqEPi=q*y~(sL1qdk1-nY_#r(y@MCr%{~%de0va-Kk~NTY-4D63#6Kt6&(7Iq{^rLYU!s?hIk!K
z*zEf&K<@A*pOrwt`Y1nOt>pp_TF;kH-Z)j!eE3xwJY(XK=+y8tirCAB4hBdfLCquI
zW&x9|s|$%E>c1B;Su8hmp~@D%Bi(o
zz{Bg9=IiP{ns^mrCEqL=_=xa|$qPw6@lO$<@^lL>?vFLUyG(ynqItvQOMiP--(Gyf
z`6lJ-NrCogZ`(6t$%~JR8&t9duR=^p56f9HA)xl_fkn&Rk|FPICI3x(hlq9p98Y2O@@a)nWUram
zlgG_i>=saId11Ta5ew>81D$^6nFE(mvNQUs8d`U
z1DkA6m>}-M3hnnsM&x-Xs3?FU3JSHlN#D#{#&b@DB3DN?AGZ0&M9(=l?>ioE3|R0~
z_cO%Lp10rK;61>UdO;IVwV7c|0pm|0Q+5R0f2jUXw&mF7TUGN*9kQwxV0+;nAj7QW
z)%x`4wdA8FFoUiZR_d&hM0zC=ow)PexKdQI3TG?9!SToBpvQ9qt;s=1Z}pSZzfh)}I$#-wLmzlyXs3W6?w<3-8SVvf5oXvPW_wO?;b-I2>?#fQ6cg5Z??ePYY_MBu>lr5T|)>(q{2k5Q45C9fINpEQ?U?n9iU@h75
zWb6rzL4jJ1z}LNHJ1&z8mEJ_kOkZi+ON8HUd8TifT!Z(n!EtS6AZP1#&@ZTzq+6ok
zr$#YWSQ0x-gMDP3!gK9WYFXn}j{Q6bWcZy{2D?hE!!rF+dMOlH9li*#8vxwU`}gjH
zZ1y?W`PM~=LRd32yKfs%GJM0IaAnC-9J=@L!q7Ad+zPzcsD0LQJae`Z^BZ&--DJ`~
zC!SjOlH00rHEz6vW^>h`@5^4{FxKX9L&);qY-NYe1R}jfNYlO9OxFk3vyYk@;_ef;
z_`a9pb6bOMgrd{LsKn+j5b6)gE~Fp;ZzKjI>xV8K+tVEOzf0FMV#~JwoK4^p8+Br~
z)o0)a1IaUBw)g1`4(SZ^jEaBel^LBX`p9>(8jh>6x_@_j-fr*KemPb7j_t)~)LUlQ
zi-OCSYpEtW7s@$(w@>;{l>1!{UDrWg2-h)Xn)%u1%%Ee$vU|l+TFDyWH>%CWb2Ztmg>ThR>0_j3+vbZH
z2A)p6Xj7t{wJiuFz%73c7xd7H5MJ2%EbnAuR~R`=$<^T8&`T6c$)0d@Q7|x@k~XN#$fgRHw(NI)eBDA}G?;8VPOsc>DVfRQ
z#1+}V^LWVj3C6X2QzCW4X2MSZeI2FH9r^N-s&g4W%&+NJo_Z@2GCohNZ(^~GIY-)d
z6p2^bF#o!A?q@VDO<8$jTLgJ05ZKs~jr6n_w2`qb19nIMyPq)`hoq|ioXOJul(xZw
zrcz<8�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

literal 0
HcmV?d00001

diff --git a/git_status.png b/git_status.png
new file mode 100644
index 0000000000000000000000000000000000000000..fef2a66b0e93a8961679119296b38594aaa38af2
GIT binary patch
literal 12795
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
A%m4rY

literal 0
HcmV?d00001

diff --git a/github-forking.png b/github-forking.png
new file mode 100644
index 0000000000000000000000000000000000000000..f745fdb05422992ae33527bf77c34547eae81321
GIT binary patch
literal 79361
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

`A|W3$$K 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

T*AErWN3q%^7%rdFhsH)_xRAz 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 literal 0 HcmV?d00001 diff --git a/github-forking2.png b/github-forking2.png new file mode 100644 index 0000000000000000000000000000000000000000..b66a8bdfaf88ae66e07f88e8631dc32d2a7579a5 GIT binary patch literal 99148 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 H>iYZ-GV61C literal 0 HcmV?d00001 diff --git a/github-forking3.png b/github-forking3.png new file mode 100644 index 0000000000000000000000000000000000000000..0c6b05eb10328ba8a723a373c1b7fca8e89cec94 GIT binary patch literal 158552 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⪚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

Y{U2~gK^!>3 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 literal 0 HcmV?d00001 diff --git a/github_branch.png b/github_branch.png new file mode 100644 index 0000000000000000000000000000000000000000..33757476bfc38c013c477d4b4537fbe38b4c5acb GIT binary patch literal 77220 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 literal 0 HcmV?d00001 diff --git a/github_collaborators.png b/github_collaborators.png new file mode 100644 index 0000000000000000000000000000000000000000..4e4069bcdf297b90b8c91c86c4ac2b7442d7f35e GIT binary patch literal 56307 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%0AUyji3i$Q(ViOe6*)Lb;h+2M0 z=U((K|Dq`uxxa*jZgE9K+9A`Z(GYj>7UP5`&=b1%P|8wP2(M$w&Z_bOXyJ!*%d(^B z^ocX#<`ja+w%7Owi&>v?V)2z04+wwh#eO{-61*)uj&1n9O+NHJInV^&r~$}7Z5j#W z1zPDSU41R%TJFv1}1kzc?Dc4u4Gp^2_rCh8cM5OdheP*$!ThFVAi@%f z;Aoz;e(hE!Kt#=gIJ2ZJl9zMz$#x^YRCh&`Fb-dIN=)^!7B-r1Rdv^M*|d+|iMKg6 zUwud4{4=5QkI*K71rb{&IVeXu2a82yv)ija3A|p>I)thGO-%1g+m^^-l2S>zAi2Qo zG4e7qYEh#XGt>+{6WhPH;mvD}R;1`a0XEDE^W^XGWj0Mpo|5iT#uC`lw=$=Z^{8ma zBHaK{)?OWox`+E4uvQOqerhG{D2mHBye&#t>=dZ0T8nAk>5I~q6MGtDKff+wMWoQ_ zHNj&8G{KC$#WPdvdfw&$bkwzxO*Ih&g^w#(WV5g2#mVZ(>)91 zOKg0fUpbewMzcS;_(lh5R_d5Vfo=}MJP}}uH9=8D7g#u%$7k9U+(pIa3gF1|vI)rN zIPPW%Ft|c~K|n<`h>mUVq0+vKHQVuZAZZa6VHW!Ej?|3=$)p{5IIF6Cv_3yf;K1R= z`B_mC<9LS(N(DMXncR`*fY@!9*d%CmB)KIQPNBhArELxiwbub!|JzAfi^zaVXVb-W zcPwK}sDI+YYJ_8a1&Mx#sD&sa>O;6j>cq|}1oC!&5ejz6FhQ=A3*?p1A$}JOcQK&R z>KN>R+eruHJ}Gpc&`D@`4wc-j3<3#Lv;yWkv)`Z_ks!He>INms2sc}fj$_Qi$3p7M zU$EYp3O69iPu6!P{R^6~0K1)5hd&rUtj)^? zFe}4hOT0*@aOE*btUH?>X!%yjqqv%BBZSO|&8I;#F3Xlg<|+j#St!Y4 z{YRAXg5Ak|v6+ZfJ+6+s;d&?!HYUI#(1@HNTI2Gc#Zxzo{E=tNd@o`7_q^IWRSYmr39!l z1vv!i1+i}~KgI@jn`xwIwT#HsS__9$ulnd>io2vzWvuDhJB>c#LI?GNksiQw z=z=K~fGD8S`FG{%JFLKK zDj*p8MmDUg+Ph2(nq$s=^14^eVXYR501)xoi$P{ z=EvY&$=cye(Z$$7I1&E=HMF>9r=Z(%t&b~prN%=_ZjUqr;iq0YzV#(rU*ll(fjqe%6JyO zTl!=;w$e-#np6XqboX<`Be$)H#jc&z0w*pFn3(UH%PGu;IW*C~n-oY!vsz}FULem3 zpH6Y*4$Dk@h+KD8E2eY4-p)7UIKxY3M~jZp*~9w%&`gAb*6k&NS}s}+heLO~rQ}&f zaRQUO1-Rj-2X(6>T};CB-+b;`W7qy9<5`&)grmf~^R=%0ZTC0<4YT%xVQz%zXNuKs zF7z5~KFMNZ+q5=4Dlm;Y4XII56v~iSy1M|7Sl5zKM^+R%m)ad(ps1PZGOfuH)me{} zmV*x`u+(cJK{!myn(zamm_kQT>Kb7C#q;M>0Xs+|WbvHOu)Fcc;fOk=0hAcE%6aQyI<<5H^(UFMJj=KyBpAp?R0V*gJYcPQyFU7O*^S0b9e%_GO9 zD|51Aw!+qR!4P^obFXzCRtu-OKC^0(xsQ`2duHQ4UZ11fxvtSgiFITaVoUW)oU-Yg zwJP%5u_5jOlk0%xcn&h7(&cq*geo~1*%^F7^+H*42dT4qkVt6--dfy+jzsdBrBksr zrw%mAOgLK)cNLa}l06F`YBrGOM5$EZ3)uUTFZ5RiCdQzm)N&hB_^5sLE3z<`$9QbI zn&%Ie)ofTUNNWYyvrxq-nmTnVD0@Cpt-nd4eEXPrx%;+#1Pg~YD;qeFVFYkyXG&iR zKglY_E^Lq}aZP_rDaj4k52}z0W3QYcy2H|WWt8d0$X}YV+P;Y2{)Rg-NW(@^{<3aF zeFh8sHl@!SJ?{>!Tywcjr3mVAry$Gx(jXY0$sZ)l?T4L)t(b_$-nnt+$tC#OT)Mq` z=2uRvBI%Vq(QznBq=_D2g)0HXALT{u&NV8snP?o+FTHEfI&}MTa~LI?IG1Zn+8|K# zzEr6=BPsd^XZ!U!qnIYhpBIj52@WGPn9&mn-k}>h7UNUB7Wj+nkb%7ub^nP!TI=lG zg-h9|MSB~i&fXWX9-Izqjvip-yj$c~QXZSI03y4@keRN|II`R2mH@AM++-X(I|#hd zIBqwM;Ew&It{^)HkFN12=g;g-ni<+0+a*gW6g<|hi?>v!7H1(`fCzTJ6W&j7t2?)-|>$a zJH#kc-AwkVDv8vr&8x3ohZO^QCxF?uc!V|u+)I)C@in?TUr|0L51b@|g!2fS=X~xy z@75z3mOJ~NY50CvX3dJ_7)@xyQ5$rT%~oZ(1Kv=?MS+nnU(iu_5rJ4xghgnV!cqpl zvW(Ur$qBu-cI9TcY(CB97!Cy;(22*F`AG@(>T&Z+%!-_5VwEWLFeJ{>M1ls zMnB>cn5+k=*08e1jzLuV8K$;<`mvJLQflE>u9wWdpkwy=VFU-(=?Wl;6^NBD7NKH4!r3(#w#i zy{@bsVQ>-V(URpGWzMW<%0AYmrxT}5QDyx~DaOC>n+{t)1^Oig% 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 literal 0 HcmV?d00001 diff --git a/github_new.png b/github_new.png new file mode 100644 index 0000000000000000000000000000000000000000..504a5cad37a5f08277ba7621346c4a0bc3ca3c2b GIT binary patch literal 149113 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

xtWRA!NbO+{}Vaz&rdVi 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
^fD6$W%#^rGtU4PsI%ZL#)v_F!D9q}->ofXz zI8vX@^;!D);djukX2T2#tF%fJFRb2p6$v;;M(mQJ-p&qW4PN99q@en1a|aSAt2nZw zIlr%>@KwypKG;#s-mmm@4-0nl8T1Bm72cnDc$0zcNs}cstn5ZAL0Vs0Jm~RAXy3dH zE<<9-ZOk3!058DC(;n0H1UQ}PwYp13fUc-OnbxwKhquL`Cecgn4Yzl0fT6!_SuSty z3}D5MjThcDig@Y^pyNG}A52t&n}z(Q)2w9ghDf)d!Q!9j$FNBhFTYyWAb1qi!NxGZ z<;|}iWh7KX){LOJ`P(k+)}=KMZJ+1sXNG+a{xki(=@++&JWi4=FgqPzf!R!MLpYW+ z<=^F=Kk1We;~X@~m_2k>!%FXRbO_<2UE~Fu6T5e&UF3WMZCsQGS&Y9!L08XCf~78G z7T20)%LfBnea`|@j55Xa_>l3Ek8BtIIARL(UlYQXIGXU~Es=D3qP{KT=@dag};X{r~| z2ffgohIHN!HHf~2$hkk$xw5@dW7qP#YebrrF8K<6-Y^6=`Hg^_d)eeUIz}j?Of_OU zt8Ky`%}xutI=JLG&KJ8WmjSh}iwJ!)xb%JMF=|LCha$7-^Dd*7F|h zXqSJ86ifr?z#M%R!FGQ5QQ!c$9D~sAPa6&i+92(Y_Oz4-e8tL9P*Pu&{Y%5`O+|e# z7N(Jt@Q3%F)WmPqyjiCyfVGWvnE~Q=ht4Y7Tm-7m#d4*uEgWMg-D)-=6Qq6_QaV>H zsIykuKIpjHuE7r7tV|uOsf0U7hiJFYeTT%n9`6VfpJs zD2mt_p&VS7w;KmHLci%)Q&q^CT`nm(mMBK(eL9dGe%BH1fB4J?;U&i~ZPc(mhkJy> z4=su}A4>_X<3eYEGzPK5#)C3DP6n{AL4YW&G`b8;bKa?RaIZ-T7CNM z+X|8xkJbFj)0pH?xCpkX4jni>>82d|{<|_LUU76D33*SW>Y1~C2@`TneTRHVe~>u6 z=r-kGpVZsCnswkZ+?GiDB(r~xE`An_@_^$>M%o2VzUnE|knI$P1W^G>_QNM%m3Dq* z3WGVM99$Io;7rE$jfEpd1ry%$KiRiTAOguTJr)I;{HefzUojGH`X5zrNmUJLO}Fql zGMbss(c!5(&oLvG&XMtpHwj&!EB1efI2rMbf^9chKDCH`rn6#~%C8yWl592DwC-cF za<$D7I7Y2n^FDmrhrGpwKcThaa=7Pr)Eqpbqo4p=-kIN`yul#Ia%=uM+IyH3RdB+V zI0$yGXU*rW$Zuh(r<#-c^?=~UGf5~8-*SUT+#V*l;~%{gw0 zB8c@Gx8^X9c$hg)g+Wk`8kMxuu zxNxNY#7i#iwI4#u=^X3_O=^(Cj_?Jy+3SLq))4PFDEsDKwzMV?yAvpLzT1kW2nu`M zXtZ2)0#dI&c;nJ0M^glVf|o$&%J6_^Xn|)nFZmYbmP$}~Wn?~MzsfHUu_ zKE@TF&V^kL&AL|1`m9c?ORbinXY~OzyN436r7Q>D-H;>k0et_qQ2hxoj(pJoQE0J1fr}kk^Y}{Jd`uk6{DcY?fvrPg(eY zjLs9P^Hdq6cUw05$9R3KdwH`Q=eyvWz^A{I6v5oedm}(S^>acy?jd(FieB<9=3KcE zk)?72@iNs%7F_fSSiAnH)An3ZY(mMRSn>BnD>dkP2WQrdcL$$jvjq7pjR#-nlt^bh zm#-sam(p|ZEx zoV!vNWdPXDpnuT*?_|DM8?=_q3*NZCuOeD}zJL#0lsl5R>JP2>eC`y-(#*seKlxq@ z%{CV5b_WEh($ylH1|zHfcm612ETPok zL0PRSMnIVAVwb?s@Pe7NBmq#}VsD*3?Q)*kQc~Bd1MZv0-)t^0Nn0(&R1WDafCSqWZIPdDHj* E2eyU>o&W#< literal 0 HcmV?d00001 diff --git a/github_ssh.png b/github_ssh.png new file mode 100644 index 0000000000000000000000000000000000000000..9bd340b882a0403112c57be644aaf6c944aa7dee GIT binary patch literal 45267 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 Ef>4;@cK`qY literal 0 HcmV?d00001