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": "iVBORw0KGgoAAAANSUhEUgAAAegAAAFVCAYAAAAkBHynAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzt3XtcVHXi//H3cNNgwMTQVIyUyOwCLYmleW1bc7ceVhYV\nGGyPtUxbXQu3stLQpGwzYy3dtLRsJ1dlW9pqu2wbm+GltLatbC0zKqQbqGjNDMoMzvz+6Ov8vAIz\nzNEP8Hr+pWfOvM9nPszhzTlnLja/3+8XAAAwSsTxHgAAADgcBQ0AgIEoaAAADERBAwBgIAoaAAAD\nUdAAABioyYL+8MMPlZeXJ0n65JNPNHbsWOXl5WncuHHauXOnJKmkpERXXXWVrr32Wq1evVqStHfv\nXk2ePFljx47V+PHjVVtba92jAACgjWm0oJ988klNnz5dXq9XkvTAAw9oxowZcjgcGjlypJ588knt\n2LFDDodDK1eu1NKlSzVv3jx5PB6tWLFCffv21fLly3XFFVfo8ccfPyYPCACAtqDRgk5JSdGCBQu0\n/7NMHnnkEZ1xxhmSpIaGBnXo0EEfffSRMjMzFR0dLbvdrpSUFG3ZskXvv/++hg4dKkkaMmSI3n77\nbYsfCgAAbUejBT1y5EhFRkYG/p+UlCRJev/997V8+XLdcMMNcrlcio+PD6wTFxcnl8sll8uluLi4\nwDKn02nF+AEAaJOigr3DK6+8okWLFumJJ55Q586dZbfb5Xa7A7e73W7Fx8cftNztdishIaHJ7IaG\nfYqKimxyPQAA2rqgCvqFF15QSUmJHA6HOnXqJElKT09XcXGxPB6P6uvrVVFRodNPP12ZmZkqLy9X\nenq6ysvL1b9//ybzd+2qa3KdpKR4bd8e/qNxq3KtzG5tuVZmk2t9dmvLtTK7teVamd3acq3MDiU3\nKSn+qLc1q6BtNpt8Pp8eeOAB9ejRQ5MmTZIknX/++Zo0aZLy8/OVm5srn8+ngoICxcTEKCcnR3fe\neadyc3MVExOjefPmBTVoAADasyYLOjk5WStXrpQkbdiw4YjrZGdnKzs7+6BlHTt21Pz588MwRAAA\n2h8+qAQAAANR0AAAGIiCBgDAQBQ0AAAGoqABADAQBQ0AgIEoaAAADERBAwBgIAoaAAADUdAAABiI\nggYAwEBBf92klSoqtja5zq5ddtXWuhpdp1evFMXExIRrWAAAHHNGFfSUuS8qtlPXFmXU/VCj+beP\nVmpqWphGBQDAsWdUQcd26ip7557HexgAABx3XIMGAMBAFDQAAAaioAEAMBAFDQCAgShoAAAMREED\nAGAgChoAAANR0AAAGIiCBgDAQBQ0AAAGoqABADAQBQ0AgIEoaAAADERBAwBgIAoaAAADUdAAABiI\nggYAwEAUNAAABqKgAQAwEAUNAICBKGgAAAxEQQMAYCAKGgAAA1HQAAAYiIIGAMBAFDQAAAaioAEA\nMBAFDQCAgShoAAAM1GRBf/jhh8rLy5MkVVZWKicnR2PHjtXMmTPl9/slSSUlJbrqqqt07bXXavXq\n1ZKkvXv3avLkyRo7dqzGjx+v2tpa6x4FAABtTKMF/eSTT2r69Onyer2SpDlz5qigoEDLly+X3+9X\nWVmZtm/fLofDoZUrV2rp0qWaN2+ePB6PVqxYob59+2r58uW64oor9Pjjjx+TBwQAQFvQaEGnpKRo\nwYIFgSPlzZs3KysrS5I0dOhQrV+/Xps2bVJmZqaio6Nlt9uVkpKiLVu26P3339fQoUMlSUOGDNHb\nb79t8UMBAKDtaLSgR44cqcjIyMD/9xe1JMXFxcnpdMrlcik+Pv6g5S6XSy6XS3FxcQetCwAAmicq\nmJUjIv5/n7tcLiUkJMhut8vtdgeWu91uxcfHH7Tc7XYrISEhTENuWmKiXUlJ8U2veIhQ7nO8s1tb\nrpXZ5Fqf3dpyrcxubblWZre2XCuzw5kbVEH369dPGzdu1IABA1ReXq6BAwcqPT1dxcXF8ng8qq+v\nV0VFhU4//XRlZmaqvLxc6enpKi8vV//+/cM26KbU1rq0fXtwR+xJSfFB3+d4Z7e2XCuzybU+u7Xl\nWpnd2nKtzG5tuVZmh5LbWKE3q6BtNpskadq0aZoxY4a8Xq9SU1M1atQo2Ww25efnKzc3Vz6fTwUF\nBYqJiVFOTo7uvPNO5ebmKiYmRvPmzQtq0AAAtGdNFnRycrJWrlwpSTr11FPlcDgOWyc7O1vZ2dkH\nLevYsaPmz58fpmECANC+8EElAAAYiIIGAMBAFDQAAAaioAEAMBAFDQCAgShoAAAMREEDAGAgChoA\nAANR0AAAGIiCBgDAQEF9WUZr5PF4VFVV2eR6u3bZVVvranSdXr1SFBMTE66hAQBwVG2+oKuqKjVl\n7ouK7dS1RTl1P9Ro/u2jlZqaFqaRAQBwdG2+oCUptlNX2Tv3PN7DAACg2bgGDQCAgShoAAAMREED\nAGAgChoAAANR0AAAGIiCBgDAQBQ0AAAGoqABADAQBQ0AgIEoaAAADERBAwBgIAoaAAADUdAAABiI\nggYAwEAUNAAABqKgAQAwEAUNAICBKGgAAAxEQQMAYCAKGgAAA1HQAAAYiIIGAMBAFDQAAAaioAEA\nMBAFDQCAgShoAAAMREEDAGAgChoAAANR0AAAGIiCBgDAQFHB3sHn8+mee+7RV199pYiICM2ePVuR\nkZGaNm2aIiIilJaWpsLCQtlsNpWUlGjVqlWKiorSxIkTNXz4cAseAgAAbU/QBb127Vrt2bNHK1as\n0Pr161VcXKyGhgYVFBQoKytLhYWFKisrU0ZGhhwOh0pLS1VfX6+cnBwNGjRIMTExVjwOAADalKBP\ncXfs2FFOp1N+v19Op1PR0dH63//+p6ysLEnS0KFDtX79em3atEmZmZmKjo6W3W5XSkqKtmzZEvYH\nAABAWxT0EXRmZqY8Ho9GjRql3bt3a9GiRXr33XcDt8fFxcnpdMrlcik+Pv6g5S6XKzyjBgCgjQu6\noJcsWaLMzEzddttt+v7775Wfn6+GhobA7S6XSwkJCbLb7XK73YHlbrdbCQkJ4Rl1ExIT7UpK+umP\ng1277JbkBivU+7W1XCuzybU+u7XlWpnd2nKtzG5tuVZmhzM36ILes2eP4uLiJEkJCQlqaGjQmWee\nqY0bN2rAgAEqLy/XwIEDlZ6eruLiYnk8HtXX16uiokJpaWlhG3hjamtd2r7dGfi3FbnBSEqKD+l+\nbS3Xymxyrc9ubblWZre2XCuzW1uuldmh5DZW6EEX9Lhx43TXXXcpNzdXDQ0Nmjp1qs466yzNmDFD\nXq9XqampGjVqlGw2m/Lz85Wbmyufz6eCggJeIAYAQDMFXdAJCQlauHDhYcsdDsdhy7Kzs5WdnR3a\nyAAAaMf4oBIAAAxEQQMAYCAKGgAAA1HQAAAYiIIGAMBAFDQAAAaioAEAMBAFDQCAgShoAAAMREED\nAGAgChoAAANR0AAAGIiCBgDAQBQ0AAAGoqABADAQBQ0AgIGijvcAWjOPx6Oqqsom19u1y67aWtdR\nb+/VK0UxMTHhHBoAoJWjoFugqqpSU+a+qNhOXUPOqPuhRvNvH63U1LQwjgwA0NpR0C0U26mr7J17\nHu9hAADaGK5BAwBgIAoaAAADUdAAABiIggYAwEAUNAAABqKgAQAwEAUNAICBKGgAAAxEQQMAYCAK\nGgAAA/FRnwYK15dwSHwRBwC0VhS0gcLxJRwSX8QBAK0ZBW0ovoQDANo3rkEDAGAgChoAAANR0AAA\nGIiCBgDAQBQ0AAAGoqABADAQBQ0AgIEoaAAADERBAwBgIAoaAAADUdAAABiIggYAwEAhfVnG4sWL\n9eabb8rr9er6669XZmampk2bpoiICKWlpamwsFA2m00lJSVatWqVoqKiNHHiRA0fPjzMwwcAoG0K\nuqA3bNig//73v1q5cqXq6uq0ZMkSvf766yooKFBWVpYKCwtVVlamjIwMORwOlZaWqr6+Xjk5ORo0\naBDfTQwAQDMEXdDr1q1T3759dcstt8jlcumOO+7Qc889p6ysLEnS0KFDtW7dOkVERCgzM1PR0dGK\njo5WSkqKtmzZonPOOSfsDwIAgLYm6IKura3Vd999p8WLF6uqqkoTJkyQ3+8P3B4XFyen0ymXy6X4\n+PiDlrtcrvCMugmJiXYlJf207V277JbkhjPbqtwjZTdXKPc53tnkWp/d2nKtzG5tuVZmt7ZcK7PD\nmRt0QXfu3FmpqamKiopS79691aFDB9XU1ARud7lcSkhIkN1ul9vtDix3u91KSEgIz6ibUFvr0vbt\nzsC/rcgNZ7ZVuUfKbo6kpPig73O8s8m1Pru15VqZ3dpyrcxubblWZoeS21ihB/0q7vPOO09r1qyR\nJFVXV2vv3r264IILtHHjRklSeXm5+vfvr/T0dL333nvyeDxyOp2qqKhQWlpasJsDAKBdCvoIevjw\n4Xr33Xd19dVXy+fzqbCwUD179tSMGTPk9XqVmpqqUaNGyWazKT8/X7m5ufL5fCooKOAFYgAANFNI\nb7O6/fbbD1vmcDgOW5adna3s7OxQNgEAQLvGB5UAAGAgChoAAANR0AAAGIiCBgDAQBQ0AAAGoqAB\nADAQBQ0AgIEoaAAADERBAwBgIAoaAAADUdAAABiIggYAwEAUNAAABgrp26zQOnk8HlVVVTa53q5d\ndtXWuhpdp1evFL4+FAAsREG3I1VVlZoy90XFduraopy6H2o0//bRSk1NC9PIAACHoqDbmdhOXWXv\n3PN4DwMA0ASuQQMAYCCOoBEW4bq+fei1ba6bA2ivKGiERTiubx/p2jbXzQG0VxQ0wsaq69tcNwfQ\nHnENGgAAA1HQAAAYiIIGAMBAFDQAAAaioAEAMBAFDQCAgShoAAAMREEDAGAgChoAAANR0AAAGIiC\nBgDAQBQ0AAAGoqABADAQBQ0AgIEoaAAADERBAwBgIAoaAAADUdAAABiIggYAwEAUNAAABoo63gMA\njgePx6Oqqsom19u1y67aWlej6/TqlaKYmJhwDQ0AJFHQaKeqqio1Ze6Liu3UtUU5dT/UaP7to5Wa\nmhamkQHATyhotFuxnbrK3rln2HObc3TOkTmApoRc0Dt37tSYMWO0bNkyRUREaNq0aYqIiFBaWpoK\nCwtls9lUUlKiVatWKSoqShMnTtTw4cPDOHTATOE4OufIHEBIBe31enXvvffqhBNOkN/v15w5c1RQ\nUKCsrCwVFhaqrKxMGRkZcjgcKi0tVX19vXJycjRo0CCOCNAuWHV0DqD9COlV3A899JBycnKUlJQk\nSdq8ebOysrIkSUOHDtX69eu1adMmZWZmKjo6Wna7XSkpKdqyZUv4Rg4AQBsWdEGXlpYqMTFRgwcP\nliT5/X75/f7A7XFxcXI6nXK5XIqPjz9oucvV+DU3AADwk6BPcZeWlspms2n9+vX69NNPNW3aNO3a\ntStwu8vlUkJCgux2u9xud2C52+1WQkJCeEbdhMREu5KSfvrjYNcuuyW54cy2KvfQbOaidc9FMEK9\nX1vLtTK7teVamd3acq3MDmdu0AX97LPPBv6dl5enWbNm6aGHHtLGjRs1YMAAlZeXa+DAgUpPT1dx\ncbE8Ho/q6+tVUVGhtLRj84KX2lqXtm93Bv5tRW44s63KPTSbuWjdc9FcSUnxId2vreVamd3acq3M\nbm25VmaHkttYobf4bVY2m03Tpk3TjBkz5PV6lZqaqlGjRslmsyk/P1+5ubny+XwqKCjgBWIAADRT\niwra4XAc8d/7ZWdnKzs7uyWbAACgXeKzuAEAMBAFDQCAgShoAAAMREEDAGAgChoAAAPxbVZAK8F3\nWAPtCwUNtBJ8hzXQvlDQQCvCt2QB7QfXoAEAMBAFDQCAgShoAAAMxDVooJ3j1eGAmShooJ3j1eGA\nmShoALw6HDAQBQ3AMs05fc6pc+DIKGgAlgnH6fMjnTrnujnaAwoagKWsOH3OdXO0BxQ0gFaJ6+Zo\n63gfNAAABqKgAQAwEAUNAICBuAYNAP+HV4fDJBQ0APwfXh0Ok1DQAHAAXh0OU3ANGgAAA1HQAAAY\niIIGAMBAFDQAAAbiRWIAYDHevoVQUNAAYDEr375F+bddFDQAHANWvX2L9263XRQ0ALRyvHe7beJF\nYgAAGIgjaADAYbi2ffxR0ACAw3Bt+/ijoAEAR2TFtW2OzJuPggYAHDMcmTcfBQ0AOKZ41XnzUNAA\ngDbBqtPnx+u0PAUNAGgTrDp9frxOy1PQAIA2w6rT58fjtDwfVAIAgIEoaAAADBT0KW6v16u7775b\n3377rTwejyZOnKjU1FRNmzZNERERSktLU2FhoWw2m0pKSrRq1SpFRUVp4sSJGj58uAUPAQCAtifo\ngn7ppZeUmJiouXPn6ocfftDll1+ufv36qaCgQFlZWSosLFRZWZkyMjLkcDhUWlqq+vp65eTkaNCg\nQW36TeUAAIRL0AU9atQoXXLJJZIkn8+nqKgobd68WVlZWZKkoUOHat26dYqIiFBmZqaio6MVHR2t\nlJQUbdmyReecc054HwEAAG1Q0NegY2NjFRcXJ5fLpSlTpujWW2+Vz+cL3B4XFyen0ymXy6X4+PiD\nlrtcjb8/DAAA/CSkt1l99913mjRpksaOHavLLrtMc+fODdzmcrmUkJAgu90ut9sdWO52u5WQkNDy\nETdDYqJdSUk//XGwa5fdktxwZluVe2g2c8FcHCmbubB+LlrDHB+a3dpyrcy2csyNCbqgd+zYod/8\n5jcqLCzUBRdcIEnq16+fNm7cqAEDBqi8vFwDBw5Uenq6iouL5fF4VF9fr4qKCqWlHZvPTK2tdWn7\ndmfg31bkhjPbqtxDs5kL5uJI2cyF9XPRGub40OzWlmtltpVjbqysgy7oRYsWyel0auHChVq4cKEk\n6Z577tH9998vr9er1NRUjRo1SjabTfn5+crNzZXP51NBQQEvEAMAoJmCLujp06dr+vTphy13OByH\nLcvOzlZ2dnZoIwMAoB3jg0oAADAQBQ0AgIEoaAAADERBAwBgIAoaAAADUdAAABiIggYAwEAUNAAA\nBqKgAQAwEAUNAICBKGgAAAxEQQMAYCAKGgAAA1HQAAAYiIIGAMBAFDQAAAaioAEAMBAFDQCAgSho\nAAAMREEDAGAgChoAAANR0AAAGIiCBgDAQBQ0AAAGoqABADAQBQ0AgIEoaAAADERBAwBgIAoaAAAD\nUdAAABiIggYAwEAUNAAABqKgAQAwEAUNAICBKGgAAAxEQQMAYCAKGgAAA1HQAAAYiIIGAMBAFDQA\nAAaioAEAMBAFDQCAgShoAAAMFGVluM/n08yZM/XZZ58pOjpa999/v0455RQrNwkAQJtg6RH0G2+8\nIa/Xq5UrV+r3v/+9HnzwQSs3BwBAm2FpQb///vsaMmSIJCkjI0Mff/yxlZsDAKDNsPQUt8vlkt1u\nD/w/MjJSPp9PERFH/rug7oeaFm/zSBlW5YYj26rco2UwF9bnhiObubA+92gZrS3XyuzWlmtltpVj\nPhqb3+/3t3irR/Hggw8qIyNDv/zlLyVJw4YN01tvvWXV5gAAaDMsPcWdmZmp8vJySdIHH3ygvn37\nWrk5AADaDEuPoP1+v2bOnKktW7ZIkubMmaPevXtbtTkAANoMSwsaAACEhg8qAQDAQBQ0AAAGoqAB\nADAQBQ0AgIGMLGiPx6O//vWvWrBggVauXHlcxzJhwgR98803Qd1n//iPhQ8//FAjR45UcXHxMdme\nidasWaOSkhJj88KhtLRU8+bNs3Qboex3LXmu75/nkpISNTQ0hJTRWG44HGneCwoK5PV6w5LfHKtW\nrQp5fnbs2KFZs2ZJkt59993AO2ouvPDCZmc09byYPHlySGM7Fvbt26e8vDzl5OTI6XSGJbO0tFRP\nPfVUs9Z99tlnW7QtIwu6pqbmmBVcc9hstqDWr6mp0XPPPWfRaA62Zs0a5efn67bbbjsm2zPRkCFD\ndM011xibFw7BPgdDEcp+15Ln+v55XrRokXw+X0gZjeWGw5Hm/ZFHHlF0dHRY8ptj8eLFIc/PSSed\npMLCQknS3/72N9XU/PRJVsE8n5p6Xjz22GMhje1YqK6ultvt1ooVKxQfHx+WzGDmbtGiRS3alqUf\n9RmqRYsWqaKiQps2bdLgwYP12muvaffu3ZoyZYpGjBihV199Vc8884wiIiJ03nnnaerUqU1mulwu\nTZ8+XU6nUzU1NcrJydGrr76qfv36aevWrXK5XJo/f7569OihRx99VKtXr1bXrl313XffhTT+zz//\nXAsXLtRHH30kt9uthoYG3XrrrbrgggtCmRJJktfr1V133aWvv/5aPp9PF198sUpLSxUdHa2TTz5Z\nF198ccjZ0uFzlJubq5ycnKBzSktL9eabb6q+vl7bt29Xfn6+ysrKtHXrVt1xxx168cUXNX/+fEnS\nddddp8cee0xJSUkhj7u0tFRffvlls54Hzc1bs2aNvv32W3Xv3l3btm1Tenq6Zs6cGVTO1KlTNXr0\naA0bNkwVFRX6wx/+oE6dOqmqqko+n0833HCDfvWrXykvL0/33XefevfurRUrVmjnzp2aNGnSYXkf\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": "iVBORw0KGgoAAAANSUhEUgAAAYAAAAECCAYAAAD3vwBsAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAEVZJREFUeJzt3X+QXXV5x/F3aMiv7mZLnI0oZmiH4jPpHyDgjxYcA5aW\nQlU6zqhTLANUiShFsFXHiaCjEwYthRmYUcZJRKBYdaAyxTJGLDImZKaCldKh2iekjEmcoRKyYbPL\nj/wg2z/uSb1uk727d3P33Hu/79c/ufd7zt3zPPPdOZ8953vvzbyJiQkkSeU5pu4CJEn1MAAkqVAG\ngCQVygCQpEIZAJJUKANAkgo1f6qNEXEscDtwIrAQWAv8AvhnYEu125cz856IuBxYDRwA1mbmAxGx\nGLgbGAbGgEsy87mOdCJJmpF5U30OICIuBU7JzL+OiOOAJ4DPAUOZeXPTfscDDwJnAIuBR4A3An8F\nDGTm5yPifcAfZOY1nWpGkjR9U14BAPcA91aPjwH20zjJR0RcCDwFXAO8GdicmfuB/RGxFTgFOAv4\nYvX6DcB1R7d8SVK7plwDyMwXMnM8IgZphMGngUeBj2fmKuBp4LPAIDDa9NIxYAhYCuyZNCZJ6gIt\nF4EjYgXwA+CuzPwmcF9mPl5tvg84jcZJfrDpZYPA85PGD41JkrpAq0XgV9O4t/+RzHy4Gt4QER/N\nzMeAc4Ef07gquD4iFgKLgJXAk8Bm4ALgMeB8YGOrgiYmJibmzZvXZjuSVKwZnzhbLQLfArwHyKbh\nTwE30VgPeAZYXd0m+iCNdwEdA1yfmfdV7wK6E3gNsBe4KDOfbVHTxM6dYzPto2cMDw/Sr/31c29g\nf72ugP6ObgDUxADoUf3cG3RHf/v27WPHjm0d+dnLlg0wMjI+rX1XrDiRBQsWdKSOTumG+eukdgKg\n1buAJHWRHTu2cfWN97NkaHltNbw4+iy3fOJdnHTSybXVoKPDAJB6zJKh5Qwcd0LdZagP+FUQklQo\nA0CSCmUASFKhDABJKpQBIEmFMgAkqVAGgCQVygCQpEIZAJJUKANAkgplAEhSoQwASSqUASBJhTIA\nJKlQBoAkFcoAkKRCGQCSVCgDQJIKZQBIUqEMAEkqlAEgSYUyACSpUAaAJBXKAJCkQhkAklQoA0CS\nCmUASFKhDABJKpQBIEmFml93AZJ6y8FXDrB9+7a6ywBgxYoTWbBgQd1l9CwDQNKMvDy+i5u+NcKS\noWdqrePF0We55RPv4qSTTq61jl5mAEiasSVDyxk47oS6y9AsuQYgSYUyACSpUAaAJBVqyjWAiDgW\nuB04EVgIrAV+BtwBHASeBK7MzImIuBxYDRwA1mbmAxGxGLgbGAbGgEsy87kO9SJJmoFWVwDvB3Zm\n5tuAPwG+BNwErKnG5gEXRsTxwFXAmcB5wA0RsQD4MPBEte9dwLWdaUOSNFOtAuAe4DNN++4HTs/M\njdXYd4FzgTcBmzNzf2buAbYCpwBnARuqfTdU+0qSusCUt4Ay8wWAiBikEQbXAn/XtMsYMAQsBUaP\nML5n0pgkqQu0/BxARKwAvg18KTO/ERF/27R5KfA8jZP8YNP44GHGD421NDw82HqnHtbP/fVzb1B/\nf7t3D9R6/G6zbNnAjOak7vnrNq0WgV8NPAh8JDMfroYfj4hVmflD4HzgIeBR4PqIWAgsAlbSWCDe\nDFwAPFbtu5Fp2LlzrI1WesPw8GDf9tfPvUF39DcyMl7r8bvNyMj4tOekG+avk9oJt1ZXAGto3Lb5\nTEQcWgu4Gri1WuT9KXBv9S6gW4FNNNYK1mTm3oi4DbgzIjYBe4GLZlyhJKkjWq0BXE3jhD/Z2YfZ\ndz2wftLYS8B7Z1GfJKlD/CCYJBXKAJCkQhkAklQoA0CSCmUASFKhDABJKpQBIEmFMgAkqVAGgCQV\nygCQpEIZAJJUKANAkgplAEhSoQwASSqUASBJhTIAJKlQBoAkFcoAkKRCGQCSVCgDQJIKZQBIUqEM\nAEkqlAEgSYUyACSpUAaAJBXKAJCkQhkAklQoA0CSCmUASFKhDABJKpQBIEmFMgAkqVAGgCQVygCQ\npEIZAJJUKANAkgo1fzo7RcRbgC9k5jkRcRrwHeCpavOXM/OeiLgcWA0cANZm5gMRsRi4GxgGxoBL\nMvO5o96FJGnGWgZARHwS+AtgvBo6A7g5M29u2ud44Kpq22LgkYj4PvBh4InM/HxEvA+4Frjm6LYg\nSWrHdK4AtgLvBv6+en4G8PqIuJDGVcA1wJuBzZm5H9gfEVuBU4CzgC9Wr9sAXHcUa5ckzULLNYDM\n/DaN2zqH/Aj4eGauAp4GPgsMAqNN+4wBQ8BSYM+kMUlSF2hnEfi+zHz80GPgNBon+cGmfQaB5yeN\nHxqTJHWBaS0CT7IhIj6amY8B5wI/Bh4Fro+IhcAiYCXwJLAZuAB4DDgf2DidAwwPD7beqYf1c3/9\n3BvU39/u3QO1Hr/bLFs2MKM5qXv+us1MAmCi+vcK4EsRsR94BlidmeMRcSuwicZVxZrM3BsRtwF3\nRsQmYC9w0XQOtHPn2AzK6i3Dw4N9218/9wbd0d/IyHjrnQoyMjI+7TnphvnrpHbCbVoBkJk/B86s\nHj8BvPUw+6wH1k8aewl474yrkiR1nB8Ek6RCGQCSVCgDQJIKZQBIUqEMAEkqlAEgSYUyACSpUAaA\nJBXKAJCkQhkAklQoA0CSCmUASFKhDABJKpQBIEmFMgAkqVAGgCQVygCQpEIZAJJUKANAkgplAEhS\noQwASSqUASBJhTIAJKlQBoAkFcoAkKRCGQCSVCgDQJIKZQBIUqEMAEkqlAEgSYUyACSpUAaAJBXK\nAJCkQhkAklQoA0CSCmUASFKhDABJKtT86ewUEW8BvpCZ50TE7wJ3AAeBJ4ErM3MiIi4HVgMHgLWZ\n+UBELAbuBoaBMeCSzHyuA31Ikmao5RVARHwSWAcsrIZuBtZk5tuAecCFEXE8cBVwJnAecENELAA+\nDDxR7XsXcO3Rb0GS1I7p3ALaCrybxske4PTM3Fg9/i5wLvAmYHNm7s/MPdVrTgHOAjZU+26o9pUk\ndYGWAZCZ36ZxW+eQeU2Px4AhYCkweoTxPZPGJEldoJ1F4INNj5cCz9M4yQ82jQ8eZvzQmCSpC0xr\nEXiSxyNiVWb+EDgfeAh4FLg+IhYCi4CVNBaINwMXAI9V+248/I/8dcPDg6136mH93F8/9wb197d7\n90Ctx+82y5YNzGhO6p6/bjOTAJio/v0bYF21yPtT4N7qXUC3AptoXFWsycy9EXEbcGdEbAL2AhdN\n50A7d47NoKzeMjw82Lf99XNv0B39jYyM13r8bjMyMj7tOemG+eukdsJtWgGQmT+n8Q4fMvMp4OzD\n7LMeWD9p7CXgvTOuSpLUcX4QTJIKZQBIUqEMAEkqlAEgSYUyACSpUAaAJBXKAJCkQhkAklSodr4K\nQirOvn372LJlS+2fxN2+fVutx1d/MQCkadixYxtX33g/S4aW11rHrl/8jFe9bmWtNah/GADSNC0Z\nWs7AcSfUWsOLo7+s9fjqL64BSFKhDABJKpQBIEmFMgAkqVAGgCQVygCQpEIZAJJUKANAkgplAEhS\noQwASSqUASBJhTIAJKlQBoAkFcoAkKRCGQCSVCgDQJIKZQBIUqEMAEkqlAEgSYUyACSpUAaAJBXK\nAJCkQhkAklQoA0CSCmUASFKhDABJKtT8dl8YET8BRqunTwM3AHcAB4EngSszcyIiLgdWAweAtZn5\nwKwqliQdFW0FQEQsAsjMc5rG7gfWZObGiLgNuDAi/hW4CjgDWAw8EhHfz8x9sy9dkjQb7V4BnAos\niYjvVT/j08Dpmbmx2v5d4I+BV4DNmbkf2B8RW4FTgB/PrmxJ0my1uwbwAnBjZp4HXAF8fdL2MWAI\nWMqvbhM1j0uSatbuFcAWYCtAZj4VEbuA05q2LwWeB/YAg03jg8DuVj98eHiw1S49rZ/769fedu8e\nqLsEHcayZQMz+p3r19/PdrUbAJfRuJVzZUS8lsaJ/cGIWJWZPwTOBx4CHgWuj4iFwCJgJY0F4int\n3DnWZlndb3h4sG/76+feRkbG6y5BhzEyMj7t37l+/v2E9sKt3QD4KvC1iDh0z/8yYBewLiIWAD8F\n7q3eBXQrsInG7aY1LgBLUndoKwAy8wBw8WE2nX2YfdcD69s5jiSpc/wgmCQVygCQpEIZAJJUKANA\nkgrV9ncBSVKdDr5ygO3bt017/927Bzrydt4VK05kwYIFR/3nzgUDQFJPenl8Fzd9a4QlQ8/UVsOL\no89yyyfexUknnVxbDbNhAEjqWUuGljNw3Al1l9GzXAOQpEIZAJJUKANAkgplAEhSoQwASSqUASBJ\nhTIAJKlQBoAkFcoAkKRCGQCSVCgDQJIKZQBIUqEMAEkqlAEgSYUyACSpUAaAJBXKAJCkQhkAklQo\nA0CSCmUASFKhDABJKpQBIEmFMgAkqVDz6y5AamXfvn3s2LGt1hq2b6/3+FInGADqejt2bOPqG+9n\nydDy2mrY9Yuf8arXrazt+FInGADqCUuGljNw3Am1Hf/F0V/WdmypU1wDkKRCGQCSVChvAUlSmw6+\ncqBr3iAwPHz6jF/T8QCIiGOALwOnAHuBD2bmf3f6uJLUaS+P7+Kmb42wZOiZWut4cfRZfvSPXRgA\nwJ8BCzLzzIh4C3BTNSZJPa/uNyjMxlysAZwFbADIzB8Bb5yDY0qSWpiLK4ClwJ6m569ExDGZeXAO\njq1ZmOkHsHbvHmBkZPyo19Et91ilfjMXAbAHGGx6PuXJ/9K//CAvv7y/81VN4exVZ/OGU0/tyM/u\n1EmyE7Zv38badd9n0cCyWusY/eXT/NZrXl9rDS+NjQDzaq2hW+rohhq6pY5uqAEaawDtmDcxMXGU\nS/l1EfFu4J2ZeVlE/D5wXWb+aUcPKklqaS6uAO4D/igiNlfPL5uDY0qSWuj4FYAkqTv5SWBJKpQB\nIEmFMgAkqVAGgCQVqpYvg4uIY4HbgROBhcDazPxO0/Z3AtcBB4DbM3N9HXW2axr9fQz4ALCzGvpQ\nZm6Z80LbFBG/AawDXg9MAFdk5n82be/1+WvVX0/PH0BELAf+DfjD5tp7fe4OmaK/fpi7nwCj1dOn\nM/MDTdtmNH91fRvo+4GdmXlxRBwH/DvwHfi/k+fNNL4y4kVgc0Tcn5ntfdKhHkfsr3I6cHFmPl5L\ndbP3DuBgZr41IlYB11N9v1OfzN8R+6v09PxVc/QV4IXDjPf63B2xv0qvz90igMw85zDbZjx/dd0C\nugf4TFMNB5q2rQS2ZuZoZu4HHgHeNsf1zdZU/QGcAayJiE0R8ak5rewoyMx/Aj5UPf1tYHfT5p6f\nvxb9QY/PH3AjcBsw+Ssse37uKkfqD3p/7k4FlkTE9yLioeoLNg+Z8fzVEgCZ+UJmjkfEII2T5aeb\nNi/lV5c3AGPA0FzWN1st+gP4Bo0TzNuBt0ZEz30yOjNfiYg7gFuBf2ja1PPzB1P2Bz08fxFxKY2r\n0weroebvMej5uWvRH/Tw3FVeAG7MzPOAK4CvV1+5D23MX22LwBGxAvgBcFdmfrNp0yi//t1Bg/z/\nv8C63hT9AdySmSNVSj8AnDbnBR4FmXkpjfvk6yJicTXcF/MHR+wPenv+LqPxyfyHgTcAd1b3y6E/\n5m6q/qC35w5gC/B1gMx8CtgFvKbaNuP5q2sR+NXAg8BHMvPhSZv/Czi5unf+Ao1LmBvnuMRZmaq/\niBgC/iMifo/Gfbq3A1+d+yrbFxEXA6/LzBuAl4CDNBZLoT/m74j99fr8ZeaqQ4+rk+SHmu4R9/zc\nTdVfr89d5TIa/7nWlRHxWhp/9f9PtW3G81fLV0FExC3Ae4BsGl4H/GZmrouId9C4h34M8NXMvG3O\ni5yFafT358DHaPwPaf+SmZ+rocy2VX8N3wEcDxwL3AAMAAN9Mn+t+uvp+TukOkFeQWNhtC/mrtkR\n+uvpuYuI+cDXaLzDEOCTwO/Q5vz5XUCSVCg/CCZJhTIAJKlQBoAkFcoAkKRCGQCSVCgDQJIKZQBI\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\nueQS3Xrrrdq2bdt56/ttrYCZWHgtL2AeX375pT777DMlJSVJkpYuXaq9e/fq6aefruTKzuVyufTC\nCy9o5MiRqlWrlvbt26dhw4bpww8/rOzSgIuaX/f49+zZo/nz5/suuElOTpbValWjRo2UkpIii8Wi\nNWvWaPXq1QoODtbw4cPVpUsXnTp1SuPGjdOJEydks9k0e/Zs34VOAMrv6quv1t///netWbNGknTF\nFVdU2Sva7Xa7QkJC1L9/fwUHBys4OFjPPPNMZZcFXPT8tsf/97//XW+99ZZsNptWrVqlYcOG6b77\n7lNMTIxSUlLUsWNHRUVFaejQoUpLS1NBQYESEhK0du1arVixQm63WyNGjND69ev12WefaeLEif4o\nEwAAU/HbxX2RkZFatGiR76Ka/fv3KyYmRtKZ85Lp6enau3evoqOjFRISIrvdrsjISB08eFCffvqp\nOnXqJOnMbTdnbzcCAAB/jN+Cv3v37sUe8PHrAws2m01Op1Mul0thYWHF2l0ul1wul+9WnbPLAgCA\nPy5gV/X/+v5bl8ul8PBw2e12ud1uX7vb7VZYWFixdrfbrfDw8BLXn5GRUfFFAwBQhbVq1arMfQIW\n/M2aNdOuXbvUpk0bbdu2Te3atVOLFi20YMECeTweFRQU6NChQ2rcuLGio6O1bds2tWjRQtu2bVPr\n1q1LtY3y/ANUFxkZGYzfpOM389glxs/4zTv+8u7w+j34z94jm5ycrMmTJ6uwsFANGzZUbGysLBaL\nBg8erMTERHm9Xo0ePdr3yM7x48crMTFRNWrU0FNPPeXvMgEAMAW/Bv+VV17pewb31VdfrdTU1HOW\niY+PV3x8fLG2WrVq6dlnn/VnaQAAmBKP7AUAwEQIfgAATITgBwDARAh+AABMhOAHAMBECH4AAMph\n586datq0qdavX1+svXfv3nr88ccrqaqSEfwAAJTTtddeq3fffdf3+8GDB3Xq1KlKrKhkAXtyHwAA\nfjNunPT66xW7zvh4ad68835ssVjUtGlTff/993K5XLLb7XrrrbfUu3dvZWVl6V//+pdee+01Wa1W\ntWrVSmPGjNHRo0c1depUeTweHTt2TI888ohuvfVW9e7dWzfffLMOHjwoSXrhhRdkt9srdjz/jz1+\nAAD+gO7du2vjxo2SpL1796ply5b65ZdftGjRIr322mtauXKlsrOzlZ6eru+++05Dhw7VP/7xD02f\nPl0rV66UdOa9NL169VJqaqouv/xybdu2zW/1sscPALj4zZt3wb1zfzj71tmePXtq6tSpatCgge/d\nMl6vVydOnND9998v6UywHz58WNHR0VqyZIneeOMNWSwWFRUV+dZ3/fXXS5L+8pe/qKCgwG91s8cP\nAMAf0KBBA+Xn5ys1NVV33nmnpDOnAf7yl79o6dKlSk1NVWJioqKiorRw4ULdeeedmjt3rtq0aVPs\nlfWBQvADAFAOFovF9yK6O+64Q0ePHlVkZKQkKSIiQv/1X/+lQYMGacCAAUpPT9fVV1+t2NhYzZ07\nV/fff7+ysrKUm5t73nX7rW6jMr5u+IGZX80oMX4zj9/MY5cYf1nH7/V65XQ6y7SNsLAwWa1Vcz/R\nzPNf3rFzjh8ATMTpdOqtD/YrNNRWquXz8tyK63K96tSp4+fKECgEPwCYTGioTTZ7eGWXgUpSNY/d\nAAAAvyD4AQAwEYIfAAATIfgBADARgh8AABMh+AEAMBGCHwAAEyH4AQAwEYIfAAATIfgBADARHtkL\nABcpr9crl8slh8NR6j4Oh6NSXgWLqoPgB4CLlNPp1I59PyvHk1nqPjnHsmWz15E9zI+FoUoj+AHg\nIlardmiZXrjjdpftlbyofjjHDwCAiRD8AACYCMEPAICJEPwAAJgIwQ8AgIkQ/AAAmAjBDwCAiRD8\nAACYCMEPAICJEPwAAJgIwQ8AgIkQ/AAAmAjBDwCAiRD8AACYCMEPAICJEPwAAJgIwQ8AgIkQ/AAA\nmEhwZRcAAJC8Xq+cTmeZ+jgcDhlew08Voboi+AGgCnA6nXrrg/0KDbWVuk/OsWx5PIV+rArVEcEP\nAFVEaKhNNnt4qZd3u53Kdbj8WBGqI87xAwBgIgQ/AAAmQvADAGAiBD8AACYS0Iv7vF6vJk6cqO+/\n/15Wq1VPPPGEgoKClJycLKvVqkaNGiklJUUWi0Vr1qzR6tWrFRwcrOHDh6tLly6BLBUAgGopoMH/\n0UcfKT8/X//85z+Vnp6uBQsWqKioSKNHj1ZMTIxSUlK0adMmRUVFKTU1VWlpaSooKFBCQoLat2+v\nGjVqBLJcAACqnYAe6q9Vq5acTqcMw5DT6VRISIj27dunmJgYSVKnTp2Unp6uvXv3Kjo6WiEhIbLb\n7YqMjNTBgwcDWSoAANVSQPf4o6Oj5fF4FBsbq9zcXC1ZskS7d+/2fW6z2eR0OuVyuRQWFlas3eXi\nXlUAAP6ogAb/yy+/rOjoaD322GM6evSoBg8erKKiIt/nLpdL4eHhstvtcrvdvna3263w8JIfapGR\nkeGXui8WjN+84zfz2KXqMX6Xy6XDP7pUO9Re6j4ncrJltYYo84fMMvdx5+eXavn8PJc+r/GL7PbS\n1xVo1WH+AymgwZ+fny+b7czjKMPDw1VUVKTrr79eu3btUps2bbRt2za1a9dOLVq00IIFC+TxeFRQ\nUKBDhw6pUaNGJa6/VatW/h5ClZWRkcH4TTp+M49dqj7jdzgcyvFklunJfbVrBisr62dFXhVZpj5W\na4guq/enUi3vdp3UTTdFqk6dOqXeRiBVl/kvj/J+4Qlo8N933316/PHHlZiYqKKiIo0ZM0Y33HCD\nJk+erMLCQjVs2FCxsbGyWCwaPHiwEhMT5fV6NXr0aC7sAwCgAgQ0+MPDw7V48eJz2lNTU89pi4+P\nV3x8fCDKAgDANHiADwAAJkLwAwBgIgQ/AAAmQvADAGAiBD8AACZC8AMAYCIEPwAAJhLQ+/gBABcX\nr9crh8NR5n5hYWGyWtm3rIoIfgDAeeXnu7Vhxy+KiLi01H3y8tyK63J9lX3Mr9kR/ACAC6pd21am\ndwigauM4DAAAJkLwA0A10mTRk2qy6MnKLgNVGMEPANXInzev1583r6/sMlCFEfwAAJgIwQ8AgIkQ\n/AAAmAjBDwCAiRD8AACYCMEPAICJ8OQ+AKhgXq9XTqezTH0cDocMw/BTRcB/EPwAUMGcTqfe+mC/\nQkNtpe6TcyxbNnsd2cP8WBgggh8A/CI0tGzPt3e7y3aEACgvzvEDAGAiBD8AACZC8AMAYCIEPwAA\nJkLwAwBgIgQ/AAAmQvADAGAiBD8AACZC8AMAYCIEPwAAJkLwAwBgIgQ/AAAmQvADAGAiBD8AACZC\n8AMAYCIEPwAAJkLwAwBgIgQ/AAAmQvADAGAiBD8AACZC8AMAYCIEPwAAJkLwAwBgIgQ/AAAmQvAD\nAGAiBD8AACZC8AMAYCIEPwAAJkLwAwBgIgQ/AAAmQvADAGAiBD8AACYSHOgNvvjii9qyZYsKCws1\naNAgRUdHKzk5WVarVY0aNVJKSoosFovWrFmj1atXKzg4WMOHD1eXLl0CXSoAANVOQIN/586d+uyz\nz7Rq1Srl5eXp5Zdf1saNGzV69GjFxMQoJSVFmzZtUlRUlFJTU5WWlqaCggIlJCSoffv2qlGjRiDL\nBQCg2glo8G/fvl1NmjTRQw89JJfLpb/97W964403FBMTI0nq1KmTtm/fLqvVqujoaIWEhCgkJESR\nkZE6ePCgbrzxxkCWCwBAtRPQ4D9x4oSysrL04osv6vDhwxo2bJgMw/B9brPZ5HQ65XK5FBYWVqzd\n5XIFslQAAKqlgAb/JZdcooYNGyo4OFjXXHONatasqZ9//tn3ucvlUnh4uOx2u9xut6/d7XYrPDy8\nxPVnZGT4pe6LBeM37/jNPHap6o3f5XLp8I8u1Q61l7rPiZxsWa0hcufnl7lP5g+ZvraioiJJKtb2\nR7ZTnrry81z6vMYvsttLP/4/oqrNf1UX0OBv1aqVli1bpnvvvVfZ2dk6deqU2rZtq127dqlNmzba\ntm2b2rVrpxYtWmjBggXyeDwqKCjQoUOH1KhRo1Kt36wyMjIYv0nHb+axS1Vz/A6HQzmeTNnsJe+w\nnFW7ZrCs1hBdVu9PZeqTlfWzIq+K9LUFB5/5s/7rtj+ynfLU5Xad1E03RapOnTql7lNeVXH+A6W8\nX3gCGvxdunTR7t271b9/f3m9XqWkpOiKK67Q5MmTVVhYqIYNGyo2NlYWi0WDBw9WYmKivF6vRo8e\nzYV9AABUgIDfzjdu3Lhz2lJTU89pi4+PV3x8fCBKAgDANHiADwAAJkLwAwBgIgQ/AAAmQvADAGAi\nBD8AACZC8AMAYCIEPwAAJkLwAwBgIgQ/AAAmQvADAGAiBD8AACZSquDPzs6WJO3evVsrVqxQXl6e\nX4sCAAD+UWLwT5kyRS+88IK+/vprjR07Vvv27dP48eMDURsAAKhgJQb/3r17lZKSovfee0/9+vXT\nk08+qSNHjgSiNgAAUMFKDH6v1yuv16tNmzapc+fOysvL06lTpwJRGwAAqGAlBn+fPn3UoUMH1a9f\nX1FRUerfv78GDBgQiNoAAEAFCy5pgVtuuUVJSUkKDj6z6PLly5WZmen3wgAAQMU7b/B/8skn8nq9\nmjx5smbMmOFrLyoqUkpKijZu3BiQAgEAQMU5b/Cnp6dr9+7d+vnnn7Vw4cL/dAgO1j333BOQ4gAA\nQMU6b/CPGjVKkrRu3Tr16dMnYAUBAAD/KfEcf+vWrTVnzhzl5uYWa581a5bfigIAAP5RYvA/+uij\niomJUUxMjK/NYrH4tSgAAOAfJQb/6dOneVIfAADVRIn38bdq1UqbNm2Sx+MJRD0AAMCPStzjf++9\n97R8+fJibRaLRV999ZXfigIAAP5RYvB/9NFHgagDAAAEQInBv2jRot9tHzFiRIUXAwAA/KvEc/yG\nYfh+Liws1ObNm3X8+HG/FgUAAPyjxD3+kSNHFvv94Ycf1r333uu3ggCgqvF6vXI6naVe3uFwFNtp\nAqqSEoP/t1wul7KysvxRCwBUSU6nU299sF+hobZSLZ9zLFs2ex3Zw/xcGFAOJQZ/t27div3ucDh0\n3333+a0gAKiKQkNtstnDS7Ws2136owNAoJUY/MuWLfM9qc9isSg8PFx2u93vhQEAgIpXYvDXr19f\n//znP/Xxxx+rqKhIbdu2VVJSkqzWEq8LBAAAVUyJwT9v3jxlZmaqX79+MgxDa9eu1Y8//qiJEycG\noj4AAFCBSvUAn3Xr1ikoKEiS1KVLF/Xq1cvvhQEAgIpX4vF6r9er06dP+34/ffq0goPLfDMAAACo\nAkpM8N69eyspKUm9evWSYRh699131bNnz0DUBgAAKtgFg9/hcGjAgAFq1qyZPv74Y3388ccaMmSI\n+vTpE6j6AABABTrvof79+/frjjvu0JdffqnOnTtr/Pjx6tChg+bPn68DBw4EskYAAFBBzhv8s2fP\n1tNPP61OnTr52saMGaNZs2Zp9uzZASkOAABUrPMG/8mTJ3XzzTef096xY0edOHHCr0UBAAD/OG/w\nnz59Wl6v95x2r9eroqIivxYFAAD847zB37p1ay1atOic9ueff17Nmzf3a1EAAMA/zntV/5gxY/TA\nAw/orbfeUosWLeT1erV//35FRETohRdeCGSNAACggpw3+O12u1asWKGdO3dq//79CgoK0qBBg9S6\ndetA1gcAACrQBe/jt1qtateundq1axeoegAAgB/xij0AAEyE4AcAwEQIfgAATITgBwDARAh+AABM\nhOAHAMBECH4AAEykUoL/+PHj6ty5s7777jtlZmYqISFBAwcO1NSpU2UYhiRpzZo16tevn+6++259\n8MEHlVEmAADVTsCDv7CwUFOmTFHt2rVlGIZmzZql0aNHa8WKFTIMQ5s2bdKxY8eUmpqqVatW6ZVX\nXtFTTz0lj8cT6FIBAKh2Ah78c+fOVUJCgurVqydJ2r9/v2JiYiRJnTp1Unp6uvbu3avo6GiFhITI\nbrcrMjJSBw8eDHSpAABUOwEN/rS0NEVERKhDhw6SJMMwfIf2Jclms8npdMrlciksLKxYu8vlCmSp\nAABUSxd8Vn9FS0tLk8ViUXp6ug4cOKDk5GT98ssvvs9dLpfCw8Nlt9vldrt97W63W+Hh4SWuPyMj\nwy91XywYv3nHb+axS/4fv8vl0uEfXaodai/V8idysmW1hsidn1/qbfyRPpk/ZPraioqKJKlY2x/Z\nTnnqcrtO6iPPYdntpfv3Ois0NFRWa9n3R83+/7+sAhr8y5cv9/2clJSkadOmae7cudq1a5fatGmj\nbdu2qV27dmrRooUWLFggj8ejgoICHTp0SI0aNSpx/a1atfJn+VVaRkYG4zfp+M08dikw43c4HMrx\nZMpmL3kHRJJq1wyW1Rqiy+r9qdTbKG+frKyfFXlVpK8tOPjMn/Vft/2R7ZSnrp+zj+gnl0cRNS4p\ndZ+8PLfibmqsOnXqlLqPZO7//+X9whPQ4P8ti8Wi5ORkTZ48WYWFhWrYsKFiY2NlsVg0ePBgJSYm\nyuv1avTo0apRo0ZllgoAKIPatW2l/qKEwKq04E9NTf3dn8+Kj49XfHx8IEsCAKDa4wE+AACYCMEP\nAICJEPwAAJgIwQ8AgIkQ/AAAmAjBDwCAiRD8AACYCMEPAICJEPwAAJgIwQ8AgIkQ/AAAmAjBDwCA\niRD8AACYCMEPAICJEPwAAJgIwQ8AgIkQ/AAAmAjBDwCAiRD8AACYCMEPAICJEPwAAJgIwQ8AgIkQ\n/AAAmAjBDwCAiRD8AACYCMEPAICJEPwAAJgIwQ8AgIkQ/AAAmAjBDwCAiRD8AACYCMEPAICJEPwA\nAJgIwQ8AgIkQ/AAAmAjBDwCAiRD8AACYCMEPAICJEPwAAJgIwQ8AgIkQ/AAAmAjBDwCAiRD8AACY\nSHBlFwAAgeT1euV0OsvUx+FwyDAMP1UEBBbBD8BUnE6n3vpgv0JDbaXuk3MsWzZ7HdnD/FgYECAE\nPwDTCQ21yWYPL/XybnfZjhAAVRnn+AEAMBGCHwAAEyH4AQAwEYIfAAATIfgBADARruoHAFQ6r9cr\nh8NRrn4oG4IfAFDp8vPd2rDjF0VEXFrqPnl5bl1V1+PHqqqngAZ/YWGhJkyYoJ9++kkej0fDhw9X\nw4YNlZycLKvVqkaNGiklJUUWi0Vr1qzR6tWrFRwcrOHDh6tLly6BLBUAEGC1a5ft+QpnEPxlFdDg\nf/vttxUREaF58+bJ4XDozjvvVLNmzTR69GjFxMQoJSVFmzZtUlRUlFJTU5WWlqaCggIlJCSoffv2\nqlGjRiDLBQCg2glo8MfGxur222+XdOa8THBwsPbv36+YmBhJUqdOnbR9+3ZZrVZFR0crJCREISEh\nioyM1MGDB3XjjTcGslwAAKqdgF7VHxoaKpvNJpfLpUceeUSPPvposQszbDabnE6nXC6XwsLCirW7\nXK5AlgoAQLUU8Iv7srKyNGLECA0cOFC9evXSvHnzfJ+5XC6Fh4fLbrfL7Xb72t1ut8LDSz7vk5GR\n4ZeaLxaM37zjN/PYpbKN3+Vy6fCPLtUOtZe6z4mcbFmtIXLn5/tl+T/aJ/OHTF9bUVGRJBVr+yPb\nCfRYytInP8+ly661m/7/f1kFNPhzcnI0dOhQpaSkqG3btpKkZs2aadeuXWrTpo22bdumdu3aqUWL\nFlqwYIE8Ho8KCgp06NAhNWrUqMT1t2rVyt9DqLIyMjIYv0nHb+axS2Ufv8PhUI4ns0wXkdWuGSyr\nNUSX1fuTX5b/I32ysn5W5FWRvrbg4DN/1n/d9ke2E8ixlLWP23VS0i+m/f9f3i88AQ3+JUuWyOl0\navHixVq8eLEkaeLEiZo5c6YKCwvVsGFDxcbGymKxaPDgwUpMTJTX69Xo0aO5sA8AgAoQ0OCfNGmS\nJk2adE57amrqOW3x8fGKj48PRFkAAJgGj+wFAMBECH4AAEyE4AcAwEQIfgAATITgBwDARAh+AABM\nhOAHAMBECH4AAEyE4AcAwEQIfgAATITgBwDARAh+AABMhOAHAMBECH4AAEyE4AcAwEQIfgAATITg\nBwDARIIruwAAKC+v1yuXyyWHw1HqPg6HQ4Zh+LEqoGoj+AFctJxOp3bs+1k5nsxS98k5li2bvY7s\nYX4sDKjCCH4AF7VatUNls4eXenm32+nHaoCqj+AHAFyUynOqJywsTFaruS9vI/gBABel/Hy3vvou\nV6dqlO5UT16eW3FdrledOnX8XFnVRvADAC5aNWuV7VQPuJ0PAABTIfgBADARgh8AABMh+AEAMBGC\nHwAAEyH4AQAwEYIfAAATIfgBADARgh8AABMh+AEAMBGCHwAAEyH4AQAwEYIfAAATIfgBADARgh8A\nABMJruwCAAAIBK/XK4fDUeZ+YWFhslqrz34ywQ+gSvB6vXI6nWXq43A4ZHgNP1WE6iY/360NO35R\nRMSlpe6Tl+dWXJfrVadOHT9WFlgEP4Aqwel06q0P9is01FbqPjnHsuXxFPqxKlQ3tWvbZLOHV3YZ\nlYrgB1BlhIaW7Y+y2+1UrsPlx4qA6qf6nLQAAAAlIvgBADARgh8AABMh+AEAMBEu7gMA4Dyq473/\nBD8AvyjHAvL7AAAOtklEQVTrffkOh0OGwT35qFqq473/BD8Avyjrffk5x7Jls9eRPczPhQFlVN3u\n/Sf4AfhNWe7Ld7vL9tQ+AOVTNU9AAAAAvyD4AQAwEQ71AyhRuV+gw8V6QJVD8AMoUXlfoMPFekDp\nlOfLdXlV2eD3er2aOnWq/v3vfyskJEQzZ87UVVddVdllAaZVnhfoAGZUnnv/HQ6Htn76o0Jt9lIt\nn5fn1vVX1ihPeVU3+N9//30VFhZq1apV2rNnj2bPnq3nn3++sssCqhSv1yuXy1WmPzJer1eSyvRw\nEQ7bA6VXnnv/zx4hK9ttg+V7JXWVDf5PP/1UHTt2lCRFRUXpyy+/rOSKYGblPQxX1qd3leehN+l7\nf1aOJ7PUfXKOZcsaFFyuP0octgdKp6z3/gfyCFmVDX6XyyW7/T+HPIKCguT1eqvsIxAr0w+Hf9SH\n6Z/oyNETpe5Tv/7lanRtpB+rCqyy7vWWlcPh0Hvb/61atWqXus+pU/mKvaVxmZ7eVdbt/HIiR4WF\nnlKv/4/Iz3fL7TpZ+uXz8mQNCi51n7Iuf7ZPwak8v9ZVnj6B2MbZPr8dv/f/j8ycbz1VeSz+nv+q\nPpay9MnLc0sR5TvUbzGq6PG72bNnKyoqSj169JAkde7cWVu3bj3v8hkZGYEqDQCAKqFVq1Zl7lNl\n9/ijo6O1ZcsW9ejRQ59//rmaNGlyweXLM3gAAMymyu7xG4ahqVOn6uDBg5KkWbNm6ZprrqnkqgAA\nuLhV2eAHAAAVjyvlAAAwEYIfAAATIfgBADCRizL49+zZo6SkpHPaX331VfXq1UtJSUlKSkrSd999\nVwnV+U9hYaHGjRungQMHKj4+Xps3by72+ebNm9W/f3/dc889ev311yupSv8pafzVff5Pnz6txx9/\nXAkJCUpMTNTXX39d7PPqPv8ljb+6z78kHT9+XJ07dz5nbNV97s863/jNMPd9+/b1jW/ChAnFPivz\n/BsXmZdeesno1auXcffdd5/z2dixY419+/ZVQlWBsXbtWuPJJ580DMMwcnNzjS5duvg+83g8xm23\n3WacPHnS8Hg8Rr9+/YycnJzKKtUvLjR+w6j+8/+///u/xoQJEwzDMIydO3caw4cP931mhvm/0PgN\no/rPv8fjMR566CHj9ttvN7799tti7dV97g3j/OM3jOo/96dOnTL69Onzu5+VZ/4vuj3+yMhILVq0\n6HefG75v3z4tWbJEiYmJeumllyqhOv+KjY3VqFGjJJ15tGtQUJDvs0OHDumqq65SWFiYQkJC1KpV\nK+3evbuySvWLC41fqv7zf+utt2r69OmSpCNHjhR7IqAZ5v9C45eq//zPnTtXCQkJqlevXrF2M8y9\ndP7xS9V/7g8cOKD8/Hzdd999GjJkiPbs2eP7rDzzf9EFf/fu3c/5g39Wz549NX36dL322mvKyMjQ\nBx98ENji/Cw0NFQ2m00ul0uPPPKIHnvsMd9nLpdLYWH/eZC6zWYL2CseA+VC45eq//xLZx5dnZyc\nrBkzZqhXr16+djPMv3T+8UvVe/7T0tIUERGhDh06SFKxHR8zzP2Fxi9V77mXpNq1a+u+++7TK6+8\nomnTpmns2LG+l22VZ/4vuuC/kCFDhqhu3boKCQlR586dtX///souqcJlZWVpyJAh6tOnj3r27Olr\nDwsLk9vt9v3udrvL9Iz4i8X5xi+ZY/6lM4+z3rBhgyZPnqxTp05JMs/8S78/fql6z39aWprS09OV\nlJSkAwcOKDk5WcePH5dkjrm/0Pil6j33knT11VcrLi7O93PdunV17NgxSeWb/2oT/E6nU71791Ze\nXp4Mw9DHH3+s5s2bV3ZZFSonJ0dDhw7VuHHjdNdddxX77Nprr1VmZqYcDoc8Ho92796tm266qZIq\n9Y8Ljd8M879u3Tq9+OKLkqRatWrJYrHIYrFIMsf8X2j81X3+ly9frtTUVKWmpqpp06aaM2eOLr30\nzNsVzTD3Fxp/dZ976cwXn9mzZ0uSsrOz5XK5dNlll0kq3/xflE/u+/HHHzV27FitWrVK77zzjvLy\n8jRgwAC98847evXVV1WjRg21b99eI0aMqOxSK9SMGTP03nvvFXt08YABA5Sfn68BAwZoy5YtWrx4\nsbxer/r376/ExMRKrLbilTT+6j7/p06dUnJysnJyclRUVKQHH3xQeXl5vv//1X3+Sxp/dZ//s5KS\nkjRt2jTt37/fNHP/a783/uo+90VFRXr88cf1008/SZLGjRunH3/8sdzzf1EGPwAAKJ9qc6gfAACU\njOAHAMBECH4AAEyE4AcAwEQIfgAATITgBwDARAh+AOXyxRdfaP78+ZLOvB1s4cKFftuWy+XSXXfd\npb59++r777/3taelpemJJ56okG1069bNd580UJ0FV3YBAC5O33zzje+xqd26dVO3bt38tq2vvvpK\nNWrU0KpVq4q1n31yH4DSI/iBACgqKtLUqVP1zTffKCcnR9dcc40WLVqkp59+WpdffrmGDh0qSRo1\napTi4uJ00003acqUKTp69KisVqvGjBmjdu3a6bnnntPnn3+uo0ePauDAgbruuuv0zDPP6NSpU3I4\nHBo3bpxiY2N19OhRjR07VidPnlTjxo21e/dubd26VW63W9OnT9fXX38tr9erBx544Jx3HqSlpenN\nN99Ubm6uunXrpp49e+qJJ55Qfn6+Tpw4oXvvvVd9+vTRwoULlZ+fryVLluhPf/qTdu/erVmzZqlb\nt26688479dFHHyk/P19z5szRDTfcoH//+99KTk6W1+tVq1at9OGHH2rjxo3Ftp2Tk6OJEycqKytL\nwcHBeuyxx3TDDTdowoQJysnJ0UMPPaTnn3++WJ9vvvlGCQkJcrlc6tatm+/lTWvXrtWrr74qSWre\nvLkmT56s0NBQbdmyRc8++6y8Xq8aNGig6dOn+x7/Kknfffedhg0bpnnz5qlFixYV/V8BqHwV9sJg\nAOe1e/duY/r06YZhGIbX6zUGDRpkbNiwwdi/f79x1113GYZhGE6n0+jQoYNRUFBgPProo8amTZsM\nwzCM7Oxs49ZbbzVcLpexcOFCIykpybfekSNH+t5Nnp6ebvTq1cswDMMYMWKEsXLlSsMwzrzHvkmT\nJoZhGMa8efOMZcuW+bbXq1cv44cffihW69q1a43u3bsbp0+fNgzDMGbOnGns2LHDMAzD+OGHH4yW\nLVsahmEYaWlpRnJysq/P2Z+7du1qvPbaa4ZhGEZqaqoxcuRIwzAMo2/fvsbWrVsNwzCMpUuXGl27\ndj3n32nUqFHG0qVLfdvq0KGDkZOTY+zcudMYNGjQOcuvXbvW6Nq1q5Gbm2t4PB4jISHB+OCDD4wD\nBw4Yt912m5Gbm2sYhmFMmzbNmDNnjpGTk2N07NjROHLkiGEYhvHyyy8bo0aN8tW9a9cuo2fPnsan\nn376u/MIVAfs8QMB0Lp1a9WtW1crVqzQt99+q8zMTOXl5alZs2byeDz64Ycf9Omnn6pr166qUaOG\n0tPT9d133/nOm58+fVqHDx+WxWJRVFSUb73z58/X5s2b9a9//Ut79uxRfn6+JCk9PV1z5syRdOY9\n9uHh4b72goICrV27VpKUn5+vQ4cOqUGDBsXqvf7662W1nrkEKDk5Wdu2bdNLL73key+4dO6rUX+t\nY8eOkqTrrrtOGzdulMPh0JEjR9SpUydJUv/+/bVs2bJz+u3cuVMzZ86UJDVo0EBRUVHas2ePbDbb\n727HYrGoe/fuvreR9ejRQzt27FCDBg3UrVs3X/uAAQM0YcIEtWnTRi1atFD9+vV97b9+f/tjjz2m\nG2+8US1btjzv2ICLHcEPBMCmTZv03HPPaciQIerXr59yc3N9n/Xu3VvvvvuuPv/8cz3wwAOSzoTq\nsmXLfIGdnZ2tevXq6f3331fNmjV9fRMSEtSuXTu1adNG7dq105gxYySdeW/92fd1/5phGJo/f76a\nNWsmSTp27Jjq1q1bbBmLxaJatWr5fn/kkUdUt25dde3aVXfccYfWr19f4njP1mixWGQYhoKCgs6p\n4/f8tt0wDHm93gueyz/7BUWSvF6vb+y/XpdhGCoqKjrn3+Rs+1mTJk3Sc889p61bt6pz584ljBK4\nOHFVPxAAO3bsUI8ePdS3b19deuml2r17ty9w4uLitH79emVmZqp169aSpLZt22rFihWSpK+//lpx\ncXHKz88vFma5ubnKzMzUqFGj1KlTJ3300Ue+YGvfvr3efvttSdLWrVt18uRJ33pXrlwpSfr555/V\nt29fHT16tFitvw3f9PR0jRw5Ut26ddOuXbsk/Sdgfx2aF2K323XVVVdp27ZtkqS33377d8P85ptv\n1htvvCFJOnz4sD799FPddNNNF/yisGXLFrlcLhUUFGj9+vW65ZZb1KZNG23evFkOh0OStGbNGrVt\n21ZRUVH6/PPPdeTIEUnS6tWr1bZtW9/6WrRooalTp2ratGm+IxtAdcMePxAAAwYM0JgxY7Rx40bV\nq1dPf/3rX33h8+c//1kRERHF3qE9adIkTZkyRXFxcb69dJvNViws69atq/j4ePXs2VOXXnqpbrvt\nNnk8Hp06dUoTJkzQ+PHjtWbNGjVt2tR35ODhhx/WtGnT1Lt3b50+fVpjx4495zD/bwN55MiRSkxM\n1GWXXabWrVurYcOGOnLkiKKiorR48WI99dRTuvbaa3933BaLxbe+2bNna+LEiXrmmWfUpEmTYkcV\nfjvutWvXymKxaObMmbrsssv07bff/u4XBYvFomuuuUb333+/nE6n4uLi1L59e0nSgw8+qEGDBqmo\nqEjNmzfXtGnTFBoaqieeeEIjRoxQYWGhrrjiCt+phbNiYmJ0880369lnn1VycvLvTyhwEeO1vEA1\nlJqaqvbt26thw4bat2+fL0wr0+LFizVgwADVq1dPGzdu1DvvvOPXe/8B/D72+IFqKDIyUqNHj5bV\nalXNmjU1Y8aMyi5J9evX19ChQxUcHKw6deqcs6cNIDDY4wcAwES4uA8AABMh+AEAMBGCHwAAEyH4\nAQAwEYIfAAATIfgBADCR/wMwAOJIiynE+wAAAABJRU5ErkJggg==\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": "iVBORw0KGgoAAAANSUhEUgAAAfYAAAFVCAYAAAAdY838AAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAGmxJREFUeJzt3X+Q3PV93/HnKegkhE5nxCyQEAUn2H6Pag+1cW1aOZFg\ngiGQxCT84TZ2a0yLqAlhnLELrhVKh4ywmFCRoKlDEymJTNxJGBjSxmXAZAhFspoEcDEuAb9tOTay\nZwgI/TidAMFJuv6x35NXy57ubm/3bvfD8zGj0e5nP9/vft766u71/X6+3/3uwPj4OJIkqQwL5nsA\nkiSpcwx2SZIKYrBLklQQg12SpIIY7JIkFcRglySpICdN1SEizgduy8wLI+J0YDPwNmAA+ERmfj8i\n1gLXAIeB9Zn5QEScDHwZqAGjwJWZ+XK3CpEkSVMcsUfEjdSDfFHV9DvAn2bmGuBm4D0RcSZwPbAK\nuATYEBGDwLXA05m5GrgbuKk7JUiSpAlTTcXvBK6gfnQO9fBeERF/BXwc+Gvgg8COzBzLzAPVMucC\nHwIeqpZ7CLiow2OXJElNThjsmXk/9en1CW8H9mbmh4FdwOeAIWCkoc8oMAwsAw40tUmSpC6a8hx7\nkz3AX1aPvwLcCjxJPdwnDAH7qYf6UFPbCY2Pj48PDAxM1U2SpFJ0PPRmGuxfA36R+kVxa4BngMeB\nWyNiEbAYWFm17wAuA54ALgW2TbXygYEBdu8eneGQ+ketNmR9fark2sD6+p319a9abWjqTjM03Y+7\nTXxTzGeBT0TEDuBi4AuZ+SKwCdgOPAKsy8zXgbuAd0fEduBq4JaOjlySJL3JQI99u9t4qXtlUPZe\nJ5RdX8m1gfX1O+vrX7XaUMen4r1BjSRJBTHYJUkqiMEuSVJBDHZJkgpisEuSVBCDXZKkghjskiQV\nxGCXJKkgM72lbFdt2/437B959djzM8+o8dNv/+l5HJEkSf2lp4J93V1f4+RltWPPV576Tf7TZ66e\nxxFJktRfeirYB09exuJTTj32fOHgK/M4GkmS+o/n2CVJKojBLklSQQx2SZIKYrBLklQQg12SpIIY\n7JIkFcRglySpIAa7JEkFMdglSSqIwS5JUkEMdkmSCmKwS5JUEINdkqSCGOySJBXEYJckqSAGuyRJ\nBTHYJUkqiMEuSVJBDHZJkgpisEuSVJCTpuoQEecDt2XmhQ1tHwN+IzNXVc/XAtcAh4H1mflARJwM\nfBmoAaPAlZn5chdqkCRJlRMesUfEjcBmYFFD2/uAf9vw/EzgemAVcAmwISIGgWuBpzNzNXA3cFPH\nRy9Jko4z1VT8TuAKYAAgIk4DbgV+c6IN+CCwIzPHMvNAtcy5wIeAh6o+DwEXdXbokiSp2Qmn4jPz\n/oh4O0BELAD+CPgMcKih2zJgpOH5KDBctR9oapuRxYsXUqsNzXSxnlZaPc1Krq/k2sD6+p31acKU\n59gbvB94B3AXsBj4JxFxB/Ao0PgvPgTspx7qQ01tM3Lo0Bi7d4/OdLGeVasNFVVPs5LrK7k2sL5+\nZ339qxs7LNMO9sx8AngPQEScDfx5Zn6mOsd+a0Qsoh74K4FngB3AZcATwKXAtg6PXZIkNZnux93G\nm54PTLRl5j8Cm4DtwCPAusx8nfqR/bsjYjtwNXBLR0YsSZImNeURe2Z+n/oV75O2ZeYWYEtTn9eA\nj3ZikJIkaXq8QY0kSQUx2CVJKojBLklSQQx2SZIKYrBLklQQg12SpIIY7JIkFcRglySpIAa7JEkF\nMdglSSqIwS5JUkEMdkmSCmKwS5JUEINdkqSCGOySJBXEYJckqSAGuyRJBTHYJUkqiMEuSVJBDHZJ\nkgpisEuSVBCDXZKkghjskiQVxGCXJKkgBrskSQUx2CVJKojBLklSQQx2SZIKYrBLklQQg12SpIKc\nNFWHiDgfuC0zL4yI9wKbgCPA68AnMvOliFgLXAMcBtZn5gMRcTLwZaAGjAJXZubL3SpEkiRNccQe\nETcCm4FFVdPvAb+RmRcC9wOfi4gzgOuBVcAlwIaIGASuBZ7OzNXA3cBN3SlBkiRNmGoqfidwBTBQ\nPf9XmfnN6vFC4DXgg8COzBzLzAPVMucCHwIeqvo+BFzUyYFLkqQ3O2GwZ+b91KfXJ57/I0BErAKu\nA34XWAaMNCw2CgxX7Qea2iRJUhdNeY69WUT8S2AdcFlm7omIA8BQQ5chYD/1UB9qapuRxYsXUqsN\nTd2xj5RWT7OS6yu5NrC+fmd9mjCjYI+If039IrkLMnNf1fw4cGtELAIWAyuBZ4AdwGXAE8ClwLaZ\nDu7QoTF27x6d6WI9q1YbKqqeZiXXV3JtYH39zvr6Vzd2WKYb7OMRsQC4E3geuD8iAP53Zt4SEZuA\n7dSn9tdl5usRcRfwpYjYTv0K+o91fPSSJOk4UwZ7Zn6f+hXvAKdN0mcLsKWp7TXgo7McnyRJmgFv\nUCNJUkEMdkmSCmKwS5JUEINdkqSCzPhz7HPl6JEx9u15ke9+9zvHta9YcTaDg4PzNCpJknpbzwb7\nqwde4u9HFvD5P/zbH7WNvMSdN3yEc8555zyOTJKk3tWzwQ6wZPh0lp561nwPQ5KkvuE5dkmSCmKw\nS5JUEINdkqSCGOySJBXEYJckqSAGuyRJBTHYJUkqiMEuSVJBDHZJkgpisEuSVBCDXZKkghjskiQV\nxGCXJKkgBrskSQUx2CVJKojBLklSQQx2SZIKYrBLklQQg12SpIIY7JIkFcRglySpIAa7JEkFMdgl\nSSrISVN1iIjzgdsy88KIeAewFTgKPANcl5njEbEWuAY4DKzPzAci4mTgy0ANGAWuzMyXu1SHJEli\niiP2iLgR2AwsqpruANZl5mpgALg8Is4ErgdWAZcAGyJiELgWeLrqezdwU3dKkCRJE6aait8JXEE9\nxAHOy8xt1eMHgYuADwA7MnMsMw9Uy5wLfAh4qOr7UNVXkiR10QmDPTPvpz69PmGg4fEoMAwsA0Ym\naT/Q1CZJkrpoynPsTY42PF4G7Kce3kMN7UMt2ifaZm358qXUakNTd+xR/Tz26Si5vpJrA+vrd9an\nCTMN9qciYk1mPgZcCjwCPA7cGhGLgMXASuoX1u0ALgOeqPpua73Kmdm79yC7d492YlVzrlYb6tux\nT0fJ9ZVcG1hfv7O+/tWNHZbpftxtvPr7s8AtEfF/qO8U3JeZLwKbgO3Ug35dZr4O3AW8OyK2A1cD\nt3R05JIk6U2mPGLPzO9Tv+KdzPwOcEGLPluALU1trwEf7cQgJUnS9HiDGkmSCmKwS5JUEINdkqSC\nGOySJBXEYJckqSAGuyRJBTHYJUkqiMEuSVJBDHZJkgpisEuSVBCDXZKkghjskiQVxGCXJKkgBrsk\nSQUx2CVJKojBLklSQQx2SZIKYrBLklQQg12SpIIY7JIkFcRglySpIAa7JEkFMdglSSqIwS5JUkEM\ndkmSCmKwS5JUEINdkqSCGOySJBXEYJckqSAGuyRJBTHYJUkqyEkzXSAiFgBbgHcBR4G1wBFga/X8\nGeC6zByPiLXANcBhYH1mPtChcUuSpBbaOWK/GDglM38W+G3gC8BGYF1mrgYGgMsj4kzgemAVcAmw\nISIGOzNsSZLUyoyP2IHXgOGIGACGgTeA8zNzW/X6g9TD/wiwIzPHgLGI2AmcCzw5+2FLkqRW2gn2\nHcBi4FvAacAvA6sbXh+lHvjLgJEW7bOyfPlSarWh2a5m3vTz2Kej5PpKrg2sr99Znya0E+w3Uj8S\n/62I+EngUWBhw+vLgP3AAaBxSwwB+9od6IS9ew+ye/fobFczL2q1ob4d+3SUXF/JtYH19Tvr61/d\n2GFp5xz7KdRDG+pBfRLwVESsqdouBbYBjwM/FxGLImIYWEn9wjpJktQl7Ryx3w78SURsp36k/nng\n68Dm6uK4Z4H7qqviNwHbqe9ArMvMNzo0bkmS1MKMgz0z9wO/2uKlC1r03UL9o3GSJGkOeIMaSZIK\n0s5U/Lw5euQwu3Y9f1zbihVnMzjox+MlSYI+C/ZDB/ew8Z69LBl+AYBXR17izhs+wjnnvHOeRyZJ\nUm/oq2AHWDJ8OktPPWu+hyFJUk/yHLskSQUx2CVJKojBLklSQQx2SZIKYrBLklQQg12SpIIY7JIk\nFcRglySpIAa7JEkFMdglSSqIwS5JUkEMdkmSCmKwS5JUEINdkqSCGOySJBXEYJckqSAGuyRJBTHY\nJUkqiMEuSVJBDHZJkgpisEuSVBCDXZKkghjskiQVxGCXJKkgBrskSQUx2CVJKshJ7SwUEZ8HfhlY\nCPxXYAewFTgKPANcl5njEbEWuAY4DKzPzAc6MWhJktTajI/YI+IC4F9k5irgAuBngI3AusxcDQwA\nl0fEmcD1wCrgEmBDRAx2aNySJKmFdqbiLwb+X0T8D+ArwF8C78/MbdXrDwIXAR8AdmTmWGYeAHYC\n53ZgzJIkaRLtTMXXgBXAL1E/Wv8K9aP0CaPAMLAMGGnRLkmSuqSdYH8ZeC4zDwPfjohDwFkNry8D\n9gMHgKGG9iFgX7sDnczy5Uup1Yam7tgj+mms7Si5vpJrA+vrd9anCe0E+9eATwN3RMRPAEuARyJi\nTWY+BlwKPAI8DtwaEYuAxcBK6hfWddTevQfZvXu006vtilptqG/G2o6S6yu5NrC+fmd9/asbOywz\nDvbMfCAiVkfE49TP0f868H1gc3Vx3LPAfdVV8ZuA7VW/dZn5RueGLkmSmrX1cbfM/FyL5gta9NsC\nbGnnPSRJ0sx5gxpJkgpisEuSVBCDXZKkghjskiQVxGCXJKkgBrskSQUx2CVJKojBLklSQQx2SZIK\nYrBLklQQg12SpIIY7JIkFaStL4HpFUePHGbXruff1L5ixdkMDg7Ow4gkSZpffR3shw7uYeM9e1ky\n/MKxtldHXuLOGz7COee8cx5HJknS/OjrYAdYMnw6S089a76HIUlST/AcuyRJBTHYJUkqiMEuSVJB\nDHZJkgpisEuSVBCDXZKkghjskiQVxGCXJKkgBrskSQUx2CVJKojBLklSQQx2SZIKYrBLklQQg12S\npIIY7JIkFaTt72OPiNOBrwM/DxwFtlZ/PwNcl5njEbEWuAY4DKzPzAdmPWJJkjSpto7YI2Ih8AfA\nK8AAcAewLjNXV88vj4gzgeuBVcAlwIaIGOzIqCVJUkvtTsXfDtwFvFA9Py8zt1WPHwQuAj4A7MjM\nscw8AOwEzp3NYCVJ0onNONgj4pPA7sx8uGoaqP5MGAWGgWXASIt2SZLUJe2cY78KGI+Ii4D3Al8C\nag2vLwP2AweAoYb2IWBfm+OckeXLl1KrDU3dcR706rg6peT6Sq4NrK/fWZ8mzDjYM3PNxOOIeBT4\nFHB7RKzJzMeAS4FHgMeBWyNiEbAYWEn9wrqu27v3ILt3j87FW81IrTbUk+PqlJLrK7k2sL5+Z339\nqxs7LG1fFd9gHPgssLm6OO5Z4L7qqvhNwHbqU/7rMvONDryfJEmaxKyCPTMvbHh6QYvXtwBbZvMe\nM3X0yGF27Xr+uLYVK85mcNAL8iVJ5evEEXtPOXRwDxvv2cuS4foF+6+OvMSdN3yEc8555zyPTJKk\n7isu2AGWDJ/O0lPPmu9hSJI057ylrCRJBTHYJUkqiMEuSVJBDHZJkgpisEuSVBCDXZKkghjskiQV\nxGCXJKkgBrskSQUx2CVJKojBLklSQQx2SZIKYrBLklQQg12SpIIY7JIkFcRglySpIAa7JEkFMdgl\nSSqIwS5JUkEMdkmSCmKwS5JUEINdkqSCnDTfA+i2o0cOs2vX829qX7HibAYHB+dhRJIkdU/xwX7o\n4B423rOXJcMvHGt7deQl7rzhI5xzzjvncWSSJHVe8cEOsGT4dJaeetZ8D0OSpK7zHLskSQUx2CVJ\nKojBLklSQQx2SZIKMuOL5yJiIfDHwNnAImA98BywFTgKPANcl5njEbEWuAY4DKzPzAc6NG5JktRC\nO0fsHwd2Z+Zq4BeALwIbgXVV2wBweUScCVwPrAIuATZEhB8clySpi9r5uNu9wH3V4wXAGHBeZm6r\n2h4ELgaOADsycwwYi4idwLnAk7MbsiRJmsyMgz0zXwGIiCHqIX8T8F8auowCw8AyYKRFe09Yvnwp\ntdrQnL/vfLznXCq5vpJrA+vrd9anCW3doCYiVgD3A1/MzD+LiN9peHkZsB84ADRuiSFgX7sD7bS9\new+ye/fonL5nrTY05+85l0qur+TawPr6nfX1r27ssLRz8dwZwMPAr2fmo1XzUxGxJjMfAy4FHgEe\nB26NiEXAYmAl9Qvr5l2r+8d773hJUgnaOWJfR31K/eaIuLlq+zSwqbo47lngvuqq+E3Adurn4tdl\n5hudGPRsNd8/3nvHS5JK0c459k9TD/JmF7TouwXYMvNhdZ/3j5cklegt8SUwU/GrXSVJpTDY8atd\nJUnlMNgrTs1LkkrgveIlSSqIwS5JUkEMdkmSCmKwS5JUEINdkqSCGOySJBXEYJckqSB+jn0SzXej\nGxsbA2DhwoXH9fPudJKkXmKwT6L5bnR7fvgcJw+dxpLh04/18e50kqReY7CfQOPd6F4dedG700mS\nep7n2CVJKojBLklSQQx2SZIK4jn2WWj1Pe5eJS9Jmk8G+yw0XznvVfKSpPlmsM+SV8pLknqJwd5B\nrabmwel5SdLcMdg7qHlqHpyelyTNLYO9w5yalyTNJ4O9yxqn5/ftW8qLL+4Djr/nvFP1kqROMdi7\nbKp7zjtVL0nqJIN9DnjPeUnSXDHYe9Abb7zBD37gjW8kSTNnsM+zVh+R27XreTbe8/SMputb7QyA\nOwSS9FZjsM+zVh+R2/PD5zjtJ1eecLq+OcibdwbA8/eS9FZksPeA5nPur468eNzr0zmqb7Uz0Lzc\n2NgYcPwV+eBRvSSVxGDvA9M5qm/eGWi1XPMV+fXljj+qbzWl37xDMNkOwvDwe2ZVpyRp9roa7BGx\nAPh94FzgdeDqzPxuN9+zVFMd1U9nuVZX5Dcf1bea0m/eIZhsB+FPNyzl1FN/fNKxTHVR4HSuE/Ba\nAkk6sW4fsf8KMJiZqyLifGBj1aYe0eqovnlKv3mHYLIdhO9973vs3XsQaH1U37zTcHDfC9zwa+fx\nUz91dsvXp9unnVkHmHpnoHE9+/YtPVbbbHci3DmR1E3dDvYPAQ8BZObfRcQ/6/L7qQ3Nod2OQwf3\ncPMf/s0Jj+pbnT6oh/SJdyqm6tPOrEPzDgO8Ofyns6PRaodhqlMX3VrvhKlmOFqt58UXT+HgwTcm\n7dO83lbrbmfMnaqh1fiadXM901muHZ366Ot01tOtj9lO5/9J83s1LzOxY92N8TS/93SXmc5y86Xb\nwb4MONDw/EhELMjMo606Lzi4k6NHdgNwdORlDi1423Gvvza6FxiY9Hk/9un18c2kz8lDpzGVV0de\nOuEyja9Pt8++F77D+s3fYvHS5QCMvPgPvO3H33XCcbz+yn7Wb/6rY8tMLLfolLedcD3NyzUvM9l6\n5mK9AIcO7uWmtR8+boZjOnVO9V7N62217nb/LTpRQ6vxNdq3bynf+Mbfz3o9k41nOsu1o/m9Jnuf\nxhmldtcz3feabQ3tbvNujWeut/lcfEppYHx8vGsrj4iNwN9m5r3V8x9k5oquvaEkSW9xC7q8/h3A\nZQAR8c+Bb3b5/SRJekvr9lT8XwAfjogd1fOruvx+kiS9pXV1Kl6SJM2tbk/FS5KkOWSwS5JUEINd\nkqSCGOySJBWkJ74Ept/vKR8R/xcYqZ7+A7AB2AocBZ4BrsvM8YhYC1wDHAbWZ+YDEXEy8GWgBowC\nV2bmy3NcwptUtwC+LTMvjIh3MMt6qo87/l7V9+HM/O25r+pHmup7H/AV4DvVy7+fmff2a30RsRD4\nY+BsYBGwHniOArbhJLX9EPhfwLerbn27/SLix4DNwLuAceBT1H8nbqXPtx1MWt8ghWy/CRFxOvB1\n4Oepb7etzOH265Uj9mP3lAf+I/V7yveFiFgMkJkXVn/+HXAHsC4zV1O/RdvlEXEmcD2wCrgE2BAR\ng8C1wNNV37uBm+ajjkYRcSP1H75FVVMn6vlvwK9l5s8C50fEe+esoCYt6ns/cEfDNry3n+sDPg7s\nrsb4C8AXqf9MlbANW9V2HrCxkO33S8DRahw3AV+gnG0Hb67vVsrafhM7n38AvEJ9e835789eCfbj\n7ikP9NM95f8psCQivhoRj1R7Vudl5rbq9QeBi4APADsycywzDwA7qc9QHKu9+vuiuR1+SzuBK/jR\nfWNnVU9EDFHfcfte1f5V5rfO5vreD/xiRDwWEVsiYinwQfq3vnuBm6vHC4AxytmGrWorZvtl5v8E\n/n319O3APuD9hWy7VvXtp6DtV7kduAuY+J7tOf/Z65Vgb3lP+fkazAy9AtyemZdQn1b6702vjwLD\n1GscmaT9QFPbvMrM+6lP+UxovDF8O/U0b995rbNFfX8H/IfMXEP9VMp/Bobo3/peycyD1S+Ee6nv\n9Tf+PPXtNmxR228Bj1PW9jsSEVuBO6n/Pint56+5vmK2X0R8kvqM0sNV0wDzsP16JTwPUN+QEyb9\nopge9G2qMM/M7wB7gDMaXl9Gfa+0ucahFu0Tbb2mcVu0U09z34l19Iq/yMynJh4D76PP64uIFcBf\nA3dn5p9R0DZsqu3PKXD7ZeYngQC2AIsbXurrbTehob7N1M8Zl7L9rqJ+t9VHgfcCX6J+vnzCnGy/\nXgn2fr6n/FVU1wRExE9Q3wAPR8Sa6vVLgW3U90p/LiIWRcQwsJL6hRTHam/o22uemk09mTkKvBER\nPxMRA8DF9FadD0XEB6rHFwFP0sf1RcQZwMPAjZm5tWouYhtOUlsx2y8i/k1EfL56+hpwBHiyhG0H\nLes7CtxfyvbLzDWZeUFmXgh8A/gE9f+fc7r9euKqePr7nvJ/BPxJREz8Q19F/ah9c3UxxLPAfdVV\nkJuA7dR3qNZl5usRcRfwpYjYTv3q14/NfQmTmrjf8GeZfT0Tpyl+DPhqZj4xl4VMYqK+TwFfjIgx\n6ufFrqmme/u1vnXUp+pujoiJ89GfBjYVsA1b1fabwO8Wsv3uA7ZGxGPAQurb7VuU8/PXqr5dlPXz\n12icefj96b3iJUkqSK9MxUuSpA4w2CVJKojBLklSQQx2SZIKYrBLklQQg12SpIIY7JIkFeT/AyC2\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": "iVBORw0KGgoAAAANSUhEUgAAAfEAAAFaCAYAAAAO6WRQAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAFttJREFUeJzt3X+QnPVdwPH3VbiQmM1ZdIGxpjCD7WfQmaggVAltyhit\nYWxx6ggjWmlnmkhEhJkWRmPaDp0grRicpkOjQ6yh4q8hwlSbIZbpVBKutoDWOFj9lLTTUgTL0ZDL\nhYTjQs4/9rl6XO9uL3vP7d03937NdLj97nf3eTbz7b33eXZvt2d0dBRJklSe18z3DkiSpM4YcUmS\nCmXEJUkqlBGXJKlQRlySpEIZcUmSCnXaTCZFxFnAvwI/B5wAdlb/fQK4PjNHI2I9sAE4DmzJzN0R\nsRS4F2gCQ8C1mfl87Y9CkqRFqO2ReEScDvwZ8CLQA9wJbMrMt1SXr4yIc4AbgEuBtwG3R0QvsBHY\nX839FLB5Th6FJEmL0ExOp98BbAeerS5fmJl7q58fBNYCFwP9mTmSmYeBA8AqYDWwp5q7p5orSZJq\nMG3EI+LdwEBmfrYa6qn+N2YI6ANWAINTjB+eMCZJkmrQ7jXx9wCjEbEW+EngHlqvb49ZARyiFerG\nuPHGJONjY9MaHR0d7enpaTdNkqRTRcfRmzbimblm7OeI+DxwHXBHRKzJzIeBdcDngEeB2yJiCXAG\ncAGtN731A1cAj1Vz99JGT08PAwNDnT0aaRLNZsM1pVq5plSnZrPRftIUTvZPzEaB9wG3RsQXaD0J\n2JWZ3wa2AftoRX1TZg7Tei39xyNiH/Be4NaO91SSJL1KzwL8FrNRn+GqTh41qW6uKdWp2Wx0fDrd\nD3uRJKlQRlySpEIZcUmSCmXEJUkqlBGXJKlQRlySpEIZcUmSCmXEJUkqlBGXJKlQRlySpEIZcUmS\nCmXEJUkqlBGXJKlQRlySpEIZcUmSCmXEJUkqlBGXJKlQRlySpEIZcUmSCnXafO/ARLfesYNjx0Zq\nua/jx0e4+u2Xc95559Vyf5IkLSQLLuKP/2+ztvsaPjrI6meeMeKSpFOSp9MlSSqUEZckqVBGXJKk\nQhlxSZIKZcQlSSqUEZckqVBGXJKkQhlxSZIKZcQlSSqUEZckqVBtP3Y1Ir4PuBt4IzAKXAf0Ap8B\nvlpN+0Rm3hcR64ENwHFgS2bujoilwL1AExgCrs3M52t/JJIkLTIz+ez0XwJOZOZlEbEGuA34R2Br\nZt45NikizgFuAC4ClgKPRMRDwEZgf2Z+OCKuBjYDN9X8OCRJWnTaRjwzPx0Rn6kungccohXqiIgr\ngSdpRfkSoD8zR4CRiDgArAJWAx+tbr8H+ECtj0CSpEVqRt9ilpmvRMRO4JeBXwVeB9ydmV+OiE3A\nh4B/BwbH3WwI6ANWAIcnjHVNX98yms1GNzepBcg1oLq5prQQzPirSDPz3RFxNvAl4NLMfKa66gHg\n48BeYPyqbtA6aj88bnxsrGsGB48yMDDUzU1qgWk2G64B1co1pTrN5glh23enR8S7IuL3q4vHgBPA\n/RFxcTW2FngceBR4c0QsiYg+4ALgCaAfuKKau45W7CVJ0izN5Eh8F7AzIh4GTgduBJ4C7oqIEeBZ\nYENmHomIbcA+Wk8ONmXmcERsB+6JiH3AMHDNXDwQSZIWm5m8se0YcPUkV102ydwdwI5Jbn9Vpzso\nSZIm54e9SJJUKCMuSVKhjLgkSYUy4pIkFcqIS5JUKCMuSVKhjLgkSYUy4pIkFcqIS5JUKCMuSVKh\njLgkSYUy4pIkFcqIS5JUKCMuSVKhjLgkSYUy4pIkFcqIS5JUKCMuSVKhjLgkSYUy4pIkFcqIS5JU\nKCMuSVKhjLgkSYUy4pIkFcqIS5JUKCMuSVKhjLgkSYUy4pIkFcqIS5JUKCMuSVKhTms3ISK+D7gb\neCMwClwHDAM7gRPAE8D1mTkaEeuBDcBxYEtm7o6IpcC9QBMYAq7NzOfn4LFIkrSozORI/JeAE5l5\nGbAZ+ENgK7ApM98C9ABXRsQ5wA3ApcDbgNsjohfYCOyv5n6qug9JkjRLbSOemZ8Gfqu6eB7wAnBR\nZu6txh4E1gIXA/2ZOZKZh4EDwCpgNbCnmrunmitJkmZpRq+JZ+YrEbET+BjwV7SOvscMAX3ACmBw\nivHDE8YkSdIstX1NfExmvjsizgYeBc4Yd9UK4BCtUDfGjTcmGR8b65q+vmU0m432E3VKcw2obq4p\nLQQzeWPbu4AfyczbgWPAK8DjEbEmMx8G1gGfoxX32yJiCa3IX0DrTW/9wBXAY9Xcvd+7lbkzOHiU\ngYGhbm5SC0yz2XANqFauKdVpNk8IZ3IkvgvYGREPA6cDNwL/DdxdvXHtK8Cu6t3p24B9tE7Tb8rM\n4YjYDtwTEftovav9mo73VpIkfVfbiGfmMeDqSa566yRzdwA7Jrn9VR3unyRJmoIf9iJJUqGMuCRJ\nhTLikiQVyohLklQoIy5JUqGMuCRJhTLikiQVyohLklQoIy5JUqGMuCRJhTLikiQVyohLklQoIy5J\nUqGMuCRJhTLikiQVyohLklQoIy5JUqGMuCRJhTLikiQVyohLklQoIy5JUqGMuCRJhTLikiQVyohL\nklQoIy5JUqGMuCRJhTLikiQVyohLklQoIy5JUqGMuCRJhTptuisj4nTgk8C5wBJgC/A08Bngq9W0\nT2TmfRGxHtgAHAe2ZObuiFgK3As0gSHg2sx8fk4eiSRJi8y0EQd+HRjIzHdFxGuB/cCtwNbMvHNs\nUkScA9wAXAQsBR6JiIeAjcD+zPxwRFwNbAZumoPHIUnSotMu4vcBu6qfXwOM0Ap1RMSVwJO0onwJ\n0J+ZI8BIRBwAVgGrgY9Wt98DfKDe3ZckafGa9jXxzHwxM49ERINW0P8AeBR4f2auAb4OfAhoAIPj\nbjoE9AErgMMTxiRJUg3aHYkTESuB+4G7MvNvI6IvM8eC/QDwcWAvrZCPaQCHaAW8MWGsq/r6ltFs\nNtpP1CnNNaC6uaa0ELR7Y9vZwGeB387Mz1fDeyLidzPzMWAt8Dito/PbImIJcAZwAfAE0A9cATwG\nrKMV+64aHDzKwMBQtzerBaTZbLgGVCvXlOo0myeE7Y7EN9E6Bf7BiPhgNXYT8CcRMQI8C2yoTrlv\nA/bROkW/KTOHI2I7cE9E7AOGgWs63lNJkvQq00Y8M28EbpzkqssmmbsD2DFh7Bhw1Wx2UJIkTc4P\ne5EkqVBGXJKkQhlxSZIKZcQlSSqUEZckqVBGXJKkQhlxSZIKZcQlSSqUEZckqVBGXJKkQhlxSZIK\nZcQlSSqUEZckqVBGXJKkQhlxSZIKZcQlSSqUEZckqVBGXJKkQhlxSZIKZcQlSSqUEZckqVBGXJKk\nQhlxSZIKZcQlSSqUEZckqVBGXJKkQhlxSZIKZcQlSSqUEZckqVBGXJKkQhlxSZIKddp0V0bE6cAn\ngXOBJcAW4L+AncAJ4Ang+swcjYj1wAbgOLAlM3dHxFLgXqAJDAHXZubzc/RYJElaVNodif86MJCZ\nbwF+EbgL2ApsqsZ6gCsj4hzgBuBS4G3A7RHRC2wE9ldzPwVsnpuHIUnS4tMu4vcBHxw3dwS4MDP3\nVmMPAmuBi4H+zBzJzMPAAWAVsBrYU83dU82VJEk1mPZ0ema+CBARDVpB3wz88bgpQ0AfsAIYnGL8\n8ISxrurrW0az2ej2ZrXAuAZUN9eUFoJpIw4QESuB+4G7MvNvIuKPxl29AjhEK9TjV3RjkvGxsa4a\nHDzKwMBQtzerBaTZbLgGVCvXlOo0myeE055Oj4izgc8Ct2Tmzmr4yxGxpvp5HbAXeBR4c0QsiYg+\n4AJab3rrB66YMFeSJNWg3ZH4JlqnwD8YEWOvjd8IbKveuPYVYFf17vRtwD5aTww2ZeZwRGwH7omI\nfcAwcM2cPApJkhahdq+J30gr2hO9dZK5O4AdE8aOAVfNYv8kSdIU/LAXSZIKZcQlSSqUEZckqVBG\nXJKkQhlxSZIKZcQlSSqUEZckqVBGXJKkQhlxSZIKZcQlSSqUEZckqVBGXJKkQhlxSZIKZcQlSSqU\nEZckqVBGXJKkQhlxSZIKZcQlSSqUEZckqVBGXJKkQhlxSZIKZcQlSSqUEZckqVBGXJKkQhlxSZIK\nZcQlSSqUEZckqVBGXJKkQhlxSZIKZcQlSSrUaTOZFBFvAj6SmZdHxE8B/wg8WV39icy8LyLWAxuA\n48CWzNwdEUuBe4EmMARcm5nP1/4oJElahNpGPCJuAX4DOFINXQTcmZl3jptzDnBDdd1S4JGIeAjY\nCOzPzA9HxNXAZuCmeh+CJEmL00yOxA8A7wT+srp8EfDGiLiS1tH4TcAlQH9mjgAjEXEAWAWsBj5a\n3W4P8IEa912SpEWt7WvimXk/rVPkY74EvD8z1wBfBz4ENIDBcXOGgD5gBXB4wpgkSarBjF4Tn+CB\nzBwL9gPAx4G9tEI+pgEcohXwxoSxrurrW0az2Wg/Uac014Dq5prSQtBJxPdExO9m5mPAWuBx4FHg\ntohYApwBXAA8AfQDVwCPAetoxb6rBgePMjAw1O3NagFpNhuuAdXKNaU6zeYJ4clEfLT673XAXREx\nAjwLbMjMIxGxDdhH6xT9pswcjojtwD0RsQ8YBq7peE8lSdKr9IyOjraf1UVvf9+na9uh4aODbPzF\ns7ns0kvruksVyKMm1c01pTo1m42eTm/rh71IklQoIy5JUqGMuCRJhTLikiQVyohLklQoIy5JUqGM\nuCRJhTLikiQVyohLklQoIy5JUqGMuCRJhTLikiQVyohLklQoIy5JUqGMuCRJhTLikiQVyohLklQo\nIy5JUqGMuCRJhTLikiQVyohLklQoIy5JUqGMuCRJhTLikiQVyohLklQoIy5JUqGMuCRJhTLikiQV\nyohLklSo0+Z7B+bSiVeO88z/PM3XvvbkfO/KSVm58lx6e3vnezckSQvcjCIeEW8CPpKZl0fEjwI7\ngRPAE8D1mTkaEeuBDcBxYEtm7o6IpcC9QBMYAq7NzOfn4HFM6tjQ83zqc0fZ9fhwtzY5a0cHn+Nj\nN7+D889/w3zviiRpgWsb8Yi4BfgN4Eg1dCewKTP3RsR24MqI+CJwA3ARsBR4JCIeAjYC+zPzwxFx\nNbAZuGkOHseUlvWdxfLXvq6bm5QkqStm8pr4AeCdQE91+cLM3Fv9/CCwFrgY6M/Mkcw8XN1mFbAa\n2FPN3VPNlSRJNWgb8cy8n9Yp8jE9434eAvqAFcDgFOOHJ4xJkqQadPLGthPjfl4BHKIV6sa48cYk\n42NjauPMM5fTbDbaT9SM+e+purmmtBB0EvEvR8SazHwYWAd8DngUuC0ilgBnABfQetNbP3AF8Fg1\nd+/kd6nxDh48wsDA0Hzvximj2Wz476lauaZUp9k8ITyZvxMfrf77PuDWiPgCrScBuzLz28A2YB+t\nqG/KzGFgO/DjEbEPeC9wa8d7KkmSXmVGR+KZ+Q3g0urnJ4G3TjJnB7Bjwtgx4KrZ7qQkSfpefmKb\nJEmFMuKSJBXKiEuSVCgjLklSoYy4JEmFMuKSJBXKiEuSVCgjLklSoYy4JEmFMuKSJBXKiEuSVCgj\nLklSoYy4JEmFMuKSJBXKiEuSVCgjLklSoYy4JEmFMuKSJBXKiEuSVCgjLklSoYy4JEmFMuKSJBXK\niEuSVCgjLklSoYy4JEmFMuKSJBXKiEuSVCgjLklSoYy4JEmFMuKSJBXKiEuSVKjTOr1hRPwbMFhd\n/DpwO7ATOAE8AVyfmaMRsR7YABwHtmTm7lntsSRJAjqMeEScAZCZl48b+wdgU2bujYjtwJUR8UXg\nBuAiYCnwSEQ8lJkvz37XJUla3Do9Ev8JYFlE/FN1H38AXJiZe6vrHwR+AXgF6M/MEWAkIg4Aq4DH\nZ7fbkiSp04i/CNyRmX8eEW8A9ky4fgjoA1bw/6fcx49rGmeeuZxmszHfu3FK8d9TdXNNaSHoNOJf\nBQ4AZOaTEfEd4KfGXb8COAQcBsav9AbwQofbXDQOHjzCwMDQfO/GKaPZbPjvqVq5plSn2Twh7PTd\n6e8BtgJExA/TivNnI2JNdf06YC/wKPDmiFgSEX3ABbTe9CZJkmap0yPxPwf+IiLGXgN/D/Ad4O6I\n6AW+Auyq3p2+DdhH6wnDJt/UNr0Trxznqae+2ZVtrVx5Lr29vV3ZliSpfj2jo6PzvQ+v8vb3fbq2\nHTr4TNK7dDnLX/u6uu5yzj33jX8DeljWd9acbufo4HN87OZ3cP75b5jT7SwEnvpU3VxTqlOz2ejp\n9LYd/5245s6yvrOKeuIhSZoffmKbJEmFMuKSJBXKiEuSVCgjLklSoYy4JEmFMuKSJBXKiEuSVCgj\nLklSoYy4JEmFMuKSJBXKiEuSVCgjLklSoYy4JEmFMuKSJBXKryJdpE68cpynnvpmbfe3cuW59Pb2\n1nZ/kqT2jPgi9dKR77D17w6yrO/ZWd/X0cHn+NjN7+D8899Qw55JkmbKiC9iy/rOYvlrXzffuyFJ\n6pCviUuSVCgjLklSoYy4JEmFMuKSJBXKiEuSVCjfna5Zm83fnPv35ZLUOSOuWev0b879+3JJmh0j\nrlp08jfnnRzBe+QuSf/PiGvenOwRvEfukvRqRlzzyk+Nk6TOGXEV42ROv3vaXdJiYMRVjJmefj/y\nwrPc/GsX8vrXnwvACy8s5+DBI6+aY+QlnQrmPOIR8RrgE8AqYBh4b2Z+ba63q1PTTE6/Hx38Nlv/\nbv+UsZ8Y+YlGRkYAOP300ye93icAkhaKbhyJ/zLQm5mXRsSbgK3VmDRnpot9u8h/5+n/YmnjB1nW\nd9b3XDfVE4Dpwm/0Jc2VbkR8NbAHIDO/FBE/3YVtStNqF/mprp/qCcBU4Z8s+pMFf+LYbC5Pdv9j\nTyRefvllvvWtb045Pt39rFzZegxjt/fJiTT/uhHxFcDhcZdfiYjXZOaJySZ//0vJ8eOTXnXSlrz0\nNC++/EO13Fe3HBs6CPQUtZ1O7+tkbzfT+e3mzeb6Y0MHWdr4wbb7MGb4xUNsufshzlh+5nfHBr/9\ndZZ8/w9MOzabyxOve+nIQTav/3le//pzeeqpb353fyYbH37x0KT3MzYXYMvdDwF897aL0WTvs5gN\n/2xSneoZHR2d0w1ExFbgi5l5X3X5W5m5ck43KknSItCNL0DpB64AiIifAf6jC9uUJOmU143T6Q8A\nPx8R/dXl93Rhm5IknfLm/HS6JEmaG36fuCRJhTLikiQVyohLklQoIy5JUqEW/BegRMRFwO/Q+vSN\nWzLzuXneJRUuIs4GPpOZF8/3vqh8EfETwMeBrwH3ZOY/z+8eqXQR8WPAjUAv8MeZ+Z9TzS3hSHwJ\ncBOwG/jZed4XFS4ieoCbgW/M867o1HEJ8CxwHJjyl610Et4LPA28RJvfVQs+4pn5BeDHgPcD/z7P\nu6PyXQfcS+v/HFIdHqH1S/ePaP2ekmbrfFpnd3YBvzndxHk9nV59q9lHMvPyqb6yNCIuBh4H1gEf\nonWKQfoeM1lPwNpq7JKI+JXM/Pv522MtdDNcUz9J60j8EAW8RKn5NcM19RxwFHiBNgfb83YkHhG3\nAHfTOl0O476yFPg9Wl9ZCrAc+CRwB/BX3d5PlWGm6ykzfyUzNwJfMuCazkn8jvoGraOmjwLburyb\nKshJrKk/rebdBPz1dPc5n88aDwDvBP6yunwZk3xlaWZ+Hvj8vOyhSjKj9TQmM6c9RSUx899R/wL8\ny7zsoUoz0zX1r8C1M7nDeTsSz8z7ab0RZEyDSb6ytLt7pVK5nlQ315TqNhdraiEtwMO0HtCYKb9z\nXJoB15Pq5ppS3Wa9phZSxP3KUtXJ9aS6uaZUt1mvqYXwTsqxr1HzK0tVB9eT6uaaUt1qW1N+Fakk\nSYVaSKfTJUnSSTDikiQVyohLklQoIy5JUqGMuCRJhTLikiQVyohLklQoIy5JUqGMuCRJhfo/296B\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": "iVBORw0KGgoAAAANSUhEUgAAAfAAAAFkCAYAAADfW2mzAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzsvVlsZNt6HvbtmlgssqrIItnd7D493HPOvXV1JCuycgM/\nOJAj20geBPvRiB8EWFAcGfCT/WQZ0LsBAQb8EBiGfY04gC0/BAhiSIntxJDhUQYsS1B0hzrnnnN0\nhh45j0WyWLXz8POr/1+r9lQki032XR/Q6Nrcwxr22uuf/z+K4xgBAQEBAQEBdwult92BgICAgICA\ngOkRCHhAQEBAQMAdRCDgAQEBAQEBdxCBgAcEBAQEBNxBBAIeEBAQEBBwBxEIeEBAQEBAwB1EZdYN\ndLvd/wJg7+Lws16v98vm3F8D8MsANi7+9Cu9Xu/jWfcpICAgICDgrmOmBLzb7dYBoNfr/XzKJT8L\n4Bd7vd7vzbIfAQEBAQEB7xqiWSZy6Xa7fwLAPwLwBYRZ+Ju9Xu8/mfPfB/A9AA8A/Fav1/tbM+tM\nQEBAQEDAO4RZ28CPAPx6r9f7HwD8FQD/uNvt2jZ/A8CvAPjTAP7bbrf7CzPuT0BAQEBAwDuBWdvA\nPwbwIwDo9XqfdLvdLQDrAJ5fnP87vV5vHwC63e5vAfjjAH4r7WFxHMdRFM22xwEBAQEBAbcHqURv\n1gT8lwD8NIC/2u12HwJoAXgFAN1utw3gD7rd7kcAjiFS+HezHhZFETY2Dmbb43cca2vNMIdXRJjD\nqyPM4dUR5vDquAtzuLbWTD03axX6dwG0ut3uvwHwTyEE/S90u92/3Ov19gD8DQC/DeDfAPjDXq/3\nz2fcn4CAgICAgHcCM5XAe73eOYBf9P78O+b8b0Ds4AEBAQEBAQFTICRyCQgICAgIuIMIBDwgICAg\nIOAOIhDwgICAgICAO4hAwAMCAgICAu4gAgEPCAgICAi4gwgEPCAgICAg4A4iEPCAgICAgIA7iEDA\nAwICAgIC7iACAQ8ICAgICLiDCAQ8ICAgICDgDiIQ8ICAgICAgDuIQMADAgICAgLuIAIBDwgICAgI\nuIMIBDwgICAgIOAOIhDwgICAgICAO4hAwAMCAgICAu4gAgEPCAgICAi4gwgEPCAgICAg4A4iEPCA\ngICAgIA7iEDAAwICAgIC7iACAQ8ICAgICLiDCAQ8ICAgICDgDiIQ8ICAgICAgDuIQMADAgICAgLu\nIAIBDwgICAgIuIMIBDwgICAgIOAOIhDwgICAgICAO4hAwAMCAgICAu4gAgEPCAgICAi4gwgEPCAg\nICAg4A4iEPCAgICAgIA7iMqsG+h2u/8FwN7F4We9Xu+Xzbk/B+DXAJwD+Ie9Xu8fzLo/AQEBAQEB\n7wJmSsC73W4dAHq93s8nnKsC+NsAvgPgGMC/73a7/6zX672ZZZ8CAgICAgLeBcxahf5fAWh0u91/\n0e12/1W32/0T5txPAPhRr9fb6/V6AwD/DsDPzbg/AQEBAQEB7wRmrUI/AvDrvV7vu91u95sA/u9u\nt/utXq83AtCCqtYB4ABAO++Ba2vN2fT0xwhhDq+OMIdXR5jDqyPM4dVxl+dw1gT8YwA/AoBer/dJ\nt9vdArAO4DmEeNuZawLYyXvgxsbBDLr544O1tWaYwysizOHVEebw6ghzeHXchTnMYjBmTcB/CcBP\nA/ir3W73IUTqfnVx7ocAvtntdpchkvrPAfj1GfcnICAgICDgncCsbeDfBdDqdrv/BsA/hRD0v9Dt\ndv/yhd37rwP4FwD+A4Dv9nq9lzPuT0BAQEBAwJ3AcAhEEcpp52cqgfd6vXMAv+j9+XfM+d8E8Juz\n7ENAQEBAQMBdw9ERcHISAcAygM2ka0Iil4CAgICAgFuE4XBMvDMRCHhAQEBAQMAdRCDgAQEBAQEB\ntwjlMlCvx7nXzTyVakBAQEBAQMB0WFgYE/HU8OoggQcEBAQEBNxClMtAHGOYdj4Q8ICAgICAgDuI\nQMADAgICAgLuIAIBDwgICAgIuIMIBDwgICAgIOAaMBzKv5tC8EIPCAgImBLcpMupSS4DftxgMqeh\nXo+xsDD7NgMBDwgICJgCb2OjDrjd8DOnnZxEqNfjmTN4QYUeEBAQUBBJG/VNqkzfZUyrfr5pdfV1\nwO/zVccQJPCAgICAgLeKabUat00Lwsxptk++9O33Gbj6GAIBDwgICCiIIht1wHSYVv1c9Pqb9lMw\nmdMS+2L7fHQUOdddVuUeCHhAQEDAFMjaqANuB96WhD7teshjMlgPPC0bW7CBBwS8Y7iLtsG7hnJ5\nus36x/Gd5I357Ez++YU78iTRvOvfpp9C2pj9Pi8sxIiiGPv7wP4+MBolq9x3d8f1wBMRJPCAgHcI\nt802GPDj+U7yxryxAeztyfl2O8ba2qRWI0s6vY1akLwx2z4Dcm2rJb9LpQjDoVt9rEg98EDAAwLe\nEbytUJaAdPw4vpO8MZ+dKfEG5He7HaNW02cUYXrS5vBt+Clc9j3b80dHwGAgz6hW80uJAu8QAX8X\nEyu8i2MKCLgLCN/ezcOqnq/K9MxKQp92XdjrfabEMhm1WoyzMx3zYBChVovR70dAhqn7nSDg76KK\n6l0cU8BsETykrwfX+e39OL6TvDHXaqI2tyr0wQA4OFBidl39uE5krYukMZ+cqLf5/LxLoE9OIiwt\nxY5K/exs+j7deQL+Lqqo3sUxBdwMbqNt8C7gOqU/H+/qO7mKjXptTQg3z184awEAzs4iVKvxWJ08\nq71vGsfCInuyb+N+8SLC6an8Pj6O0GhMzoU9rtfjMcGv14XgX5wfpfXrzhPwgIAAF+8SkbgJWMmq\nqO1xWrxr7+QqNmqCNu8kIirPK+7UVgRJ6uxKRX6naVmm9V63dv7TU/f+Wi3GcDgdU3Jx/7urQn8X\nVVTv4pgCAm4jfMmKtkeqO/ntBZv47LQUl8liNq1Zw97P90sJPK3/WTbrIqFuoxGwuyvHy8tAswn4\nTAnBfvDvg0GE8/OYmokOgDdJ7dx5Ag68myqqd3FMAQF3AY0G0Gjotxf8UWavpVhY0Odab3Tg6iZF\n//5+P8LxMXB+DlQqwPExsLSU36a1WV+FWcnrq+3nSJTn764ETryLRO5dHFNAgI8i2aiyzl8FedJf\nGvGw98+6j28bRbUUV0ERJolOXj6BT4Ov/r6OZC5F07UOh0CppIxBqSR/y7p/NIqxv69Ob/v7Efp9\nAEArrT/vDAEPCAi4e8jbuJPOXzfBn1bbZeN1r6soxV2Dr6W4CvIk7HIZODyMsbEh16ytxVhZSX4O\nr/fXjSWOi4sxmk1RoS8tAXGCQuGyan3bh7k5jJ3Y5uYwYYo5OoLjtFYqRVhclPNxHOHoSLQDCAQ8\nICDgtiFv4046Pxq5kl8Rgl8ERZOC+PG611WU4jbjbfnkkNgNh8IwiQ1Zfp+dpSd+SXtHJI7Vqni5\n5zmUTVOcRNK1up7znY56lS8sSFiZ7ePubkQCjbk5+bseA/PzY+biMG2OAgEPCJghbqNq1e/Tbexj\nEoZDsQumEctZhV/64UGXide965ilT05aDDWPy+XsdpNs3P71/T5wciK/Gw2g3S7etyIQhzh3bfpx\n3ru7mpP96CjC1pbY4dm/wQDY2ZHj1VXpJwl6GgIBDxjjrmzkFre5z7fR+WkWNYkvizzJLuk8JZws\nzGJN+PG67NPCwuQc3sa1eB247nFZm7bPJNm48OEwwuJijMNDTfxSq6XbtMtlTMSR7+5GODiQ86OR\nSrzAdIyeXVs2bpuJWnw7vWUuj49VpR5F7vPiGDg4AJ3WcHAgDnYXBD61Z4GABwC4ncQmD7e5z7cx\nGc+sahJfBXmSnX/+6Cib4FtbZ7s9m7Ek9fm2RYzcZsYWSC5m4muELNbWgE5HvdTzQrzEHh2Pn1cq\niUQLyO+DAyGaaV7oSUhifolSKdlOn8Vk1OtK0Gs1kcCPjuQ4juXcBdOxntanmRPwbrd7D8DvAvgz\nvV7vY/P3vwbglwFsXPzpV+z5gJvDbSQ2ebiLfQ5IRt47S8t2lez5O1nhaVbe61l4mwT0NjO2QH4x\nkzTNTJapJCnEy879aKTq6MVFOUf1dRHkMb8HBxFOTuDY6Xd31c5eq8VoNMS2bUGJe27O9a4vl6W/\nJQkgezuZ2LrdbhXA3wNwlHD6ZwH8Yq/X+71Z9iHg+nCVRP4/briNyXj8Pt1V9e80BD8N17k2b5NZ\n4joZ2+v+fqcJ48qKC09DVj+NQxjqdTkGJr3Q88ZMFXmW0yOf0+9H474zPSygsfSnp5HznE5HVesL\nC/KsC7t9P21cs5bAfx3A3wXwqwnn/msAf7Pb7T4A8Fu9Xu9vzbgvASmYRSakWUsBlyWQN8lUJEmL\nb5upKaL+nXUf/RzU19Ve0TVxnWvzNpolrgOXmaOs9+g/zy9mYm3aeclzLvPtW+nX2sj5rCJt+iry\n1VV9382mPGN7W8dUrbr+GjY9LADs7bnaAiH6cry8LM+48AVopI1rZgS82+3+JQAbvV7vX3a73V8F\nWQ/FbwD4XwAcAPg/ut3uL/R6vd+aVX8CsjFtyETWR8Pr+UHOahO7TPzuTUtGtl+3RbXpz9VN9tHP\nQQ3kx3lPQ+Dz1sS7bnq5Ds1P0eQ1FlnrJmk/6HTicTET36bth4HlFQ4popGxDmfs39lZjFZLJPAi\nNcz9ULbBIHYY0UZD1fJMm8oKayTwdk4sUzEcCkE/vAgY29gAHj6M8MEHAIAfpo1tlhL4LwGIu93u\nnwXwMwD+Ubfb/fO9Xo85Xf9Or9fbB4But/tbAP44gFwCvrbWnFV/f2ww7RwOh+LsYbG8nB3WcXqq\nYRv1OhwnlbeB4VDUU4wFBbLHkIeic2g/8Otsfxa47BwVJbD+8+fnZQ5te7Waqimp5qRUMj+fXnSi\nKKZdy0RWFrBm0+0jcL19zkLSOlxbK/ZOsrKI+XPkvxefQGetG+4HZNjm5zHhtBZFOneAqpCTnncZ\nNBr6fPYzioD9faDRaKJeT14XdoyHh+4xoPeMRtJnrg86pdHu3mjImC2aTfeZn36qfSyXxf598fzU\noLeZEfBer/en+Lvb7f42xEntzcVxG8AfdLvdjwAcA/jTAL5b5LkbGwcz6O2PD9bWmpeaQ5/DTspe\nRAyHwNZW5GQhmpvLlwRmqbodDt3QFAA4P7+c5FV0DrOkiqu0PyukzRFxWXW0tRvy+auri9jcPHSe\nW0TyXlq6/rSdWWsZSPaY9sG+csPmmOM4P5b3srjstwzkZxHzc5/74Xv2PeStGwD4+usI+/vyu9Vy\n94Ph0C29OTfHGuHZ72gaxtHGYG9u6n2rq4v46qtDLC25sef1eozDQ1WRLyzEF1Kyho29eqV9rlTg\naJUWF12GYG8PGAzc7HJHR1oDvVqN8eWXEZ4/l/MPHsgaevMGABa/CeDfJY3tJsPIom63+xcBLPZ6\nvb/f7Xb/BoDfBnAK4P/t9Xr//Ab7EjAlplVXNxrqkGE56zTcVpv5ZeGr5G6qxvFV4Ksa/exRaapR\nIknV6RO/RiPdiY6xtLPGNGs5z2OauI2mkjQUySI2GZed/BygWCKWUkk9tPPyggNwwsCStB42DenC\nQv4c2xjsSkVDyiyS6nmT+To9jfDwoar9AWBrS/tcKskcsY3zc9E8kvGo1aQP1ivdxqaXyxHiWMd6\nfi7/LpjFV2njuhEC3uv1fp4/zd9+A2IHvxN4285HtwFFx57k8JGUu5i4Kc/Zt13hLanG8W0GU1gS\n076XNOJXr8dYXrZewclx3rP0kp+lg95ds7EnZRHz+5xFoJMJvsu8Vir6bfp5wZPg55u3GgJAnMVI\nLE9P8230FmQ4kphpa/Pe3XU1KvfvuzXM63U1lVQqQLU6DvtCuSx/GwzkuFqVeeDzj44ifP31OM4b\nc3NqSgDk/2p1POZ3vxrZLHHbOeq3hTSVZ5HcxbNAkcIXN7WRFpX4bxNjSOJjN3IgO2TmMlqNctl9\npu+c5IcPTct0Xeec1mqiOaB3cacz+3U8a/jvjZqPoswv4BLopJS2Se0dH7sMANXHZNTs/f46tBqC\ncjkeE29AE55Qe5MkkTcaqtJm5jfAZSR99PtqoyZh5fH8vPxjP5pNkZh5fnkZWF+f9J0gQR8Oxf7O\n1KnNpjvvi4sipf/whxEAvJfcw0DAczErjvo2bdyXQVbsa17uYh+z8pxNUgsWeQ77lHQ8DfIk/tvO\nGJbLru0+6b1kjZHEzw8XykLSnEwz90XndJr3bL2LqXpNu/62MG55z/ff28ZGjJ0dZVKS7ksj0EnX\n+V7fJN6ASJ+bmzA28QgrK0pgk1TrVkNAiZ7vpFIRhoLHSRL5aKT9qVTiXA2A9NuNHf/hD8WWDwBP\nn8aoVlWCrlQkjrtel+NmE4hjXQdzczGOjzHWSrZakhp2a0uuH43kXo4xioCXL8cq/NSdIRDwt4Db\nvnHnIS/2lbmLuXEXkVquW71dRC3oYxYJObI89W+bqjXJBm5tkVmSeBrW1uCEC2Wh6JxkeU8XuX+a\n98xnsu8nJ/kV0Yowbnn226sQ+KL7iy/xEmR+r0vzMhq59mFx3lLiOBhIic/TU+srke4bUS4DKysu\ng7C5qXnIAXk+72804okMffv7wtzT8YxzZOd9eVnDvOIY+M//ORr7AmxuRnj8WCXqKJKkMDbWHIiM\nTVsytZEBZFidvf7NG3WwOzsTDcDFnK2mzW0g4Dm4buen27hxF8W0mZT4gSY5jCThKnOQphYsCj9W\n9boScqRJejeJq0p7RQloGq5T5XxV5veqiVeYYSvv+iwHrTz77VWSqLBP9nfeumWYF685PU12MrNI\nMnX4feD9/X4Em7yHdmJrcrO1sEsl6bPvG2GZHvucUknm7PVrOV5dFbMd1dPLyyLh228wibn37fqd\nTjwuetLvi9c5vcz39oRgMxXq/Lx43tMs0OnEeP1avcrX1sSmTZt6rSb37u1hPEbAdfTb3QUl9Edp\n7+FOEfC3sfkBb9/56TYgq3iA72xUrQrxtFJLkpPJdaqrpR+TDlH2o7dqsySCaj1Vq9Vi3vNZyJP0\nbsIrfhpikGR79Ps1S+1RHrOcx/xeN7Ntn2mlvSIV0SzsnJVK2fZbn/HM0kIos+mGK06LclkkQRvG\nlTdvvhaBfbV9sN/a3JwSr1ZL/kZps9kUSZYOYXNzQhzT+jAaAX69775JNnp0BLx6pXkojo6Ae/c0\nL3kSc8+1pVK8m1/98FCIKsewuirEdeOiksfTp8IoUCV+fh6h19Pzh4fiBLe9LcfLy6qJAETIsQS9\n05HjC4YhNenEnSLgOzuuuuMmcV2b6yw2mVkjaeNMKh6QFXbie5XyOWnHl33Hl1WRU5ogSqV0T9Ui\nKCLpJc3hddpGr1vbc5kMXdPiqsxy3v3+9zetp7s44E0yhmnwNTvDYYRqVVWvlYp455PY9PuRwzhm\n+U5UKmJHtgzFNOGKdq11OpNj8pPT2PusFuH4OHK0bGdnkqXM+j6Uyy7B7HT0uWmMss0fYNddvy+2\nYdq8RyNRYbPG9+mpEEJbrMTXACTtwVtbcGLVLRNRqwmRJlZXyXjJ8eYm8Id/qMcvXohKnHN0diZj\n7nTk+Pxc/saxj0YiNNAPgL8vrmfBrwncKQIO3F6V8zQbb9FE/dft6GIX8XWgqI3MT2LiEzMeE9fx\njn1pMq1NS1Al4YyO4SbCvnzplqUwW61kL/pZICuet4gkNq2jYB7y1lUe8Uz6W1rtaV5bKslxErHy\nmZYkKTfrPR0fuxm5Op0Y/b4yjl9/HTkbfaWi5/2SqEn98ceeF0MNJNvh7Zx88QXw/Lmcf/QodogX\nVe6cU+4rJJjyDak0e3QkBFe/NZFA00xrlM6pjl5cjDEYuNoxzhUgz2m3VXpdWhLmg0LEwoI4uVHl\nfn4uMd2lUjw29Z2dqcTOPtq9slwWNThV6EtLorJnn+h9TrNhpSLP5HtfXpZr/+iP5PjxYxnj55/L\n8dOnkryFjB37fdGe+auLO0fAbwvSshYV2cSKXH/dqko/B/U0zyuysSf110pn1sEkCZajpgrtJlEu\n53tcT/u8aSS94VA2TEoABwcRHjyY3os+qw9sM2/tpjGXPgFNU/fa6zk2ezwtrnp/Vu3ptPMWk0lA\n0kOckt5Tv6+q0igCHj4UxyqOza+GVSpF42fklUQtl+FIu52O2HKznOQoQdskJfa99fvAxx+rw9bR\nUYR792InzefRkarAl5eF8aHNudWS8fL5c3OY0CrU67p2/G+jVBJbMveMvb3IyWoWx9JHqqsrFWB5\nOcZopHNwfKzfUqOh+c5lvKJiPzyMxoS33Z4MNTs+VlV9tRpjd1eZhLk5eSaP5+dlXJaJWFpyj3/3\nd4Hvf1+Ov/lNOcc5q9dlj3z5EhdzIH25ULm/O05styGeNivNYBEnmDy15k2pPqd53lWLnWQRs/l5\n8UCdpj5vHvIIaBJBLeJxPQ2KVP6yUgw3HEA+7EZD1amXXQOTfgGurdInwHke1nmwmx7bvYrHdVJ/\nfRs9kSZ5Z2VSK5ppLQ150Q5CkFXaZBYy+/zlZSXwCwtCYPgtnJ+7zGySdssP0To6wkRIlb+/7Ozo\n2js9lbhj7mPDYYyXL1Xa7PdddS8TjliivLWlKndmEbPtVSrKBNXrOg+EZRwB4JNPXPvws2fuOvn8\nc5WwBwMJRVu9IHOjkWjT7t2TY9rY+TxhMMRuPhrJuKV6WIw3b2QOHjwQJoJMyHAo9m3O4/a2zAHf\na6Mh/zinrZZI269esU+i1aCU/73vyTzQaU20b64kv7Q01jakij93ioCnBd3fZFhWmgrrtqn0Z4Gr\njDGLmAGy8N0QjKujCAH1j6/7PfrPS5P8Go3YKRhRxJFo2j74a5dqWnuefwOSiZE1S/j2VjovWk9+\nq1mxkl6SA5YyUdp3az+2fWO/fYah6Lfvm5Ly4sDt2qzVVMWdlwSlXJbNm4SgUnGvIUG2SU7OziaZ\nWft8rmuqZa1THNthG1ke5XzmaCQSOfdWMiRU59ZqcDQ3tu98ztkZjIpaGAKb5MSOm+0pkyKMI+e0\nVosdiVm8zMelNbGwINK2Df06O1Ot4mgkhJIMRa0m7ZOAl0rCwPT7qip//32Mw9hkHqV/No+9zbTm\nmgsErZYmfAFEmubxmzfyvfO+Wk1U8tbP4PVrZZriWP5dXG9acXGnCHjaIrxK7Oh19Gka1WsRdfRl\nbJFJmNa2mecVftXkFVnE7Loc+/Lec1YfrgNF54ySH88fH0dYWZHkDoCoAW0sbFFnpKRj6wzkn/cd\nnvb23KISS0vZxM6vcfzihW7cUSQbkCUm+/siIVkHLD7P1wBUq/GE/bha1TlaXIwBqAMYMCmRJ2VS\nE2lMx1ytxtjaUsnLSse+2YDPZ/hQqSRJQvwkKHbOJMRIf/tzaWOUo0ikR1tHIIlJKZf1H+OsAYyf\nY6VN32wiY3LTgPoSs+0zE9lwjiSCQtugpEh1sVTxUoK7tCThWFRPD4cuYRwOZR3onEZjosv+nZ1F\nYJIUQOaI/W+3xWfEztFgYPOMyzplmJqUBtX2aQPf39e1ur8vfaSKe3VV7NRffCHHjx/LO+JzyLDQ\n65xe5JSom03ppz3/wQeSHIbP6/fdtX5+zmImSCifczE3aSduIy7rgHUdEnoWMZxW9VrE07aoo1sa\n0mzSRbUYwHRe4tfhPXyV8QLFEnTM0tQybSIY2Zjld60GPHmiSU+42eTNaVY4j0h2rn0XiMeOcu22\n1EM+O9M2uAm7fdTnjUbu/UmSGY+pRSAhEO9rV91s7ctzc5P2ZakIJcejEbCyosQOiPDFF2qLZa5q\nn9g1Gq761o/3j2Mbf5ttcx4O4TA5vhPZyYkkCfHXQdZ68+dgMHAZjnZ7OvPX/LxKikkMQL0uf7dZ\nxo6P1YRTr8s70zBQySBGAjs3J++FBHJxUWKgX7/WNlZWIjx4IOdrtQhRpOui0RAVNG3YS0sw71Su\n29jQuO7hUNogcWs2gfv3JXkLIL8l17heb7US5+dwnOAaDfFD6Pc1ltuPyyaDYkugrqyoN329Lu+F\nYWH1uqzDC4I77g/XZqMBfPSROrE9e+ZqLWiWsExVpTJ+B++GE1tSGFme9Hcd9t8sB63Lql7zrr8K\n05EX7pN3fRGP7TTNwWVx2RSYeWMgKN1RTVekglFWe/55tpHVvp0zSkHcdOp1Wd+UDJOcrZLaTgrn\nUSkicqSK7W0hfn5GKuuLYNXFgJu0hGOy9x8cqOTje2eXyyJ9+epmd15UShmNXM/k0QhOFSv+jV7I\nQlh0Y3/9GlhdVUnt5ERU/HaOzs+lfeuUZomVr3JOimaw0qPvnEliSeJ4fCzEK+/b4DoaDJLqCKQz\ntUk2dmGE9BrfLFKtTr5nf0zlsjBExOvXGM/r3p5bx3pjQ9rgmFlKmHPcbgsjQom8VosdzctgIO/A\nEi9A62fLO3DH3GxGDtN1dKRakcFA+sLncE74jGZTJPaXL0UrMD8vDno2Fr7Z1PA0jjmOo3GN8N1d\ncfJjmwcHwJdfwjj+yTt4/FiOqaWgP0O1KtoqzsFXX8m9PD44YBZDmWKk4E4RcCCZeFyH9JaG63Yo\ne1ttMtwnywv9qiFml5Vui4532trT/b4bbwtM5kvO6mtSqE1aAg0/jhzI96xfWXGJ0+6uEooizlSU\nNDTG2N2U7XUWljgdHLhZwURK1zHZjTbpfkvgmXHLzqk490wm1xkO5fmVitoyq1XZ3JlwY2FB2rdq\nxYUFNwSrUtEMXuyTXYe+NHZ6KmuCklW7LYTJSmd55qXRCCbLlxAGmwXMvtPhkPWvdYzApFmDhMCf\nY8DNR2ATEnGurUf46iqwvu6qr/f23DlcWpJnUiXeasWoVqPx+hwOZVyULpeWXJV6FKk5BJCx2bjr\nwcCtgy4e1dH4W9zdFYJL4jgYUPOAizHKPm6/3VXjh81vomRqdNkY7sVFIX5cF75vjdiXJR5f7NpS\nbMl6hdNznn3gb64bMmWM6x4O5ZwdMz3JeUzNB6Bx3nzvPpPCBD8XEv0zpODOEfAkZG3s12VPvkvw\nx5zkbexLg75q1NpfiyS7KFIJLA9Z1+cR+XLZLWHa6cimZO/37bF+nKftAzCZ8pLhQtZ+q7a0yJln\netZb4mGMqWGbAAAgAElEQVTBd0RiWSrFE1J7HkhMqIpcXZXn2PdYr8Mp69pquV7dr15puM7pqUhd\ntjrUxkb6urCEhbCSX552iv3npthqkfhp+ycnroOX3bTrdRmzJV61mtvfWs3NAlapyG9unGdnQLOp\nebj9te1/G4uL8o5JLKpVOGr+uTmq6XVMUaR2e7HHq1ljcTFGv6/EZ3lZrrHXW2IGTCZyKZVg0pCK\nmvbFCzl+/Fj6SMmQRPOrr1Sd++SJzLtlYgCd9/V1+ZaoHl5elueTwK+tuSFQ9+/LNZzj42Npn1J7\nqyVE2qYV3dnR5z14IGuVcejr6yIh27j0chljM0OzKR7jJL5RJNdYX4nf/d0IX34p5x8+lPe0uSnj\nXlwEvvMdCfHiGA8PgW9/W1Xqq6tyjs949kzGwHlmEhmaFdptaYc2czqscQ7E7KBzxrzqvJ+ZIC/e\nV6r69M4R8MuoyK9in30bDMB1tDlNHLbvSJOUi5j9sMf2fv8dTBOOlMRATDtecUxxVY9UixG+RCzJ\nKJJt1n7JwuNjkSJsetjtbXdT+uADlTaByWx0PnzN0fn5dJW7ANkUSDzqdWBpSd9jHMscPLrIpFyr\nue81TeNimZm8dTFN/W6rjhbiLPNJom/jjG37VFvGsUhuPD8YRHj//RirqypJnp25/QXiCS/vzU2V\nSOMYuHdP2/Bt4OwDCeRwqIQCEMIzGKjUfX6OsWQHyDqzc3h+HjnhgtvbbhrQkxMhDp2OzvHu7mSO\nfjuftZprr/78c1Vnf/JJhPv3VVpllrJPP1XG7fPPI3znOxpHvbgoTnmck7OzyCE+dArjuiqV5N3R\n5t1syprk80sll8mJIrmW77tWEybUquV/6qf0W67XNUUpIGaJOFaGo1yWb9F64P+xP6b+JMOhaEh4\n/uuvtdZ2HEu729vSX5oJjo+FmHLeDg5YdEX7QSlZ5kwYFs47w//Yx6UlCX0jI7azI+1SQj8+dj3Y\n41iOL97BJlJwpwh4Vu3WPCQRnaS/J2GWKvpZtumr4ab1Es87n0YAfNVqkdh4n1D4jkRFmRr2qVaj\n05XLRFhvYj/kyY6RJQstxzxJjNxYWhvfW2R9+VoLUfslZwRLAr1pOW9iP9VNqIhH/vJy+hiLoEio\nXhbspkX46mUfdlxWRW/vtddaJmA4jBymju+L0mKSJsZ6wpfL8q6tcxPjjHncbrvqXf95VuImQWC7\nnA879q0tN0kKHdNGIxIK1TwtLsaIY51UqrOt+phhV3auJKRRfq+uym8yFicn0paG88nfrBnBlgNd\nXJQ+8vnUelArwSpfnKNq1c0LDshvPo/qeo5hZ0c0CDZJymik/W02Rbom01YqSeSB7Y+Yj+TZnNN2\nW99zuy1zxzHv7wsTwG+FDmhcN4yD5/VnZ0KwKdGfn8sYydSfn8u9/HZHI+mLjW5YWBh7rb+75UQv\nI61eR+a0WXozX6aPecjyQk+aQ78yj99+VnGTJNVqEeTNZV7t6fPzeFyv98kTGSs9rLlRW63Eixdu\ntihf/Xt0JI4uAPD4cXyRSlGIPhkAbsTcbCzx8TM7WeRpLUaj/HdeLtPrWttYWHBtyMfHcDya/fda\nr6u9lN+Oa+91Q6SSsnwVdWZMWmd0BuIc2hSa9Jq37QOuV73fVpomx15nJaNGAzg+Vq/vtbV47KkO\nCBNtM6nV6+67XFwEPvhANSdra5Nmhs1NOKadV68iJ4XmRx+5Htanp3Biond21EwwHAoR2d8XglGp\nyD2cw0YDWF/HuArWo0eiyrXjJYPx1VfytydPRD1NpmR/P3LiplstOF7nVDvze2GoGu9nnnOGTLVa\n0hbPn5zI/TbESph+Oeaa4jqsVGTP4rdWq0mCFI6535fvl34I0raat0olMWVR3f3BBzIfz5/L+3z8\nWObk/n1lSh48kP7znrU1IehU86+uugS50XAzq1Uqcj2ZDNb75pj42/pORJHuzfSMvxhDqgh3pwh4\nWjGTaVTk0zqIXVU9fBlc1omtiMSVds5XuXNTT2o/qX9LS7GjMbCq1by+T8OEpWkBRKqITKxnhJ2d\nSQncdcByU1zaGsOycatW4PAwwsmJy/kIMZPfjYZ88DaOG9DnVSr5RS+KaC3sO67VxD5oCbTEbWs/\neQ5Q1SNxdCSqSRKPnR1p03qN+571x8c65qRSmGlj43k/CcnOjm7MkrhCzRTb224KzaMj8bL3NTUW\nviaHKnSr5l9Y0Jzz8/OiUqe6VsLAXE2MDTPzndLoMLW2lswoMsaZxG53V+KTbeGN83MNT5KUneo7\nMRpFePVKCcfJiRCaxUXpk9SQ1nf0/HmEp0/1ec+eCUNhma7hUNarhnkJIaH0f3wsTAA1OXNzbv1u\nRgvw3TBckF7r9h3x/Pw88N57ev7LL5V4PXqkEi8gv+06LZddU5gUgIGp/OUmannxQtYZxzMaudL9\n/j7zAygt2d6WOX3yBBfvQf5XcxSjKnTOSI/Yhs3MBgjTRa3DaCT3atEa0VpYX4mvv1atxMmJMAcX\n7RmjjYs7RcCB2YQwAcUl6mnVwzeFIloC66E7i/b9fNDTqFKz6gun3W/HDMTj8BeAtuHJkqaubdOt\nv2tTGdq0kUS/r89j/LDNBvX8uXq59/tie/SJja/iz9Na2DlIescSapI8b4DrgX1yIpsdN0cr1QCy\nIUVRNN74Dg8jR/U4HMqmws1weZnSU7amJi2V6nAo7dvsU62Wy5RZr/bTU9nIrQRsY5zTSmn6a+vo\nSNvgXNh1cXzsFqWo15W4UFNjc2gnMca+ytza3G3oXBwD1aoyHcOhG6ZGdTul03JZVcDDIcZmHhIc\nyRGuOb53diJ0Oq7fwuGhm/mQBNm+V84D58BW5lpakmdQgv/GN4QYWZX81pYS2OXlsS13/D4++0yl\n1X7fLRSyuqqmCs5lo6Ge6JRUNaJE3wUhmib5PTfnOrAyNSzXAd/f7q72qd2WOeX38eSJhi0Csk5r\nNZ13JoqxErY1UywsuExHuSyaChJ8anZIwBmLf/HejeXdxZ0j4MRVPJyLqIuzrr+MengapEmkaWNO\nkoj9Agv8e1oYmb/RZknE7F9eUYtpmJqiSVDS4q6HQ6k2ZOvpnp+7H7GfU9rGfYqjjT7v7Ew0La9e\nqUo+jkU6Y15nUdvr8zY3XVXl2ppLbKyEzjjvNIcwf136IV12jv02rIezlT6ogbB9tmk+Saj4vMGA\nEp4cLy/LhsY5PjkBHj1y4659JinLk9+GEskYhQhThd7pxI7TV6tFr23Xj8G+M7+wh8/41GpiFtFn\nSuicVdsPBpFxkHJj2RcWRCXOtd9sTq7zjQ3VfLTbsZORa2lJ1gVtnZ2OpiolbJgaQ49ICBYXZQyb\nm9GF+jzG/Hw0lmZbLeBHP1LpdntbVMR2jZDw8L3fu6dqbL5nG9IEyJqhunh+XtYBr9neZsSCPq/f\nV6ajVJI+c87abTFz8Pzr19K2LQzy4IE+P4qkbaqzl5aEgFumyqrs19fd/jx6JPPP+x89knnc25Pv\ntd2WObEEtlIBPv5Y/gEaG/+jH+l82Njye/fkuZzDhw8lnzvXke0vIL8//VTf08OHmhGO7Z+djc+/\nhxTcOQJexD7rI6t0HjCpLk6qLuRvtEXrAachjwFJKkKRVxTCPtsWWEhLxGLhVyd6+DAu7ESnOZSz\nx5TV36xEMuyvT9B8dDqq9ksrVUgIB6zvsVaL8eWX6pkrcZ4RVlbk2MaxyrFsFDYUhh83oDWHKZ2K\nLVPHmBTnnbcubVx7Ulx5UmGOahXGm3fSOe70VLl+OvOQwLPgBNfa2Zmc49ySqcxiLP2yk5VKNL5v\nMJAYcBKzhQUhqJRGy2UZM/tvs4f57dh5sr/PzmLYzGt7e+JFzr7u7wuBW162Xt9uKlPrKMd+c+4l\n0YpbHOXlS11HBwcyxocPtY9PnmiSEolDd0091reC5U/JhEmYmjjldTrimb+0FF+YC4C5uRi/8zvR\nmBhKClSJQJA5jscJRTgnzaaMk0lH6HTGdUHHSErA5+fSH74XhrLx+r09J4vYhSSpZorT08i5nvZi\n1W7JM6ghODgQhsY6lFErwHf09Kmu7fv3gV5PCfbhoawxW3ub+drrda0qRo0GIMR/c1M1aM+fC7Fm\nH16+lPdCAn5wAPzkT+q3sbQkxJ/7kXUCBPQ+Xn94qPHwgKyjalXaf/HiHfJCF04wWRJJQpIU4EsJ\n/vVJ1YWuE0Ud1LIkGT8G2krMSRmvfFjVY6kUJ1Yn8u3H/kbJ9iUe2o1dvQ6TgiUMJPLah8m463I5\nSiXcSf3xCabNjFapuJvG7q5sutz8RPUZo9FQAt3vR46jj9WaFIW/Lu39tsBDFuw18/Oup7NffOTe\nPSWY9Trzj+v5vT3NNS7rTDcfUaumh/+R8aQE3+mo1oPJQB4+VNWpzfHNcdhQwFIpe901GiKxW5U7\nVcFWHUyVKqDSr2WkbD6BtbUYKyuT856131jVqcy5nmeqVEr81arrbEnvaGJ/X94fE4YwHIkxzPPz\nwM/8TDS2P+/vR456OY5l7+B3cXoaYXVVHPWocq7X5Z+GygkxIROzuOiWB6UjnHW8q9eV+DFtqo0L\nZ3gdIL9/4idU+nzwQMfE62s19/u3TnR+khXau7lOTk/l2Vynr1+reYb3kxiPRipdM8SOc3J+PilB\nU2sQx67jaxxL/9SEJuuVY2Y+AmvzPjnRMch+ogS/UnFCRE1qIBd3ioDzo/FzB1tuMk0KIPxUiXnq\nYMC173IDTCPwl3Wiy7o/bQz2niQtQVp8LqtG2T7YTFBSzce1H1uthC/9FgkDy4LPgNB72vc2Tnrv\nSVm+ksacZ4YAxI6ndZjdjd9mAaMX+sKCm/RkMIjHkk67rdK3zFGExcXJBB0+rEe5n0CEjkk+rF3d\nL8zB0omck4UF1zN/Y8OtAmVV7MKEKDF79izGhx+qR/XKimRC4yblO5UNh5NlJxkPTOIgSTrcd2bf\nob8OqlU3M5xdd0DkFOagc1W/r+rf5WVpk9EF6+uxQywoYVsmYXfXrV3dbk/G69t3cH6uXuCPH0uu\nbptUZHfXTQO6v6/fVhyLpsnawW15zoMDjB0PuUbPzmzufPlnK3HZHNtEva6M0+KixNDbtVmpqC9E\nuy3vzYZYffvbMb74QtfFmzfR2Cb+4IFKvYC0X69rSBXrof/RH6nWoN2OxgScc2PNYWdnev+jR67n\nPSVhEkcyuhzz0pKM0TKSw6E4jY1GqkK3++y9e+Kt3uvJ8QcfCJNBFfvKijyT5UJpCrGOf3ZdCHOs\nfW63hUhTzf/++/I+bPY7iUYAAKQGld4pAp4GK9H66mXf1plXppGqzyz7Lp9r2/dV7tOok/NKIiaN\nQbg39x7bVlp8rmox3OcvLbnEyj7L10oMBpPSb57EnwdfGj45mWQIkpA1v1m1sJPs7DZXerMZ4733\nXIma8aiUNPw5tw5l5bJbmWtuTjYunved5Gizs/Zr69wECJPlj9eaVubn44tkKzpvh4fxeCO0TCcg\nxN4SwDiWbFVU3+7uiuT2jW/gok+i9meseq0m68j2ya7lcjl28oAz1tVKPiLFuO+IGz8ZSWIwiBBF\nGvbmE3SaRSYZV+3fyQnGzCD7K+FAKsV/9plKh2tr4thH1T3NS9Zx0K4rPwEQx0tiSCJhhRGbIIj+\nAWyP6Titwxkl0FZL7hfnPWXC6vXIka5tjPf6unpaW3PE2pqbPGYwUMczZgWjCr3RkHHzfKOhpgZA\nxrqzo1qNvT15PsdQqQCvXyvj9+KFON1xjuiBTWLGeVQNJBlqHYeNoaZzqSWWz57pN0f7NOuB87l7\neyrl7+7Kfbyn3VbNA8dsfWyohmemtvV11hrne5Xr1UHUzSNBkwSZl0ZDvsOL86l0+k4ScD8Rf556\n2do6fZs1JWK7uSXZV93wHbeAg0/gk2zohC9t+jWUk0wC/hiKOo0lHfOfL/GKSlOPZQEpMfEJdFKO\n62mk3ST46mP/Pr8us72W8+BrRux1WXZ2v1BHuRxhfl4kEY6Jki2Qnqs8yROcsMRtNHIZiFIpnrBf\n09OVz5ufd7OV+aaVw0MJOaLkcXAg1bu4UbIGs9Ws2Dno90XKobR3dCRShvXUtmPwnR39tTwcRk4d\n6HpdPf0tkfJNRUpcxe/AEjv7fBJ064DWailzZmPkdV3IPHEOXr2K8PKlTcziZkpj4Q5/z/DXFTfq\no6No7BgFUJ2r7/X0NHJyajN5jvXgZqITQP5/8UIlv/v3hQC9eSPEfX1dpEVm22RfNXudjJl7ENXA\nZGQ4J8Ph5NrlumKmN2sK+PJLNa0cHEROvnL6VVgzhVVh9/uiodDc6GqXBmSNfP65Ov7t7bkFVLa2\n1D9D5lzGwv5UKjJHHHO7rXHYbP/0VOaIjpvb29Iu+7C56TIhX34pY6BPTBxLH54+1TmxnvWUntmm\nn1KZmhRiY0PWAK/b3pZxXfgJpO6gd46A+yrvWk3K2HHgZ2eyyPOk0TRboi9t0rPVqpfEYzM5+1Oe\nDd1XdwOTkprvnOSPwW8zDVYdm/e8kxM3neThYewkKWk00gm0/7wkaTctrM0eEz6DUa/HiWFX1qmN\nIUSXdaSzbRNRpBxzFAkB6fflt++lS9g5KVLZi7CEif2Yn1eNQKsl47PqcMDdGGy2K3mmhssl9ZHM\nqPXqLpWUGM3Pu7nKRQXoMsvW2ZFaB0oxjYZseDaEaH/fnVO/Xzs7rvq31XJDuqydUb51V1Njq6sJ\ngyHtkymgdGiJlA3D2tnRfObsw9aWSoPvvSf7i1Whb22pepb53CnxNpvyfPaZtmaOaWFBbO6Mdnjw\nIEanEzlOdNY2Wi4DT5+K70WnQ9OKziElY46PpTo5Pl5ry3ta7QDx/LmbK51qZ/Z5Y8OVLm0IV6sl\n75k28NVVeackbpTYuY4YfsW1Wyq5oX5HRyqxAprAhv2mVpXrfNELulpedtPd8hrGbc/Pqx+Eb0q0\nKvDlZSW69+6pnwwg80vtCKCZ2mxKXSvt+1rOKHJDPFmJ76I/XqkbxZ0j4EmwqqA0j2hf5Z2WRcyX\nbovYd/McyJJU5HmMRBLS2kySvq06liFLRZ8vxe0nK2PlEeg0aTcp+Q3/bu+3SGK6sry0kxgtX4vh\nax1sH5L8BCyxOjkR6ZXSIyVLu86yQvGs8xjh52Zn6UtAnKcGAzezk7wLbc86hQGyEXU67vH8vHq/\nr63FF0kwdI4scaeUZZ3KlpfdpBxbWzDqZNkIrbZpe9stLrKy4trYFxbEA9kmtbDfgF/wYWXFXedZ\nBV/EAcytOPfwYYxOJ8bcnL6X0Qhj++2DB7IuXedDtc9+4xuypnj+9WuWUcXFHMpvEvjzc7d0Zrst\nToG2ZKpNWTsYiITO8xsbERqNGC9eqI2+VIrG74lmhcVFeQ41ftYG/+SJPl/sxa5THvN2k0FXGzLn\nNsann7ppP8lAABqCRi/v996T59KvYGlJVPo2xe/Zmb7Xel00B1xnjx+LhGvrCrC+tj2mQDI/r3HV\n7L/NT9BsisqexJaE266r01PRYgyH0pdHj9S7HhDG8/BQmZgPP5RrbMGV0QjjjHoffST95Zytrcn6\n//prOV5elt82VI4lhNknq0Xgfnixls3su7hzBNxXebN4geVskuzD/v1EkSxieXHfWQ5kSQ5jPsFN\nUg3nIStRSlI4ka/uzUuFmrRRZhHovEiAJOkzTd3tt5fWB7+NPEZrYUFU1YCqopP8BPg8Os0AsmFx\n4+l0NJ0lPfXpse1Lp1lx3qenSmxkY4+Mw1eE58+VwH/5ZTSWFAB9p755qNVyY5CrVbWJV6uRo8r0\ni4McHUXjMXKOqlU9XyppKBn7vL2t9uHdXVGrUgKySWB4P9XDjDW232qpFI+/X8Ctcc05tNJ0o+FW\nX6MXOkH7s8/4lUqaD71WE0mWkle7Ldng6PU9GklIFvuwu+vW36a3M+/f3gbm5tyQKdGm6JxyLIDM\nz8GBHktZTHUq3dqS32TgbP3yclnGKGYTNXfRoUqOhVniMaVz6wjb7wvjYBkfEldgUt3Loh2cwziW\ntUOJmCVque/SPm0dRL/6ShkA2ti57hYXJ2OsKXUDQhhtCBfXJcfY77N+txyfnIgfB4kvnfK6Xc1o\nt70tz6cmYTCQfjH8j17hYq7Q0qH8lo6PZW6pPbp/fzL64OhI5+zwUNqmdqrddp07T09VA3Z8/I6E\nkVlYycdy+Wn24SwkSchZG28WYQGSJMX0tn2TwDQJUC6rJi7CxFymMpbtlz+mJCYoS8VftA1f85Gl\n0UjSSmQxDVa6bTRUdV4uy8dpvZWZZpTHfrQDMLkubNwnYTchP9rAqsN5nc+ULCykO9INBq7qLmmu\nfDt7pxM7xKFa1RjjRsNNTsE4WhICSUbhOj8yZllCjyZt5gcHKnlVq+79Z2fR2ENaxi7rSktpRuMk\nO+yfP1YyZjx+80akK1tv+vd/X8ewu+sm7Gk23XGzljiZisVFYeysJtDmXq/X5Rk273ezqZIfE5Lw\n/NychFxxHKwjzfh6JiCyjJ2WZZW+2wyCJycR4lgcG61ZgUSQ9wgjKMfttuvJLvW0VSofDoWRsSVa\nAfXQfu89N9NbFAmBJfFi4RI7Rnmf8n+lIgSRBJu/+Tx6e9v65K9fq4RfKkm+epYXttqwKFJTE4sD\nAepkaWuW29TLTJBk7fj8/vgerfMi496t+Wg41HVyduZGazBZzsW6eXte6N1u9x6A3wXwZ3q93sfm\n738OwK8BOAfwD3u93j8o8rxyebJggXxU6fZhn0AnOd4QSdLgZcqRTqPuvm5Int/pCLDvSZ+UopNI\nslFnjUkc51z1tS3wwFjbIrCMm/9e/NrVtk9FtBJ+n33pVmzMdsyRc72NL04qV+p7rftzCOjzWy0p\nzEJv6Pv3tUyjXD/puZ7GlHDOxHvZzSrmt+mr2IWIyv1ik9M5aTRiRJGbKW15WdW1rZZIxLZWNs0Q\ntDdaxx3G2mpJWDhObEnwQ/2o2dB35GZGs/sEoPuJDfOKInWka7VECqOq8+FDCRekCv7xY9cTfmlJ\nCRSgGgyrxdjYUJv3o0cxHj7UWterq7GTCnVhQdYhY/Plt6jdxUN9ch0eH7sFYKrVyJmjuTk3vWu1\nKsSWUvb6uoRN8T3cvy9Zw+hhzYQvtHE/fCjjsqU1T09dEwklTM5RqeSGTC0uqqBTr7u+Dkz9yvt3\nd6WvZBBYBYzH1E7weZImWTO/1eui3frkEyGUz56poxvnvdMRNTq/v5UV6Q/DvhiHbovGWD+f0UjW\nAK9/7z1ZS1xHq6t0qNTnScinHu/ujucwNW3XTAl4t9utAvh7AI4S/v63AXwHwDGAf9/tdv9Zr9d7\nM/kUF9PapJMI9NJSXFhCJq5CdLMYgCQv+Osg8tMQ4CRPejqOTTOmLI9wO+eMtbW1u202qzRkJcAp\nGos+jZNbmqPfyorkmLacPMMX/XKl9t4ijKGdo0bDLRCxtOQWU0jOvOZmf7NjJqyjjt8HX4K3fgYH\nB6Iit1nIWA2LfWo0IqP6dvN6n52JZzkJGouV2HfCOGY91vHMz4tt2WYMtKU5RyPxurfOmP2+2Ga5\neff7kkWNxEAqbUVGsoqwuqrfTKsl35JNAnJ+HuFb32IfZTwsDMKx8/75eYxt/tJnaY9ag709+c1Q\nvdEoukgpK8f1Ok0Fclytyj102jo+jrCy4jLr/b6aTQaDyHFuZI1p60RWKrnOg5ubYtPl2hsOgT/8\nQ5Uud3e5TvSZ1qwg86zZ5lj6lMVM5ubk2VbdLCGW+t4PDlQSPzuTa3l+a0uIIyXWvT25hip2Rk/w\n/moV+N734GiOGCkgeRGE0Iqzro7pG99wE+h8//v6Xo6PZRxUqdObXTVyQvw5x69fy75hHe1evNB1\nUa3KORsuaJLppLjMzl4C/3UAfxfAr3p//wkAP+r1ensA0O12/x2AnwPwvxd9cNYGXESFfdMS8qyl\n7iQklbC0nqS+V/tlw74Al7gmheHZ67OS7qS1n6T2T0ouk9Z3JjkhQVpbcxNwpN2X1GfrVMfwHZ8A\nA5djDG17fjnSJOnSgnOkhS0iJwGHqO3U1jkYJDOLNpzIJs9Jqt3te9MCrte73dStmjMJc3PyXvzS\nniS29FKnRuDoyM1OR1urbX84dGtbz88DH33krpvPP4+cjXd11Y33bTTcamT7+24cv9W80NRij216\n2rk5OKYW63wGuPnDdcw68f2+MCNch/a7Jba3VXLsdLTojH2u792/t6cEWlKbal3xKJJEK3bMcax9\nLpeFCFsp/+DALRdKRzRACNO3vqWSPOeH55nelGtFhBF3rmxpziiShCu8vlSSe3i+WnWrqR0cyHhP\nTiZLePLbYSpYmwXQMr7DofaLfXr+XJkEZlaz3vlRpHNcq8m88JtiJjvLQBhP/JuXwLvd7l8CsNHr\n9f5lt9v9VTDTgKAFYM8cHwAwQ01HUfWtT6CzcpdnSZNFidllw5c4HoYHJRVHuA6QwNpiJradtDrK\nFmlhYMBkwg0r1fvvKEnFPxiotJeX651tZyWX8dscDsVJjJtOreZmwEryhLewdv3hsJjZIGmd+nZ/\nS1gsfIZjYSF2VHjlsmpZ/ExlBIkZN8Y4ZuIPOU6y0yeBfW42xd7OePi1tfgiZEhV5n7mtEZD3+vS\nkquiX1qS92VD4Z4+Be7dU5u+1QD0+5ET2lMquUUzfHU4TSQ2FG5uTj3NAY1/th7Oa2uT4Xt2jL6Z\nYTBQL3G+R27MojlRpmR1Nb6I7Zbjhw/jC4c+1TIwrzmgcdzWIUo0PZobwDqI7u1F+PRT9X5+8kRU\n4jaHfq3mxknPz0t/berTRkO1Fu12hLW1GJ9+Kv169kzMDFyLImnrGJvNGE+eRPjkEzn/+LF4+3/1\nlZx/7z3JWMj7Jae7W8CFoV+AaDdaLWG0AOCnfkoYux/8ILo4L177JJ5++GG7LXPI87bamuwLck27\nrd/XwoJIzLZs7MKCmhlWV2WefvADOf7wQ5k/riMS5C++0PPNpqrcnz6V533ve7iYE/HHsF7p9K8A\nkOP/VkoAACAASURBVOrZM0sJ/JcAxN1u988C+BkA/6jb7f75CzX5Htz8rk1k1Dy1WFtrOtxVEWLH\nzEGAWwPWwg8HshtrkWIpeddn9ZcbK/taJORrGtCZgmq7xcUmlpddQiz1sLWP9jwwOUbAjdeteCvJ\nxv4mjXltzU2y8fXXbi7lTmfyPuv8YzfdIm3SwcoeW3DMWX2mNCX9b068Z3+O/HX65o1KJcvLqmYD\nZDOgGpX9iyJ1rqrVxA7JMe/uyqZg55FZwaxd7ZNPdOO6d0/esXXAevAg/RtKist+9EhVobWaPMvW\nhZbQLx3z7q5KRu22qGb1vTfx8cduf32tg7Wl0gufmg3m6Ob4qO7meGgS+OADVXUyxIhg6JwNfZPY\nbG2DHseA9O/Zs8m1SybJZiTjeVa9AuRbf/JEx/jwofTNFnz5/vf1HdFsYktmLi1phMTKyiI2NrR/\no5H8s2O0qaZXV6U9yxC8956qkQG5d39fbd6PHgE/8zPqJX7vnsbTAzJfm5u679EfhO/hwQNZ5599\nptevrCgxZKy6zckvlfv0+idPlCl69EjmjXN+7548m3v86qrWLeD1b94oU/Pee/L98fyzZ4vj78BK\n+aenOgfvvy/30M5Ogk4VOGumk1E8PCRzpXPS6ej3zrXMMTDlMOeABWwunuelgVHMjID3er0/xd/d\nbve3AfyKsXH/EMA3u93uMsQ+/nMQdXsmhkNge/sg77KJe168UC5fUlrGE8QpK15X4hoFSYTBSgm8\nPu35vqR3diYhQsTeHnNqTzXMTLCPwyGwurqInZ1DnJ+7Wcr8MWSdTyJ+vvRrVZtFJLwXL9yUmJVK\n8hzwGgldcec1qVKVhV9W0sZ5z80Be3vpErk/h199dei857x1wPfM/j9/Lh8oxygVsmJHTfnpp+og\nVi7LJmnDmdbXY6cGMZlPm+To5cvIUestLWmoVRxL3HaaZoXfDjch2jLtdfv7ery9rXWSASG8n3yi\nxGlzU8e4ttbE8+cH+OyzaEyQd3dFlWpV4DZWnkTPFow4OXHDhTY3XdPR6amogvnMOAY+/tjN3mZV\noaMR8NVX+p5ev8ZEZjb7fQ6HEuplCXwcqwRfLovkyOexCAnvl3hrN8siEE3YkzXTmxCH3V2g01nE\ny5eH2NlRhzAyVdb3wNqLt7el/z/4geYu//prWYskHp99Jsc2NM6mEBYzgzrWAZILnW2WSuqpDoh6\n+8svlQD/638NfPObKt1+8YXapQEhrFRvs//f+56+99/7PTlme1995eYh92tvn5/LGrQ51vt9eRfz\n84vY2jrE559LQjCO+cULN7UqGVm+hy+/lHlhn374Q7mG51+/VidMQJiygwP9Fj79VOaZa6vfF6bE\nJn4ZDDiHi14qJsVNhpFF3W73LwJY7PV6f7/b7f51AP8CQAnAd3u93su8B+zsJNeyzgJjHgmqDe2m\n5dtW+XciKdd5Ujv+ffz7NDHTswBVizs7jNXMru+dViLVEm4/CclkYZHpMrHZutWtlssNp83VtNEB\nNuSKebxt9bEkZ0Lbh+NjtaWdnSVnzMsCC08AujlmrRu7bhlHS2JKIpDEfKo9l0RB27C5x3m/XwCG\n6mIhJq7KOo7duOty2WW8rJc7K5txHOfn+u3x3+kpTPyxehzL8+Wf/w6shG1z+ItUpOu41RJC2+kU\nT4lL1aqtXtbvu2lB7ZwQNnbdMq9SQc19Hst1AvI+dnYik+FLnOg4RkqKbH84FILHXOFxLBs/Hc6q\nVemvzaIWRaphYBGN739fNRkbGyIRc2xk0tgHpkXlmq1UxEFQ7bnCIJFRfPBA7ep8T4w44P07O/q8\nVkvWtg2plNzs2p/PP3fnrFxWBuH4WGt8AzKWL75wQ7RsXPvhoRD3jQ15Fh0pT070+yLzYH0j9vfd\n7HMbG64WwWaHYySCzRD64IH2aTBwwsRQqUi/aMaoVDS7G952JrZer/fz/Gn+9psAfnPaZ01LALlp\nWUlrextO2Ei16m4SebnObfskjnn24zRcJuRrWpCJ4KY5GExfLSypMhY3FXudbY/Iy8RWrcaOo8/8\nfDLTlFQTfZq59ouF2LhOplW0KnBR4+n1zDLGpBK2xnMeE0R1GTexpSWRhGw4kW8Hn593HYUaDbfS\nWLksnuGqfnWZT65rbt7r6zLHlJx8LcTxcWRLGGJhIbqo5SzHYtdz63WfnLiOgTZ7HMODbMpMlgNm\nLHO/r5sg1bK8//59d0657uy3V636yXFUqqlUXLUu28iDXRckLDaO24YHVqsxnj/XjVds05HRGkTj\n1KCAEjeqYttt+W2Lq/zsz6rn/fKyfHe838Y/83oW5eCYGaLEd/Dihapu19dlDMfHrvNWpaLhf8w+\n9+mncv7ZM/k2qLav14X4k0AzLakthWlV9Pfvi7T58UUQ8U/+pKxLqrQfP4YTTbC6Kuub/WFoItcF\ni7jw+k7HjVMfDlXqBlQ1zTlfWlJh8Pxc8wJYHxWa02xRm1ZL12q5PJnfnDnjAU2na80Acaz3r63J\n36zWwteamHwAqaLCnU3kUhRie3Bzp29u6ld8eCipC7mppeU6z5KUssKXijjdra1hXOHJ38T9tpL6\nkAfrvcuMQDZffF4omz9GQDJZFc0eNxzmZ2KzzlRJDADTjPpFa4giavq9PZUWt7ejcVIWQDjiV6+U\noEoWNe3DxoZsovRxoKSY9b44FmJlRdV40m40luLrdbfiWhJjZ8OJqGKVzF3yu9UStbpNXbq4qGOo\n191CHkw+wz6ScFm1frOp9mM6hHFzpmOgroMIX3+tm+DZWYRHj1Q93W67iVmOjqILCVmOWW6RxGh3\nV8LC0tYd/8bz5+eRo9KXEK3YWUss68p57XRchlnWups3u1qdTIxCHB1Jm2QU9vfl3VAaPD4WgmHf\nuy2eEsduqU9JCqORBMfHkumO91MVfHam/gJkjADpu60ktr8vfWB/bCw2idPiIvDkibwrGaNo6ujr\nQH8NK42enOi6YzY5vvedHTf07uRE1t4HH+h8Dofqhc4+28x7y8tuKJ6EIMrxYOCGZJEJInEcjbRa\nGMdqM8dRWKCKmvXbWy31OWm3NWUsIGtU8gzonO3s6LyWy3IP25C1rkzSvXvSLt/L/LxcQ4me2eCs\nucmsi7fixDYTXEb9bFWtvupLnIWy44eLSNhZfcrzcrdq0NEoWUWfZUcvAit5FJFCkmDH6Es+SSr5\nadLR2rKTLBxiVfTWRgbIb9k0XIk8C8xuxjao7gTko3/zRm1gb95EWFtz1c/0CKYHsFXzA5NMkK91\nkDWQrO4GspPpiPOWbuwnJxFKpXgsacnfJte3X1AFcNW7R0dwJJuFBd1UGBJlPbgXFtwx7e2p7bNc\ndtWCjYYQSDJCfvIbxr1aJ7yDAzc+2fZXJBxXO2Y1CGnrOqmOPJ9pbc0cg5W4qRa1RN6uTT7TX6sE\nJS8+7yI15tieTGJkpU9mByNs5TZJgqIe3SsrUk+dUjnNDFSPS8Y7vZ+lSD/80DpkCrHi2hoMNJUn\nx0sHRUDGur2txI1hZYTNXsY+DQb6vDjWTGWcI9q9OUcnJ8po7u1FTna7kxPXEa9WEy0DpV065HJO\nySRrCmG5p1Ri7gKNG7fpWW0YWbksanq+2wcPxExBx7xHj6R9+hXcuyft2eQ0lgGv12Xe7Xu1RJva\nt4s5fjcI+PKyu1CmgZWIs0JvfFyHhM3n8Posp7kkE8Fl7ei2TdoK6WSUR3DzzuchKx2tnwGMG7tv\nY7dI2lh3d938zVlz4t/fbMrcUyW9sCCSq/UGXlxUVebKithRKZVKm3CIiYWvdfCT2fhzQsLEOfCT\n6fiEmUiqeKb3iLRpw6oANSM0GjImbsxzc+KcZB28rPqW7dlsZq9eqUq3Xp+sXlatKtNRrbqhfouL\nMVZW1MGMkiQ3UcmH7aronz4F+n3Xj4Go1eSZtv9JuRC2tmwO+uzyw2Q+7fxbiXluTrKxUd374EGM\n1VXX1CMMhB4vLblOb4uL8Tin/oMHsjdRJb++LnHr1owAiLTc6QjDZ73kRyM1QQHyvXc6rullfl6k\na0YLSNpOcUQDZK0vLkaOt78wkHLcbEp7NM3EsfST743qYxKzJ09k7+bx06cSSsawsHv3xLGSKnqq\np33fCK6zuTktSwtonDdV5IzgIAHf3NRoAvaPxJXx2CSWHMPJibRvzUGW2ZybEyaIDP+DB8C//bc6\nR69fu6lYGeNNT/9794Sp4boio0imh7XIL3y23o164Nfl+OVnKTs6ynfgmlbCtvBtr5ZhSHKauw74\nEjsrMq2syAbot5c3BuGSXWkwTeVO2OOsrGNJxMx3jvI3VhJfXlMkpnllBYYRAwDNWBVF4vlrY55F\npah9ZNax1VV6pbp5ui0zlqZ1SJsTQD7+tLKySUyUqOHi1LUFTK713V1lRofDSVPI6qoQceLwUPvB\nGswkiszFbZOctFr6vEbDtbWen6uz4/KyHFuzAiVPW8rTz9j34oWau5rNeKIQ0NKS2Ex5/3DoMjn0\nnCfSctbb/PJ2f/CZTbbJ2HUyQ0kZ/OT6CJ2Oy2Q0GhHef1/fiVV5++lkrXMjNVXUJhG0iwPy/5Mn\n4mPB8bB/1o5fqajne6Uic+6roEnc6nU3a1i5rARJnidRFmTMtrZEXc7QtnZbCunQhySOZcy2ZrnV\ncNC+bpOc9Pt6zEgEX0vC87R102ZP34j1dZW+mc3Nqv0rFV2LLJBis7/NzWkGvsNDt3741pa0YZ0L\nz8+1TywIw2/r7ExV/4BcywiT3V1sIAV3ioBfBb79uKijWJ5zkr0uCb7tlcUGrHOSrcmc9PyiUj6R\nJLFT+ltd1ZATf06S7Pv8ux+CdRlMwwQlFZDxCd7GRnHPdc4hJeokAvuNb+jzlpZcT1zeA0TjrGj+\n/eJp7zKGaTXUL8OwJTFBScxoWs3083P3Xmqj/MQnVtpk5jD+9jUz9jy9xi0TYqUKex//2XlcWIix\nuqqSH+2YyiTBSZpycCBpRGmW4BxnaY/m54V4Wr8B/73Y3OmdjjAJlLTk+ZNzTKYiirJNOdTo2XSz\nw6HrV8A894TPKDKmudkUYtjpqIOZOEcq8aT/jr/fWTX7aCTEhxL1cCjPtmk+Dw5c1bgtPiLEVRlJ\n5me3e5wtsDI/71Y3800/VLGTmRYbvRJXrjFrehGmQI6ZuIXrstl0S7jOz2umNZZlZXlPMg6Li3Le\nz1bHOeOcchxMhkMmp9ViymV9nmUUGc1iGS+bfIbCxMW6eDck8CxkbYx5ObRnkYvcwtpeWVDCEpIi\nuExBlSzk2dSz1PyUNq1KvEif0hiCpEIfaeO1ksj8vC74+fnkqnJZBP301PVtWFuTDFRpY2KfaMrJ\nIpZs32VK3POADfWalCaTkPR3uznn1Uz3tQRS91ilx6QysyROaaYVnl9YkDGkqZ/tu+PfJHObnh+N\n9HmtlmR6s+aura3I2bil9nX2d+HPSda6KZcnc6e3WkrABwO3TCzg5pk4PRUTm/02rA/N3Jw40XL8\nOzuS2Yxjvn9fnGipkmchEzIctZoQ781N9Ui34UcPHrg2b3qc23dYrcIZ4/FxhI8/1ixhjx8D3/mO\nO587O0q8Wi3XcW5hQUIPNVROHO+YBOXb3xYCzzFJBEg0rqX95Ik8g2NYWgJevlQ7/7Nn8m0ypeyD\nB6JyZ6a3hw/dZFh0QLPFVsplXWck9hsbst6bTZm3KFIG/t49UfVrwhyxedMMsL8vyV2olqenO4Wj\ne/dEm0WVebPpZoO7f1/atBXb9vb0/OqqU+M81cb7ThDwIgSamJZAX5XA+7ZXpnKkahYopo7ms4q2\n6UvsJC6VCuMZ0+ckac6maZ/wCTY3MZaBTGvfjiMLdLIC1DvYzqN1IqPtlec1VliOS6XIOJoVG2sW\nscybU3qAWxu+SNLFfSnSYNtM6rPVEljzTrOp8dLsIwCnOIj1/6A0ac/7c5jG5IgPgxbmAIRoRREc\nlXm7HTuOfEdHbrpKX+IuMidJfgPEyUnkJLeh9zVVp1S5WzOCda4kM8D3enws0jbX2WCgjpKAqr9t\ndMHamqrky2VJEmIJ/tERxgVPtrakfarcDw/VKQzg+3a/C5YTJQGXNMauevj4WI9HIzePN98R1cu0\nSbONrS0hkLSxi+OemkKOjiLHd2F/X57HTG9xDGxuau71168jPHgA/NRPyfH8vPgIMLqhVBKCxzEz\nfz6jG4ZDIYSUjnd35Zp791QCfv5c7mcf5ufFhGaLB/3gB9rG0ZGrRWD0AdukuYnZFemIyDEtLAgB\ntxn3Hj/W/cwmFtrawguk4E4R8KQN6aoEelr19GWwsqKL31ZaAtKdk66KJJs1MS1Bppo/jRhyzu31\nvsr95UuVIhYWxBZ/lXkul0VytJJKu+07G2kfNTPW5HOyji2y8smnvce0v49GsvHy/tNTWRt08JtW\nk5SELEZOzqvaE1D7eFL1urx20o7zmBzf/mxjmpOSp6ys6KabF8KX1lc7J9Wq60lfqbhmAaZGtV7c\nSWYEm0XMeuLPzanNmOfv3XND/w4OJp3qODbrCMX+nJ+L1zXttyTe7M/jx7rueM73J4ljtzrX4qKr\nLqZambAJcxi+ZqMVrFNZFMk7tATUEniGcFmvdjHnyHG/L05g7A9t3pxDyYanxJVt8f7hUCRl7rVH\nR/Jbww3l+XR24zhsPfDBQKRk6zh3fu6+V2AyEYsybjJ/XMtMZW0dNC0zyt9kEPieLt79u6FCv0wm\ntiIEOks9fVUCT7Wgjc31bW6zYCCyqoP5BDnJPuv3Scru6Rxl1Vz3Ve77+9FFqlDtm0gYlx8z7aHk\n6kejCKenrnOQrdNcLrv9SvaEn2zHDxOzv33v5SxiScnUqlYHAzeVa5I0WbT9NCQRUD7Ter3bMdAj\nOm+O0tZuUTu/VGtyY7L395XRo4RtnzcaaXtzc5f7Vvw5efXKVQ+vr7v206Ul9RNotSbngP0GxBSy\nuRl5xMwd45MnmLie8J3qyCBYPwTW1qad+hvfUEb28eP4Ykxy/OiRmDWsGcKfM3HMlPrzAPD++/GF\nY5fes7wMx7RxcBA56mPW+Ob82lzpKyvyrimx0pnUJnKh9z0gv09OorFKf32dGev0HbXbyoB0OuLV\nzm+/0RCP+hcXcuvyskjYVOnTA59OaSxm0unoOlhelt9Ucd+7J9ewzw8fyphJkBcWhJHhe2+3RYKn\nCv3JE2EqqGKngydj8aVSoI6Jav2L/WETKbhTBBxIlvaKEGgSsTTntayN4Cr2Z6oZyXSUSlIFy27k\n123f9rUSSZW6rCo1zSadZb/1pRhLDPyMYPRYtRKVrQh1VUmcY7aqUCHUroNWq+WOmX1nn3xM67iX\nJ236YWSlkm78JAxZ4YaXhZ0jmya00cA4QQ4gYVpSqSk9WiBrzGl2fjtG/1ullMRn+UlTfMawSM33\naebk7Ew3YUAkr/X12PGFSBt70vNkXCo9Smyxqs1PTqKL2Hh9nwcH7jvx27JZCmW/0zjjKJJwpg8/\n1HX8+7+vDMSLFxGePXNNRWdnsWOqiCLgp38a+Pa31RfCRivEceR4TI9GkgSJEi+lVVuMhCGKgCRF\n2tyMHM2KTTvKsFYrFDx6pBqAZtMtmiPET5MutVoxHj50BYxHj9REsL4u8dp8/umpENStLXl2pyN9\nuH9fJWYWLuH3+PKlaBHY5/NzWeu2kM7ZmTIAq6vSrs0GZxM/nZyIFoUEnpoW9nl/X9Pwwi385eDO\nEXAg2Vkpa5O5ahKUtOcWhU0kIf8Xj1++LjB+18bSZ9m882zilhgBshjdECi3JGOl4nr2XjVdrJ+p\njI4x7LPEvGdv9tP4TiQ5gGX5KaSpzrPUzT7DYFP45pVLLQqbJnQ0kkxn3FRqtWSCWLSdJDu/pC2W\n44ODCB98EI8dAZlWlWpDzjEZQDKGhH12Xj+m6bd/rdT/Luaj4vvInJ1FTihdpSLz7atm7frPchQk\neD2TygwGsunTW5rnbbw0oBnSfDV7UnSBVUHbOaGdn22QmFqzQhTpGMpl0X6pDVw0cNwf3ryRZzEE\n6+QE+P73I5PbPBo74wGacMg6lG1tqR39yy8jvP9+7PgllEqqwj87k7XG8bEd/s/5o/c6IPO1uenO\n5dGRvlcSbo7p5Uu514a2vXypDAHzonMdnJ4Ksec72NgQZo992tlx1PsmMa2LO0fAkz7qpEXvqx41\nlOXmi4lYjEZuXGfRmsxJyAuZStJK3OS4rbNOUrrYq4RU8ZnWwckyEXkOTpfxnRACHxdKKJSnXmab\nalZwtRZJNnubRMX+PW8eVTMymSZ0NCoeUpmELC2FhFBqv/b35W9JyVXY/6yMgeWyhMJZM4k/5qR8\n+Vkol3GhHpZjSsA+I5bkSZ/2vE7H1U6xP0mghk6J1SQT5cext9vy//KySqU2Wx1T0gJMaeqajphh\njPNLAu6b0DjPUote/QQWFyXW3k+GpX2JnLrz/b5mPgM03p/SaanEfOxyLBkJtT+jkeORjbMzkZ75\nvNevtXwn4ecpt/XFmfXszRvp23AI/MRPaDpTXr+5qWr75WV5vs14x72cfapWlelgMROOoVRyJGos\nLLiMFwuq2Mp7DMuEVOxMxJ0i4Mq1Z1/nqx79fNHTVpG6KnyvVz9N6GUIWJ5WIS19a9LGk2eGyLPv\nVqvxxBhttivxvFXGazSatK1eRisCuMTAJnopauNOw3UwQVnq5TyVvG+zT+t/HsHyvwU/IsJPjTrN\nHOVpKRYWJM2nDfuS0KdoHDPrF8kB0pPjiBkhXasyHCIxX37WmEhw5+a0z0l2dxtuKOl09fokfxGu\nPyCZQbDfIcPCAFG92lSv/jpkfnvmCz89lXdMv4VqNUa77YZUWYczzhMTmQBKmGxaYj+8z9cSTCYI\ncr8LazJrNrUCGSCSsc3kxlzrNuvZYKAhWicnQqBJsE9P3RS/VHeT4ZBSp2pz55yyOMvTp2IP39gQ\ngru5CfzJP+mWDyUxZiKWhQWtTAeIDdwei3lOGQBqPGy2OkYOyBy6joGrq3I/7fZMqXsxRmNocnGn\nCDg54yxikxauQ1xF4r1sn5M+8LzEMFkoKj0mqWetB7VFkUxsafZdX71bLsuGZ2N9bUrNpGIm16EV\nSRpDmo27iAPWdfgmpJkhkogdMMnU+PZoizyCleQLYU0bJPhZbUwLain4vPNztbHTGez0FBfhjG6I\nFTDpVGefB0wSCgubpQwo/q1nMVq+3T2OI2xsuOF/Ni48icmz5UxbLZf5lfKsuu729ymguOvARpQs\nLcl6JmPgl5Ct18XGq+Nxc+hXq/E4CgLQtMTcJ61XPCBrrNVywwn393XtjkaTDpqMDeeYpWiOHC8v\nx1hbi5wiOVtbKoEvLWnpWUAIma0Yubgo19ApbWVFQhDZ54MDYXCY+Q0QJzZqBL/+WrO3McMcpWUK\nd9YjH9DQQZ0DIcIsfsIiR7bYCbOpcQyyD+rz7t9XLci9e6xPLseSolcYsN//ffx/SMGdIuDEtBur\nVa28DdV5khNdkf5byaUI0lSp3Miptrps3HWW+tDPkf3mjevZS+75Mv2/LKbVUuQll2Efryv0zyd2\nbNceZ83FZQhWkhr+KsxJngOpldQA2XQ5h6enslHZ9Z2nIs/TFPkahqJjy/L3sOdpD/ZNYFlmAfu/\n1MV2IwHiWInLaCTmE3V2Ei2D1cTYtMj1umtSlHfihislfXs2mQ2TnpCA1+vyz2oJmbGOY/Njyyfz\n/LtzIfHnOmY/mdXiYuTY1N+8Ud+JZlOImdWi2gx9jYbsNRznaCSE2PodbW8rMd7f15AuVnprt+U+\nSsz0Oufx2ppbF77fV+INaPIYEmjmV7fhhfZ7XVwUb3juSe229IsMgmjHxvNo3Cxd3EkCDqR/mP6m\nQgeqWdbbzkMRwuDDJthgljAiT6WdRKxoRmD5yKuYEYpoQfzr5+djR0UHYKr+F8G0RWLYN/Y5T6uR\np8XIQhFiZ/tT9JlJBGvWIYoWRZhpG8c9Gomakl7INqlPnoo8rz2qw33Pfrad1cc0lMuuQyHtwVlM\nQtI6tL4N1oRWqWC8nqTPLjOQRSxXV+ng5Uq/Yp7Q40Zj0pRkTV50iCPOz+UfCSjzE/AZ/JbTmBRq\nhrTGuaR/5XG/7/ph2Lm2sM62jx5J4Ru2//HHKnHHsRBEenSvr0s61+fP5XpWbGNY2r17mp2NiXMY\ns833MBzK+O0c1Ov6bhYXpR2q/d97T23zbGN9XcPO7t8H/uN/dGvd7+9rNbP335c+UAU/Nye/L/r8\ndHK2BHeWgGd9kP5HvrDg2mtuEpdxlmL+dGJvL5pgPKbPAgZz/upmhKyNlM5StgiGlFlMljbZf77T\ny6jU8ySnq+KqCYOA60+HS4JlzTF56VyTcFXNxzT3UfJrtWQdTqMiL9peFkFNYw7zciBYM0O5nF4b\nIW0dpmE4FCJCj22R3FQ6tYyvP0a26+8FJyfZ2fE4LpsZcXlZU6tWKpoaFFDpkUR+YUHU5kxt2ulM\nzoEU+9G+0lkMkN+2Lj0T+hBUK1snxiQtplXzr6/rfiPELxpLyKWSeLWTOD96JP9WVoQQl0pCqC1j\nsb2toVyAMJ1ra9r2/fvSJueIxV+YLa7TmYwTH430ema741rc21NPeM75/v5YJf9uOLHxJRf5IP2P\n+KYJ900gS6Xtgxy3TZh/Xe0n/T1JMsySfpNqNl+1b9OEXd2EtMp2rhPTMHJJuI4QSx9ZDAHXoS30\nYK+7yjvwQ7po7y2qWWGbSUxPUS2AD/oB8L202zGaTZszQSRHEkdW2bI5EpKK4iS1w+cV6dfxsaqk\nKxWJfbe+CmdnkWMjf/UqGr+vg4PIMUtSzW9BxzNAa1tbT/nTUyVu1Ma468Ctnf3VVxgnvFlZIaOq\nbUnonxwPBiLZsv1KRdTdVKGvrChxpaqbhUt4zWhEc4f2+ZvfdHOZLyy4Fdj6fZhQOGFGbY1zG8s+\nGMi1HONgIH4L9F04Pwf+4A/Ge6IJAnRxpwj45qa8lCKq0Txct701DUUJg+2PH+Ocp/bPa4PP/DM7\npgAAIABJREFU4wc6azNCkmT4NuZ5WgetWWbkmyWmYeQsimoVpvlWshgCO4f87av8r1tLkTeGtDnI\nQ1ETXrWq3tuA7F3W859OclnPn5ZhyDOvVatuDvq9vQhPnsROmKctoVoux/jkE00Os7srNmmbH/7g\nQJ3USiVJBcs5Z/UvEqvlZemnTV87P+/6KpVK7vmvvlKmhz4SdBAT727VWogZIXI88emNz/aXl6VY\nikjF4rn/7Jl6gbPMLTOxra9LXnPaxO/fFyJLAt9uCwFnAZVGQ66lSrzZVKkaAD74QP5GFfq3viXt\nU83/5In4AfzwhzId/nsm7hQB391Vz9WrEOxZSB1ZuEyiGT9M46ptsDTj0tJkGtRZYNqNuEglrsu0\neRmbp0UScSkSB/42MAsmo8i3wvVULuczBJMV3ab3D0lD0vhrtckwsLznSxzy5fcHuw6HQ9mI2SYd\n92hOGg4nq6Olje0y7QOTWhnWOrewoWijkauF6PfdPWM4VGIIyG9bG2EwiJykJLQfE/W6m1CoUhGp\n2kZHRJF4+AMucQY0KQtV6O226/sxHIoKWxMUyf9kICRhSzT2P5C1EeP+fTed6/p65CSPqVS0TYbe\n0WmNxJzOiKenQsDpyMvcH+yTpBFWrcHKijAIXGtLSyKBX1mF3u12/xSskUp+9wH8qNfr5URkXz/O\nz90XWmSTyspwdV0hTHnIsj+mbXpXJT5+G1QV7e+/3TEnXXddhOc6x5QUY32Z93KTuKq0lmfP9a+x\nzpaLi/F4Q8trlxvuVf0KfPjjZ6KUNMc4fw6ua3+w1+eZkxgWBiSnUr0MfK2MVQX7Gr5mU/PfA5Nj\nrtVEoCAxWloSlbs1T1mtKCDEm/fHsRBs64djvcj9euCjkVvlDpDfVOH7Tmqdjkvgh8MItpRwq+Wq\n2Esl4JNPpF1WDTs8FCaE2dsA8ZSvVnVtHx9HTiy6TU5TKkn/SOB3dlyzYKkk74AE+vBQIxgAcXb7\n5jc1kxtj0i+OTRS/iyIS+K8B+G8A/KuL4/8OwBcAWt1u99d6vd4/KfCMa4NfjjNvsfubRFpVqtuG\nm9YSvG3MSnV6WVwmKchl2wGud8xFvgled5V5950tDw8jrK5OMtc3Za7KQlbbvsRaREOVlpktyfTS\n6WhoXLOZXAzFTyRzXSiXpWof84Y/eCA14P0shlnJsWo1KZhinyGaPNUQWpV7tSqEz3qaM1wL0LA7\nq23o99WpLWmP/vBDLfqyvCx14R8+lHOVSoS9PZV+5+bkmjjW66vVyMlmd3IizGe/r0TVVpETJzxV\nw+/sRE4SMWZqYyz6gwdufnd6xvN4fl6kcD6vVnOd8E5O5Jx14KvXx/3x8sopihDwCMAf6/V6XwJA\nt9t9COB/hRDyfw3gxgj40tLlKxAR5XKxDFc3hSQpCLheyeS6JNxZb8S3gXATl00KMg3eBpM2jcr6\nMutm0gGrmE286PPzkOaQNk34Xt71SQVb8t5jVh6EWTKvSREtZ2exk8YTyB9zo6Exyo1G8hwQ5TJr\ngMsxS5OSYDUaoulQW7ZKurzf36OPj1WCZ0Eeerlb721AvtO5OfVCL5cjnJ9rYaO5uRj1ejQuFcti\nKtWq9pkSNTVKrLtOAk6CyzlkdTgbB35you9zZUVTwgKap51hZ52OW66Use8XBH0bKShCwB+ReANA\nr9d70e1213u93l632y1w+/VhdVWdAoriOpybZo0ktd9lUCS07rL22x83jUC5fPmkIEUwC/Vx0Tb9\ncD0ia90knc9ztiwyxuskXmntTdtGXoikbSMvq2CSZ3zSe76MT0+RfYLhX3z+2ZlrK2bbeWO22qiN\nDdcPKWkOWHEQECLZbquE3mrJO1lediX4tD16OARevtSUvGdnUtuCTnXLy8IkZMWlR5H1nBeTCu3Q\nZMylEp9cwbzobJM1zm0Ncxsq124DH32k9OnRI5HoSaDn54XgP3umfeY/QMwCjYZbN77bBbPV/Sek\noAgB//fdbvefAPjHAMoA/kcA/6Hb7f4CgMMC918b3qZz06zhq9WmlUyKhtZlPWdaT93bNoeXQZ7q\n8yY96W8CfrherTZZ2S9tI0zCtM6WSbiJeb2qP4lPLP1jG05UBFfRZiUlFEp7Xq0mNmBblEMIZrGs\ng/zf10blMbSmEEfqOspj5CzTYc0ax8dCYOkYJ9K9SvSdjiSvsXHur15pnfmFBSGMNvMZVfr0lWi3\nxZuedvb79+X5Nlf67q5WSFtdBQaD2Al1W1lRFTxt+Nbx7qOP3FzqX36pYWrz85Ic5kJS/zRtnosQ\n8L9y8e9/BjAE8P8A+PsA/nsAv1jg/mvDVVJY3rXNdxqp4ToI7I+bhA0kj/kmQpr4vLcdljYcwinB\nynhem8WryDpII9w3PcbrbC8rasX3aj8+FqkUkJrqTMpi+5SXbGeafvnfup9q1TdTLC9L9jhApd5p\nYuP9IjiNhptBz8+s6B8nOQba4kZ5ppwkJoR9BNQL3p8TEmyb9x0QIvr4cYxWS9LR0qmx39cwr3IZ\nWFuLxvko6vUIn38e480b1SLUapGTze6zzzQ73OefiyMdw8Ik66BmZms2Jd4+inQODg60ROrCgiTx\nsSGIScgl4L1eb9Dtdv83AP8nmGEfeNjr9f6vvHuvGzs706ewvMtI44hn4UiV9UHfBmJz3Si6Ec5y\nnG/Dcc+vGmcxHLqFLK7Dce+mx3gd7WWl5FU1sBwPh9E4IQggIVS0MSdhOCyWx6Lot56UatVX4ZdK\nblYyq5q2bVgByX4bRYvg+PPuhrK59ccbjXyzApHEhAwG6hFeqbj56Q8PpegM3wFj3vmOeB2rgzFL\nHOkLsbysUv5gADSbET78kHMl753nT06ESPPb2t6WGHL28Uc/csPGTk+B83ONjuj3xSxA5uT8XMwG\nF4zHuNyPjyJhZH8TwN+AGNKt9fQbeffOAjelvp21w9a0z79pZyAft81L/LqRtxFe5blAtqPYTSHP\nYbJWU8kSuD7HvZteL1dpr2hKXh7T8zmtzSQbeF4fp/nW01KtZkGczCZLpFqmxUeRIjhpx6LpcYsb\nNRrTMSmWCQFE8rWMaL+vZoy5OTe/e60mfbfZ8Pitl8sy7jiOx9nRAHmvzM0PyJy/eRPBZlZbX1eC\nTyc9qtQ7HVGH83mnp9IfEuzBQObDFnAhE8E52t0dr6/LE3AA/xOAD3q93kaBa98JzFqdPO3zZ+0M\nVJQBeJcI93VshHm4jWaJpHViJaWDg6s77uWFWBV1wJolihKPcnmymAmg75VhYdNkTcxK8TvNt67J\ncLIrtPnEGnBj4+M4wtGRzoVfHviqjKxvQ5diKaoeZnKdaZjdWm1SI2DNFF99JRIsIIVQ8nwT5L1o\nP9UJT7+VOFanNMmnHuPzz6WNx49FQ0Cm4b33JGqKmd2ePpX7SeBZCOX1azm+f1/as0VtTk+vJ5Xq\nFwB2Clx3I7gpT13i/2/v3oMku6vDjn9nZ/Y10uzsrjQSVgSSiKVTErZjIaigRJYKYl4BylYKh8JY\nwYYYAUmsyA4Iy0YmtgiUH6pYMcYuIZWMTYmUVMQUUiJhxSqDcELiWDaJCAcrhkrAMt7VY7WalfYx\n2/nj9t2+09Ovme6e6Tvz/VSpNNO3+/Zvz3Tfc+/v/n7nN+or/nHuv05dnZNg5XKio+vFmOSBf72u\nnIYduNdvilX5+1pWdBuV1fZm9esu7rVY0qD7W63y6hEGWVhoZSGb6nM7nUx1uuIeRrWwy4kTK9tU\nXV98kL9Ju/bqdzMzU3zXdxXbTp4s1nAv/zad6hXs2FEk1XKUeTkNrGzT9HSDQ4daCfbJJ+FFL2r1\nrMzNTfGtby1fYvScc1onQeedV9zjLkfO79xZJO/yivv48eKkoBylXl6RNyveHe4W10ES+GPAwxHx\nh7QmlDcy8xcHeO1ITWoJy3Fbr3vQk5Bc1tuoejE2i2Fi0G+KVb8pV6PS60purb1Z/bqLe111r2YW\nzFq/64P0JHR7j07L+47yb1Lcw15+D3zbtvYemd63rzqVh+1137/6b+52gjI9vXxabbWgTnuP3DPP\nFMViyhKyhw4VhWDKwitld3d1sZJi7EDx++JiUXe9LD5z4kSxQEs5qn3fvmJGR/n7WWcV9dCbMft/\n3WI7SAL/dvO/0sD9jBExTTFi/SKKvoh3Z+ajle3XA+8Eyu75azPz6932tx4H1XEny7Xu3+SyPkYV\n2/U66RqHurSzk1HdtljLyUuv161mf6P8rnf7HHZannOcMy7aq81Ba1GS6uIuVb3mdXfaXtqxo/i3\nlfe8FxaKaWXlYk7797duc/Q6SajOmZ+ebnVrQ5Goq/fZZ2eLpFteoe/aVQxiq560zM21nt9oFM+p\nrgu/a9fyQjDz88U65sDBFcFpGmQU+of6PaeHNwInM/OKZk31DwM/XNn+UuCazHxkiPcYuXEny7Xu\nv84H1q2oLiddoxqw2e/KbtxXeoNcXY/jxGocYx1GGZdOn8NRLiKzljYUNfQ59fvsbO8V1Nq71Hst\nULO0BKef3hqFvmNHcU+/3Ec5P73TWIzqftrf4/zzOVVOtlx8pUzQs7PFPfGyl2n37gbf+c7UskGO\n8/OtaWpzc8V7lzHYs2f56mblsrJzcw2AJ7rFtWsCj4hHMvPSiDjZYXMjM/v+uTPzsxFxb/PX81l5\nL/0y4MaIeAFwX2Z+tN8+uxn1qPFxH3An+YCu0Zn0v/Ook0+nZNHpSm8jb4etR/W3Sfu7r3ag3Djb\nUJZ3LX8/dGiK+fnGii7y9vZV9VqgplR+3paW4IknWtMjn3yyNQ+9fSxGNaG3v8e55zY466zWZ/mv\n/mrlIjTVlc/27m3NUtizp3isuurcRRc1Tg20O/vsor57tfJbGbNGg65DPqcaa/gWRcTOzOxaYL3D\n8+8ErgbenJl/UHn8g8DHKG7S/wfg45l5X49ddWzs4mKros3u3VtnnnjdTMKiFmqpTlsplWs1j8p6\nfzfX+/26xbA0rs/6MN+l9fi7l+8DK/d77Bh84xvLt19wwfKE296+cr42FH/X9u7t9vZXPwfT063R\n3+X+qyvAQfH6559vlWcd9D3an199j4MHW6PW9+4trrbLK/B9++BlL1u+/0cfbZVi3b8fXvKSU23s\nett6kHng/yUzL6/8Pg38CfC9/V5byswfj4gbgC9HxMWZ2Qwtv56ZzzT3ex9wKdArgXPgwPIBeUtL\ny8/WoKhwY5LobGFhbkUM18MkTqlaq42KYTdrPZh3+u6cODHaGRfdvpvjjGEZj3LRi3Fr/2w/++z6\nTEM988zTefbZw2vaf3ubR90b0q/K4eHDy6vXlV3J1deX3dG7dhX19qvTG7dvby1OMj/fuf3l+504\nUeyrev+6HBV/5pmnc/Dgsxw9WnR5Ly8z3CrP2u09yseOHCk+62USn54uHiu3Ly4Wo87L/R87Bn/9\n141T9dmXluBb35o6Ne3snHOKJVvL70o3vbrQHwKuav5c7UZfoqjK1ldEXAOcm5kfoVhD/CTNq+iI\nmAe+EhGXAEeAVwG3D7Jf1UtduhnraJgTozoPtOtlPf4N3UruQufu31GeFI3iuzTO8Rmd2lgtnbpj\nR2PFPepOXeCl9lKoR47A/Hz/LvRSOYiuOj0SiqS+tNSKQ/t7zMz0f4/yc7BjR7Fsa3lSsn9/scJa\n+fxt25YvIVqugFa+/tixYlt5f768H15dcrWTrgk8M18JEBG3ZuZP9d5NV/cAd0bEHwHbgeuAqyPi\n9My8LSI+ADxEMT3twcy8f7VvsFkPQlI/oziYb/Z67+PQawDYRheoWY31+lu019wvC7D0KjdbrV5X\n3qsuk1/7NLROOv2NqmMxqiVTodjXzp3LR41PT/d+j2IgXvEes7PFPPYyAZfzx8vPw86dxTzzsst9\nfr7osi9PKnbsKNo26GI4pUGmkb0/Iq6mqAYzBUwDF2TmTf1e2Owqf0uP7XcBdw3Y1q7qMtp3q9qs\nB/LNYj1HH9fdRq8bMOj+q2VE11unNlbrv09Pr1zvu1eMyivoQWcz9FvnoKwyVybo8m+4a1erOtxp\npxVTz7q9R/s6608/PcVzz7W6zMsTjvI+/MxMsQDK0aPFa7Zvb18hrVhYpXqPfJC/3SAJ/DPAbuBC\n4AvAlQzYhb6eNsPBYTPbbAfySVCXE6NJbNM4rdc01G4j+atXhvPzDRYWRt+GfvpVOTztNDh2bHXV\n68rEXcZ00Bi3F4opewDak/62bVOnBiBu29ZK6oO8R3kFX9ZKn5kp/isXL2k0ipK15f6PHZviqaeW\nT+u74IIG+/YtL9HbzyAJPIDvBm4F7gD+FfDbA7xOWmarHcjXgydG62vQk6b1mJLV7cq7emVYTtEa\nxZX4agdLdiuSUiT03mM31lINr/p49W/UXlWtVw/AoP+2HTuKk6My1nv3NpiZaS12sn170R3fvq7A\n8p6a1gIsZe316enVfZcHSeDfycxGRHwN+L7M/J3mvG1JE8DEvb7WctJU9ymUo5hFUh0nMMjYjWFi\nNUgPwNLS8l6M9hOzTsVkqn/HhYXlNfAPHGiNjN+/v3h+2WXe3iW/Z0+DmRk4eLD4/cwzO59kLS3B\n1BTT3eaCD5LAH42Ifwd8HPhURJwDdFlRWJI2v9Ukl/WcQtl+ZTiKq++6ziLp1QNQ/r/bc2DlbIKT\nJ1eugFadu96+DsDsLH275Msu9nLwW1Xlc7OPLuVUeybwiAjgQ8CLM/OrEfELwBuAv+n1OknSxiS/\n9ivDSVN2cQ+z6t1a33fQ57TXW4fl1dyOHl25gMrRo63XHz1adJFv29Z9/08+2SrF2mis3F/1c9PN\ntm4bIuJDwP8AEtgVETPAJcBbKeZzSxrSJKyNrc1nx47RJe8y4ZbqcPU9iF7fvenpshZ6MTL8+PHG\nqeQNRYKuvrYcxFaanYWpqdbrT55cOVL+qaeKgjaHDxc/r+U40OsK/O0UI8/PAX4JuAE4G/iRzHxg\n9W8lqWozVadTZ3WZKdDPOOrHl/vZiC75stLb1FQx1av9u9e+jjoUV9/loLNyUFqpnOpWVm4r54UP\nWmymXfvnppteCfyZzHwceDwiXg78LvC+zPR6QRpSXe8ravU2y0yBOrcdll/hPvlkUTa1WMyk+3ev\n+tj+/cvvgXd6frcu8077ra6RXi6GUlX53LQvAnZKrwRe7SY/CPxMZm7Q+kH1U/dRp5JGZ6OPA5N0\nPNqIXolqb9f0dGNZ2dSyO7z9irrTXPTZ2c4nYu29CsePT50qGFO+vtMV+8xMa1R6txOIXquRDTIK\nHeB5k/fg7BpVP5ula1WTbxKPR+vZK9He29WpNGunNgwyF72X2dnuCb807L+9VwJ/SUR8o/nzOZWf\noVgP/MXDvfXmZNeoBrVZulY1uSb5eLRRbZiehjPOKLrD9+6FnTt7L4Qy6D5Xc0I+qnEAvRL4Ravb\nlaTVmoQDqbSZ9eoOP/PM1hrcw9qIE/Jeq5F9c32asLnYNSppUozyeDRJ99FXa5BCLqMw7BX7amM8\n6D1wrYJdo5ImxSiOR2u5jz5pCX9S2lHqVB++WtxmkBibwMdk0j4skrauYY5Ha7mPPgkD5ybtBKKT\n9sps5ej49kpv3ZjAJUkjMwkD5zpdzY4ioa92H4M+vyzFWj6/09S2TkzgkqSu6jaup9PV7NLS8uVD\n19IjsNou7tX0QhSlW4uyqgB79gx2kmAClyT1tJr76Bud8Mur2dKRIzAzM3WqNvxaegRW28XdrRei\n1Ol1u3e3ljbdvXuwdpnAJUl9rSbhbeRA3nJhkTLZ7to1mvrt/aq39bO4SM9egNnZ1oIojkKXJG2Y\njSzUsn//8uVKgaF6BNpPCrpVb6s+v9oLUS2rWral2o619lqYwCVJm0qnHoBhegQ6nRT020+1DQDH\njq2+zf2YwCVJm057Ehy2R2AtCbb6vEGusEdZSlWSJDUNcxIwyAmAldgkSZpAoy5+s63/UyRJ0riU\n086Wlpb/3I9X4JIkbbAjR5aPct+7t0jmU1NMNxp0TOdegUuSNGGOHIGnn54C2NftOV6BS5I0AsPU\nW68WcgF47rkpa6FrdOqwuo8kbYRhVmBrL+SyfXurdnsvJnANZBKWB5SkSTSKFdhWrg/eWLbPTsaa\nwCNiGrgNuAhoAO/OzEcr298EfBA4AdyRmZ8YZ3u0NpOwPKAkTZpBRoqvRvWYWknoT3V7/rgHsb0R\nOJmZVwA/D3y43BAR24FbgFcDVwHvioizxtweSZKGtrhYDDJ7+ukpnn9+ednUUV3gTE9DtxHoMOYE\nnpmfBa5t/no+y88kLgYey8xDmXkceBi4cpzt0dqU92dKXn1L2so690rC3r0N9u5dv1uMY78HnplL\nEXEncDXw5sqmPcChyu+Hgflxt0dr06kMoIPaJKllvY+F6zKILTN/PCJuAL4cERdn5nMUyXuu8rQ5\nevT1lxYW5vo9RX2MIoaLi/Dcc8XPu3ez5Qa1+TkcnjEcnjEc3lpjODe38cfAcQ9iuwY4NzM/AjwH\nnKQYzAbwNeDCiNgHLFJ0n/9Kv30eOHB4TK3dGhYW5oaO4dLSqQIDp+zdu3W61UcRw63OGA7PGA5v\n2BiWvZBHjhT/jUOvE4xxD2K7B/j+iPgj4H7gOuDqiPjJ5n3vnwYeAP4YuD0zHx9zeyRJGonp6Y29\nhTjWK/BmV/lbemy/F7h3nG3Q6LUXHXBQmyStPwu5aE3Wsri9JGl0TOBaMxO3JG0cVyOTJKmGTOCS\nJNWQCVySpBoygUuSVEMmcEmSasgELklSDZnAJUmqIRO4JEk1ZAKXJIlicZJygZI6sBKbJGnLW1xk\n2foOdVgi2StwSdKWtrTUSt5Q/FyHK3ETuCRJNWQClyRtaeUSyaW6LJHsPXBJ0pZXxyWSTeCSJFGf\nxF2yC12SpBoygUuSVEMmcEmSasgELklSDZnAJUmqIRO4JEk1ZAKXJKmGTOCSJNWQCVySpBoygUuS\nVEMmcEmSasgELklSDZnAJUmqobGtRhYR24E7gPOAncDNmfm5yvbrgXcCB5oPXZuZXx9XeyRJ2kzG\nuZzo24ADmXlNROwD/gz4XGX7S4FrMvORMbZBkqRNaZwJ/G7gnubP24ATbdsvA26MiBcA92XmR8fY\nFkmSNpWx3QPPzMXMfDYi5iiS+c+1PeUu4FrgVcAVEfGGcbVFkqTNZqrRaIxt5xHxQuAzwMcy8862\nbXsy85nmz+8BzsjMm/vscnyNlSRp8kx12zDOQWxnA58H3puZD7Vtmwe+EhGXAEcorsJvH2S/Bw4c\nHnVTt5SFhTljOCRjODxjODxjOLw6xHBhYa7rtnHeA78RmAduioibmo/dBpyWmbdFxAeAh4CjwIOZ\nef8Y2yJJ0qYytgSemdcB1/XYfhfFfXBJkrRKFnKRJKmGTOCSJNWQCVySpBoygUuSVEMmcEmSasgE\nLklSDZnAJUmqIRO4JEk1ZAKXJKmGTOCSJNWQCVySpBoygUuSVEMmcEmSasgELklSDZnAJUmqIRO4\nJEk1ZAKXJKmGTOCSJNWQCVySpBoygUuSVEMmcEmSasgELklSDZnAJUmqIRO4JEk1ZAKXJKmGTOCS\nJNWQCVySpBoygUuSVEMmcEmSasgELklSDZnAJUmqoZlx7jwitgN3AOcBO4GbM/Nzle1vAj4InADu\nyMxPjLM9kiRtFuO+An8bcCAzrwReB/xGuaGZ3G8BXg1cBbwrIs4ac3skSdoUxp3A7wZuqrzXicq2\ni4HHMvNQZh4HHgauHHN7JEnaFMbahZ6ZiwARMUeRzH+usnkPcKjy+2Fgvt8+FxbmRtnELckYDs8Y\nDs8YDs8YDq/OMRxrAgeIiBcCnwE+lpmfrmw6BFQjNwc81W9/Bw4cHm0Dt5iFhTljOCRjODxjODxj\nOLw6xLDXCca4B7GdDXweeG9mPtS2+WvAhRGxD1ik6D7/lXG2R5KkzWLcV+A3UnSL3xQR5b3w24DT\nMvO2iPhp4AGK++O3Z+bjY26PJEmbwrjvgV8HXNdj+73AveNsgyRJm5GFXCRJqiETuCRJNWQClySp\nhkzgkiTVkAlckqQaMoFLklRDJnBJkmrIBC5JUg2ZwCVJqiETuCRJNWQClySphkzgkiTVkAlckqQa\nMoFLklRDJnBJkmrIBC5JUg2ZwCVJqiETuCRJNWQClySphkzgkiTVkAlckqQaMoFLklRDJnBJkmrI\nBC5JUg2ZwCVJqiETuCRJNWQClySphkzgkiTVkAlckqQaMoFLklRDM+N+g4j4u8BHM/OVbY9fD7wT\nONB86NrM/Pq42yNJ0mYw1gQeEe8Hfgx4tsPmlwLXZOYj42yDJEmb0bi70B8D/hEw1WHbZcCNEfHF\niPjAmNshSdKmMtYEnpmfAU502XwXcC3wKuCKiHjDONsiSdJmMvZ74D38emY+AxAR9wGXAvf1ec3U\nwsLc2Bu22RnD4RnD4RnD4RnD4dU5hhuSwCNiHvhKRFwCHKG4Cr99I9oiSVIdrVcCbwBExFuB0zPz\ntuZ974eAo8CDmXn/OrVFkqTam2o0GhvdBkmStEoWcpEkqYZM4JIk1ZAJXJKkGjKBS5JUQxs5D/yU\nar30iPg7wG9RFID5C+DdmXksIn4SeFfz8Zsz876I2A38HrAAHAbenpkHN+ZfsbEGjOH1wFuaL/mP\nmfmLxnC5QeLYfN42iroFv5+Zv20cWwb8LL4euKn5kv+emT9lDFsGjOF7gHdQzPL5N5n5+8awEBHb\ngTuA84CdwM3A/wbuBE4C/wv4Z5nZqHNu2fAr8Ga99NsoggzwCeD6zPwB4NvAeyPiBcC/AP4e8Frg\nIxGxA3gP8OeZeSXwSeDn17v9k2DAGF4A/ChweWa+AnhNRHwvxvCUQeJYefrNwF6aUyQxjsDAn8U5\n4JeBN2Tm5cC3I2IBYwgMHMPTgPcBlwOvAf5t87nGsPA24EAzDq8DPgb8GnBj87Ep4Ifqnls2PIGz\nsl76uZn5X5s//zFwFfBy4EuZebxZve0x4PuAvw+U88fvB35w3Vo9WQaJ4f8FXpeZZcL+GK1DAAAE\nAklEQVTZDjyPMawaJI5ExJuBJVpxA+NYGiSGlwP/E7glIr4APJ6ZBzCGpUFiWH6PTwfmKD6PYAxL\nd9Pq4dkGHAdemplfaD72nyhiU+vcsuEJvEO99L+MiCubP78JOA3YAxyqPOcwMN98/Jm2x7acQWKY\nmUuZ+URETEXErwJ/mpl/wfLYbtkYwmBxjIjvAd5KcXCYonWQNY4M/H0+E3gl8H7g9cC/jIgLMYbA\nQDGczcwjwKeBrwJ/Atza3G4MgcxczMxnm709d1NcQVfzXTWH1Da3bHgC7+AngJ+NiAeB7wAHKQJZ\nLVg7Bzzd9nj5mDrHkIjYBXyK4iBadgc/Q/FhBWPYrlMcrwH+FvCHwNuB6yPitRjHbjrF8AmK+95/\nk5mLwBeA78cYdtMewyci4nLgFcD5wIuAqyPi5RjDUyLihRTf009m5l0U975Le1iZQ6BmuWUSE/gb\ngbdl5g8CZwAPAP8N+IGI2Nmso34xxSCELwH/sPm611McCNQhhhExBXwW+LPMfE+lK90Ydrcijpl5\nQ2a+IjNfSTEg5pbMfADj2E2n7/OfAt8TEWdExAxFInoUY9hNpxieDjyXmccy8yhFgtmLMQQgIs4G\nPg+8PzPvbD78SERc1fy5jE2tc8tEjEJvKhPK14EHI+IoRXA/2RwpeCvwRYqTjhsz82hEfBz4nYj4\nIkVN9R/diIZPkG4x/F3gh4Erge3NEcAAHwCM4UpdP4s9XmMcl+v3ff5ZikQE8O8z86sR8Q2MYVW/\nGL46Ir5Mcf/7i5n5BxHxMMYQ4EaKbu+bIqK8F34dcGtzkNpXgXvqnlushS5JUg1NYhe6JEnqwwQu\nSVINmcAlSaohE7gkSTVkApckqYZM4JIk1ZAJXNqiIuI3IuLutsdeExH/p7lYhqQJZgKXtq4bgMsi\n4o0AzaT9m8BPNEucSppgFnKRtrCI+AcU6yZfDPxS8+FPA7cAsxS1y6/NzG82y1De3Hx8H0WZynsi\n4k6KEp9/G3hfZt63vv8KaWvyClzawjLzP1OUNL2TYsnEf02x/vRbM/MyikR+W/Pp/xx4Z/Pxf0pr\nuUYo1l6+xOQtrZ9JqoUuaWP8DMV68T9EsbLVi4HPRUS5vVyV6ceAN0XEP6ZYgKS8T94AvrxurZUE\neAUubXmZeZhiNatvAtPAX2bmpZl5KXAZxSI4AA8DL6NYf/rDLD9+PL9uDZYEmMAlLfc1YH9EXNH8\n/R3ApyJiH3Ah8AuZeT/wWopkDzC1/s2UZAKXdEpzbekfAX4tIv4c+CfAOzLzKYp7449GxJeAZ4Gd\nETFL0YXuaFhpnTkKXZKkGvIKXJKkGjKBS5JUQyZwSZJqyAQuSVINmcAlSaohE7gkSTVkApckqYb+\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": "iVBORw0KGgoAAAANSUhEUgAAAfwAAAFVCAYAAAAKQV01AAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzt3X9sVfXh//HXbW+vxXPvFevK3L5hZRLaYNglu2nNAFsw\nEVO/4u+p6QVqBBWa4a8G0kpBKIh089ORZSg6o/ujmkrnOjMz5qJEvJklNqQBFKTLpxE3xa8rVPGe\nI7239J7vHxtXWmt7JPYHvp+PhOSe9z333vN+5dDXuae35/pc13UFAAC+07LGewMAAMDoo/ABADAA\nhQ8AgAEofAAADEDhAwBgAAofAAADeCr8EydOaP78+Xr//ff1wQcfqKKiQosXL9bGjRt15q/6Wlpa\ndOutt+qOO+7Qnj17JEm9vb267777tHjxYt17773q6ekZtYkAAICvN2Lh9/X16ZFHHtGkSZPkuq62\nbt2q6upqvfDCC3JdV7t371Z3d7eampr04osv6tlnn1VjY6NSqZSam5tVVFSkF154QTfddJN27Ngx\nFnMCAACDjFj4v/rVr1RRUaH8/HxJ0uHDh1VSUiJJKisrU1tbm9555x1Fo1Hl5OQoGAyqoKBAnZ2d\n6ujoUFlZmSSptLRUe/fuHcWpAACArzNs4be2tiovL09XXnmlJMl1XZ19YT7LspRIJGTbtkKh0IBx\n27Zl27YsyxqwLgAAGHv+4e5sbW2Vz+dTW1ubjhw5otraWn366aeZ+23bVjgcVjAYlOM4mXHHcRQK\nhQaMO46jcDg84ga5riufz3eu8wEAAEMYtvCff/75zO2lS5eqvr5ev/rVr9Te3q4rrrhC8Xhcc+bM\nUSQS0bZt25RKpZRMJtXV1aXCwkJFo1HF43FFIhHF43EVFxePuEE+n0/d3ZwJGEl+foicPCIrb8jJ\nO7Lyhpy8yc8PjbzSt2DYwh/M5/OptrZW69evV19fn6ZPn67y8nL5fD5VVlYqFospnU6rurpagUBA\nFRUVqqmpUSwWUyAQUGNj42jNAwAADMM3Eb8tjyPCkXHk7B1ZeUNO3pGVN+TkzVi9w+fCOwAAGIDC\nBwDAABQ+AAAGoPABADDAN/qU/lj47e9fUX/6y836P5cEtGDeFeO4RQAAnP8mXOHnhqZIWbmZZV/W\nyXHcGgAAvhs4pQ8AgAEofAAADEDhAwBgAAofAAADUPgAABiAwgcAwAAUPgAABqDwAQAwAIUPAIAB\nKHwAAAxA4QMAYAAKHwAAA1D4AAAYgMIHAMAAFD4AAAag8AEAMACFDwCAASh8AAAMQOEDAGAACh8A\nAANQ+AAAGIDCBwDAABQ+AAAGoPABADAAhQ8AgAH8I63Q39+vdevW6ejRo/L5fKqvr1dfX59WrFih\nadOmSZJisZiuvfZatbS0aOfOnfL7/aqqqtKCBQvU29urNWvWqKenR5ZlqaGhQXl5eaM9LwAAcJYR\nC/+NN95QVlaWmpub1d7erm3btumqq67SsmXLdNddd2XW6+7uVlNTk1pbW5VMJlVRUaG5c+equblZ\nRUVFWrVqlXbt2qUdO3aorq5uVCcFAAAGGrHwr776al111VWSpI8++kjhcFiHDh3S+++/r927d6ug\noEBr167VwYMHFY1GlZOTo5ycHBUUFKizs1MdHR265557JEmlpaV68sknR3dGAADgK0YsfEnKzs5W\nbW2tXn/9df3mN7/RJ598ottvv12XX365nnrqKW3fvl0zZ85UKBTKPMayLNm2Ldu2ZVlWZiyRSIz4\nepZ1QeZ2OHeS8vNDw6xtLnLxjqy8ISfvyMobcpo4PBW+JDU0NOj48eO6/fbb1dzcrO9///uSpIUL\nF2rz5s0qKSmR4ziZ9R3HUSgUUjAYzIw7jqNwODziazlOMnM7kDyl7u6RDxJMk58fIhePyMobcvKO\nrLwhJ2/G6qBoxE/pv/zyy3r66aclSbm5ufL5fLrvvvt08OBBSVJbW5tmzZqlSCSiffv2KZVKKZFI\nqKurS4WFhYpGo4rH45KkeDyu4uLiUZwOAAAYyojv8MvLy1VbW6slS5bo9OnTqqur0w9/+EPV19fL\n7/drypQp2rRpkyzLUmVlpWKxmNLptKqrqxUIBFRRUaGamhrFYjEFAgE1NjaOxbwAAMBZfK7ruuO9\nEWd75qW3pazczPLF/pOaP+en47hFExOnyrwjK2/IyTuy8oacvJkwp/QBAMD5j8IHAMAAFD4AAAag\n8AEAMACFDwCAASh8AAAMQOEDAGAACh8AAANQ+AAAGIDCBwDAABQ+AAAGoPABADAAhQ8AgAEofAAA\nDEDhAwBgAAofAAADUPgAABiAwgcAwAAUPgAABqDwAQAwAIUPAIABKHwAAAxA4QMAYAAKHwAAA1D4\nAAAYgMIHAMAAFD4AAAag8AEAMACFDwCAASh8AAAM4B9phf7+fq1bt05Hjx6Vz+dTfX29AoGAamtr\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\nkwIAAAMNe0q/vLxc999/vyQpnU7L7/fr0KFD2rNnj5YsWaK6ujo5jqODBw8qGo0qJydHwWBQBQUF\n6uzsVEdHh8rKyiRJpaWl2rt37+jPCAAAfMWw7/AvvPBCSZJt23rggQf00EMPKZlM6vbbb9fll1+u\np556Stu3b9fMmTMVCoUyj7MsS7Zty7ZtWZaVGUskEqM4FQAA8HWGLXxJ+vjjj7Vq1SotXrxY1113\nnRKJRKbcFy5cqM2bN6ukpESO42Qe4ziOQqGQgsFgZtxxHIXDYU8bZVkXZG6HcycpPz80zNrmIhfv\nyMobcvKOrLwhp4lj2MI/fvy4li1bpg0bNuhnP/uZJOnuu+9WXV2dIpGI2traNGvWLEUiEW3btk2p\nVErJZFJdXV0qLCxUNBpVPB5XJBJRPB5XcXGxp41ynGTmdiB5St3dnBkYLD8/RC4ekZU35OQdWXlD\nTt6M1UHRsIX/1FNPKZFI6IknntATTzwhSVq7dq22bt0qv9+vKVOmaNOmTbIsS5WVlYrFYkqn06qu\nrlYgEFBFRYVqamoUi8UUCATU2Ng4JpMCAAAD+VzXdcd7I872zEtvS1m5meWL/Sc1f85Px3GLJiaO\nnL0jK2/IyTuy8oacvBmrd/hceAcAAANQ+AAAGIDCBwDAABQ+AAAGoPABADAAhQ8AgAEofAAADEDh\nAwBgAAofAAADUPgAABiAwgcAwAAUPgAABqDwAQAwAIUPAIABKHwAAAxA4QMAYAAKHwAAA1D4AAAY\ngMIHAMAAFD4AAAag8AEAMACFDwCAASh8AAAMQOEDAGAACh8AAANQ+AAAGIDCBwDAABQ+AAAGoPAB\nADAAhQ8AgAEofAAADOAf7s6+vj6tXbtWx44dUyqVUlVVlaZPn67a2lplZWVpxowZ2rBhg3w+n1pa\nWrRz5075/X5VVVVpwYIF6u3t1Zo1a9TT0yPLstTQ0KC8vLyxmhsAAPivYQv/lVdeUV5enh5//HGd\nPHlSN954o2bOnKnq6mqVlJRow4YN2r17t2bPnq2mpia1trYqmUyqoqJCc+fOVXNzs4qKirRq1Srt\n2rVLO3bsUF1d3VjNDQAA/Newp/TLy8t1//33S5LS6bT8fr8OHz6skpISSVJZWZna2tr0zjvvKBqN\nKicnR8FgUAUFBers7FRHR4fKysokSaWlpdq7d+8oTwcAAAxl2Hf4F154oSTJtm098MADevDBB/XL\nX/4yc79lWUokErJtW6FQaMC4bduybVuWZQ1Y1wvLuiBzO5w7Sfn5oWHWNhe5eEdW3pCTd2TlDTlN\nHMMWviR9/PHHWrVqlRYvXqxFixbp8ccfz9xn27bC4bCCwaAcx8mMO46jUCg0YNxxHIXDYU8b5TjJ\nzO1A8pS6u70dKJgkPz9ELh6RlTfk5B1ZeUNO3ozVQdGwp/SPHz+uZcuWac2aNbrlllskSTNnzlR7\ne7skKR6Pq7i4WJFIRPv27VMqlVIikVBXV5cKCwsVjUYVj8cHrAsAAMbesO/wn3rqKSUSCT3xxBN6\n4oknJEl1dXXasmWL+vr6NH36dJWXl8vn86myslKxWEzpdFrV1dUKBAKqqKhQTU2NYrGYAoGAGhsb\nx2RSAABgIJ/ruu54b8TZnnnpbSkrN7N8sf+k5s/56Thu0cTEqTLvyMobcvKOrLwhJ28mxCl9AADw\n3UDhAwBgAAofAAADUPgAABiAwgcAwAAUPgAABqDwAQAwAIUPAIABKHwAAAxA4QMAYAAKHwAAA1D4\nAAAYgMIHAMAAFD4AAAag8AEAMACFDwCAASh8AAAMQOEDAGAACh8AAANQ+AAAGIDCBwDAABQ+AAAG\noPABADAAhQ8AgAEofAAADEDhAwBgAAofAAADUPgAABiAwgcAwAAUPgAABvBU+AcOHNDSpUslSYcP\nH1ZZWZmWLl2qpUuX6q9//askqaWlRbfeeqvuuOMO7dmzR5LU29ur++67T4sXL9a9996rnp6e0ZkF\nAAAYln+kFZ555hn9+c9/lmVZkqRDhw7prrvu0l133ZVZp7u7W01NTWptbVUymVRFRYXmzp2r5uZm\nFRUVadWqVdq1a5d27Nihurq60ZsNAAAY0ojv8AsKCrR9+3a5ritJevfdd7Vnzx4tWbJEdXV1chxH\nBw8eVDQaVU5OjoLBoAoKCtTZ2amOjg6VlZVJkkpLS7V3797RnQ0AABjSiIV/zTXXKDs7O7M8e/Zs\n1dTU6Pnnn9fUqVO1fft2OY6jUCiUWceyLNm2Ldu2M2cGLMtSIpEYhSkAAICRjHhKf7CFCxdmyn3h\nwoXavHmzSkpK5DhOZp0zBwDBYDAz7jiOwuGwp9ewrAsyt8O5k5SfHxpmbXORi3dk5Q05eUdW3pDT\nxPGNC//uu+9WXV2dIpGI2traNGvWLEUiEW3btk2pVErJZFJdXV0qLCxUNBpVPB5XJBJRPB5XcXGx\np9dwnGTmdiB5St3dnBkYLD8/RC4ekZU35OQdWXlDTt6M1UGR58L3+XySpPr6etXX18vv92vKlCna\ntGmTLMtSZWWlYrGY0um0qqurFQgEVFFRoZqaGsViMQUCATU2No7aRAAAwNfzuWc+jTdBPPPS21JW\nbmb5Yv9JzZ/z03HcoomJI2fvyMobcvKOrLwhJ2/G6h0+F94BAMAAFD4AAAag8AEAMACFDwCAASh8\nAAAMQOEDAGAACh8AAANQ+AAAGIDCBwDAABQ+AAAGoPABADAAhQ8AgAEofAAADEDhAwBgAAofAAAD\nUPgAABiAwgcAwAAUPgAABqDwAQAwAIUPAIABKHwAAAxA4QMAYAAKHwAAA1D4AAAYgMIHAMAAFD4A\nAAag8AEAMACFDwCAASh8AAAMQOEDAGAAT4V/4MABLV26VJL0wQcfqKKiQosXL9bGjRvluq4kqaWl\nRbfeeqvuuOMO7dmzR5LU29ur++67T4sXL9a9996rnp6e0ZkFAAAY1oiF/8wzz2jdunXq6+uTJG3d\nulXV1dV64YUX5Lqudu/ere7ubjU1NenFF1/Us88+q8bGRqVSKTU3N6uoqEgvvPCCbrrpJu3YsWPU\nJwQAAL5qxMIvKCjQ9u3bM+/kDx8+rJKSEklSWVmZ2tra9M477ygajSonJ0fBYFAFBQXq7OxUR0eH\nysrKJEmlpaXau3fvN9q4dH+/Ep+fVE/PiQH/+vv7v+k8AQAwmn+kFa655hp9+OGHmeUzxS9JlmUp\nkUjItm2FQqEB47Zty7ZtWZY1YN1v4osvEjrwv8f1Wf8HX47Zn+vnV/9EeXmXfKPnAgDAZCMW/mBZ\nWV+eFLBtW+FwWMFgUI7jZMYdx1EoFBow7jiOwuGwp9ewrAskSen+gC6afJG+f+n3M/clPg/oe98L\n6ZJLQl/3cGPk55OBV2TlDTl5R1bekNPE8Y0Lf+bMmWpvb9cVV1yheDyuOXPmKBKJaNu2bUqlUkom\nk+rq6lJhYaGi0aji8bgikYji8biKi4s9vYbjJCVJX3yRUjLVn1k+M3b8eELpdOCbbvp3Sn5+SN3d\n3+yMianIyhty8o6svCEnb8bqoMhz4ft8PklSbW2t1q9fr76+Pk2fPl3l5eXy+XyqrKxULBZTOp1W\ndXW1AoGAKioqVFNTo1gspkAgoMbGxlGbCAAA+Ho+9+xfyk8Az7z0tpSVK0myE5/pX8f+rZlFhZn7\n7cRn+r8/KzD+d/gcOXtHVt6Qk3dk5Q05eTNW7/C58A4AAAag8AEAMACFDwCAASh8AAAMQOEDAGAA\nCh8AAANQ+AAAGIDCBwDAABQ+AAAGoPABADAAhQ8AgAEofAAADEDhAwBgAAofAAADUPgAABiAwgcA\nwAAUPgAABqDwAQAwAIUPAIABKHwAAAxA4QMAYAAKHwAAA1D4AAAYgMIHAMAAFD4AAAag8AEAMACF\nDwCAASh8AAAMQOEDAGAACh8AAANQ+AAAGMB/rg+8+eabFQwGJUlTp07VihUrVFtbq6ysLM2YMUMb\nNmyQz+dTS0uLdu7cKb/fr6qqKi1YsODb2nYAAODRORV+MpmUJDU1NWXGVq5cqerqapWUlGjDhg3a\nvXu3Zs+eraamJrW2tiqZTKqiokJz585VIBD4drYeAAB4ck6Ff+TIEZ06dUrLly/X6dOn9dBDD+nw\n4cMqKSmRJJWVlemtt95SVlaWotGocnJylJOTo4KCAnV2duonP/nJtzoJAAAwvHMq/EmTJmn58uW6\n7bbbdPToUd19990D7rcsS4lEQrZtKxQKDRi3bXvE57esCyRJ6f6ALghkZ5bPjH3veyFdckno6x5u\njPx8MvCKrLwhJ+/IyhtymjjOqfCnTZumgoKCzO3Jkyfrvffey9xv27bC4bCCwaAcx8mMO46jcDg8\n4vM7zn9+ZfDFFyklU/2Z5TNjx48nlE6b/WuB/PyQursT470Z5wWy8oacvCMrb8jJm7E6KDqnT+m3\ntraqoaFBkvTJJ5/IcRzNmzdP7e3tkqR4PK7i4mJFIhHt27dPqVRKiURCXV1dmjFjxre39QAAwJNz\neof/85//XA8//LAWL14sSdq6dasmT56s9evXq6+vT9OnT1d5ebl8Pp8qKysVi8WUTqdVXV3NB/YA\nABgH51T4fr9fjz/++FfGz/7U/hm33XabbrvttnN5GQAA8C3hwjsAABiAwgcAwAAUPgAABqDwAQAw\nwDlfS3+8pNP9+vTTTweMXXTRZGVnZ4/TFgEAMPGdd4V/6gtbf3nrhPK+N0WS9IX9uX5+9U+Ul3fJ\nOG8ZAAAT13lX+JJ0oRVWMDR5vDcDAIDzBr/DBwDAABQ+AAAGoPABADAAhQ8AgAEofAAADEDhAwBg\nAAofAAADUPgAABiAwgcAwAAUPgAABjgvL617tqG+TEfiC3UAADjbeV/4g79MR+ILdQAAGOy8L3yJ\nL9MBAGAk/A4fAAADUPgAABiAwgcAwAAUPgAABvhOfGhvsKH+VI8/0wMAmOw7WfiD/1SPP9MDAJju\nO1n4En+qBwDA2b6zhX82TvEDAExnROFzih8AYDojCl8aeIqf6+8DAEwz6oWfTqe1ceNG/eMf/1BO\nTo62bNmiH/3oR6P9ssMa6vr79uefamFJgS6++OLMGAcAAIDvilEv/Ndff119fX168cUXdeDAATU0\nNOjJJ58c7Zcd0eAP9Tn2Sf3lrf/NHAQMdQDQ398vyafs7KwhlyUOEgAAE9OoF35HR4dKS0slSbNn\nz9a777472i95zs4+CBh8ACBJx//fh8ryBzJjg5fP9SDh2ziQ6O/v18mTn31lbLjnGeox57IOvBsq\nT7IEMBZGvfBt21YwGMwsZ2dnK51OKytr6Iv89drdSvf/54ffKftz9Tq27MSXPyBP2Qll+ZOyE7lD\nLntZx/tjAt9orr1fOHrptf2afPGXHwY80f2xsv2BzNjgZS/rnPrC1vVlMwccSGRlpdTTk8gsf/rp\np3ol/p4mXRj82ucd/DxDPeZc1pnoBmc1ngbnOZGynEg5TXRk5Q05DTTeHxT3ua7rjuYLNDQ0aPbs\n2br22mslSfPnz9ebb745mi8JAAAGGfVr6UejUcXjcUnS/v37VVRUNNovCQAABhn1d/iu62rjxo3q\n7OyUJG3dulU//vGPR/MlAQDAIKNe+AAAYPzx9bgAABiAwgcAwAAUPgAABqDwAQAwwIT58pyJeM39\n0XbzzTdnLko0depUrVixQrW1tcrKytKMGTO0YcMG+Xw+tbS0aOfOnfL7/aqqqtKCBQvU29urNWvW\nqKenR5ZlqaGhQXl5edq/f78ee+wxZWdna968eVq1apUkafv27XrzzTeVnZ2ttWvXKhKJjOfUPTlw\n4ID+53/+R01NTfrggw/GNJuenh6tXr1ayWRSU6ZM0datW5WbmzvCFo+Ps3M6fPiwVq5cqYKCAklS\nLBbTtddea3xOfX19Wrt2rY4dO6ZUKqWqqipNnz6dfWoIQ2V16aWXasWKFZo2bZok9ivpP1fNXLdu\nnY4ePSqfz6f6+noFAoGJvU+5E8Tf/vY3t7a21nVd192/f79bVVU1zls0unp7e92bbrppwNiKFSvc\n9vZ213Vd95FHHnFfe+0199///re7aNEiN5VKuYlEwl20aJGbTCbd5557zv3tb3/ruq7r/uUvf3Ef\nffRR13Vd94YbbnD/+c9/uq7ruvfcc497+PBh991333UrKytd13XdY8eOubfeeutYTfOc/e53v3MX\nLVrk3nHHHa7rjn02mzdvdv/0pz+5ruu6Tz/9tPv73/9+zOb+TQzOqaWlxX3uuecGrENOrvvHP/7R\nfeyxx1zXdd3PPvvMnT9/vrty5Ur2qSEMlRX71Ve99tpr7tq1a13Xdd23337bXbly5YTfpybMKf3z\n6Zr734YjR47o1KlTWr58ue68807t379fhw8fVklJiSSprKxMbW1teueddxSNRpWTk6NgMKiCggJ1\ndnaqo6NDZWVlkqTS0lLt3btXtm2rr69PU6dOlSRdeeWVamtrU0dHh+bNmydJ+sEPfqD+/qG/Hngi\nKSgo0Pbt2+X+969GxzKbnp6eAftjWVmZ9u7dO9YReDI4p3fffVd79uzRkiVLVFdXJ8dxdPDgQeNz\nKi8v1/333y/pP2cT/X4/+9TXGCqrQ4cOsV8NcvXVV2vTpk2SpI8++kgXXXSRDh06NKH3qQlT+F93\nzf3vqkmTJmn58uV69tlnVV9fr9WrVw+437IsJRIJ2batUCg0YNy2bdm2LcuyBqzrOM6ADEd6jons\nmmuuGfCFMu5Zl4sYi2zOHj+z7kQ0OKfZs2erpqZGzz//vKZOnart27fLcRzjc7rwwgsz2/zAAw/o\nwQcfHPDzhX3qS4OzeuihhxSJRNivhpCdna3a2lpt2bJF119//YT/OTVhCj8YDMpxnMzycF+w810w\nbdo03XDDDZnbkydP1okTJzL327atcDj8lVzO/Cc7e9xxHIXDYVmWNWDdkZ7jfHL2vjAW2QSDwcxB\n0ZnnOB8sXLhQl19+eeb2e++9R07/9fHHH+vOO+/UTTfdpEWLFrFPDePsrK677jr2q2E0NDTo1Vdf\n1bp165RKpTLjE3GfmjCNato191tbW9XQ0CBJ+uSTT+Q4jubNm6f29nZJUjweV3FxsSKRiPbt26dU\nKqVEIqGuri4VFhYOyOvMusFgUDk5OfrXv/4l13X11ltvqbi4WNFoVH//+9/luq6OHTumdDqtyZMn\nj9vcz8XMmTPHJBvXdXXxxRcrGo1mvuTpzHOcD+6++24dPHhQktTW1qZZs2aRk6Tjx49r2bJlWrNm\njW655RZJ7FNfZ6is2K++6uWXX9bTTz8tScrNzVVWVpZmzZo1ofepCXNpXdewa+6fPn1aDz/8sI4d\nOyZJWrNmjSZPnqz169err69P06dP16OPPiqfz6c//OEP2rlzp9LptKqqqrRw4UL19vaqpqZG3d3d\nCgQCamzxGKhQAAAA4ElEQVRs1CWXXKIDBw7oscceU39/v6688ko9+OCDkv7zCc94PK50Oq21a9cq\nGo2O5/Q9+fDDD7V69Wq9+OKLOnr06Jhmc+LECdXU1MhxHOXl5amxsXHCfUr4jLNzOnLkiOrr6+X3\n+zVlyhRt2rRJlmUZn9Ojjz6qV199dcDPlLq6Om3ZsoV9apChslq9erUaGhrYr87S29ur2tpaHT9+\nXKdPn9a9996ryy67bEL/nJowhQ8AAEbPhDmlDwAARg+FDwCAASh8AAAMQOEDAGAACh8AAANQ+AAA\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 0000000..e473cf4 Binary files /dev/null and b/branches.png differ diff --git a/cs109gitflow1.png b/cs109gitflow1.png new file mode 100644 index 0000000..b549370 Binary files /dev/null and b/cs109gitflow1.png differ diff --git a/cs109gitflow2.png b/cs109gitflow2.png new file mode 100644 index 0000000..7097bf6 Binary files /dev/null and b/cs109gitflow2.png differ diff --git a/cs109gitflow3.png b/cs109gitflow3.png new file mode 100644 index 0000000..d6ba21a Binary files /dev/null and b/cs109gitflow3.png differ 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 0000000..8a2e414
Binary files /dev/null and b/git_add.png differ
diff --git a/git_branch.png b/git_branch.png
new file mode 100644
index 0000000..789083d
Binary files /dev/null and b/git_branch.png differ
diff --git a/git_checkout.png b/git_checkout.png
new file mode 100644
index 0000000..170deac
Binary files /dev/null and b/git_checkout.png differ
diff --git a/git_clone.png b/git_clone.png
new file mode 100644
index 0000000..26324b4
Binary files /dev/null and b/git_clone.png differ
diff --git a/git_commit.png b/git_commit.png
new file mode 100644
index 0000000..8d2bad0
Binary files /dev/null and b/git_commit.png differ
diff --git a/git_fetch.png b/git_fetch.png
new file mode 100644
index 0000000..36e1b0e
Binary files /dev/null and b/git_fetch.png differ
diff --git a/git_layout.png b/git_layout.png
new file mode 100644
index 0000000..aeecfc1
Binary files /dev/null and b/git_layout.png differ
diff --git a/git_merge.png b/git_merge.png
new file mode 100644
index 0000000..800cfd3
Binary files /dev/null and b/git_merge.png differ
diff --git a/git_push.png b/git_push.png
new file mode 100644
index 0000000..059465d
Binary files /dev/null and b/git_push.png differ
diff --git a/git_status.png b/git_status.png
new file mode 100644
index 0000000..fef2a66
Binary files /dev/null and b/git_status.png differ
diff --git a/github-forking.png b/github-forking.png
new file mode 100644
index 0000000..f745fdb
Binary files /dev/null and b/github-forking.png differ
diff --git a/github-forking2.png b/github-forking2.png
new file mode 100644
index 0000000..b66a8bd
Binary files /dev/null and b/github-forking2.png differ
diff --git a/github-forking3.png b/github-forking3.png
new file mode 100644
index 0000000..0c6b05e
Binary files /dev/null and b/github-forking3.png differ
diff --git a/github_branch.png b/github_branch.png
new file mode 100644
index 0000000..3375747
Binary files /dev/null and b/github_branch.png differ
diff --git a/github_collaborators.png b/github_collaborators.png
new file mode 100644
index 0000000..4e4069b
Binary files /dev/null and b/github_collaborators.png differ
diff --git a/github_new.png b/github_new.png
new file mode 100644
index 0000000..504a5ca
Binary files /dev/null and b/github_new.png differ
diff --git a/github_ssh.png b/github_ssh.png
new file mode 100644
index 0000000..9bd340b
Binary files /dev/null and b/github_ssh.png differ
diff --git a/hamlet.txt b/hamlet.txt
new file mode 100644
index 0000000..ae8b2e1
--- /dev/null
+++ b/hamlet.txt
@@ -0,0 +1,6770 @@
+XXXX
+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.
+
+Fran.
+You come most carefully upon your hour.
+
+Ber.
+'Tis now struck twelve. Get thee to bed, Francisco.
+
+Fran.
+For this relief much thanks: 'tis bitter cold,
+And I am sick at heart.
+
+Ber.
+Have you had quiet guard?
+
+Fran.
+Not a mouse stirring.
+
+Ber.
+Well, good night.
+If you do meet Horatio and Marcellus,
+The rivals of my watch, bid them make haste.
+
+Fran.
+I think I hear them.--Stand, ho! Who is there?
+
+[Enter Horatio and Marcellus.]
+
+Hor.
+Friends to this ground.
+
+Mar.
+And liegemen to the Dane.
+
+Fran.
+Give you good-night.
+
+Mar.
+O, farewell, honest soldier;
+Who hath reliev'd you?
+
+Fran.
+Bernardo has my place.
+Give you good-night.
+
+[Exit.]
+
+Mar.
+Holla! Bernardo!
+
+Ber.
+Say.
+What, is Horatio there?
+
+Hor.
+A piece of him.
+
+Ber.
+Welcome, Horatio:--Welcome, good Marcellus.
+
+Mar.
+What, has this thing appear'd again to-night?
+
+Ber.
+I have seen nothing.
+
+Mar.
+Horatio says 'tis but our fantasy,
+And will not let belief take hold of him
+Touching this dreaded sight, twice seen of us:
+Therefore I have entreated him along
+With us to watch the minutes of this night;
+That, if again this apparition come
+He may approve our eyes and speak to it.
+
+Hor.
+Tush, tush, 'twill not appear.
+
+Ber.
+Sit down awhile,
+And let us once again assail your ears,
+That are so fortified against our story,
+What we two nights have seen.
+
+Hor.
+Well, sit we down,
+And let us hear Bernardo speak of this.
+
+Ber.
+Last night of all,
+When yond same star that's westward from the pole
+Had made his course to illume that part of heaven
+Where now it burns, Marcellus and myself,
+The bell then beating one,--
+
+Mar.
+Peace, break thee off; look where it comes again!
+
+[Enter Ghost, armed.]
+
+Ber.
+In the same figure, like the king that's dead.
+
+Mar.
+Thou art a scholar; speak to it, Horatio.
+
+Ber.
+Looks it not like the King? mark it, Horatio.
+
+Hor.
+Most like:--it harrows me with fear and wonder.
+
+Ber.
+It would be spoke to.
+
+Mar.
+Question it, Horatio.
+
+Hor.
+What art thou, that usurp'st this time of night,
+Together with that fair and warlike form
+In which the majesty of buried Denmark
+Did sometimes march? By heaven I charge thee, speak!
+
+Mar.
+It is offended.
+
+Ber.
+See, it stalks away!
+
+Hor.
+Stay! speak, speak! I charge thee speak!
+
+[Exit Ghost.]
+
+Mar.
+'Tis gone, and will not answer.
+
+Ber.
+How now, Horatio! You tremble and look pale:
+Is not this something more than fantasy?
+What think you on't?
+
+Hor.
+Before my God, I might not this believe
+Without the sensible and true avouch
+Of mine own eyes.
+
+Mar.
+Is it not like the King?
+
+Hor.
+As thou art to thyself:
+Such was the very armour he had on
+When he the ambitious Norway combated;
+So frown'd he once when, in an angry parle,
+He smote the sledded Polacks on the ice.
+'Tis strange.
+
+Mar.
+Thus twice before, and jump at this dead hour,
+With martial stalk hath he gone by our watch.
+
+Hor.
+In what particular thought to work I know not;
+But, in the gross and scope of my opinion,
+This bodes some strange eruption to our state.
+
+Mar.
+Good now, sit down, and tell me, he that knows,
+Why this same strict and most observant watch
+So nightly toils the subject of the land;
+And why such daily cast of brazen cannon,
+And foreign mart for implements of war;
+Why such impress of shipwrights, whose sore task
+Does not divide the Sunday from the week;
+What might be toward, that this sweaty haste
+Doth make the night joint-labourer with the day:
+Who is't that can inform me?
+
+Hor.
+That can I;
+At least, the whisper goes so. Our last king,
+Whose image even but now appear'd to us,
+Was, as you know, by Fortinbras of Norway,
+Thereto prick'd on by a most emulate pride,
+Dar'd to the combat; in which our valiant Hamlet,--
+For so this side of our known world esteem'd him,--
+Did slay this Fortinbras; who, by a seal'd compact,
+Well ratified by law and heraldry,
+Did forfeit, with his life, all those his lands,
+Which he stood seiz'd of, to the conqueror:
+Against the which, a moiety competent
+Was gaged by our king; which had return'd
+To the inheritance of Fortinbras,
+Had he been vanquisher; as by the same cov'nant,
+And carriage of the article design'd,
+His fell to Hamlet. Now, sir, young Fortinbras,
+Of unimproved mettle hot and full,
+Hath in the skirts of Norway, here and there,
+Shark'd up a list of lawless resolutes,
+For food and diet, to some enterprise
+That hath a stomach in't; which is no other,--
+As it doth well appear unto our state,--
+But to recover of us, by strong hand,
+And terms compulsatory, those foresaid lands
+So by his father lost: and this, I take it,
+Is the main motive of our preparations,
+The source of this our watch, and the chief head
+Of this post-haste and romage in the land.
+
+Ber.
+I think it be no other but e'en so:
+Well may it sort, that this portentous figure
+Comes armed through our watch; so like the king
+That was and is the question of these wars.
+
+Hor.
+A mote it is to trouble the mind's eye.
+In the most high and palmy state of Rome,
+A little ere the mightiest Julius fell,
+The graves stood tenantless, and the sheeted dead
+Did squeak and gibber in the Roman streets;
+As, stars with trains of fire and dews of blood,
+Disasters in the sun; and the moist star,
+Upon whose influence Neptune's empire stands,
+Was sick almost to doomsday with eclipse:
+And even the like precurse of fierce events,--
+As harbingers preceding still the fates,
+And prologue to the omen coming on,--
+Have heaven and earth together demonstrated
+Unto our climature and countrymen.--
+But, soft, behold! lo, where it comes again!
+
+[Re-enter Ghost.]
+
+I'll cross it, though it blast me.--Stay, illusion!
+If thou hast any sound, or use of voice,
+Speak to me:
+If there be any good thing to be done,
+That may to thee do ease, and, race to me,
+Speak to me:
+If thou art privy to thy country's fate,
+Which, happily, foreknowing may avoid,
+O, speak!
+Or if thou hast uphoarded in thy life
+Extorted treasure in the womb of earth,
+For which, they say, you spirits oft walk in death,
+[The cock crows.]
+Speak of it:--stay, and speak!--Stop it, Marcellus!
+
+Mar.
+Shall I strike at it with my partisan?
+
+Hor.
+Do, if it will not stand.
+
+Ber.
+'Tis here!
+
+Hor.
+'Tis here!
+
+Mar.
+'Tis gone!
+
+[Exit Ghost.]
+
+We do it wrong, being so majestical,
+To offer it the show of violence;
+For it is, as the air, invulnerable,
+And our vain blows malicious mockery.
+
+Ber.
+It was about to speak, when the cock crew.
+
+Hor.
+And then it started, like a guilty thing
+Upon a fearful summons. I have heard
+The cock, that is the trumpet to the morn,
+Doth with his lofty and shrill-sounding throat
+Awake the god of day; and at his warning,
+Whether in sea or fire, in earth or air,
+The extravagant and erring spirit hies
+To his confine: and of the truth herein
+This present object made probation.
+
+Mar.
+It faded on the crowing of the cock.
+Some say that ever 'gainst that season comes
+Wherein our Saviour's birth is celebrated,
+The bird of dawning singeth all night long;
+And then, they say, no spirit dare stir abroad;
+The nights are wholesome; then no planets strike,
+No fairy takes, nor witch hath power to charm;
+So hallow'd and so gracious is the time.
+
+Hor.
+So have I heard, and do in part believe it.
+But, look, the morn, in russet mantle clad,
+Walks o'er the dew of yon high eastward hill:
+Break we our watch up: and by my advice,
+Let us impart what we have seen to-night
+Unto young Hamlet; for, upon my life,
+This spirit, dumb to us, will speak to him:
+Do you consent we shall acquaint him with it,
+As needful in our loves, fitting our duty?
+
+Mar.
+Let's do't, I pray; and I this morning know
+Where we shall find him most conveniently.
+
+[Exeunt.]
+
+
+
+Scene II. Elsinore. A room of state in the Castle.
+
+[Enter the King, Queen, Hamlet, Polonius, Laertes, Voltimand,
+Cornelius, Lords, and Attendant.]
+
+King.
+Though yet of Hamlet our dear brother's death
+The memory be green, and that it us befitted
+To bear our hearts in grief, and our whole kingdom
+To be contracted in one brow of woe;
+Yet so far hath discretion fought with nature
+That we with wisest sorrow think on him,
+Together with remembrance of ourselves.
+Therefore our sometime sister, now our queen,
+Th' imperial jointress to this warlike state,
+Have we, as 'twere with a defeated joy,--
+With an auspicious and one dropping eye,
+With mirth in funeral, and with dirge in marriage,
+In equal scale weighing delight and dole,--
+Taken to wife; nor have we herein barr'd
+Your better wisdoms, which have freely gone
+With this affair along:--or all, our thanks.
+Now follows, that you know, young Fortinbras,
+Holding a weak supposal of our worth,
+Or thinking by our late dear brother's death
+Our state to be disjoint and out of frame,
+Colleagued with this dream of his advantage,
+He hath not fail'd to pester us with message,
+Importing the surrender of those lands
+Lost by his father, with all bonds of law,
+To our most valiant brother. So much for him,--
+Now for ourself and for this time of meeting:
+Thus much the business is:--we have here writ
+To Norway, uncle of young Fortinbras,--
+Who, impotent and bed-rid, scarcely hears
+Of this his nephew's purpose,--to suppress
+His further gait herein; in that the levies,
+The lists, and full proportions are all made
+Out of his subject:--and we here dispatch
+You, good Cornelius, and you, Voltimand,
+For bearers of this greeting to old Norway;
+Giving to you no further personal power
+To business with the king, more than the scope
+Of these dilated articles allow.
+Farewell; and let your haste commend your duty.
+
+Cor. and Volt.
+In that and all things will we show our duty.
+
+King.
+We doubt it nothing: heartily farewell.
+
+[Exeunt Voltimand and Cornelius.]
+
+And now, Laertes, what's the news with you?
+You told us of some suit; what is't, Laertes?
+You cannot speak of reason to the Dane,
+And lose your voice: what wouldst thou beg, Laertes,
+That shall not be my offer, not thy asking?
+The head is not more native to the heart,
+The hand more instrumental to the mouth,
+Than is the throne of Denmark to thy father.
+What wouldst thou have, Laertes?
+
+Laer.
+Dread my lord,
+Your leave and favour to return to France;
+From whence though willingly I came to Denmark,
+To show my duty in your coronation;
+Yet now, I must confess, that duty done,
+My thoughts and wishes bend again toward France,
+And bow them to your gracious leave and pardon.
+
+King.
+Have you your father's leave? What says Polonius?
+
+Pol.
+He hath, my lord, wrung from me my slow leave
+By laboursome petition; and at last
+Upon his will I seal'd my hard consent:
+I do beseech you, give him leave to go.
+
+King.
+Take thy fair hour, Laertes; time be thine,
+And thy best graces spend it at thy will!--
+But now, my cousin Hamlet, and my son--
+
+Ham.
+[Aside.] A little more than kin, and less than kind!
+
+King.
+How is it that the clouds still hang on you?
+
+Ham.
+Not so, my lord; I am too much i' the sun.
+
+Queen.
+Good Hamlet, cast thy nighted colour off,
+And let thine eye look like a friend on Denmark.
+Do not for ever with thy vailed lids
+Seek for thy noble father in the dust:
+Thou know'st 'tis common,--all that lives must die,
+Passing through nature to eternity.
+
+Ham.
+Ay, madam, it is common.
+
+Queen.
+If it be,
+Why seems it so particular with thee?
+
+Ham.
+Seems, madam! Nay, it is; I know not seems.
+'Tis not alone my inky cloak, good mother,
+Nor customary suits of solemn black,
+Nor windy suspiration of forc'd breath,
+No, nor the fruitful river in the eye,
+Nor the dejected 'havior of the visage,
+Together with all forms, moods, shows of grief,
+That can denote me truly: these, indeed, seem;
+For they are actions that a man might play;
+But I have that within which passeth show;
+These but the trappings and the suits of woe.
+
+King.
+'Tis sweet and commendable in your nature, Hamlet,
+To give these mourning duties to your father;
+But, you must know, your father lost a father;
+That father lost, lost his; and the survivor bound,
+In filial obligation, for some term
+To do obsequious sorrow: but to persevere
+In obstinate condolement is a course
+Of impious stubbornness; 'tis unmanly grief;
+It shows a will most incorrect to heaven;
+A heart unfortified, a mind impatient;
+An understanding simple and unschool'd;
+For what we know must be, and is as common
+As any the most vulgar thing to sense,
+Why should we, in our peevish opposition,
+Take it to heart? Fie! 'tis a fault to heaven,
+A fault against the dead, a fault to nature,
+To reason most absurd; whose common theme
+Is death of fathers, and who still hath cried,
+From the first corse till he that died to-day,
+'This must be so.' We pray you, throw to earth
+This unprevailing woe; and think of us
+As of a father: for let the world take note
+You are the most immediate to our throne;
+And with no less nobility of love
+Than that which dearest father bears his son
+Do I impart toward you. For your intent
+In going back to school in Wittenberg,
+It is most retrograde to our desire:
+And we beseech you bend you to remain
+Here in the cheer and comfort of our eye,
+Our chiefest courtier, cousin, and our son.
+
+Queen.
+Let not thy mother lose her prayers, Hamlet:
+I pray thee stay with us; go not to Wittenberg.
+
+Ham.
+I shall in all my best obey you, madam.
+
+King.
+Why, 'tis a loving and a fair reply:
+Be as ourself in Denmark.--Madam, come;
+This gentle and unforc'd accord of Hamlet
+Sits smiling to my heart: in grace whereof,
+No jocund health that Denmark drinks to-day
+But the great cannon to the clouds shall tell;
+And the king's rouse the heaven shall bruit again,
+Re-speaking earthly thunder. Come away.
+
+[Exeunt all but Hamlet.]
+
+Ham.
+O that this too too solid flesh would melt,
+Thaw, and resolve itself into a dew!
+Or that the Everlasting had not fix'd
+His canon 'gainst self-slaughter! O God! O God!
+How weary, stale, flat, and unprofitable
+Seem to me all the uses of this world!
+Fie on't! O fie! 'tis an unweeded garden,
+That grows to seed; things rank and gross in nature
+Possess it merely. That it should come to this!
+But two months dead!--nay, not so much, not two:
+So excellent a king; that was, to this,
+Hyperion to a satyr; so loving to my mother,
+That he might not beteem the winds of heaven
+Visit her face too roughly. Heaven and earth!
+Must I remember? Why, she would hang on him
+As if increase of appetite had grown
+By what it fed on: and yet, within a month,--
+Let me not think on't,--Frailty, thy name is woman!--
+A little month; or ere those shoes were old
+With which she followed my poor father's body
+Like Niobe, all tears;--why she, even she,--
+O God! a beast that wants discourse of reason,
+Would have mourn'd longer,--married with mine uncle,
+My father's brother; but no more like my father
+Than I to Hercules: within a month;
+Ere yet the salt of most unrighteous tears
+Had left the flushing in her galled eyes,
+She married:-- O, most wicked speed, to post
+With such dexterity to incestuous sheets!
+It is not, nor it cannot come to good;
+But break my heart,--for I must hold my tongue!
+
+[Enter Horatio, Marcellus, and Bernardo.]
+
+Hor.
+Hail to your lordship!
+
+Ham.
+I am glad to see you well:
+Horatio,--or I do forget myself.
+
+Hor.
+The same, my lord, and your poor servant ever.
+
+Ham.
+Sir, my good friend; I'll change that name with you:
+And what make you from Wittenberg, Horatio?--
+Marcellus?
+
+Mar.
+My good lord,--
+
+Ham.
+I am very glad to see you.--Good even, sir.--
+But what, in faith, make you from Wittenberg?
+
+Hor.
+A truant disposition, good my lord.
+
+Ham.
+I would not hear your enemy say so;
+Nor shall you do my ear that violence,
+To make it truster of your own report
+Against yourself: I know you are no truant.
+But what is your affair in Elsinore?
+We'll teach you to drink deep ere you depart.
+
+Hor.
+My lord, I came to see your father's funeral.
+
+Ham.
+I prithee do not mock me, fellow-student.
+I think it was to see my mother's wedding.
+
+Hor.
+Indeed, my lord, it follow'd hard upon.
+
+Ham.
+Thrift, thrift, Horatio! The funeral bak'd meats
+Did coldly furnish forth the marriage tables.
+Would I had met my dearest foe in heaven
+Or ever I had seen that day, Horatio!--
+My father,--methinks I see my father.
+
+Hor.
+Where, my lord?
+
+Ham.
+In my mind's eye, Horatio.
+
+Hor.
+I saw him once; he was a goodly king.
+
+Ham.
+He was a man, take him for all in all,
+I shall not look upon his like again.
+
+Hor.
+My lord, I think I saw him yesternight.
+
+Ham.
+Saw who?
+
+Hor.
+My lord, the king your father.
+
+Ham.
+The King my father!
+
+Hor.
+Season your admiration for awhile
+With an attent ear, till I may deliver,
+Upon the witness of these gentlemen,
+This marvel to you.
+
+Ham.
+For God's love let me hear.
+
+Hor.
+Two nights together had these gentlemen,
+Marcellus and Bernardo, on their watch
+In the dead vast and middle of the night,
+Been thus encounter'd. A figure like your father,
+Armed at point exactly, cap-a-pe,
+Appears before them and with solemn march
+Goes slow and stately by them: thrice he walk'd
+By their oppress'd and fear-surprised eyes,
+Within his truncheon's length; whilst they, distill'd
+Almost to jelly with the act of fear,
+Stand dumb, and speak not to him. This to me
+In dreadful secrecy impart they did;
+And I with them the third night kept the watch:
+Where, as they had deliver'd, both in time,
+Form of the thing, each word made true and good,
+The apparition comes: I knew your father;
+These hands are not more like.
+
+Ham.
+But where was this?
+
+Mar.
+My lord, upon the platform where we watch'd.
+
+Ham.
+Did you not speak to it?
+
+Hor.
+My lord, I did;
+But answer made it none: yet once methought
+It lifted up it head, and did address
+Itself to motion, like as it would speak:
+But even then the morning cock crew loud,
+And at the sound it shrunk in haste away,
+And vanish'd from our sight.
+
+Ham.
+'Tis very strange.
+
+Hor.
+As I do live, my honour'd lord, 'tis true;
+And we did think it writ down in our duty
+To let you know of it.
+
+Ham.
+Indeed, indeed, sirs, but this troubles me.
+Hold you the watch to-night?
+
+Mar. and Ber.
+We do, my lord.
+
+Ham.
+Arm'd, say you?
+
+Both.
+Arm'd, my lord.
+
+Ham.
+From top to toe?
+
+Both.
+My lord, from head to foot.
+
+Ham.
+Then saw you not his face?
+
+Hor.
+O, yes, my lord: he wore his beaver up.
+
+Ham.
+What, look'd he frowningly?
+
+Hor.
+A countenance more in sorrow than in anger.
+
+Ham.
+Pale or red?
+
+Hor.
+Nay, very pale.
+
+Ham.
+And fix'd his eyes upon you?
+
+Hor.
+Most constantly.
+
+Ham.
+I would I had been there.
+
+Hor.
+It would have much amaz'd you.
+
+Ham.
+Very like, very like. Stay'd it long?
+
+Hor.
+While one with moderate haste might tell a hundred.
+
+Mar. and Ber.
+Longer, longer.
+
+Hor.
+Not when I saw't.
+
+Ham.
+His beard was grizzled,--no?
+
+Hor.
+It was, as I have seen it in his life,
+A sable silver'd.
+
+Ham.
+I will watch to-night;
+Perchance 'twill walk again.
+
+Hor.
+I warr'nt it will.
+
+Ham.
+If it assume my noble father's person,
+I'll speak to it, though hell itself should gape
+And bid me hold my peace. I pray you all,
+If you have hitherto conceal'd this sight,
+Let it be tenable in your silence still;
+And whatsoever else shall hap to-night,
+Give it an understanding, but no tongue:
+I will requite your loves. So, fare ye well:
+Upon the platform, 'twixt eleven and twelve,
+I'll visit you.
+
+All.
+Our duty to your honour.
+
+Ham.
+Your loves, as mine to you: farewell.
+
+[Exeunt Horatio, Marcellus, and Bernardo.]
+
+My father's spirit in arms! All is not well;
+I doubt some foul play: would the night were come!
+Till then sit still, my soul: foul deeds will rise,
+Though all the earth o'erwhelm them, to men's eyes.
+
+[Exit.]
+
+
+
+Scene III. A room in Polonius's house.
+
+[Enter Laertes and Ophelia.]
+
+Laer.
+My necessaries are embark'd: farewell:
+And, sister, as the winds give benefit
+And convoy is assistant, do not sleep,
+But let me hear from you.
+
+Oph.
+Do you doubt that?
+
+Laer.
+For Hamlet, and the trifling of his favour,
+Hold it a fashion, and a toy in blood:
+A violet in the youth of primy nature,
+Forward, not permanent, sweet, not lasting;
+The perfume and suppliance of a minute;
+No more.
+
+Oph.
+No more but so?
+
+Laer.
+Think it no more:
+For nature, crescent, does not grow alone
+In thews and bulk; but as this temple waxes,
+The inward service of the mind and soul
+Grows wide withal. Perhaps he loves you now;
+And now no soil nor cautel doth besmirch
+The virtue of his will: but you must fear,
+His greatness weigh'd, his will is not his own;
+For he himself is subject to his birth:
+He may not, as unvalu'd persons do,
+Carve for himself; for on his choice depends
+The safety and health of this whole state;
+And therefore must his choice be circumscrib'd
+Unto the voice and yielding of that body
+Whereof he is the head. Then if he says he loves you,
+It fits your wisdom so far to believe it
+As he in his particular act and place
+May give his saying deed; which is no further
+Than the main voice of Denmark goes withal.
+Then weigh what loss your honour may sustain
+If with too credent ear you list his songs,
+Or lose your heart, or your chaste treasure open
+To his unmaster'd importunity.
+Fear it, Ophelia, fear it, my dear sister;
+And keep you in the rear of your affection,
+Out of the shot and danger of desire.
+The chariest maid is prodigal enough
+If she unmask her beauty to the moon:
+Virtue itself scopes not calumnious strokes:
+The canker galls the infants of the spring
+Too oft before their buttons be disclos'd:
+And in the morn and liquid dew of youth
+Contagious blastments are most imminent.
+Be wary then; best safety lies in fear:
+Youth to itself rebels, though none else near.
+
+Oph.
+I shall th' effect of this good lesson keep
+As watchman to my heart. But, good my brother,
+Do not, as some ungracious pastors do,
+Show me the steep and thorny way to heaven;
+Whilst, like a puff'd and reckless libertine,
+Himself the primrose path of dalliance treads
+And recks not his own read.
+
+Laer.
+O, fear me not.
+I stay too long:--but here my father comes.
+
+[Enter Polonius.]
+
+A double blessing is a double grace;
+Occasion smiles upon a second leave.
+
+Pol.
+Yet here, Laertes! aboard, aboard, for shame!
+The wind sits in the shoulder of your sail,
+And you are stay'd for. There,--my blessing with thee!
+
+[Laying his hand on Laertes's head.]
+
+And these few precepts in thy memory
+Look thou character. Give thy thoughts no tongue,
+Nor any unproportion'd thought his act.
+Be thou familiar, but by no means vulgar.
+Those friends thou hast, and their adoption tried,
+Grapple them unto thy soul with hoops of steel;
+But do not dull thy palm with entertainment
+Of each new-hatch'd, unfledg'd comrade. Beware
+Of entrance to a quarrel; but, being in,
+Bear't that the opposed may beware of thee.
+Give every man thine ear, but few thy voice:
+Take each man's censure, but reserve thy judgment.
+Costly thy habit as thy purse can buy,
+But not express'd in fancy; rich, not gaudy:
+For the apparel oft proclaims the man;
+And they in France of the best rank and station
+Are most select and generous chief in that.
+Neither a borrower nor a lender be:
+For loan oft loses both itself and friend;
+And borrowing dulls the edge of husbandry.
+This above all,--to thine own self be true;
+And it must follow, as the night the day,
+Thou canst not then be false to any man.
+Farewell: my blessing season this in thee!
+
+Laer.
+Most humbly do I take my leave, my lord.
+
+Pol.
+The time invites you; go, your servants tend.
+
+Laer.
+Farewell, Ophelia; and remember well
+What I have said to you.
+
+Oph.
+'Tis in my memory lock'd,
+And you yourself shall keep the key of it.
+
+Laer.
+Farewell.
+
+[Exit.]
+
+Pol.
+What is't, Ophelia, he hath said to you?
+
+Oph.
+So please you, something touching the Lord Hamlet.
+
+Pol.
+Marry, well bethought:
+'Tis told me he hath very oft of late
+Given private time to you; and you yourself
+Have of your audience been most free and bounteous;
+If it be so,--as so 'tis put on me,
+And that in way of caution,--I must tell you
+You do not understand yourself so clearly
+As it behooves my daughter and your honour.
+What is between you? give me up the truth.
+
+Oph.
+He hath, my lord, of late made many tenders
+Of his affection to me.
+
+Pol.
+Affection! pooh! you speak like a green girl,
+Unsifted in such perilous circumstance.
+Do you believe his tenders, as you call them?
+
+Oph.
+I do not know, my lord, what I should think.
+
+Pol.
+Marry, I'll teach you: think yourself a baby;
+That you have ta'en these tenders for true pay,
+Which are not sterling. Tender yourself more dearly;
+Or,--not to crack the wind of the poor phrase,
+Wronging it thus,--you'll tender me a fool.
+
+Oph.
+My lord, he hath importun'd me with love
+In honourable fashion.
+
+Pol.
+Ay, fashion you may call it; go to, go to.
+
+Oph.
+And hath given countenance to his speech, my lord,
+With almost all the holy vows of heaven.
+
+Pol.
+Ay, springes to catch woodcocks. I do know,
+When the blood burns, how prodigal the soul
+Lends the tongue vows: these blazes, daughter,
+Giving more light than heat,--extinct in both,
+Even in their promise, as it is a-making,--
+You must not take for fire. From this time
+Be something scanter of your maiden presence;
+Set your entreatments at a higher rate
+Than a command to parley. For Lord Hamlet,
+Believe so much in him, that he is young;
+And with a larger tether may he walk
+Than may be given you: in few, Ophelia,
+Do not believe his vows; for they are brokers,--
+Not of that dye which their investments show,
+But mere implorators of unholy suits,
+Breathing like sanctified and pious bawds,
+The better to beguile. This is for all,--
+I would not, in plain terms, from this time forth
+Have you so slander any moment leisure
+As to give words or talk with the Lord Hamlet.
+Look to't, I charge you; come your ways.
+
+Oph.
+I shall obey, my lord.
+
+[Exeunt.]
+
+
+
+Scene IV. The platform.
+
+[Enter Hamlet, Horatio, and Marcellus.]
+
+Ham.
+The air bites shrewdly; it is very cold.
+
+Hor.
+It is a nipping and an eager air.
+
+Ham.
+What hour now?
+
+Hor.
+I think it lacks of twelve.
+
+Mar.
+No, it is struck.
+
+Hor.
+Indeed? I heard it not: then draws near the season
+Wherein the spirit held his wont to walk.
+
+[A flourish of trumpets, and ordnance shot off within.]
+
+What does this mean, my lord?
+
+Ham.
+The King doth wake to-night and takes his rouse,
+Keeps wassail, and the swaggering up-spring reels;
+And, as he drains his draughts of Rhenish down,
+The kettle-drum and trumpet thus bray out
+The triumph of his pledge.
+
+Hor.
+Is it a custom?
+
+Ham.
+Ay, marry, is't;
+But to my mind,--though I am native here,
+And to the manner born,--it is a custom
+More honour'd in the breach than the observance.
+This heavy-headed revel east and west
+Makes us traduc'd and tax'd of other nations:
+They clepe us drunkards, and with swinish phrase
+Soil our addition; and, indeed, it takes
+From our achievements, though perform'd at height,
+The pith and marrow of our attribute.
+So oft it chances in particular men
+That, for some vicious mole of nature in them,
+As in their birth,--wherein they are not guilty,
+Since nature cannot choose his origin,--
+By the o'ergrowth of some complexion,
+Oft breaking down the pales and forts of reason;
+Or by some habit, that too much o'er-leavens
+The form of plausive manners;--that these men,--
+Carrying, I say, the stamp of one defect,
+Being nature's livery, or fortune's star,--
+Their virtues else,--be they as pure as grace,
+As infinite as man may undergo,--
+Shall in the general censure take corruption
+From that particular fault: the dram of eale
+Doth all the noble substance often doubt
+To his own scandal.
+
+Hor.
+Look, my lord, it comes!
+
+[Enter Ghost.]
+
+Ham.
+Angels and ministers of grace defend us!--
+Be thou a spirit of health or goblin damn'd,
+Bring with thee airs from heaven or blasts from hell,
+Be thy intents wicked or charitable,
+Thou com'st in such a questionable shape
+That I will speak to thee: I'll call thee Hamlet,
+King, father, royal Dane; O, answer me!
+Let me not burst in ignorance; but tell
+Why thy canoniz'd bones, hearsed in death,
+Have burst their cerements; why the sepulchre,
+Wherein we saw thee quietly in-urn'd,
+Hath op'd his ponderous and marble jaws
+To cast thee up again! What may this mean,
+That thou, dead corse, again in complete steel,
+Revisit'st thus the glimpses of the moon,
+Making night hideous, and we fools of nature
+So horridly to shake our disposition
+With thoughts beyond the reaches of our souls?
+Say, why is this? wherefore? what should we do?
+
+[Ghost beckons Hamlet.]
+
+Hor.
+It beckons you to go away with it,
+As if it some impartment did desire
+To you alone.
+
+Mar.
+Look with what courteous action
+It waves you to a more removed ground:
+But do not go with it!
+
+Hor.
+No, by no means.
+
+Ham.
+It will not speak; then will I follow it.
+
+Hor.
+Do not, my lord.
+
+Ham.
+Why, what should be the fear?
+I do not set my life at a pin's fee;
+And for my soul, what can it do to that,
+Being a thing immortal as itself?
+It waves me forth again;--I'll follow it.
+
+Hor.
+What if it tempt you toward the flood, my lord,
+Or to the dreadful summit of the cliff
+That beetles o'er his base into the sea,
+And there assume some other horrible form
+Which might deprive your sovereignty of reason,
+And draw you into madness? think of it:
+The very place puts toys of desperation,
+Without more motive, into every brain
+That looks so many fadoms to the sea
+And hears it roar beneath.
+
+Ham.
+It waves me still.--
+Go on; I'll follow thee.
+
+Mar.
+You shall not go, my lord.
+
+Ham.
+Hold off your hands.
+
+Hor.
+Be rul'd; you shall not go.
+
+Ham.
+My fate cries out,
+And makes each petty artery in this body
+As hardy as the Nemean lion's nerve.--
+
+[Ghost beckons.]
+
+Still am I call'd;--unhand me, gentlemen;--
+
+[Breaking free from them.]
+
+By heaven, I'll make a ghost of him that lets me!--
+I say, away!--Go on; I'll follow thee.
+
+[Exeunt Ghost and Hamlet.]
+
+Hor.
+He waxes desperate with imagination.
+
+Mar.
+Let's follow; 'tis not fit thus to obey him.
+
+Hor.
+Have after.--To what issue will this come?
+
+Mar.
+Something is rotten in the state of Denmark.
+
+Hor.
+Heaven will direct it.
+
+Mar.
+Nay, let's follow him.
+
+[Exeunt.]
+
+
+
+Scene V. A more remote part of the Castle.
+
+[Enter Ghost and Hamlet.]
+
+Ham.
+Whither wilt thou lead me? speak! I'll go no further.
+
+Ghost.
+Mark me.
+
+Ham.
+I will.
+
+Ghost.
+My hour is almost come,
+When I to sulph'uous and tormenting flames
+Must render up myself.
+
+Ham.
+Alas, poor ghost!
+
+Ghost.
+Pity me not, but lend thy serious hearing
+To what I shall unfold.
+
+Ham.
+Speak; I am bound to hear.
+
+Ghost.
+So art thou to revenge, when thou shalt hear.
+
+Ham.
+What?
+
+Ghost.
+I am thy father's spirit;
+Doom'd for a certain term to walk the night,
+And for the day confin'd to wastein fires,
+Till the foul crimes done in my days of nature
+Are burnt and purg'd away. But that I am forbid
+To tell the secrets of my prison-house,
+I could a tale unfold whose lightest word
+Would harrow up thy soul; freeze thy young blood;
+Make thy two eyes, like stars, start from their spheres;
+Thy knotted and combined locks to part,
+And each particular hair to stand on end
+Like quills upon the fretful porcupine:
+But this eternal blazon must not be
+To ears of flesh and blood.--List, list, O, list!--
+If thou didst ever thy dear father love--
+
+Ham.
+O God!
+
+Ghost.
+Revenge his foul and most unnatural murder.
+
+Ham.
+Murder!
+
+Ghost.
+Murder most foul, as in the best it is;
+But this most foul, strange, and unnatural.
+
+Ham.
+Haste me to know't, that I, with wings as swift
+As meditation or the thoughts of love,
+May sweep to my revenge.
+
+Ghost.
+I find thee apt;
+And duller shouldst thou be than the fat weed
+That rots itself in ease on Lethe wharf,
+Wouldst thou not stir in this. Now, Hamlet, hear.
+'Tis given out that, sleeping in my orchard,
+A serpent stung me; so the whole ear of Denmark
+Is by a forged process of my death
+Rankly abus'd; but know, thou noble youth,
+The serpent that did sting thy father's life
+Now wears his crown.
+
+Ham.
+O my prophetic soul!
+Mine uncle!
+
+Ghost.
+Ay, that incestuous, that adulterate beast,
+With witchcraft of his wit, with traitorous gifts,--
+O wicked wit and gifts, that have the power
+So to seduce!--won to his shameful lust
+The will of my most seeming-virtuous queen:
+O Hamlet, what a falling-off was there!
+From me, whose love was of that dignity
+That it went hand in hand even with the vow
+I made to her in marriage; and to decline
+Upon a wretch whose natural gifts were poor
+To those of mine!
+But virtue, as it never will be mov'd,
+Though lewdness court it in a shape of heaven;
+So lust, though to a radiant angel link'd,
+Will sate itself in a celestial bed
+And prey on garbage.
+But soft! methinks I scent the morning air;
+Brief let me be.--Sleeping within my orchard,
+My custom always of the afternoon,
+Upon my secure hour thy uncle stole,
+With juice of cursed hebenon in a vial,
+And in the porches of my ears did pour
+The leperous distilment; whose effect
+Holds such an enmity with blood of man
+That, swift as quicksilver, it courses through
+The natural gates and alleys of the body;
+And with a sudden vigour it doth posset
+And curd, like eager droppings into milk,
+The thin and wholesome blood; so did it mine;
+And a most instant tetter bark'd about,
+Most lazar-like, with vile and loathsome crust
+All my smooth body.
+Thus was I, sleeping, by a brother's hand,
+Of life, of crown, of queen, at once dispatch'd:
+Cut off even in the blossoms of my sin,
+Unhous'led, disappointed, unanel'd;
+No reckoning made, but sent to my account
+With all my imperfections on my head:
+O, horrible! O, horrible! most horrible!
+If thou hast nature in thee, bear it not;
+Let not the royal bed of Denmark be
+A couch for luxury and damned incest.
+But, howsoever thou pursu'st this act,
+Taint not thy mind, nor let thy soul contrive
+Against thy mother aught: leave her to heaven,
+And to those thorns that in her bosom lodge,
+To prick and sting her. Fare thee well at once!
+The glowworm shows the matin to be near,
+And 'gins to pale his uneffectual fire:
+Adieu, adieu! Hamlet, remember me.
+
+[Exit.]
+
+Ham.
+O all you host of heaven! O earth! what else?
+And shall I couple hell? O, fie!--Hold, my heart;
+And you, my sinews, grow not instant old,
+But bear me stiffly up.--Remember thee!
+Ay, thou poor ghost, while memory holds a seat
+In this distracted globe. Remember thee!
+Yea, from the table of my memory
+I'll wipe away all trivial fond records,
+All saws of books, all forms, all pressures past,
+That youth and observation copied there;
+And thy commandment all alone shall live
+Within the book and volume of my brain,
+Unmix'd with baser matter: yes, by heaven!--
+O most pernicious woman!
+O villain, villain, smiling, damned villain!
+My tables,--meet it is I set it down,
+That one may smile, and smile, and be a villain;
+At least, I am sure, it may be so in Denmark:
+
+[Writing.]
+
+So, uncle, there you are. Now to my word;
+It is 'Adieu, adieu! remember me:'
+I have sworn't.
+
+Hor.
+[Within.] My lord, my lord,--
+
+Mar.
+[Within.] Lord Hamlet,--
+
+Hor.
+[Within.] Heaven secure him!
+
+Ham.
+So be it!
+
+Mar.
+[Within.] Illo, ho, ho, my lord!
+
+Ham.
+Hillo, ho, ho, boy! Come, bird, come.
+
+[Enter Horatio and Marcellus.]
+
+Mar.
+How is't, my noble lord?
+
+Hor.
+What news, my lord?
+
+Ham.
+O, wonderful!
+
+Hor.
+Good my lord, tell it.
+
+Ham.
+No; you'll reveal it.
+
+Hor.
+Not I, my lord, by heaven.
+
+Mar.
+Nor I, my lord.
+
+Ham.
+How say you then; would heart of man once think it?--
+But you'll be secret?
+
+Hor. and Mar.
+Ay, by heaven, my lord.
+
+Ham.
+There's ne'er a villain dwelling in all Denmark
+But he's an arrant knave.
+
+Hor.
+There needs no ghost, my lord, come from the grave
+To tell us this.
+
+Ham.
+Why, right; you are i' the right;
+And so, without more circumstance at all,
+I hold it fit that we shake hands and part:
+You, as your business and desires shall point you,--
+For every man hath business and desire,
+Such as it is;--and for my own poor part,
+Look you, I'll go pray.
+
+Hor.
+These are but wild and whirling words, my lord.
+
+Ham.
+I'm sorry they offend you, heartily;
+Yes, faith, heartily.
+
+Hor.
+There's no offence, my lord.
+
+Ham.
+Yes, by Saint Patrick, but there is, Horatio,
+And much offence too. Touching this vision here,--
+It is an honest ghost, that let me tell you:
+For your desire to know what is between us,
+O'ermaster't as you may. And now, good friends,
+As you are friends, scholars, and soldiers,
+Give me one poor request.
+
+Hor.
+What is't, my lord? we will.
+
+Ham.
+Never make known what you have seen to-night.
+
+Hor. and Mar.
+My lord, we will not.
+
+Ham.
+Nay, but swear't.
+
+Hor.
+In faith,
+My lord, not I.
+
+Mar.
+Nor I, my lord, in faith.
+
+Ham.
+Upon my sword.
+
+Mar.
+We have sworn, my lord, already.
+
+Ham.
+Indeed, upon my sword, indeed.
+
+Ghost.
+[Beneath.] Swear.
+
+Ham.
+Ha, ha boy! say'st thou so? art thou there, truepenny?--
+Come on!--you hear this fellow in the cellarage,--
+Consent to swear.
+
+Hor.
+Propose the oath, my lord.
+
+Ham.
+Never to speak of this that you have seen,
+Swear by my sword.
+
+Ghost.
+[Beneath.] Swear.
+
+Ham.
+Hic et ubique? then we'll shift our ground.--
+Come hither, gentlemen,
+And lay your hands again upon my sword:
+Never to speak of this that you have heard,
+Swear by my sword.
+
+Ghost.
+[Beneath.] Swear.
+
+Ham.
+Well said, old mole! canst work i' the earth so fast?
+A worthy pioner!--Once more remove, good friends.
+
+Hor.
+O day and night, but this is wondrous strange!
+
+Ham.
+And therefore as a stranger give it welcome.
+There are more things in heaven and earth, Horatio,
+Than are dreamt of in your philosophy.
+But come;--
+Here, as before, never, so help you mercy,
+How strange or odd soe'er I bear myself,--
+As I, perchance, hereafter shall think meet
+To put an antic disposition on,--
+That you, at such times seeing me, never shall,
+With arms encumber'd thus, or this head-shake,
+Or by pronouncing of some doubtful phrase,
+As 'Well, well, we know'; or 'We could, an if we would';--
+Or 'If we list to speak'; or 'There be, an if they might';--
+Or such ambiguous giving out, to note
+That you know aught of me:--this is not to do,
+So grace and mercy at your most need help you,
+Swear.
+
+Ghost.
+[Beneath.] Swear.
+
+Ham.
+Rest, rest, perturbed spirit!--So, gentlemen,
+With all my love I do commend me to you:
+And what so poor a man as Hamlet is
+May do, to express his love and friending to you,
+God willing, shall not lack. Let us go in together;
+And still your fingers on your lips, I pray.
+The time is out of joint:--O cursed spite,
+That ever I was born to set it right!--
+Nay, come, let's go together.
+
+[Exeunt.]
+
+
+
+Act II.
+
+Scene I. A room in Polonius's house.
+
+[Enter Polonius and Reynaldo.]
+
+Pol.
+Give him this money and these notes, Reynaldo.
+
+Rey.
+I will, my lord.
+
+Pol.
+You shall do marvellous wisely, good Reynaldo,
+Before You visit him, to make inquiry
+Of his behaviour.
+
+Rey.
+My lord, I did intend it.
+
+Pol.
+Marry, well said; very well said. Look you, sir,
+Enquire me first what Danskers are in Paris;
+And how, and who, what means, and where they keep,
+What company, at what expense; and finding,
+By this encompassment and drift of question,
+That they do know my son, come you more nearer
+Than your particular demands will touch it:
+Take you, as 'twere, some distant knowledge of him;
+As thus, 'I know his father and his friends,
+And in part him;--do you mark this, Reynaldo?
+
+Rey.
+Ay, very well, my lord.
+
+Pol.
+'And in part him;--but,' you may say, 'not well:
+But if't be he I mean, he's very wild;
+Addicted so and so;' and there put on him
+What forgeries you please; marry, none so rank
+As may dishonour him; take heed of that;
+But, sir, such wanton, wild, and usual slips
+As are companions noted and most known
+To youth and liberty.
+
+Rey.
+As gaming, my lord.
+
+Pol.
+Ay, or drinking, fencing, swearing, quarrelling,
+Drabbing:--you may go so far.
+
+Rey.
+My lord, that would dishonour him.
+
+Pol.
+Faith, no; as you may season it in the charge.
+You must not put another scandal on him,
+That he is open to incontinency;
+That's not my meaning: but breathe his faults so quaintly
+That they may seem the taints of liberty;
+The flash and outbreak of a fiery mind;
+A savageness in unreclaimed blood,
+Of general assault.
+
+Rey.
+But, my good lord,--
+
+Pol.
+Wherefore should you do this?
+
+Rey.
+Ay, my lord,
+I would know that.
+
+Pol.
+Marry, sir, here's my drift;
+And I believe it is a fetch of warrant:
+You laying these slight sullies on my son
+As 'twere a thing a little soil'd i' the working,
+Mark you,
+Your party in converse, him you would sound,
+Having ever seen in the prenominate crimes
+The youth you breathe of guilty, be assur'd
+He closes with you in this consequence;
+'Good sir,' or so; or 'friend,' or 'gentleman'--
+According to the phrase or the addition
+Of man and country.
+
+Rey.
+Very good, my lord.
+
+Pol.
+And then, sir, does he this,--he does--What was I about to say?--
+By the mass, I was about to say something:--Where did I leave?
+
+Rey.
+At 'closes in the consequence,' at 'friend or so,' and
+gentleman.'
+
+Pol.
+At--closes in the consequence'--ay, marry!
+He closes with you thus:--'I know the gentleman;
+I saw him yesterday, or t'other day,
+Or then, or then; with such, or such; and, as you say,
+There was he gaming; there o'ertook in's rouse;
+There falling out at tennis': or perchance,
+'I saw him enter such a house of sale,'--
+Videlicet, a brothel,--or so forth.--
+See you now;
+Your bait of falsehood takes this carp of truth:
+And thus do we of wisdom and of reach,
+With windlaces, and with assays of bias,
+By indirections find directions out:
+So, by my former lecture and advice,
+Shall you my son. You have me, have you not?
+
+Rey.
+My lord, I have.
+
+Pol.
+God b' wi' you, fare you well.
+
+Rey.
+Good my lord!
+
+Pol.
+Observe his inclination in yourself.
+
+Rey.
+I shall, my lord.
+
+Pol.
+And let him ply his music.
+
+Rey.
+Well, my lord.
+
+Pol.
+Farewell!
+
+[Exit Reynaldo.]
+
+[Enter Ophelia.]
+
+How now, Ophelia! what's the matter?
+
+Oph.
+Alas, my lord, I have been so affrighted!
+
+Pol.
+With what, i' the name of God?
+
+Oph.
+My lord, as I was sewing in my chamber,
+Lord Hamlet,--with his doublet all unbrac'd;
+No hat upon his head; his stockings foul'd,
+Ungart'red, and down-gyved to his ankle;
+Pale as his shirt; his knees knocking each other;
+And with a look so piteous in purport
+As if he had been loosed out of hell
+To speak of horrors,--he comes before me.
+
+Pol.
+Mad for thy love?
+
+Oph.
+My lord, I do not know;
+But truly I do fear it.
+
+Pol.
+What said he?
+
+Oph.
+He took me by the wrist, and held me hard;
+Then goes he to the length of all his arm;
+And with his other hand thus o'er his brow,
+He falls to such perusal of my face
+As he would draw it. Long stay'd he so;
+At last,--a little shaking of mine arm,
+And thrice his head thus waving up and down,--
+He rais'd a sigh so piteous and profound
+As it did seem to shatter all his bulk
+And end his being: that done, he lets me go:
+And, with his head over his shoulder turn'd
+He seem'd to find his way without his eyes;
+For out o' doors he went without their help,
+And to the last bended their light on me.
+
+Pol.
+Come, go with me: I will go seek the king.
+This is the very ecstasy of love;
+Whose violent property fordoes itself,
+And leads the will to desperate undertakings,
+As oft as any passion under heaven
+That does afflict our natures. I am sorry,--
+What, have you given him any hard words of late?
+
+Oph.
+No, my good lord; but, as you did command,
+I did repel his letters and denied
+His access to me.
+
+Pol.
+That hath made him mad.
+I am sorry that with better heed and judgment
+I had not quoted him: I fear'd he did but trifle,
+And meant to wreck thee; but beshrew my jealousy!
+It seems it as proper to our age
+To cast beyond ourselves in our opinions
+As it is common for the younger sort
+To lack discretion. Come, go we to the king:
+This must be known; which, being kept close, might move
+More grief to hide than hate to utter love.
+
+[Exeunt.]
+
+
+
+Scene II. A room in the Castle.
+
+[Enter King, Rosencrantz, Guildenstern, and Attendants.]
+
+King.
+Welcome, dear Rosencrantz and Guildenstern!
+Moreover that we much did long to see you,
+The need we have to use you did provoke
+Our hasty sending. Something have you heard
+Of Hamlet's transformation; so I call it,
+Since nor the exterior nor the inward man
+Resembles that it was. What it should be,
+More than his father's death, that thus hath put him
+So much from the understanding of himself,
+I cannot dream of: I entreat you both
+That, being of so young days brought up with him,
+And since so neighbour'd to his youth and humour,
+That you vouchsafe your rest here in our court
+Some little time: so by your companies
+To draw him on to pleasures, and to gather,
+So much as from occasion you may glean,
+Whether aught, to us unknown, afflicts him thus,
+That, open'd, lies within our remedy.
+
+Queen.
+Good gentlemen, he hath much talk'd of you,
+And sure I am two men there are not living
+To whom he more adheres. If it will please you
+To show us so much gentry and good-will
+As to expend your time with us awhile,
+For the supply and profit of our hope,
+Your visitation shall receive such thanks
+As fits a king's remembrance.
+
+Ros.
+Both your majesties
+Might, by the sovereign power you have of us,
+Put your dread pleasures more into command
+Than to entreaty.
+
+Guil.
+We both obey,
+And here give up ourselves, in the full bent,
+To lay our service freely at your feet,
+To be commanded.
+
+King.
+Thanks, Rosencrantz and gentle Guildenstern.
+
+Queen.
+Thanks, Guildenstern and gentle Rosencrantz:
+And I beseech you instantly to visit
+My too-much-changed son.--Go, some of you,
+And bring these gentlemen where Hamlet is.
+
+Guil.
+Heavens make our presence and our practices
+Pleasant and helpful to him!
+
+Queen.
+Ay, amen!
+
+[Exeunt Rosencrantz, Guildenstern, and some Attendants].
+
+[Enter Polonius.]
+
+Pol.
+Th' ambassadors from Norway, my good lord,
+Are joyfully return'd.
+
+King.
+Thou still hast been the father of good news.
+
+Pol.
+Have I, my lord? Assure you, my good liege,
+I hold my duty, as I hold my soul,
+Both to my God and to my gracious king:
+And I do think,--or else this brain of mine
+Hunts not the trail of policy so sure
+As it hath us'd to do,--that I have found
+The very cause of Hamlet's lunacy.
+
+King.
+O, speak of that; that do I long to hear.
+
+Pol.
+Give first admittance to the ambassadors;
+My news shall be the fruit to that great feast.
+
+King.
+Thyself do grace to them, and bring them in.
+
+[Exit Polonius.]
+
+He tells me, my sweet queen, he hath found
+The head and source of all your son's distemper.
+
+Queen.
+I doubt it is no other but the main,--
+His father's death and our o'erhasty marriage.
+
+King.
+Well, we shall sift him.
+
+[Enter Polonius, with Voltimand and Cornelius.]
+
+Welcome, my good friends!
+Say, Voltimand, what from our brother Norway?
+
+Volt.
+Most fair return of greetings and desires.
+Upon our first, he sent out to suppress
+His nephew's levies; which to him appear'd
+To be a preparation 'gainst the Polack;
+But, better look'd into, he truly found
+It was against your highness; whereat griev'd,--
+That so his sickness, age, and impotence
+Was falsely borne in hand,--sends out arrests
+On Fortinbras; which he, in brief, obeys;
+Receives rebuke from Norway; and, in fine,
+Makes vow before his uncle never more
+To give th' assay of arms against your majesty.
+Whereon old Norway, overcome with joy,
+Gives him three thousand crowns in annual fee;
+And his commission to employ those soldiers,
+So levied as before, against the Polack:
+With an entreaty, herein further shown,
+[Gives a paper.]
+That it might please you to give quiet pass
+Through your dominions for this enterprise,
+On such regards of safety and allowance
+As therein are set down.
+
+King.
+It likes us well;
+And at our more consider'd time we'll read,
+Answer, and think upon this business.
+Meantime we thank you for your well-took labour:
+Go to your rest; at night we'll feast together:
+Most welcome home!
+
+[Exeunt Voltimand and Cornelius.]
+
+Pol.
+This business is well ended.--
+My liege, and madam,--to expostulate
+What majesty should be, what duty is,
+Why day is day, night is night, and time is time.
+Were nothing but to waste night, day, and time.
+Therefore, since brevity is the soul of wit,
+And tediousness the limbs and outward flourishes,
+I will be brief:--your noble son is mad:
+Mad call I it; for to define true madness,
+What is't but to be nothing else but mad?
+But let that go.
+
+Queen.
+More matter, with less art.
+
+Pol.
+Madam, I swear I use no art at all.
+That he is mad, 'tis true: 'tis true 'tis pity;
+And pity 'tis 'tis true: a foolish figure;
+But farewell it, for I will use no art.
+Mad let us grant him then: and now remains
+That we find out the cause of this effect;
+Or rather say, the cause of this defect,
+For this effect defective comes by cause:
+Thus it remains, and the remainder thus.
+Perpend.
+I have a daughter,--have whilst she is mine,--
+Who, in her duty and obedience, mark,
+Hath given me this: now gather, and surmise.
+[Reads.]
+'To the celestial, and my soul's idol, the most beautified
+Ophelia,'--
+That's an ill phrase, a vile phrase; 'beautified' is a vile
+phrase: but you shall hear. Thus:
+[Reads.]
+'In her excellent white bosom, these, &c.'
+
+Queen.
+Came this from Hamlet to her?
+
+Pol.
+Good madam, stay awhile; I will be faithful.
+[Reads.]
+  'Doubt thou the stars are fire;
+     Doubt that the sun doth move;
+   Doubt truth to be a liar;
+     But never doubt I love.
+'O dear Ophelia, I am ill at these numbers; I have not art to
+reckon my groans: but that I love thee best, O most best, believe
+it. Adieu.
+  'Thine evermore, most dear lady, whilst this machine is to him,
+     HAMLET.'
+This, in obedience, hath my daughter show'd me;
+And more above, hath his solicitings,
+As they fell out by time, by means, and place,
+All given to mine ear.
+
+King.
+But how hath she
+Receiv'd his love?
+
+Pol.
+What do you think of me?
+
+King.
+As of a man faithful and honourable.
+
+Pol.
+I would fain prove so. But what might you think,
+When I had seen this hot love on the wing,--
+As I perceiv'd it, I must tell you that,
+Before my daughter told me,-- what might you,
+Or my dear majesty your queen here, think,
+If I had play'd the desk or table-book,
+Or given my heart a winking, mute and dumb;
+Or look'd upon this love with idle sight;--
+What might you think? No, I went round to work,
+And my young mistress thus I did bespeak:
+'Lord Hamlet is a prince, out of thy sphere;
+This must not be:' and then I precepts gave her,
+That she should lock herself from his resort,
+Admit no messengers, receive no tokens.
+Which done, she took the fruits of my advice;
+And he, repulsed,--a short tale to make,--
+Fell into a sadness; then into a fast;
+Thence to a watch; thence into a weakness;
+Thence to a lightness; and, by this declension,
+Into the madness wherein now he raves,
+And all we wail for.
+
+King.
+Do you think 'tis this?
+
+Queen.
+It may be, very likely.
+
+Pol.
+Hath there been such a time,--I'd fain know that--
+That I have positively said ''Tis so,'
+When it prov'd otherwise?
+
+King.
+Not that I know.
+
+Pol.
+Take this from this, if this be otherwise:
+[Points to his head and shoulder.]
+If circumstances lead me, I will find
+Where truth is hid, though it were hid indeed
+Within the centre.
+
+King.
+How may we try it further?
+
+Pol.
+You know sometimes he walks for hours together
+Here in the lobby.
+
+Queen.
+So he does indeed.
+
+Pol.
+At such a time I'll loose my daughter to him:
+Be you and I behind an arras then;
+Mark the encounter: if he love her not,
+And he not from his reason fall'n thereon
+Let me be no assistant for a state,
+But keep a farm and carters.
+
+King.
+We will try it.
+
+Queen.
+But look where sadly the poor wretch comes reading.
+
+Pol.
+Away, I do beseech you, both away
+I'll board him presently:--O, give me leave.
+
+[Exeunt King, Queen, and Attendants.]
+
+[Enter Hamlet, reading.]
+
+How does my good Lord Hamlet?
+
+Ham.
+Well, God-a-mercy.
+
+Pol.
+Do you know me, my lord?
+
+Ham.
+Excellent well; you're a fishmonger.
+
+Pol.
+Not I, my lord.
+
+Ham.
+Then I would you were so honest a man.
+
+Pol.
+Honest, my lord!
+
+Ham.
+Ay, sir; to be honest, as this world goes, is to be one man
+picked out of ten thousand.
+
+Pol.
+That's very true, my lord.
+
+Ham.
+For if the sun breed maggots in a dead dog, being a god-kissing
+carrion,--Have you a daughter?
+
+Pol.
+I have, my lord.
+
+Ham.
+Let her not walk i' the sun: conception is a blessing, but not
+as your daughter may conceive:--friend, look to't.
+
+Pol.
+How say you by that?--[Aside.] Still harping on my daughter:--yet
+he knew me not at first; he said I was a fishmonger: he is far
+gone, far gone: and truly in my youth I suffered much extremity
+for love; very near this. I'll speak to him again.--What do you
+read, my lord?
+
+Ham.
+Words, words, words.
+
+Pol.
+What is the matter, my lord?
+
+Ham.
+Between who?
+
+Pol.
+I mean, the matter that you read, my lord.
+
+Ham.
+Slanders, sir: for the satirical slave says here that old men
+have grey beards; that their faces are wrinkled; their eyes
+purging thick amber and plum-tree gum; and that they have a
+plentiful lack of wit, together with most weak hams: all which,
+sir, though I most powerfully and potently believe, yet I hold it
+not honesty to have it thus set down; for you yourself, sir,
+should be old as I am, if, like a crab, you could go backward.
+
+Pol.
+[Aside.] Though this be madness, yet there is a method in't.--
+Will you walk out of the air, my lord?
+
+Ham.
+Into my grave?
+
+Pol.
+Indeed, that is out o' the air. [Aside.] How pregnant sometimes
+his replies are! a happiness that often madness hits on, which
+reason and sanity could not so prosperously be delivered of. I
+will leave him and suddenly contrive the means of meeting between
+him and my daughter.--My honourable lord, I will most humbly take
+my leave of you.
+
+Ham.
+You cannot, sir, take from me anything that I will more
+willingly part withal,--except my life, except my life, except my
+life.
+
+Pol.
+Fare you well, my lord.
+
+Ham.
+These tedious old fools!
+
+[Enter Rosencrantz and Guildenstern.]
+
+Pol.
+You go to seek the Lord Hamlet; there he is.
+
+Ros.
+[To Polonius.] God save you, sir!
+
+[Exit Polonius.]
+
+Guil.
+My honoured lord!
+
+Ros.
+My most dear lord!
+
+Ham.
+My excellent good friends! How dost thou, Guildenstern? Ah,
+Rosencrantz! Good lads, how do ye both?
+
+Ros.
+As the indifferent children of the earth.
+
+Guil.
+Happy in that we are not over-happy;
+On fortune's cap we are not the very button.
+
+Ham.
+Nor the soles of her shoe?
+
+Ros.
+Neither, my lord.
+
+Ham.
+Then you live about her waist, or in the middle of her
+favours?
+
+Guil.
+Faith, her privates we.
+
+Ham.
+In the secret parts of fortune? O, most true; she is a
+strumpet. What's the news?
+
+Ros.
+None, my lord, but that the world's grown honest.
+
+Ham.
+Then is doomsday near; but your news is not true. Let me
+question more in particular: what have you, my good friends,
+deserved at the hands of fortune, that she sends you to prison
+hither?
+
+Guil.
+Prison, my lord!
+
+Ham.
+Denmark's a prison.
+
+Ros.
+Then is the world one.
+
+Ham.
+A goodly one; in which there are many confines, wards, and
+dungeons, Denmark being one o' the worst.
+
+Ros.
+We think not so, my lord.
+
+Ham.
+Why, then 'tis none to you; for there is nothing either good
+or bad but thinking makes it so: to me it is a prison.
+
+Ros.
+Why, then, your ambition makes it one; 'tis too narrow for your
+mind.
+
+Ham.
+O God, I could be bounded in a nutshell, and count myself a
+king of infinite space, were it not that I have bad dreams.
+
+Guil.
+Which dreams, indeed, are ambition; for the very substance of
+the ambitious is merely the shadow of a dream.
+
+Ham.
+A dream itself is but a shadow.
+
+Ros.
+Truly, and I hold ambition of so airy and light a quality that
+it is but a shadow's shadow.
+
+Ham.
+Then are our beggars bodies, and our monarchs and outstretch'd
+heroes the beggars' shadows. Shall we to the court? for, by my
+fay, I cannot reason.
+
+Ros. and Guild.
+We'll wait upon you.
+
+Ham.
+No such matter: I will not sort you with the rest of my
+servants; for, to speak to you like an honest man, I am most
+dreadfully attended. But, in the beaten way of friendship, what
+make you at Elsinore?
+
+Ros.
+To visit you, my lord; no other occasion.
+
+Ham.
+Beggar that I am, I am even poor in thanks; but I thank you:
+and sure, dear friends, my thanks are too dear a halfpenny. Were
+you not sent for? Is it your own inclining? Is it a free
+visitation? Come, deal justly with me: come, come; nay, speak.
+
+Guil.
+What should we say, my lord?
+
+Ham.
+Why, anything--but to the purpose. You were sent for; and
+there is a kind of confession in your looks, which your modesties
+have not craft enough to colour: I know the good king and queen
+have sent for you.
+
+Ros.
+To what end, my lord?
+
+Ham.
+That you must teach me. But let me conjure you, by the rights
+of our fellowship, by the consonancy of our youth, by the
+obligation of our ever-preserved love, and by what more dear a
+better proposer could charge you withal, be even and direct with
+me, whether you were sent for or no.
+
+Ros.
+[To Guildenstern.] What say you?
+
+Ham.
+[Aside.] Nay, then, I have an eye of you.--If you love me, hold
+not off.
+
+Guil.
+My lord, we were sent for.
+
+Ham.
+I will tell you why; so shall my anticipation prevent your
+discovery, and your secrecy to the king and queen moult no
+feather. I have of late,--but wherefore I know not,--lost all my
+mirth, forgone all custom of exercises; and indeed, it goes so
+heavily with my disposition that this goodly frame, the earth,
+seems to me a sterile promontory; this most excellent canopy, the
+air, look you, this brave o'erhanging firmament, this majestical
+roof fretted with golden fire,--why, it appears no other thing
+to me than a foul and pestilent congregation of vapours. What a
+piece of work is man! How noble in reason! how infinite in
+faculties! in form and moving, how express and admirable! in
+action how like an angel! in apprehension, how like a god! the
+beauty of the world! the paragon of animals! And yet, to me, what
+is this quintessence of dust? Man delights not me; no, nor woman
+neither, though by your smiling you seem to say so.
+
+Ros.
+My lord, there was no such stuff in my thoughts.
+
+Ham.
+Why did you laugh then, when I said 'Man delights not me'?
+
+Ros.
+To think, my lord, if you delight not in man, what lenten
+entertainment the players shall receive from you: we coted them
+on the way; and hither are they coming to offer you service.
+
+Ham.
+He that plays the king shall be welcome,--his majesty shall
+have tribute of me; the adventurous knight shall use his foil and
+target; the lover shall not sigh gratis; the humorous man shall
+end his part in peace; the clown shall make those laugh whose
+lungs are tickle o' the sere; and the lady shall say her mind
+freely, or the blank verse shall halt for't. What players are
+they?
+
+Ros.
+Even those you were wont to take such delight in,--the
+tragedians of the city.
+
+Ham.
+How chances it they travel? their residence, both in
+reputation and profit, was better both ways.
+
+Ros.
+I think their inhibition comes by the means of the late
+innovation.
+
+Ham.
+Do they hold the same estimation they did when I was in the
+city? Are they so followed?
+
+Ros.
+No, indeed, are they not.
+
+Ham.
+How comes it? do they grow rusty?
+
+Ros.
+Nay, their endeavour keeps in the wonted pace: but there is,
+sir, an aery of children, little eyases, that cry out on the top
+of question, and are most tyrannically clapped for't: these are
+now the fashion; and so berattle the common stages,--so they call
+them,--that many wearing rapiers are afraid of goose-quills and
+dare scarce come thither.
+
+Ham.
+What, are they children? who maintains 'em? How are they
+escoted? Will they pursue the quality no longer than they can
+sing? will they not say afterwards, if they should grow
+themselves to common players,--as it is most like, if their means
+are no better,--their writers do them wrong to make them exclaim
+against their own succession?
+
+Ros.
+Faith, there has been much to do on both sides; and the nation
+holds it no sin to tarre them to controversy: there was, for
+awhile, no money bid for argument unless the poet and the player
+went to cuffs in the question.
+
+Ham.
+Is't possible?
+
+Guil.
+O, there has been much throwing about of brains.
+
+Ham.
+Do the boys carry it away?
+
+Ros.
+Ay, that they do, my lord; Hercules and his load too.
+
+Ham.
+It is not very strange; for my uncle is king of Denmark, and
+those that would make mouths at him while my father lived, give
+twenty, forty, fifty, a hundred ducats a-piece for his picture in
+little. 'Sblood, there is something in this more than natural, if
+philosophy could find it out.
+
+[Flourish of trumpets within.]
+
+Guil.
+There are the players.
+
+Ham.
+Gentlemen, you are welcome to Elsinore. Your hands, come: the
+appurtenance of welcome is fashion and ceremony: let me comply
+with you in this garb; lest my extent to the players, which I
+tell you must show fairly outward, should more appear like
+entertainment than yours. You are welcome: but my uncle-father
+and aunt-mother are deceived.
+
+Guil.
+In what, my dear lord?
+
+Ham.
+I am but mad north-north-west: when the wind is southerly I
+know a hawk from a handsaw.
+
+[Enter Polonius.]
+
+Pol.
+Well be with you, gentlemen!
+
+Ham.
+Hark you, Guildenstern;--and you too;--at each ear a hearer: that
+great baby you see there is not yet out of his swaddling clouts.
+
+Ros.
+Happily he's the second time come to them; for they say an old
+man is twice a child.
+
+Ham.
+I will prophesy he comes to tell me of the players; mark it.--You
+say right, sir: o' Monday morning; 'twas so indeed.
+
+Pol.
+My lord, I have news to tell you.
+
+Ham.
+My lord, I have news to tell you. When Roscius was an actor in
+Rome,--
+
+Pol.
+The actors are come hither, my lord.
+
+Ham.
+Buzz, buzz!
+
+Pol.
+Upon my honour,--
+
+Ham.
+Then came each actor on his ass,--
+
+Pol.
+The best actors in the world, either for tragedy, comedy,
+history, pastoral, pastoral-comical, historical-pastoral,
+tragical-historical, tragical-comical-historical-pastoral, scene
+individable, or poem unlimited: Seneca cannot be too heavy nor
+Plautus too light. For the law of writ and the liberty, these are
+the only men.
+
+Ham.
+O Jephthah, judge of Israel, what a treasure hadst thou!
+
+Pol.
+What treasure had he, my lord?
+
+Ham.
+Why--
+   'One fair daughter, and no more,
+   The which he loved passing well.'
+
+
+Pol.
+[Aside.] Still on my daughter.
+
+Ham.
+Am I not i' the right, old Jephthah?
+
+Pol.
+If you call me Jephthah, my lord, I have a daughter that I
+love passing well.
+
+Ham.
+Nay, that follows not.
+
+Pol.
+What follows, then, my lord?
+
+Ham.
+Why--
+   'As by lot, God wot,'
+and then, you know,
+   'It came to pass, as most like it was--'
+The first row of the pious chanson will show you more; for look
+where my abridgment comes.
+
+[Enter four or five Players.]
+
+You are welcome, masters; welcome, all:--I am glad to see thee
+well.--welcome, good friends.--O, my old friend! Thy face is
+valanc'd since I saw thee last; comest thou to beard me in
+Denmark?--What, my young lady and mistress! By'r lady, your
+ladyship is nearer to heaven than when I saw you last, by the
+altitude of a chopine. Pray God, your voice, like a piece of
+uncurrent gold, be not cracked within the ring.--Masters, you are
+all welcome. We'll e'en to't like French falconers, fly at
+anything we see: we'll have a speech straight: come, give us a
+taste of your quality: come, a passionate speech.
+
+I Play.
+What speech, my lord?
+
+Ham.
+I heard thee speak me a speech once,--but it was never acted;
+or if it was, not above once; for the play, I remember, pleased
+not the million, 'twas caviare to the general; but it was,--as I
+received it, and others, whose judgments in such matters cried in
+the top of mine,--an excellent play, well digested in the scenes,
+set down with as much modesty as cunning. I remember, one said
+there were no sallets in the lines to make the matter savoury,
+nor no matter in the phrase that might indite the author of
+affectation; but called it an honest method, as wholesome as
+sweet, and by very much more handsome than fine. One speech in it
+I chiefly loved: 'twas AEneas' tale to Dido, and thereabout of it
+especially where he speaks of Priam's slaughter: if it live in
+your memory, begin at this line;--let me see, let me see:--
+
+The rugged Pyrrhus, like th' Hyrcanian beast,--
+
+it is not so:-- it begins with Pyrrhus:--
+
+  'The rugged Pyrrhus,--he whose sable arms,
+   Black as his purpose, did the night resemble
+   When he lay couched in the ominous horse,--
+   Hath now this dread and black complexion smear'd
+   With heraldry more dismal; head to foot
+   Now is he total gules; horridly trick'd
+   With blood of fathers, mothers, daughters, sons,
+   Bak'd and impasted with the parching streets,
+   That lend a tyrannous and a damned light
+   To their vile murders: roasted in wrath and fire,
+   And thus o'ersized with coagulate gore,
+   With eyes like carbuncles, the hellish Pyrrhus
+   Old grandsire Priam seeks.'
+
+So, proceed you.
+
+Pol.
+'Fore God, my lord, well spoken, with good accent and good
+discretion.
+
+I Play.
+   Anon he finds him,
+   Striking too short at Greeks: his antique sword,
+   Rebellious to his arm, lies where it falls,
+   Repugnant to command: unequal match'd,
+   Pyrrhus at Priam drives; in rage strikes wide;
+   But with the whiff and wind of his fell sword
+   The unnerved father falls. Then senseless Ilium,
+   Seeming to feel this blow, with flaming top
+   Stoops to his base; and with a hideous crash
+   Takes prisoner Pyrrhus' ear: for lo! his sword,
+   Which was declining on the milky head
+   Of reverend Priam, seem'd i' the air to stick:
+   So, as a painted tyrant, Pyrrhus stood;
+   And, like a neutral to his will and matter,
+   Did nothing.
+   But as we often see, against some storm,
+   A silence in the heavens, the rack stand still,
+   The bold winds speechless, and the orb below
+   As hush as death, anon the dreadful thunder
+   Doth rend the region; so, after Pyrrhus' pause,
+   A roused vengeance sets him new a-work;
+   And never did the Cyclops' hammers fall
+   On Mars's armour, forg'd for proof eterne,
+   With less remorse than Pyrrhus' bleeding sword
+   Now falls on Priam.--
+   Out, out, thou strumpet, Fortune! All you gods,
+   In general synod, take away her power;
+   Break all the spokes and fellies from her wheel,
+   And bowl the round nave down the hill of heaven,
+   As low as to the fiends!
+
+Pol.
+This is too long.
+
+Ham.
+It shall to the barber's, with your beard.--Pr'ythee say on.--
+He's for a jig or a tale of bawdry, or he sleeps:--say on; come
+to Hecuba.
+
+I Play.
+   But who, O who, had seen the mobled queen,--
+
+Ham.
+'The mobled queen'?
+
+Pol.
+That's good! 'Mobled queen' is good.
+
+I Play.
+   Run barefoot up and down, threatening the flames
+   With bisson rheum; a clout upon that head
+   Where late the diadem stood, and for a robe,
+   About her lank and all o'erteemed loins,
+   A blanket, in the alarm of fear caught up;--
+   Who this had seen, with tongue in venom steep'd,
+   'Gainst Fortune's state would treason have pronounc'd:
+   But if the gods themselves did see her then,
+   When she saw Pyrrhus make malicious sport
+   In mincing with his sword her husband's limbs,
+   The instant burst of clamour that she made,--
+   Unless things mortal move them not at all,--
+   Would have made milch the burning eyes of heaven,
+   And passion in the gods.
+
+Pol.
+Look, whether he has not turn'd his colour, and has tears in's
+eyes.--Pray you, no more!
+
+Ham.
+'Tis well. I'll have thee speak out the rest of this soon.--
+Good my lord, will you see the players well bestowed? Do you
+hear? Let them be well used; for they are the abstracts and brief
+chronicles of the time; after your death you were better have a
+bad epitaph than their ill report while you live.
+
+Pol.
+My lord, I will use them according to their desert.
+
+Ham.
+Odd's bodikin, man, better: use every man after his
+desert, and who should scape whipping? Use them after your own
+honour and dignity: the less they deserve, the more merit is in
+your bounty. Take them in.
+
+Pol.
+Come, sirs.
+
+Ham.
+Follow him, friends: we'll hear a play to-morrow.
+
+[Exeunt Polonius with all the Players but the First.]
+
+Dost thou hear me, old friend? Can you play 'The Murder of
+Gonzago'?
+
+I Play.
+Ay, my lord.
+
+Ham.
+We'll ha't to-morrow night. You could, for a need, study a
+speech of some dozen or sixteen lines which I would set down and
+insert in't? could you not?
+
+I Play.
+Ay, my lord.
+
+Ham.
+Very well.--Follow that lord; and look you mock him not.
+
+[Exit First Player.]
+
+--My good friends [to Ros. and Guild.], I'll leave you till
+night: you are welcome to Elsinore.
+
+Ros.
+Good my lord!
+
+[Exeunt Rosencrantz and Guildenstern.]
+
+Ham.
+Ay, so, God b' wi' ye!
+Now I am alone.
+O, what a rogue and peasant slave am I!
+Is it not monstrous that this player here,
+But in a fiction, in a dream of passion,
+Could force his soul so to his own conceit
+That from her working all his visage wan'd;
+Tears in his eyes, distraction in's aspect,
+A broken voice, and his whole function suiting
+With forms to his conceit? And all for nothing!
+For Hecuba?
+What's Hecuba to him, or he to Hecuba,
+That he should weep for her? What would he do,
+Had he the motive and the cue for passion
+That I have? He would drown the stage with tears
+And cleave the general ear with horrid speech;
+Make mad the guilty, and appal the free;
+Confound the ignorant, and amaze, indeed,
+The very faculties of eyes and ears.
+Yet I,
+A dull and muddy-mettled rascal, peak,
+Like John-a-dreams, unpregnant of my cause,
+And can say nothing; no, not for a king
+Upon whose property and most dear life
+A damn'd defeat was made. Am I a coward?
+Who calls me villain? breaks my pate across?
+Plucks off my beard and blows it in my face?
+Tweaks me by the nose? gives me the lie i' the throat
+As deep as to the lungs? who does me this, ha?
+'Swounds, I should take it: for it cannot be
+But I am pigeon-liver'd, and lack gall
+To make oppression bitter; or ere this
+I should have fatted all the region kites
+With this slave's offal: bloody, bawdy villain!
+Remorseless, treacherous, lecherous, kindless villain!
+O, vengeance!
+Why, what an ass am I! This is most brave,
+That I, the son of a dear father murder'd,
+Prompted to my revenge by heaven and hell,
+Must, like a whore, unpack my heart with words
+And fall a-cursing like a very drab,
+A scullion!
+Fie upon't! foh!--About, my brain! I have heard
+That guilty creatures, sitting at a play,
+Have by the very cunning of the scene
+Been struck so to the soul that presently
+They have proclaim'd their malefactions;
+For murder, though it have no tongue, will speak
+With most miraculous organ, I'll have these players
+Play something like the murder of my father
+Before mine uncle: I'll observe his looks;
+I'll tent him to the quick: if he but blench,
+I know my course. The spirit that I have seen
+May be the devil: and the devil hath power
+To assume a pleasing shape; yea, and perhaps
+Out of my weakness and my melancholy,--
+As he is very potent with such spirits,--
+Abuses me to damn me: I'll have grounds
+More relative than this.--the play's the thing
+Wherein I'll catch the conscience of the king.
+
+[Exit.]
+
+
+
+
+ACT III.
+
+Scene I. A room in the Castle.
+
+[Enter King, Queen, Polonius, Ophelia, Rosencrantz, and
+Guildenstern.]
+
+King.
+And can you, by no drift of circumstance,
+Get from him why he puts on this confusion,
+Grating so harshly all his days of quiet
+With turbulent and dangerous lunacy?
+
+Ros.
+He does confess he feels himself distracted,
+But from what cause he will by no means speak.
+
+Guil.
+Nor do we find him forward to be sounded,
+But, with a crafty madness, keeps aloof
+When we would bring him on to some confession
+Of his true state.
+
+Queen.
+Did he receive you well?
+
+Ros.
+Most like a gentleman.
+
+Guil.
+But with much forcing of his disposition.
+
+Ros.
+Niggard of question; but, of our demands,
+Most free in his reply.
+
+Queen.
+Did you assay him
+To any pastime?
+
+Ros.
+Madam, it so fell out that certain players
+We o'er-raught on the way: of these we told him,
+And there did seem in him a kind of joy
+To hear of it: they are about the court,
+And, as I think, they have already order
+This night to play before him.
+
+Pol.
+'Tis most true;
+And he beseech'd me to entreat your majesties
+To hear and see the matter.
+
+King.
+With all my heart; and it doth much content me
+To hear him so inclin'd.--
+Good gentlemen, give him a further edge,
+And drive his purpose on to these delights.
+
+Ros.
+We shall, my lord.
+
+[Exeunt Rosencrantz and Guildenstern.]
+
+King.
+Sweet Gertrude, leave us too;
+For we have closely sent for Hamlet hither,
+That he, as 'twere by accident, may here
+Affront Ophelia:
+Her father and myself,--lawful espials,--
+Will so bestow ourselves that, seeing, unseen,
+We may of their encounter frankly judge;
+And gather by him, as he is behav'd,
+If't be the affliction of his love or no
+That thus he suffers for.
+
+Queen.
+I shall obey you:--
+And for your part, Ophelia, I do wish
+That your good beauties be the happy cause
+Of Hamlet's wildness: so shall I hope your virtues
+Will bring him to his wonted way again,
+To both your honours.
+
+Oph.
+Madam, I wish it may.
+
+[Exit Queen.]
+
+Pol.
+Ophelia, walk you here.--Gracious, so please you,
+We will bestow ourselves.--[To Ophelia.] Read on this book;
+That show of such an exercise may colour
+Your loneliness.--We are oft to blame in this,--
+'Tis too much prov'd,--that with devotion's visage
+And pious action we do sugar o'er
+The Devil himself.
+
+King.
+[Aside.] O, 'tis too true!
+How smart a lash that speech doth give my conscience!
+The harlot's cheek, beautied with plastering art,
+Is not more ugly to the thing that helps it
+Than is my deed to my most painted word:
+O heavy burden!
+
+Pol.
+I hear him coming: let's withdraw, my lord.
+
+[Exeunt King and Polonius.]
+
+[Enter Hamlet.]
+
+Ham.
+To be, or not to be,--that is the question:--
+Whether 'tis nobler in the mind to suffer
+The slings and arrows of outrageous fortune
+Or to take arms against a sea of troubles,
+And by opposing end them?--To die,--to sleep,--
+No more; and by a sleep to say we end
+The heartache, and the thousand natural shocks
+That flesh is heir to,--'tis a consummation
+Devoutly to be wish'd. To die,--to sleep;--
+To sleep! perchance to dream:--ay, there's the rub;
+For in that sleep of death what dreams may come,
+When we have shuffled off this mortal coil,
+Must give us pause: there's the respect
+That makes calamity of so long life;
+For who would bear the whips and scorns of time,
+The oppressor's wrong, the proud man's contumely,
+The pangs of despis'd love, the law's delay,
+The insolence of office, and the spurns
+That patient merit of the unworthy takes,
+When he himself might his quietus make
+With a bare bodkin? who would these fardels bear,
+To grunt and sweat under a weary life,
+But that the dread of something after death,--
+The undiscover'd country, from whose bourn
+No traveller returns,--puzzles the will,
+And makes us rather bear those ills we have
+Than fly to others that we know not of?
+Thus conscience does make cowards of us all;
+And thus the native hue of resolution
+Is sicklied o'er with the pale cast of thought;
+And enterprises of great pith and moment,
+With this regard, their currents turn awry,
+And lose the name of action.--Soft you now!
+The fair Ophelia!--Nymph, in thy orisons
+Be all my sins remember'd.
+
+Oph.
+Good my lord,
+How does your honour for this many a day?
+
+Ham.
+I humbly thank you; well, well, well.
+
+Oph.
+My lord, I have remembrances of yours
+That I have longed long to re-deliver.
+I pray you, now receive them.
+
+Ham.
+No, not I;
+I never gave you aught.
+
+Oph.
+My honour'd lord, you know right well you did;
+And with them words of so sweet breath compos'd
+As made the things more rich; their perfume lost,
+Take these again; for to the noble mind
+Rich gifts wax poor when givers prove unkind.
+There, my lord.
+
+Ham.
+Ha, ha! are you honest?
+
+Oph.
+My lord?
+
+Ham.
+Are you fair?
+
+Oph.
+What means your lordship?
+
+Ham.
+That if you be honest and fair, your honesty should admit no
+discourse to your beauty.
+
+Oph.
+Could beauty, my lord, have better commerce than with honesty?
+
+Ham.
+Ay, truly; for the power of beauty will sooner transform
+honesty from what it is to a bawd than the force of honesty can
+translate beauty into his likeness: this was sometime a paradox,
+but now the time gives it proof. I did love you once.
+
+Oph.
+Indeed, my lord, you made me believe so.
+
+Ham.
+You should not have believ'd me; for virtue cannot so
+inoculate our old stock but we shall relish of it: I loved you
+not.
+
+Oph.
+I was the more deceived.
+
+Ham.
+Get thee to a nunnery: why wouldst thou be a breeder of
+sinners? I am myself indifferent honest; but yet I could accuse
+me of such things that it were better my mother had not borne me:
+I am very proud, revengeful, ambitious; with more offences at my
+beck than I have thoughts to put them in, imagination to give
+them shape, or time to act them in. What should such fellows as I
+do crawling between earth and heaven? We are arrant knaves, all;
+believe none of us. Go thy ways to a nunnery. Where's your
+father?
+
+Oph.
+At home, my lord.
+
+Ham.
+Let the doors be shut upon him, that he may play the fool
+nowhere but in's own house. Farewell.
+
+Oph.
+O, help him, you sweet heavens!
+
+Ham.
+If thou dost marry, I'll give thee this plague for thy dowry,--
+be thou as chaste as ice, as pure as snow, thou shalt not escape
+calumny. Get thee to a nunnery, go: farewell. Or, if thou wilt
+needs marry, marry a fool; for wise men know well enough what
+monsters you make of them. To a nunnery, go; and quickly too.
+Farewell.
+
+Oph.
+O heavenly powers, restore him!
+
+Ham.
+I have heard of your paintings too, well enough; God hath
+given you one face, and you make yourselves another: you jig, you
+amble, and you lisp, and nickname God's creatures, and make your
+wantonness your ignorance. Go to, I'll no more on't; it hath made
+me mad. I say, we will have no more marriages: those that are
+married already, all but one, shall live; the rest shall keep as
+they are. To a nunnery, go.
+
+[Exit.]
+
+Oph.
+O, what a noble mind is here o'erthrown!
+The courtier's, scholar's, soldier's, eye, tongue, sword,
+The expectancy and rose of the fair state,
+The glass of fashion and the mould of form,
+The observ'd of all observers,--quite, quite down!
+And I, of ladies most deject and wretched
+That suck'd the honey of his music vows,
+Now see that noble and most sovereign reason,
+Like sweet bells jangled, out of tune and harsh;
+That unmatch'd form and feature of blown youth
+Blasted with ecstasy: O, woe is me,
+To have seen what I have seen, see what I see!
+
+[Re-enter King and Polonius.]
+
+King.
+Love! his affections do not that way tend;
+Nor what he spake, though it lack'd form a little,
+Was not like madness. There's something in his soul
+O'er which his melancholy sits on brood;
+And I do doubt the hatch and the disclose
+Will be some danger: which for to prevent,
+I have in quick determination
+Thus set it down:--he shall with speed to England
+For the demand of our neglected tribute:
+Haply the seas, and countries different,
+With variable objects, shall expel
+This something-settled matter in his heart;
+Whereon his brains still beating puts him thus
+From fashion of himself. What think you on't?
+
+Pol.
+It shall do well: but yet do I believe
+The origin and commencement of his grief
+Sprung from neglected love.--How now, Ophelia!
+You need not tell us what Lord Hamlet said;
+We heard it all.--My lord, do as you please;
+But if you hold it fit, after the play,
+Let his queen mother all alone entreat him
+To show his grief: let her be round with him;
+And I'll be plac'd, so please you, in the ear
+Of all their conference. If she find him not,
+To England send him; or confine him where
+Your wisdom best shall think.
+
+King.
+It shall be so:
+Madness in great ones must not unwatch'd go.
+
+[Exeunt.]
+
+
+
+Scene II. A hall in the Castle.
+
+[Enter Hamlet and certain Players.]
+
+Ham.
+Speak the speech, I pray you, as I pronounced it to you,
+trippingly on the tongue: but if you mouth it, as many of your
+players do, I had as lief the town crier spoke my lines. Nor do
+not saw the air too much with your hand, thus, but use all
+gently: for in the very torrent, tempest, and, as I may say,
+whirlwind of passion, you must acquire and beget a
+temperance that may give it smoothness. O, it offends me to the
+soul, to hear a robustious periwig-pated fellow tear a passion to
+tatters, to very rags, to split the ears of the groundlings, who,
+for the most part, are capable of nothing but inexplicable dumb
+shows and noise: I would have such a fellow whipped for o'erdoing
+Termagant; it out-herods Herod: pray you avoid it.
+
+I Player.
+I warrant your honour.
+
+Ham.
+Be not too tame neither; but let your own discretion be your
+tutor: suit the action to the word, the word to the action; with
+this special observance, that you o'erstep not the modesty of
+nature: for anything so overdone is from the purpose of playing,
+whose end, both at the first and now, was and is, to hold, as
+'twere, the mirror up to nature; to show virtue her own image,
+scorn her own image, and the very age and body of the time his
+form and pressure. Now, this overdone, or come tardy off, though
+it make the unskilful laugh, cannot but make the judicious
+grieve; the censure of the which one must in your allowance,
+o'erweigh a whole theatre of others. O, there be players that I
+have seen play,--and heard others praise, and that highly,--not
+to speak it profanely, that, neither having the accent of
+Christians, nor the gait of Christian, pagan, nor man, have so
+strutted and bellowed that I have thought some of nature's
+journeymen had made men, and not made them well, they imitated
+humanity so abominably.
+
+I Player.
+I hope we have reform'd that indifferently with us, sir.
+
+Ham.
+O, reform it altogether. And let those that play your clowns
+speak no more than is set down for them: for there be of them
+that will themselves laugh, to set on some quantity of barren
+spectators to laugh too, though in the meantime some necessary
+question of the play be then to be considered: that's villanous
+and shows a most pitiful ambition in the fool that uses it. Go
+make you ready.
+
+[Exeunt Players.]
+
+[Enter Polonius, Rosencrantz, and Guildenstern.]
+
+How now, my lord! will the king hear this piece of work?
+
+Pol.
+And the queen too, and that presently.
+
+Ham.
+Bid the players make haste.
+
+[Exit Polonius.]
+
+Will you two help to hasten them?
+
+Ros. and Guil.
+We will, my lord.
+
+[Exeunt Ros. and Guil.]
+
+Ham.
+What, ho, Horatio!
+
+[Enter Horatio.]
+
+Hor.
+Here, sweet lord, at your service.
+
+Ham.
+Horatio, thou art e'en as just a man
+As e'er my conversation cop'd withal.
+
+Hor.
+O, my dear lord,--
+
+Ham.
+Nay, do not think I flatter;
+For what advancement may I hope from thee,
+That no revenue hast, but thy good spirits,
+To feed and clothe thee? Why should the poor be flatter'd?
+No, let the candied tongue lick absurd pomp;
+And crook the pregnant hinges of the knee
+Where thrift may follow fawning. Dost thou hear?
+Since my dear soul was mistress of her choice,
+And could of men distinguish, her election
+Hath seal'd thee for herself: for thou hast been
+As one, in suffering all, that suffers nothing;
+A man that Fortune's buffets and rewards
+Hast ta'en with equal thanks: and bles'd are those
+Whose blood and judgment are so well commingled
+That they are not a pipe for Fortune's finger
+To sound what stop she please. Give me that man
+That is not passion's slave, and I will wear him
+In my heart's core, ay, in my heart of heart,
+As I do thee.--Something too much of this.--
+There is a play to-night before the king;
+One scene of it comes near the circumstance,
+Which I have told thee, of my father's death:
+I pr'ythee, when thou see'st that act a-foot,
+Even with the very comment of thy soul
+Observe mine uncle: if his occulted guilt
+Do not itself unkennel in one speech,
+It is a damned ghost that we have seen;
+And my imaginations are as foul
+As Vulcan's stithy. Give him heedful note;
+For I mine eyes will rivet to his face;
+And, after, we will both our judgments join
+In censure of his seeming.
+
+Hor.
+Well, my lord:
+If he steal aught the whilst this play is playing,
+And scape detecting, I will pay the theft.
+
+Ham.
+They are coming to the play. I must be idle:
+Get you a place.
+
+[Danish march. A flourish. Enter King, Queen, Polonius, Ophelia,
+Rosencrantz, Guildenstern, and others.]
+
+King.
+How fares our cousin Hamlet?
+
+Ham.
+Excellent, i' faith; of the chameleon's dish: I eat the air,
+promise-crammed: you cannot feed capons so.
+
+King.
+I have nothing with this answer, Hamlet; these words are not
+mine.
+
+Ham.
+No, nor mine now. My lord, you play'd once i' the university, you
+say? [To Polonius.]
+
+Pol.
+That did I, my lord, and was accounted a good actor.
+
+Ham.
+What did you enact?
+
+Pol.
+I did enact Julius Caesar; I was kill'd i' the Capitol; Brutus
+killed me.
+
+Ham.
+It was a brute part of him to kill so capital a calf there.--Be
+the players ready?
+
+Ros.
+Ay, my lord; they stay upon your patience.
+
+Queen.
+Come hither, my dear Hamlet, sit by me.
+
+Ham.
+No, good mother, here's metal more attractive.
+
+Pol.
+O, ho! do you mark that? [To the King.]
+
+Ham.
+Lady, shall I lie in your lap?
+[Lying down at Ophelia's feet.]
+
+Oph.
+No, my lord.
+
+Ham.
+I mean, my head upon your lap?
+
+Oph.
+Ay, my lord.
+
+Ham.
+Do you think I meant country matters?
+
+Oph.
+I think nothing, my lord.
+
+Ham.
+That's a fair thought to lie between maids' legs.
+
+Oph.
+What is, my lord?
+
+Ham.
+Nothing.
+
+Oph.
+You are merry, my lord.
+
+Ham.
+Who, I?
+
+Oph.
+Ay, my lord.
+
+Ham.
+O, your only jig-maker! What should a man do but be merry?
+for look you how cheerfully my mother looks, and my father died
+within 's two hours.
+
+Oph.
+Nay, 'tis twice two months, my lord.
+
+Ham.
+So long? Nay then, let the devil wear black, for I'll have a
+suit of sables. O heavens! die two months ago, and not forgotten
+yet? Then there's hope a great man's memory may outlive his life
+half a year: but, by'r lady, he must build churches then; or else
+shall he suffer not thinking on, with the hobby-horse, whose
+epitaph is 'For, O, for, O, the hobby-horse is forgot!'
+
+[Trumpets sound. The dumb show enters.]
+
+[Enter a King and a Queen very lovingly; the Queen embracing
+him and he her. She kneels, and makes show of protestation
+unto him. He takes her up, and declines his head upon her
+neck: lays him down upon a bank of flowers: she, seeing
+him asleep, leaves him. Anon comes in a fellow, takes off his
+crown, kisses it, pours poison in the king's ears, and exit. The
+Queen returns, finds the King dead, and makes passionate action.
+The Poisoner with some three or four Mutes, comes in again,
+seeming to lament with her. The dead body is carried away. The
+Poisoner wooes the Queen with gifts; she seems loth and unwilling
+awhile, but in the end accepts his love.]
+
+[Exeunt.]
+
+Oph.
+What means this, my lord?
+
+Ham.
+Marry, this is miching mallecho; it means mischief.
+
+Oph.
+Belike this show imports the argument of the play.
+
+[Enter Prologue.]
+
+Ham.
+We shall know by this fellow: the players cannot keep counsel;
+they'll tell all.
+
+Oph.
+Will he tell us what this show meant?
+
+Ham.
+Ay, or any show that you'll show him: be not you ashamed to
+show, he'll not shame to tell you what it means.
+
+Oph.
+You are naught, you are naught: I'll mark the play.
+
+Pro.
+   For us, and for our tragedy,
+   Here stooping to your clemency,
+   We beg your hearing patiently.
+
+Ham.
+Is this a prologue, or the posy of a ring?
+
+Oph.
+'Tis brief, my lord.
+
+Ham.
+As woman's love.
+
+[Enter a King and a Queen.]
+
+P. King.
+Full thirty times hath Phoebus' cart gone round
+Neptune's salt wash and Tellus' orbed ground,
+And thirty dozen moons with borrow'd sheen
+About the world have times twelve thirties been,
+Since love our hearts, and Hymen did our hands,
+Unite commutual in most sacred bands.
+
+P. Queen.
+So many journeys may the sun and moon
+Make us again count o'er ere love be done!
+But, woe is me, you are so sick of late,
+So far from cheer and from your former state.
+That I distrust you. Yet, though I distrust,
+Discomfort you, my lord, it nothing must:
+For women's fear and love holds quantity;
+In neither aught, or in extremity.
+Now, what my love is, proof hath made you know;
+And as my love is siz'd, my fear is so:
+Where love is great, the littlest doubts are fear;
+Where little fears grow great, great love grows there.
+
+P. King.
+Faith, I must leave thee, love, and shortly too;
+My operant powers their functions leave to do:
+And thou shalt live in this fair world behind,
+Honour'd, belov'd, and haply one as kind
+For husband shalt thou,--
+
+P. Queen.
+O, confound the rest!
+Such love must needs be treason in my breast:
+In second husband let me be accurst!
+None wed the second but who kill'd the first.
+
+Ham.
+[Aside.] Wormwood, wormwood!
+
+P. Queen.
+The instances that second marriage move
+Are base respects of thrift, but none of love.
+A second time I kill my husband dead
+When second husband kisses me in bed.
+
+P. King.
+I do believe you think what now you speak;
+But what we do determine oft we break.
+Purpose is but the slave to memory;
+Of violent birth, but poor validity:
+Which now, like fruit unripe, sticks on the tree;
+But fall unshaken when they mellow be.
+Most necessary 'tis that we forget
+To pay ourselves what to ourselves is debt:
+What to ourselves in passion we propose,
+The passion ending, doth the purpose lose.
+The violence of either grief or joy
+Their own enactures with themselves destroy:
+Where joy most revels, grief doth most lament;
+Grief joys, joy grieves, on slender accident.
+This world is not for aye; nor 'tis not strange
+That even our loves should with our fortunes change;
+For 'tis a question left us yet to prove,
+Whether love lead fortune, or else fortune love.
+The great man down, you mark his favourite flies,
+The poor advanc'd makes friends of enemies;
+And hitherto doth love on fortune tend:
+For who not needs shall never lack a friend;
+And who in want a hollow friend doth try,
+Directly seasons him his enemy.
+But, orderly to end where I begun,--
+Our wills and fates do so contrary run
+That our devices still are overthrown;
+Our thoughts are ours, their ends none of our own:
+So think thou wilt no second husband wed;
+But die thy thoughts when thy first lord is dead.
+
+P. Queen.
+Nor earth to me give food, nor heaven light!
+Sport and repose lock from me day and night!
+To desperation turn my trust and hope!
+An anchor's cheer in prison be my scope!
+Each opposite that blanks the face of joy
+Meet what I would have well, and it destroy!
+Both here and hence pursue me lasting strife,
+If, once a widow, ever I be wife!
+
+Ham.
+If she should break it now! [To Ophelia.]
+
+P. King.
+'Tis deeply sworn. Sweet, leave me here awhile;
+My spirits grow dull, and fain I would beguile
+The tedious day with sleep.
+[Sleeps.]
+
+P. Queen.
+Sleep rock thy brain,
+And never come mischance between us twain!
+
+[Exit.]
+
+Ham.
+Madam, how like you this play?
+
+Queen.
+The lady protests too much, methinks.
+
+Ham.
+O, but she'll keep her word.
+
+King.
+Have you heard the argument? Is there no offence in't?
+
+Ham.
+No, no! They do but jest, poison in jest; no offence i' the
+world.
+
+King.
+What do you call the play?
+
+Ham.
+The Mouse-trap. Marry, how? Tropically. This play is the
+image of a murder done in Vienna: Gonzago is the duke's name;
+his wife, Baptista: you shall see anon; 'tis a knavish piece of
+work: but what o' that? your majesty, and we that have free
+souls, it touches us not: let the gall'd jade wince; our withers
+are unwrung.
+
+[Enter Lucianus.]
+
+This is one Lucianus, nephew to the King.
+
+Oph.
+You are a good chorus, my lord.
+
+Ham.
+I could interpret between you and your love, if I could see
+the puppets dallying.
+
+Oph.
+You are keen, my lord, you are keen.
+
+Ham.
+It would cost you a groaning to take off my edge.
+
+Oph.
+Still better, and worse.
+
+Ham.
+So you must take your husbands.--Begin, murderer; pox, leave
+thy damnable faces, and begin. Come:--'The croaking raven doth
+bellow for revenge.'
+
+Luc.
+Thoughts black, hands apt, drugs fit, and time agreeing;
+Confederate season, else no creature seeing;
+Thou mixture rank, of midnight weeds collected,
+With Hecate's ban thrice blasted, thrice infected,
+Thy natural magic and dire property
+On wholesome life usurp immediately.
+
+[Pours the poison into the sleeper's ears.]
+
+Ham.
+He poisons him i' the garden for's estate. His name's Gonzago:
+The story is extant, and written in very choice Italian; you
+shall see anon how the murderer gets the love of Gonzago's wife.
+
+Oph.
+The King rises.
+
+Ham.
+What, frighted with false fire!
+
+Queen.
+How fares my lord?
+
+Pol.
+Give o'er the play.
+
+King.
+Give me some light:--away!
+
+All.
+Lights, lights, lights!
+
+[Exeunt all but Hamlet and Horatio.]
+
+Ham.
+   Why, let the strucken deer go weep,
+     The hart ungalled play;
+   For some must watch, while some must sleep:
+     So runs the world away.--
+Would not this, sir, and a forest of feathers--if the rest of my
+fortunes turn Turk with me,--with two Provincial roses on my
+razed shoes, get me a fellowship in a cry of players, sir?
+
+Hor.
+Half a share.
+
+Ham.
+     A whole one, I.
+   For thou dost know, O Damon dear,
+     This realm dismantled was
+   Of Jove himself; and now reigns here
+     A very, very--pajock.
+
+Hor.
+You might have rhymed.
+
+Ham.
+O good Horatio, I'll take the ghost's word for a thousand
+pound! Didst perceive?
+
+Hor.
+Very well, my lord.
+
+Ham.
+Upon the talk of the poisoning?--
+
+Hor.
+I did very well note him.
+
+Ham.
+Ah, ha!--Come, some music! Come, the recorders!--
+   For if the king like not the comedy,
+   Why then, belike he likes it not, perdy.
+Come, some music!
+
+[Enter Rosencrantz and Guildenstern.]
+
+Guil.
+Good my lord, vouchsafe me a word with you.
+
+Ham.
+Sir, a whole history.
+
+Guil.
+The king, sir--
+
+Ham.
+Ay, sir, what of him?
+
+Guil.
+Is, in his retirement, marvellous distempered.
+
+Ham.
+With drink, sir?
+
+Guil.
+No, my lord; rather with choler.
+
+Ham.
+Your wisdom should show itself more richer to signify this to
+the doctor; for me to put him to his purgation would perhaps
+plunge him into far more choler.
+
+Guil.
+Good my lord, put your discourse into some frame, and start
+not so wildly from my affair.
+
+Ham.
+I am tame, sir:--pronounce.
+
+Guil.
+The queen, your mother, in most great affliction of spirit,
+hath sent me to you.
+
+Ham.
+You are welcome.
+
+Guil.
+Nay, good my lord, this courtesy is not of the right breed.
+If it shall please you to make me a wholesome answer, I will do
+your mother's commandment: if not, your pardon and my return
+shall be the end of my business.
+
+Ham.
+Sir, I cannot.
+
+Guil.
+What, my lord?
+
+Ham.
+Make you a wholesome answer; my wit's diseased: but, sir, such
+answer as I can make, you shall command; or rather, as you say,
+my mother: therefore no more, but to the matter: my mother, you
+say,--
+
+Ros.
+Then thus she says: your behaviour hath struck her into
+amazement and admiration.
+
+Ham.
+O wonderful son, that can so stonish a mother!--But is there no
+sequel at the heels of this mother's admiration?
+
+Ros.
+She desires to speak with you in her closet ere you go to bed.
+
+Ham.
+We shall obey, were she ten times our mother. Have you any
+further trade with us?
+
+Ros.
+My lord, you once did love me.
+
+Ham.
+And so I do still, by these pickers and stealers.
+
+Ros.
+Good my lord, what is your cause of distemper? you do, surely,
+bar the door upon your own liberty if you deny your griefs to
+your friend.
+
+Ham.
+Sir, I lack advancement.
+
+Ros.
+How can that be, when you have the voice of the king himself
+for your succession in Denmark?
+
+Ham.
+Ay, sir, but 'While the grass grows'--the proverb is something
+musty.
+
+[Re-enter the Players, with recorders.]
+
+O, the recorders:--let me see one.--To withdraw with you:--why do
+you go about to recover the wind of me, as if you would drive me
+into a toil?
+
+Guil.
+O my lord, if my duty be too bold, my love is too unmannerly.
+
+Ham.
+I do not well understand that. Will you play upon this pipe?
+
+Guil.
+My lord, I cannot.
+
+Ham.
+I pray you.
+
+Guil.
+Believe me, I cannot.
+
+Ham.
+I do beseech you.
+
+Guil.
+I know, no touch of it, my lord.
+
+Ham.
+'Tis as easy as lying: govern these ventages with your
+finger and thumb, give it breath with your mouth, and it will
+discourse most eloquent music. Look you, these are the stops.
+
+Guil.
+But these cannot I command to any utterance of harmony; I
+have not the skill.
+
+Ham.
+Why, look you now, how unworthy a thing you make of me! You
+would play upon me; you would seem to know my stops; you would
+pluck out the heart of my mystery; you would sound me from my
+lowest note to the top of my compass; and there is much music,
+excellent voice, in this little organ, yet cannot you make it
+speak. 'Sblood, do you think I am easier to be played on than a
+pipe? Call me what instrument you will, though you can fret me,
+you cannot play upon me.
+
+[Enter Polonius.]
+
+God bless you, sir!
+
+Pol.
+My lord, the queen would speak with you, and presently.
+
+Ham.
+Do you see yonder cloud that's almost in shape of a camel?
+
+Pol.
+By the mass, and 'tis like a camel indeed.
+
+Ham.
+Methinks it is like a weasel.
+
+Pol.
+It is backed like a weasel.
+
+Ham.
+Or like a whale.
+
+Pol.
+Very like a whale.
+
+Ham.
+Then will I come to my mother by and by.--They fool me to the
+top of my bent.--I will come by and by.
+
+Pol.
+I will say so.
+
+[Exit.]
+
+Ham.
+By-and-by is easily said.
+
+[Exit Polonius.]
+
+--Leave me, friends.
+
+[Exeunt Ros, Guil., Hor., and Players.]
+
+'Tis now the very witching time of night,
+When churchyards yawn, and hell itself breathes out
+Contagion to this world: now could I drink hot blood,
+And do such bitter business as the day
+Would quake to look on. Soft! now to my mother.--
+O heart, lose not thy nature; let not ever
+The soul of Nero enter this firm bosom:
+Let me be cruel, not unnatural;
+I will speak daggers to her, but use none;
+My tongue and soul in this be hypocrites,--
+How in my words somever she be shent,
+To give them seals never, my soul, consent!
+
+[Exit.]
+
+
+
+Scene III. A room in the Castle.
+
+[Enter King, Rosencrantz, and Guildenstern.]
+
+King.
+I like him not; nor stands it safe with us
+To let his madness range. Therefore prepare you;
+I your commission will forthwith dispatch,
+And he to England shall along with you:
+The terms of our estate may not endure
+Hazard so near us as doth hourly grow
+Out of his lunacies.
+
+Guil.
+We will ourselves provide:
+Most holy and religious fear it is
+To keep those many many bodies safe
+That live and feed upon your majesty.
+
+Ros.
+The single and peculiar life is bound,
+With all the strength and armour of the mind,
+To keep itself from 'noyance; but much more
+That spirit upon whose weal depend and rest
+The lives of many. The cease of majesty
+Dies not alone; but like a gulf doth draw
+What's near it with it: it is a massy wheel,
+Fix'd on the summit of the highest mount,
+To whose huge spokes ten thousand lesser things
+Are mortis'd and adjoin'd; which, when it falls,
+Each small annexment, petty consequence,
+Attends the boisterous ruin. Never alone
+Did the king sigh, but with a general groan.
+
+King.
+Arm you, I pray you, to this speedy voyage;
+For we will fetters put upon this fear,
+Which now goes too free-footed.
+
+Ros and Guil.
+We will haste us.
+
+[Exeunt Ros. and Guil.]
+
+[Enter Polonius.]
+
+Pol.
+My lord, he's going to his mother's closet:
+Behind the arras I'll convey myself
+To hear the process; I'll warrant she'll tax him home:
+And, as you said, and wisely was it said,
+'Tis meet that some more audience than a mother,
+Since nature makes them partial, should o'erhear
+The speech, of vantage. Fare you well, my liege:
+I'll call upon you ere you go to bed,
+And tell you what I know.
+
+King.
+Thanks, dear my lord.
+
+[Exit Polonius.]
+
+O, my offence is rank, it smells to heaven;
+It hath the primal eldest curse upon't,--
+A brother's murder!--Pray can I not,
+Though inclination be as sharp as will:
+My stronger guilt defeats my strong intent;
+And, like a man to double business bound,
+I stand in pause where I shall first begin,
+And both neglect. What if this cursed hand
+Were thicker than itself with brother's blood,--
+Is there not rain enough in the sweet heavens
+To wash it white as snow? Whereto serves mercy
+But to confront the visage of offence?
+And what's in prayer but this twofold force,--
+To be forestalled ere we come to fall,
+Or pardon'd being down? Then I'll look up;
+My fault is past. But, O, what form of prayer
+Can serve my turn? Forgive me my foul murder!--
+That cannot be; since I am still possess'd
+Of those effects for which I did the murder,--
+My crown, mine own ambition, and my queen.
+May one be pardon'd and retain the offence?
+In the corrupted currents of this world
+Offence's gilded hand may shove by justice;
+And oft 'tis seen the wicked prize itself
+Buys out the law; but 'tis not so above;
+There is no shuffling;--there the action lies
+In his true nature; and we ourselves compell'd,
+Even to the teeth and forehead of our faults,
+To give in evidence. What then? what rests?
+Try what repentance can: what can it not?
+Yet what can it when one cannot repent?
+O wretched state! O bosom black as death!
+O limed soul, that, struggling to be free,
+Art more engag'd! Help, angels! Make assay:
+Bow, stubborn knees; and, heart, with strings of steel,
+Be soft as sinews of the new-born babe!
+All may be well.
+
+[Retires and kneels.]
+
+[Enter Hamlet.]
+
+Ham.
+Now might I do it pat, now he is praying;
+And now I'll do't;--and so he goes to heaven;
+And so am I reveng'd.--that would be scann'd:
+A villain kills my father; and for that,
+I, his sole son, do this same villain send
+To heaven.
+O, this is hire and salary, not revenge.
+He took my father grossly, full of bread;
+With all his crimes broad blown, as flush as May;
+And how his audit stands, who knows save heaven?
+But in our circumstance and course of thought,
+'Tis heavy with him: and am I, then, reveng'd,
+To take him in the purging of his soul,
+When he is fit and season'd for his passage?
+No.
+Up, sword, and know thou a more horrid hent:
+When he is drunk asleep; or in his rage;
+Or in the incestuous pleasure of his bed;
+At gaming, swearing; or about some act
+That has no relish of salvation in't;--
+Then trip him, that his heels may kick at heaven;
+And that his soul may be as damn'd and black
+As hell, whereto it goes. My mother stays:
+This physic but prolongs thy sickly days.
+
+[Exit.]
+
+[The King rises and advances.]
+
+King.
+My words fly up, my thoughts remain below:
+Words without thoughts never to heaven go.
+
+[Exit.]
+
+
+
+Scene IV. Another room in the castle.
+
+[Enter Queen and Polonius.]
+
+Pol.
+He will come straight. Look you lay home to him:
+Tell him his pranks have been too broad to bear with,
+And that your grace hath screen'd and stood between
+Much heat and him. I'll silence me e'en here.
+Pray you, be round with him.
+
+Ham.
+[Within.] Mother, mother, mother!
+
+Queen.
+I'll warrant you:
+Fear me not:--withdraw; I hear him coming.
+
+[Polonius goes behind the arras.]
+
+[Enter Hamlet.]
+
+Ham.
+Now, mother, what's the matter?
+
+Queen.
+Hamlet, thou hast thy father much offended.
+
+Ham.
+Mother, you have my father much offended.
+
+Queen.
+Come, come, you answer with an idle tongue.
+
+Ham.
+Go, go, you question with a wicked tongue.
+
+Queen.
+Why, how now, Hamlet!
+
+Ham.
+What's the matter now?
+
+Queen.
+Have you forgot me?
+
+Ham.
+No, by the rood, not so:
+You are the Queen, your husband's brother's wife,
+And,--would it were not so!--you are my mother.
+
+Queen.
+Nay, then, I'll set those to you that can speak.
+
+Ham.
+Come, come, and sit you down; you shall not budge;
+You go not till I set you up a glass
+Where you may see the inmost part of you.
+
+Queen.
+What wilt thou do? thou wilt not murder me?--
+Help, help, ho!
+
+Pol.
+[Behind.] What, ho! help, help, help!
+
+Ham.
+How now? a rat? [Draws.]
+Dead for a ducat, dead!
+
+[Makes a pass through the arras.]
+
+Pol.
+[Behind.] O, I am slain!
+
+[Falls and dies.]
+
+Queen.
+O me, what hast thou done?
+
+Ham.
+Nay, I know not: is it the king?
+
+[Draws forth Polonius.]
+
+Queen.
+O, what a rash and bloody deed is this!
+
+Ham.
+A bloody deed!--almost as bad, good mother,
+As kill a king and marry with his brother.
+
+Queen.
+As kill a king!
+
+Ham.
+Ay, lady, 'twas my word.--
+Thou wretched, rash, intruding fool, farewell!
+[To Polonius.]
+I took thee for thy better: take thy fortune;
+Thou find'st to be too busy is some danger.--
+Leave wringing of your hands: peace! sit you down,
+And let me wring your heart: for so I shall,
+If it be made of penetrable stuff;
+If damned custom have not braz'd it so
+That it is proof and bulwark against sense.
+
+Queen.
+What have I done, that thou dar'st wag thy tongue
+In noise so rude against me?
+
+Ham.
+Such an act
+That blurs the grace and blush of modesty;
+Calls virtue hypocrite; takes off the rose
+From the fair forehead of an innocent love,
+And sets a blister there; makes marriage-vows
+As false as dicers' oaths: O, such a deed
+As from the body of contraction plucks
+The very soul, and sweet religion makes
+A rhapsody of words: heaven's face doth glow;
+Yea, this solidity and compound mass,
+With tristful visage, as against the doom,
+Is thought-sick at the act.
+
+Queen.
+Ah me, what act,
+That roars so loud, and thunders in the index?
+
+Ham.
+Look here upon this picture, and on this,--
+The counterfeit presentment of two brothers.
+See what a grace was seated on this brow;
+Hyperion's curls; the front of Jove himself;
+An eye like Mars, to threaten and command;
+A station like the herald Mercury
+New lighted on a heaven-kissing hill:
+A combination and a form, indeed,
+Where every god did seem to set his seal,
+To give the world assurance of a man;
+This was your husband.--Look you now what follows:
+Here is your husband, like a milldew'd ear
+Blasting his wholesome brother. Have you eyes?
+Could you on this fair mountain leave to feed,
+And batten on this moor? Ha! have you eyes?
+You cannot call it love; for at your age
+The hey-day in the blood is tame, it's humble,
+And waits upon the judgment: and what judgment
+Would step from this to this? Sense, sure, you have,
+Else could you not have motion: but sure that sense
+Is apoplex'd; for madness would not err;
+Nor sense to ecstacy was ne'er so thrall'd
+But it reserv'd some quantity of choice
+To serve in such a difference. What devil was't
+That thus hath cozen'd you at hoodman-blind?
+Eyes without feeling, feeling without sight,
+Ears without hands or eyes, smelling sans all,
+Or but a sickly part of one true sense
+Could not so mope.
+O shame! where is thy blush? Rebellious hell,
+If thou canst mutine in a matron's bones,
+To flaming youth let virtue be as wax,
+And melt in her own fire: proclaim no shame
+When the compulsive ardour gives the charge,
+Since frost itself as actively doth burn,
+And reason panders will.
+
+Queen.
+O Hamlet, speak no more:
+Thou turn'st mine eyes into my very soul;
+And there I see such black and grained spots
+As will not leave their tinct.
+
+Ham.
+Nay, but to live
+In the rank sweat of an enseamed bed,
+Stew'd in corruption, honeying and making love
+Over the nasty sty,--
+
+Queen.
+O, speak to me no more;
+These words like daggers enter in mine ears;
+No more, sweet Hamlet.
+
+Ham.
+A murderer and a villain;
+A slave that is not twentieth part the tithe
+Of your precedent lord; a vice of kings;
+A cutpurse of the empire and the rule,
+That from a shelf the precious diadem stole
+And put it in his pocket!
+
+Queen.
+No more.
+
+Ham.
+A king of shreds and patches!--
+
+[Enter Ghost.]
+
+Save me and hover o'er me with your wings,
+You heavenly guards!--What would your gracious figure?
+
+Queen.
+Alas, he's mad!
+
+Ham.
+Do you not come your tardy son to chide,
+That, laps'd in time and passion, lets go by
+The important acting of your dread command?
+O, say!
+
+Ghost.
+Do not forget. This visitation
+Is but to whet thy almost blunted purpose.
+But, look, amazement on thy mother sits:
+O, step between her and her fighting soul,--
+Conceit in weakest bodies strongest works,--
+Speak to her, Hamlet.
+
+Ham.
+How is it with you, lady?
+
+Queen.
+Alas, how is't with you,
+That you do bend your eye on vacancy,
+And with the incorporal air do hold discourse?
+Forth at your eyes your spirits wildly peep;
+And, as the sleeping soldiers in the alarm,
+Your bedded hairs, like life in excrements,
+Start up and stand an end. O gentle son,
+Upon the heat and flame of thy distemper
+Sprinkle cool patience! Whereon do you look?
+
+Ham.
+On him, on him! Look you how pale he glares!
+His form and cause conjoin'd, preaching to stones,
+Would make them capable.--Do not look upon me;
+Lest with this piteous action you convert
+My stern effects: then what I have to do
+Will want true colour; tears perchance for blood.
+
+Queen.
+To whom do you speak this?
+
+Ham.
+Do you see nothing there?
+
+Queen.
+Nothing at all; yet all that is I see.
+
+Ham.
+Nor did you nothing hear?
+
+Queen.
+No, nothing but ourselves.
+
+Ham.
+Why, look you there! look how it steals away!
+My father, in his habit as he liv'd!
+Look, where he goes, even now out at the portal!
+
+[Exit Ghost.]
+
+Queen.
+This is the very coinage of your brain:
+This bodiless creation ecstasy
+Is very cunning in.
+
+Ham.
+Ecstasy!
+My pulse, as yours, doth temperately keep time,
+And makes as healthful music: it is not madness
+That I have utter'd: bring me to the test,
+And I the matter will re-word; which madness
+Would gambol from. Mother, for love of grace,
+Lay not that flattering unction to your soul
+That not your trespass, but my madness speaks:
+It will but skin and film the ulcerous place,
+Whilst rank corruption, mining all within,
+Infects unseen. Confess yourself to heaven;
+Repent what's past; avoid what is to come;
+And do not spread the compost on the weeds,
+To make them ranker. Forgive me this my virtue;
+For in the fatness of these pursy times
+Virtue itself of vice must pardon beg,
+Yea, curb and woo for leave to do him good.
+
+Queen.
+O Hamlet, thou hast cleft my heart in twain.
+
+Ham.
+O, throw away the worser part of it,
+And live the purer with the other half.
+Good night: but go not to mine uncle's bed;
+Assume a virtue, if you have it not.
+That monster custom, who all sense doth eat,
+Of habits evil, is angel yet in this,--
+That to the use of actions fair and good
+He likewise gives a frock or livery
+That aptly is put on. Refrain to-night;
+And that shall lend a kind of easiness
+To the next abstinence: the next more easy;
+For use almost can change the stamp of nature,
+And either curb the devil, or throw him out
+With wondrous potency. Once more, good-night:
+And when you are desirous to be bles'd,
+I'll blessing beg of you.--For this same lord
+[Pointing to Polonius.]
+I do repent; but heaven hath pleas'd it so,
+To punish me with this, and this with me,
+That I must be their scourge and minister.
+I will bestow him, and will answer well
+The death I gave him. So again, good-night.--
+I must be cruel, only to be kind:
+Thus bad begins, and worse remains behind.--
+One word more, good lady.
+
+Queen.
+What shall I do?
+
+Ham.
+Not this, by no means, that I bid you do:
+Let the bloat king tempt you again to bed;
+Pinch wanton on your cheek; call you his mouse;
+And let him, for a pair of reechy kisses,
+Or paddling in your neck with his damn'd fingers,
+Make you to ravel all this matter out,
+That I essentially am not in madness,
+But mad in craft. 'Twere good you let him know;
+For who that's but a queen, fair, sober, wise,
+Would from a paddock, from a bat, a gib,
+Such dear concernings hide? who would do so?
+No, in despite of sense and secrecy,
+Unpeg the basket on the house's top,
+Let the birds fly, and, like the famous ape,
+To try conclusions, in the basket creep
+And break your own neck down.
+
+Queen.
+Be thou assur'd, if words be made of breath,
+And breath of life, I have no life to breathe
+What thou hast said to me.
+
+Ham.
+I must to England; you know that?
+
+Queen.
+Alack,
+I had forgot: 'tis so concluded on.
+
+Ham.
+There's letters seal'd: and my two schoolfellows,--
+Whom I will trust as I will adders fang'd,--
+They bear the mandate; they must sweep my way
+And marshal me to knavery. Let it work;
+For 'tis the sport to have the enginer
+Hoist with his own petard: and 't shall go hard
+But I will delve one yard below their mines
+And blow them at the moon: O, 'tis most sweet,
+When in one line two crafts directly meet.--
+This man shall set me packing:
+I'll lug the guts into the neighbour room.--
+Mother, good-night.--Indeed, this counsellor
+Is now most still, most secret, and most grave,
+Who was in life a foolish peating knave.
+Come, sir, to draw toward an end with you:--
+Good night, mother.
+
+[Exeunt severally; Hamlet, dragging out Polonius.]
+
+
+
+ACT IV.
+
+Scene I. A room in the Castle.
+
+[Enter King, Queen, Rosencrantz and Guildenstern.]
+
+King.
+There's matter in these sighs. These profound heaves
+You must translate: 'tis fit we understand them.
+Where is your son?
+
+Queen.
+Bestow this place on us a little while.
+
+[To Rosencrantz and Guildenstern, who go out.]
+
+Ah, my good lord, what have I seen to-night!
+
+King.
+What, Gertrude? How does Hamlet?
+
+Queen.
+Mad as the sea and wind, when both contend
+Which is the mightier: in his lawless fit
+Behind the arras hearing something stir,
+Whips out his rapier, cries 'A rat, a rat!'
+And in this brainish apprehension, kills
+The unseen good old man.
+
+King.
+O heavy deed!
+It had been so with us, had we been there:
+His liberty is full of threats to all;
+To you yourself, to us, to every one.
+Alas, how shall this bloody deed be answer'd?
+It will be laid to us, whose providence
+Should have kept short, restrain'd, and out of haunt
+This mad young man. But so much was our love
+We would not understand what was most fit;
+But, like the owner of a foul disease,
+To keep it from divulging, let it feed
+Even on the pith of life. Where is he gone?
+
+Queen.
+To draw apart the body he hath kill'd:
+O'er whom his very madness, like some ore
+Among a mineral of metals base,
+Shows itself pure: he weeps for what is done.
+
+King.
+O Gertrude, come away!
+The sun no sooner shall the mountains touch
+But we will ship him hence: and this vile deed
+We must with all our majesty and skill
+Both countenance and excuse.--Ho, Guildenstern!
+
+[Re-enter Rosencrantz and Guildenstern.]
+
+Friends both, go join you with some further aid:
+Hamlet in madness hath Polonius slain,
+And from his mother's closet hath he dragg'd him:
+Go seek him out; speak fair, and bring the body
+Into the chapel. I pray you, haste in this.
+
+[Exeunt Rosencrantz and Guildenstern.]
+
+Come, Gertrude, we'll call up our wisest friends;
+And let them know both what we mean to do
+And what's untimely done: so haply slander,--
+Whose whisper o'er the world's diameter,
+As level as the cannon to his blank,
+Transports his poison'd shot,--may miss our name,
+And hit the woundless air.--O, come away!
+My soul is full of discord and dismay.
+
+[Exeunt.]
+
+Scene II. Another room in the Castle.
+
+[Enter Hamlet.]
+
+Ham.
+Safely stowed.
+
+Ros. and Guil.
+[Within.] Hamlet! Lord Hamlet!
+
+Ham.
+What noise? who calls on Hamlet? O, here they come.
+
+[Enter Rosencrantz and Guildenstern.]
+
+Ros.
+What have you done, my lord, with the dead body?
+
+Ham.
+Compounded it with dust, whereto 'tis kin.
+
+Ros.
+Tell us where 'tis, that we may take it thence,
+And bear it to the chapel.
+
+Ham.
+Do not believe it.
+
+Ros.
+Believe what?
+
+Ham.
+That I can keep your counsel, and not mine own. Besides, to be
+demanded of a sponge!--what replication should be made by the son
+of a king?
+
+Ros.
+Take you me for a sponge, my lord?
+
+Ham.
+Ay, sir; that soaks up the King's countenance, his rewards,
+his authorities. But such officers do the king best service in
+the end: he keeps them, like an ape, in the corner of his jaw;
+first mouthed, to be last swallowed: when he needs what you have
+gleaned, it is but squeezing you, and, sponge, you shall be dry
+again.
+
+Ros.
+I understand you not, my lord.
+
+Ham.
+I am glad of it: a knavish speech sleeps in a foolish ear.
+
+Ros.
+My lord, you must tell us where the body is and go with us to
+the king.
+
+Ham.
+The body is with the king, but the king is not with the body.
+The king is a thing,--
+
+Guil.
+A thing, my lord!
+
+Ham.
+Of nothing: bring me to him. Hide fox, and all after.
+
+[Exeunt.]
+
+
+
+Scene III. Another room in the Castle.
+
+[Enter King,attended.]
+
+King.
+I have sent to seek him and to find the body.
+How dangerous is it that this man goes loose!
+Yet must not we put the strong law on him:
+He's lov'd of the distracted multitude,
+Who like not in their judgment, but their eyes;
+And where 'tis so, the offender's scourge is weigh'd,
+But never the offence. To bear all smooth and even,
+This sudden sending him away must seem
+Deliberate pause: diseases desperate grown
+By desperate appliance are reliev'd,
+Or not at all.
+
+[Enter Rosencrantz.]
+
+How now! what hath befall'n?
+
+Ros.
+Where the dead body is bestow'd, my lord,
+We cannot get from him.
+
+King.
+But where is he?
+
+Ros.
+Without, my lord; guarded, to know your pleasure.
+
+King.
+Bring him before us.
+
+Ros.
+Ho, Guildenstern! bring in my lord.
+
+[Enter Hamlet and Guildenstern.]
+
+King.
+Now, Hamlet, where's Polonius?
+
+Ham.
+At supper.
+
+King.
+At supper! where?
+
+Ham.
+Not where he eats, but where he is eaten: a certain
+convocation of politic worms are e'en at him. Your worm is your
+only emperor for diet: we fat all creatures else to fat us, and
+we fat ourselves for maggots: your fat king and your lean beggar
+is but variable service,--two dishes, but to one table: that's
+the end.
+
+King.
+Alas, alas!
+
+Ham.
+A man may fish with the worm that hath eat of a king, and eat
+of the fish that hath fed of that worm.
+
+King.
+What dost thou mean by this?
+
+Ham.
+Nothing but to show you how a king may go a progress through
+the guts of a beggar.
+
+King.
+Where is Polonius?
+
+Ham.
+In heaven: send thither to see: if your messenger find him not
+there, seek him i' the other place yourself. But, indeed, if you
+find him not within this month, you shall nose him as you go up
+the stairs into the lobby.
+
+King.
+Go seek him there. [To some Attendants.]
+
+Ham.
+He will stay till you come.
+
+[Exeunt Attendants.]
+
+King.
+Hamlet, this deed, for thine especial safety,--
+Which we do tender, as we dearly grieve
+For that which thou hast done,--must send thee hence
+With fiery quickness: therefore prepare thyself;
+The bark is ready, and the wind at help,
+The associates tend, and everything is bent
+For England.
+
+Ham.
+For England!
+
+King.
+Ay, Hamlet.
+
+Ham.
+Good.
+
+King.
+So is it, if thou knew'st our purposes.
+
+Ham.
+I see a cherub that sees them.--But, come; for England!--
+Farewell, dear mother.
+
+King.
+Thy loving father, Hamlet.
+
+Ham.
+My mother: father and mother is man and wife; man and wife is
+one flesh; and so, my mother.--Come, for England!
+
+[Exit.]
+
+King.
+Follow him at foot; tempt him with speed aboard;
+Delay it not; I'll have him hence to-night:
+Away! for everything is seal'd and done
+That else leans on the affair: pray you, make haste.
+
+[Exeunt Rosencrantz and Guildenstern.]
+
+And, England, if my love thou hold'st at aught,--
+As my great power thereof may give thee sense,
+Since yet thy cicatrice looks raw and red
+After the Danish sword, and thy free awe
+Pays homage to us,--thou mayst not coldly set
+Our sovereign process; which imports at full,
+By letters conjuring to that effect,
+The present death of Hamlet. Do it, England;
+For like the hectic in my blood he rages,
+And thou must cure me: till I know 'tis done,
+Howe'er my haps, my joys were ne'er begun.
+
+[Exit.]
+
+
+
+Scene IV. A plain in Denmark.
+
+[Enter Fortinbras, and Forces marching.]
+
+For.
+Go, Captain, from me greet the Danish king:
+Tell him that, by his license, Fortinbras
+Craves the conveyance of a promis'd march
+Over his kingdom. You know the rendezvous.
+If that his majesty would aught with us,
+We shall express our duty in his eye;
+And let him know so.
+
+Capt.
+I will do't, my lord.
+
+For.
+Go softly on.
+
+[Exeunt all For. and Forces.]
+
+[Enter Hamlet, Rosencrantz, Guildenstern, &c.]
+
+Ham.
+Good sir, whose powers are these?
+
+Capt.
+They are of Norway, sir.
+
+Ham.
+How purpos'd, sir, I pray you?
+
+Capt.
+Against some part of Poland.
+
+Ham.
+Who commands them, sir?
+
+Capt.
+The nephew to old Norway, Fortinbras.
+
+Ham.
+Goes it against the main of Poland, sir,
+Or for some frontier?
+
+Capt.
+Truly to speak, and with no addition,
+We go to gain a little patch of ground
+That hath in it no profit but the name.
+To pay five ducats, five, I would not farm it;
+Nor will it yield to Norway or the Pole
+A ranker rate, should it be sold in fee.
+
+Ham.
+Why, then the Polack never will defend it.
+
+Capt.
+Yes, it is already garrison'd.
+
+Ham.
+Two thousand souls and twenty thousand ducats
+Will not debate the question of this straw:
+This is the imposthume of much wealth and peace,
+That inward breaks, and shows no cause without
+Why the man dies.--I humbly thank you, sir.
+
+Capt.
+God b' wi' you, sir.
+
+[Exit.]
+
+Ros.
+Will't please you go, my lord?
+
+Ham.
+I'll be with you straight. Go a little before.
+
+[Exeunt all but Hamlet.]
+
+How all occasions do inform against me
+And spur my dull revenge! What is a man,
+If his chief good and market of his time
+Be but to sleep and feed? a beast, no more.
+Sure he that made us with such large discourse,
+Looking before and after, gave us not
+That capability and godlike reason
+To fust in us unus'd. Now, whether it be
+Bestial oblivion, or some craven scruple
+Of thinking too precisely on the event,--
+A thought which, quarter'd, hath but one part wisdom
+And ever three parts coward,--I do not know
+Why yet I live to say 'This thing's to do;'
+Sith I have cause, and will, and strength, and means
+To do't. Examples, gross as earth, exhort me:
+Witness this army, of such mass and charge,
+Led by a delicate and tender prince;
+Whose spirit, with divine ambition puff'd,
+Makes mouths at the invisible event;
+Exposing what is mortal and unsure
+To all that fortune, death, and danger dare,
+Even for an egg-shell. Rightly to be great
+Is not to stir without great argument,
+But greatly to find quarrel in a straw
+When honour's at the stake. How stand I, then,
+That have a father kill'd, a mother stain'd,
+Excitements of my reason and my blood,
+And let all sleep? while, to my shame, I see
+The imminent death of twenty thousand men
+That, for a fantasy and trick of fame,
+Go to their graves like beds; fight for a plot
+Whereon the numbers cannot try the cause,
+Which is not tomb enough and continent
+To hide the slain?--O, from this time forth,
+My thoughts be bloody, or be nothing worth!
+
+[Exit.]
+
+
+
+Scene V. Elsinore. A room in the Castle.
+
+[Enter Queen and Horatio.]
+
+Queen.
+I will not speak with her.
+
+Gent.
+She is importunate; indeed distract:
+Her mood will needs be pitied.
+
+Queen.
+What would she have?
+
+Gent.
+She speaks much of her father; says she hears
+There's tricks i' the world, and hems, and beats her heart;
+Spurns enviously at straws; speaks things in doubt,
+That carry but half sense: her speech is nothing,
+Yet the unshaped use of it doth move
+The hearers to collection; they aim at it,
+And botch the words up fit to their own thoughts;
+Which, as her winks, and nods, and gestures yield them,
+Indeed would make one think there might be thought,
+Though nothing sure, yet much unhappily.
+'Twere good she were spoken with; for she may strew
+Dangerous conjectures in ill-breeding minds.
+
+Queen.
+Let her come in.
+
+[Exit Horatio.]
+
+To my sick soul, as sin's true nature is,
+Each toy seems Prologue to some great amiss:
+So full of artless jealousy is guilt,
+It spills itself in fearing to be spilt.
+
+[Re-enter Horatio with Ophelia.]
+
+Oph.
+Where is the beauteous majesty of Denmark?
+
+Queen.
+How now, Ophelia?
+
+Oph. [Sings.]
+   How should I your true love know
+     From another one?
+   By his cockle bat and' staff
+     And his sandal shoon.
+
+Queen.
+Alas, sweet lady, what imports this song?
+
+Oph.
+Say you? nay, pray you, mark.
+[Sings.]
+   He is dead and gone, lady,
+     He is dead and gone;
+   At his head a grass green turf,
+     At his heels a stone.
+
+Queen.
+Nay, but Ophelia--
+
+Oph.
+Pray you, mark.
+[Sings.]
+   White his shroud as the mountain snow,
+
+[Enter King.]
+
+Queen.
+Alas, look here, my lord!
+
+Oph.
+[Sings.]
+     Larded all with sweet flowers;
+   Which bewept to the grave did go
+     With true-love showers.
+
+King.
+How do you, pretty lady?
+
+Oph.
+Well, God dild you! They say the owl was a baker's daughter.
+Lord, we know what we are, but know not what we may be. God be at
+your table!
+
+King.
+Conceit upon her father.
+
+Oph.
+Pray you, let's have no words of this; but when they ask you what
+it means, say you this:
+[Sings.]
+   To-morrow is Saint Valentine's day
+     All in the morning bedtime,
+   And I a maid at your window,
+     To be your Valentine.
+
+   Then up he rose and donn'd his clothes,
+     And dupp'd the chamber door,
+   Let in the maid, that out a maid
+     Never departed more.
+
+King.
+Pretty Ophelia!
+
+Oph.
+Indeed, la, without an oath, I'll make an end on't:
+[Sings.]
+   By Gis and by Saint Charity,
+     Alack, and fie for shame!
+   Young men will do't if they come to't;
+     By cock, they are to blame.
+
+   Quoth she, before you tumbled me,
+     You promis'd me to wed.
+   So would I ha' done, by yonder sun,
+     An thou hadst not come to my bed.
+
+King.
+How long hath she been thus?
+
+Oph.
+I hope all will be well. We must be patient: but I cannot
+choose but weep, to think they would lay him i' the cold ground.
+My brother shall know of it: and so I thank you for your good
+counsel.--Come, my coach!--Good night, ladies; good night, sweet
+ladies; good night, good night.
+
+[Exit.]
+
+King.
+Follow her close; give her good watch, I pray you.
+
+[Exit Horatio.]
+
+O, this is the poison of deep grief; it springs
+All from her father's death. O Gertrude, Gertrude,
+When sorrows come, they come not single spies,
+But in battalions! First, her father slain:
+Next, your son gone; and he most violent author
+Of his own just remove: the people muddied,
+Thick and and unwholesome in their thoughts and whispers
+For good Polonius' death; and we have done but greenly
+In hugger-mugger to inter him: poor Ophelia
+Divided from herself and her fair judgment,
+Without the which we are pictures or mere beasts:
+Last, and as much containing as all these,
+Her brother is in secret come from France;
+Feeds on his wonder, keeps himself in clouds,
+And wants not buzzers to infect his ear
+With pestilent speeches of his father's death;
+Wherein necessity, of matter beggar'd,
+Will nothing stick our person to arraign
+In ear and ear. O my dear Gertrude, this,
+Like to a murdering piece, in many places
+Give, me superfluous death.
+
+[A noise within.]
+
+Queen.
+Alack, what noise is this?
+
+King.
+Where are my Switzers? let them guard the door.
+
+[Enter a Gentleman.]
+
+What is the matter?
+
+Gent.
+Save yourself, my lord:
+The ocean, overpeering of his list,
+Eats not the flats with more impetuous haste
+Than young Laertes, in a riotous head,
+O'erbears your offices. The rabble call him lord;
+And, as the world were now but to begin,
+Antiquity forgot, custom not known,
+The ratifiers and props of every word,
+They cry 'Choose we! Laertes shall be king!'
+Caps, hands, and tongues applaud it to the clouds,
+'Laertes shall be king! Laertes king!'
+
+Queen.
+How cheerfully on the false trail they cry!
+O, this is counter, you false Danish dogs!
+
+[A noise within.]
+
+King.
+The doors are broke.
+
+[Enter Laertes, armed; Danes following.]
+
+Laer.
+Where is this king?--Sirs, stand you all without.
+
+Danes.
+No, let's come in.
+
+Laer.
+I pray you, give me leave.
+
+Danes.
+We will, we will.
+
+[They retire without the door.]
+
+Laer.
+I thank you:--keep the door.--O thou vile king,
+Give me my father!
+
+Queen.
+Calmly, good Laertes.
+
+Laer.
+That drop of blood that's calm proclaims me bastard;
+Cries cuckold to my father; brands the harlot
+Even here, between the chaste unsmirched brow
+Of my true mother.
+
+King.
+What is the cause, Laertes,
+That thy rebellion looks so giant-like?--
+Let him go, Gertrude; do not fear our person:
+There's such divinity doth hedge a king,
+That treason can but peep to what it would,
+Acts little of his will.--Tell me, Laertes,
+Why thou art thus incens'd.--Let him go, Gertrude:--
+Speak, man.
+
+Laer.
+Where is my father?
+
+King.
+Dead.
+
+Queen.
+But not by him.
+
+King.
+Let him demand his fill.
+
+Laer.
+How came he dead? I'll not be juggled with:
+To hell, allegiance! vows, to the blackest devil!
+Conscience and grace, to the profoundest pit!
+I dare damnation:--to this point I stand,--
+That both the worlds, I give to negligence,
+Let come what comes; only I'll be reveng'd
+Most throughly for my father.
+
+King.
+Who shall stay you?
+
+Laer.
+My will, not all the world:
+And for my means, I'll husband them so well,
+They shall go far with little.
+
+King.
+Good Laertes,
+If you desire to know the certainty
+Of your dear father's death, is't writ in your revenge
+That, sweepstake, you will draw both friend and foe,
+Winner and loser?
+
+Laer.
+None but his enemies.
+
+King.
+Will you know them then?
+
+Laer.
+To his good friends thus wide I'll ope my arms;
+And, like the kind life-rendering pelican,
+Repast them with my blood.
+
+King.
+Why, now you speak
+Like a good child and a true gentleman.
+That I am guiltless of your father's death,
+And am most sensibly in grief for it,
+It shall as level to your judgment pierce
+As day does to your eye.
+
+Danes.
+[Within] Let her come in.
+
+Laer.
+How now! What noise is that?
+
+[Re-enter Ophelia, fantastically dressed with straws and
+flowers.]
+
+O heat, dry up my brains! tears seven times salt,
+Burn out the sense and virtue of mine eye!--
+By heaven, thy madness shall be paid by weight,
+Till our scale turn the beam. O rose of May!
+Dear maid, kind sister, sweet Ophelia!--
+O heavens! is't possible a young maid's wits
+Should be as mortal as an old man's life?
+Nature is fine in love; and where 'tis fine,
+It sends some precious instance of itself
+After the thing it loves.
+
+Oph.
+[Sings.]
+   They bore him barefac'd on the bier
+   Hey no nonny, nonny, hey nonny
+   And on his grave rain'd many a tear.--
+
+Fare you well, my dove!
+
+Laer.
+Hadst thou thy wits, and didst persuade revenge,
+It could not move thus.
+
+Oph.
+You must sing 'Down a-down, an you call him a-down-a.' O,
+how the wheel becomes it! It is the false steward, that stole his
+master's daughter.
+
+Laer.
+This nothing's more than matter.
+
+Oph.
+There's rosemary, that's for remembrance; pray, love,
+remember: and there is pansies, that's for thoughts.
+
+Laer.
+A document in madness,--thoughts and remembrance fitted.
+
+Oph.
+There's fennel for you, and columbines:--there's rue for you;
+and here's some for me:--we may call it herb of grace o'
+Sundays:--O, you must wear your rue with a difference.--There's a
+daisy:--I would give you some violets, but they wither'd all when
+my father died:--they say he made a good end,--
+[Sings.]
+   For bonny sweet Robin is all my joy,--
+
+Laer.
+Thought and affliction, passion, hell itself,
+She turns to favour and to prettiness.
+
+Oph.
+[Sings.]
+   And will he not come again?
+   And will he not come again?
+     No, no, he is dead,
+     Go to thy death-bed,
+   He never will come again.
+
+   His beard was as white as snow,
+   All flaxen was his poll:
+     He is gone, he is gone,
+     And we cast away moan:
+   God ha' mercy on his soul!
+
+And of all Christian souls, I pray God.--God b' wi' ye.
+
+[Exit.]
+
+Laer.
+Do you see this, O God?
+
+King.
+Laertes, I must commune with your grief,
+Or you deny me right. Go but apart,
+Make choice of whom your wisest friends you will,
+And they shall hear and judge 'twixt you and me.
+If by direct or by collateral hand
+They find us touch'd, we will our kingdom give,
+Our crown, our life, and all that we call ours,
+To you in satisfaction; but if not,
+Be you content to lend your patience to us,
+And we shall jointly labour with your soul
+To give it due content.
+
+Laer.
+Let this be so;
+His means of death, his obscure burial,--
+No trophy, sword, nor hatchment o'er his bones,
+No noble rite nor formal ostentation,--
+Cry to be heard, as 'twere from heaven to earth,
+That I must call't in question.
+
+King.
+So you shall;
+And where the offence is let the great axe fall.
+I pray you go with me.
+
+[Exeunt.]
+
+
+
+Scene VI. Another room in the Castle.
+
+[Enter Horatio and a Servant.]
+
+Hor.
+What are they that would speak with me?
+
+Servant.
+Sailors, sir: they say they have letters for you.
+
+Hor.
+Let them come in.
+
+[Exit Servant.]
+
+I do not know from what part of the world
+I should be greeted, if not from Lord Hamlet.
+
+[Enter Sailors.]
+
+I Sailor.
+God bless you, sir.
+
+Hor.
+Let him bless thee too.
+
+Sailor.
+He shall, sir, an't please him. There's a letter for you,
+sir,--it comes from the ambassador that was bound for England; if
+your name be Horatio, as I am let to know it is.
+
+Hor.
+[Reads.] 'Horatio, when thou shalt have overlooked
+this, give these fellows some means to the king: they have
+letters for him. Ere we were two days old at sea, a pirate of
+very warlike appointment gave us chase. Finding ourselves too
+slow of sail, we put on a compelled valour, and in the grapple I
+boarded them: on the instant they got clear of our ship; so I
+alone became their prisoner. They have dealt with me like thieves
+of mercy: but they knew what they did; I am to do a good turn for
+them. Let the king have the letters I have sent; and repair thou
+to me with as much haste as thou wouldst fly death. I have words
+to speak in thine ear will make thee dumb; yet are they much too
+light for the bore of the matter. These good fellows will bring
+thee where I am. Rosencrantz and Guildenstern hold their course
+for England: of them I have much to tell thee. Farewell.
+He that thou knowest thine,       HAMLET.'
+
+Come, I will give you way for these your letters;
+And do't the speedier, that you may direct me
+To him from whom you brought them.
+
+[Exeunt.]
+
+
+
+Scene VII. Another room in the Castle.
+
+[Enter King and Laertes.]
+
+King.
+Now must your conscience my acquittance seal,
+And you must put me in your heart for friend,
+Sith you have heard, and with a knowing ear,
+That he which hath your noble father slain
+Pursu'd my life.
+
+Laer.
+It well appears:--but tell me
+Why you proceeded not against these feats,
+So crimeful and so capital in nature,
+As by your safety, wisdom, all things else,
+You mainly were stirr'd up.
+
+King.
+O, for two special reasons;
+Which may to you, perhaps, seem much unsinew'd,
+But yet to me they are strong. The queen his mother
+Lives almost by his looks; and for myself,--
+My virtue or my plague, be it either which,--
+She's so conjunctive to my life and soul,
+That, as the star moves not but in his sphere,
+I could not but by her. The other motive,
+Why to a public count I might not go,
+Is the great love the general gender bear him;
+Who, dipping all his faults in their affection,
+Would, like the spring that turneth wood to stone,
+Convert his gyves to graces; so that my arrows,
+Too slightly timber'd for so loud a wind,
+Would have reverted to my bow again,
+And not where I had aim'd them.
+
+Laer.
+And so have I a noble father lost;
+A sister driven into desperate terms,--
+Whose worth, if praises may go back again,
+Stood challenger on mount of all the age
+For her perfections:--but my revenge will come.
+
+King.
+Break not your sleeps for that:--you must not think
+That we are made of stuff so flat and dull
+That we can let our beard be shook with danger,
+And think it pastime. You shortly shall hear more:
+I lov'd your father, and we love ourself;
+And that, I hope, will teach you to imagine,--
+
+[Enter a Messenger.]
+
+How now! What news?
+
+Mess.
+Letters, my lord, from Hamlet:
+This to your majesty; this to the queen.
+
+King.
+From Hamlet! Who brought them?
+
+Mess.
+Sailors, my lord, they say; I saw them not:
+They were given me by Claudio:--he receiv'd them
+Of him that brought them.
+
+King.
+Laertes, you shall hear them.
+Leave us.
+
+[Exit Messenger.]
+
+[Reads]'High and mighty,--You shall know I am set naked on your
+kingdom. To-morrow shall I beg leave to see your kingly eyes:
+when I shall, first asking your pardon thereunto, recount the
+occasions of my sudden and more strange return.       HAMLET.'
+
+What should this mean? Are all the rest come back?
+Or is it some abuse, and no such thing?
+
+Laer.
+Know you the hand?
+
+King.
+'Tis Hamlet's character:--'Naked!'--
+And in a postscript here, he says 'alone.'
+Can you advise me?
+
+Laer.
+I am lost in it, my lord. But let him come;
+It warms the very sickness in my heart
+That I shall live and tell him to his teeth,
+'Thus didest thou.'
+
+King.
+If it be so, Laertes,--
+As how should it be so? how otherwise?--
+Will you be rul'd by me?
+
+Laer.
+Ay, my lord;
+So you will not o'errule me to a peace.
+
+King.
+To thine own peace. If he be now return'd--
+As checking at his voyage, and that he means
+No more to undertake it,--I will work him
+To exploit, now ripe in my device,
+Under the which he shall not choose but fall:
+And for his death no wind shall breathe;
+But even his mother shall uncharge the practice
+And call it accident.
+
+Laer.
+My lord, I will be rul'd;
+The rather if you could devise it so
+That I might be the organ.
+
+King.
+It falls right.
+You have been talk'd of since your travel much,
+And that in Hamlet's hearing, for a quality
+Wherein they say you shine: your sum of parts
+Did not together pluck such envy from him
+As did that one; and that, in my regard,
+Of the unworthiest siege.
+
+Laer.
+What part is that, my lord?
+
+King.
+A very riband in the cap of youth,
+Yet needful too; for youth no less becomes
+The light and careless livery that it wears
+Than settled age his sables and his weeds,
+Importing health and graveness.--Two months since,
+Here was a gentleman of Normandy,--
+I've seen myself, and serv'd against, the French,
+And they can well on horseback: but this gallant
+Had witchcraft in't: he grew unto his seat;
+And to such wondrous doing brought his horse,
+As had he been incorps'd and demi-natur'd
+With the brave beast: so far he topp'd my thought
+That I, in forgery of shapes and tricks,
+Come short of what he did.
+
+Laer.
+A Norman was't?
+
+King.
+A Norman.
+
+Laer.
+Upon my life, Lamond.
+
+King.
+The very same.
+
+Laer.
+I know him well: he is the brooch indeed
+And gem of all the nation.
+
+King.
+He made confession of you;
+And gave you such a masterly report
+For art and exercise in your defence,
+And for your rapier most especially,
+That he cried out, 'twould be a sight indeed
+If one could match you: the scrimers of their nation
+He swore, had neither motion, guard, nor eye,
+If you oppos'd them. Sir, this report of his
+Did Hamlet so envenom with his envy
+That he could nothing do but wish and beg
+Your sudden coming o'er, to play with him.
+Now, out of this,--
+
+Laer.
+What out of this, my lord?
+
+King.
+Laertes, was your father dear to you?
+Or are you like the painting of a sorrow,
+A face without a heart?
+
+Laer.
+Why ask you this?
+
+King.
+Not that I think you did not love your father;
+But that I know love is begun by time,
+And that I see, in passages of proof,
+Time qualifies the spark and fire of it.
+There lives within the very flame of love
+A kind of wick or snuff that will abate it;
+And nothing is at a like goodness still;
+For goodness, growing to a plurisy,
+Dies in his own too much: that we would do,
+We should do when we would; for this 'would' changes,
+And hath abatements and delays as many
+As there are tongues, are hands, are accidents;
+And then this 'should' is like a spendthrift sigh,
+That hurts by easing. But to the quick o' the ulcer:--
+Hamlet comes back: what would you undertake
+To show yourself your father's son in deed
+More than in words?
+
+Laer.
+To cut his throat i' the church.
+
+King.
+No place, indeed, should murder sanctuarize;
+Revenge should have no bounds. But, good Laertes,
+Will you do this, keep close within your chamber.
+Hamlet return'd shall know you are come home:
+We'll put on those shall praise your excellence
+And set a double varnish on the fame
+The Frenchman gave you; bring you in fine together
+And wager on your heads: he, being remiss,
+Most generous, and free from all contriving,
+Will not peruse the foils; so that with ease,
+Or with a little shuffling, you may choose
+A sword unbated, and, in a pass of practice,
+Requite him for your father.
+
+Laer.
+I will do't:
+And for that purpose I'll anoint my sword.
+I bought an unction of a mountebank,
+So mortal that, but dip a knife in it,
+Where it draws blood no cataplasm so rare,
+Collected from all simples that have virtue
+Under the moon, can save the thing from death
+This is but scratch'd withal: I'll touch my point
+With this contagion, that, if I gall him slightly,
+It may be death.
+
+King.
+Let's further think of this;
+Weigh what convenience both of time and means
+May fit us to our shape: if this should fail,
+And that our drift look through our bad performance.
+'Twere better not assay'd: therefore this project
+Should have a back or second, that might hold
+If this did blast in proof. Soft! let me see:--
+We'll make a solemn wager on your cunnings,--
+I ha't:
+When in your motion you are hot and dry,--
+As make your bouts more violent to that end,--
+And that he calls for drink, I'll have prepar'd him
+A chalice for the nonce; whereon but sipping,
+If he by chance escape your venom'd stuck,
+Our purpose may hold there.
+
+[Enter Queen.]
+
+How now, sweet queen!
+
+Queen.
+One woe doth tread upon another's heel,
+So fast they follow:--your sister's drown'd, Laertes.
+
+Laer.
+Drown'd! O, where?
+
+Queen.
+There is a willow grows aslant a brook,
+That shows his hoar leaves in the glassy stream;
+There with fantastic garlands did she come
+Of crowflowers, nettles, daisies, and long purples,
+That liberal shepherds give a grosser name,
+But our cold maids do dead men's fingers call them.
+There, on the pendant boughs her coronet weeds
+Clamb'ring to hang, an envious sliver broke;
+When down her weedy trophies and herself
+Fell in the weeping brook. Her clothes spread wide;
+And, mermaid-like, awhile they bore her up;
+Which time she chaunted snatches of old tunes;
+As one incapable of her own distress,
+Or like a creature native and indu'd
+Unto that element: but long it could not be
+Till that her garments, heavy with their drink,
+Pull'd the poor wretch from her melodious lay
+To muddy death.
+
+Laer.
+Alas, then she is drown'd?
+
+Queen.
+Drown'd, drown'd.
+
+Laer.
+Too much of water hast thou, poor Ophelia,
+And therefore I forbid my tears: but yet
+It is our trick; nature her custom holds,
+Let shame say what it will: when these are gone,
+The woman will be out.--Adieu, my lord:
+I have a speech of fire, that fain would blaze,
+But that this folly douts it.
+
+[Exit.]
+
+King.
+Let's follow, Gertrude;
+How much I had to do to calm his rage!
+Now fear I this will give it start again;
+Therefore let's follow.
+
+[Exeunt.]
+
+
+
+ACT V.
+
+Scene I. A churchyard.
+
+[Enter two Clowns, with spades, &c.]
+
+1 Clown.
+Is she to be buried in Christian burial when she wilfully
+seeks her own salvation?
+
+2 Clown.
+I tell thee she is; and therefore make her grave straight: the
+crowner hath sat on her, and finds it Christian burial.
+
+1 Clown.
+How can that be, unless she drowned herself in her own defence?
+
+2 Clown.
+Why, 'tis found so.
+
+1 Clown.
+It must be se offendendo; it cannot be else. For here lies
+the point: if I drown myself wittingly, it argues an act: and an
+act hath three branches; it is to act, to do, and to perform:
+argal, she drowned herself wittingly.
+
+2 Clown.
+Nay, but hear you, goodman delver,--
+
+1 Clown.
+Give me leave. Here lies the water; good: here stands the
+man; good: if the man go to this water and drown himself, it is,
+will he, nill he, he goes,--mark you that: but if the water come
+to him and drown him, he drowns not himself; argal, he that is
+not guilty of his own death shortens not his own life.
+
+2 Clown.
+But is this law?
+
+1 Clown.
+Ay, marry, is't--crowner's quest law.
+
+2 Clown.
+Will you ha' the truth on't? If this had not been a
+gentlewoman, she should have been buried out o' Christian burial.
+
+1 Clown.
+Why, there thou say'st: and the more pity that great folk
+should have countenance in this world to drown or hang themselves
+more than their even Christian.--Come, my spade. There is no
+ancient gentlemen but gardeners, ditchers, and grave-makers: they
+hold up Adam's profession.
+
+2 Clown.
+Was he a gentleman?
+
+1 Clown.
+He was the first that ever bore arms.
+
+2 Clown.
+Why, he had none.
+
+1 Clown.
+What, art a heathen? How dost thou understand the Scripture?
+The Scripture says Adam digg'd: could he dig without arms? I'll
+put another question to thee: if thou answerest me not to the
+purpose, confess thyself,--
+
+2 Clown.
+Go to.
+
+1 Clown.
+What is he that builds stronger than either the mason, the
+shipwright, or the carpenter?
+
+2 Clown.
+The gallows-maker; for that frame outlives a thousand tenants.
+
+1 Clown.
+I like thy wit well, in good faith: the gallows does well;
+but how does it well? it does well to those that do ill: now,
+thou dost ill to say the gallows is built stronger than the
+church; argal, the gallows may do well to thee. To't again, come.
+
+2 Clown.
+Who builds stronger than a mason, a shipwright, or a carpenter?
+
+1 Clown.
+Ay, tell me that, and unyoke.
+
+2 Clown.
+Marry, now I can tell.
+
+1 Clown.
+To't.
+
+2 Clown.
+Mass, I cannot tell.
+
+[Enter Hamlet and Horatio, at a distance.]
+
+1 Clown.
+Cudgel thy brains no more about it, for your dull ass will
+not mend his pace with beating; and when you are asked this
+question next, say 'a grave-maker;' the houses he makes last
+till doomsday. Go, get thee to Yaughan; fetch me a stoup of
+liquor.
+
+[Exit Second Clown.]
+
+[Digs and sings.]
+
+   In youth when I did love, did love,
+     Methought it was very sweet;
+   To contract, O, the time for, ah, my behove,
+     O, methought there was nothing meet.
+
+Ham.
+Has this fellow no feeling of his business, that he sings at
+grave-making?
+
+Hor.
+Custom hath made it in him a property of easiness.
+
+Ham.
+'Tis e'en so: the hand of little employment hath the daintier
+sense.
+
+1 Clown.
+[Sings.]
+   But age, with his stealing steps,
+     Hath claw'd me in his clutch,
+   And hath shipp'd me into the land,
+     As if I had never been such.
+
+[Throws up a skull.]
+
+Ham.
+That skull had a tongue in it, and could sing once: how the
+knave jowls it to the ground,as if 'twere Cain's jawbone, that
+did the first murder! This might be the pate of a politician,
+which this ass now o'erreaches; one that would circumvent God,
+might it not?
+
+Hor.
+It might, my lord.
+
+Ham.
+Or of a courtier, which could say 'Good morrow, sweet lord!
+How dost thou, good lord?' This might be my lord such-a-one, that
+praised my lord such-a-one's horse when he meant to beg
+it,--might it not?
+
+Hor.
+Ay, my lord.
+
+Ham.
+Why, e'en so: and now my Lady Worm's; chapless, and knocked
+about the mazard with a sexton's spade: here's fine revolution,
+an we had the trick to see't. Did these bones cost no more the
+breeding but to play at loggets with 'em? mine ache to think
+on't.
+
+1 Clown.
+[Sings.]
+   A pickaxe and a spade, a spade,
+     For and a shrouding sheet;
+   O, a pit of clay for to be made
+     For such a guest is meet.
+
+[Throws up another skull].
+
+Ham.
+There's another: why may not that be the skull of a lawyer?
+Where be his quiddits now, his quillets, his cases, his tenures,
+and his tricks? why does he suffer this rude knave now to knock
+him about the sconce with a dirty shovel, and will not tell him
+of his action of battery? Hum! This fellow might be in's time a
+great buyer of land, with his statutes, his recognizances, his
+fines, his double vouchers, his recoveries: is this the fine of
+his fines, and the recovery of his recoveries, to have his fine
+pate full of fine dirt? will his vouchers vouch him no more of
+his purchases, and double ones too, than the length and breadth
+of a pair of indentures? The very conveyances of his lands will
+scarcely lie in this box; and must the inheritor himself have no
+more, ha?
+
+Hor.
+Not a jot more, my lord.
+
+Ham.
+Is not parchment made of sheep-skins?
+
+Hor.
+Ay, my lord, And of calf-skins too.
+
+Ham.
+They are sheep and calves which seek out assurance in that. I
+will speak to this fellow.--Whose grave's this, sir?
+
+1 Clown.
+Mine, sir.
+[Sings.]
+   O, a pit of clay for to be made
+     For such a guest is meet.
+
+Ham.
+I think it be thine indeed, for thou liest in't.
+
+1 Clown.
+You lie out on't, sir, and therefore 'tis not yours: for my part,
+I do not lie in't, yet it is mine.
+
+Ham.
+Thou dost lie in't, to be in't and say it is thine: 'tis for
+the dead, not for the quick; therefore thou liest.
+
+1 Clown.
+'Tis a quick lie, sir; 't will away again from me to you.
+
+Ham.
+What man dost thou dig it for?
+
+1 Clown.
+For no man, sir.
+
+Ham.
+What woman then?
+
+1 Clown.
+For none neither.
+
+Ham.
+Who is to be buried in't?
+
+1 Clown.
+One that was a woman, sir; but, rest her soul, she's dead.
+
+Ham.
+How absolute the knave is! We must speak by the card, or
+equivocation will undo us. By the Lord, Horatio, these three
+years I have taken note of it, the age is grown so picked that
+the toe of the peasant comes so near the heel of the courtier he
+galls his kibe.--How long hast thou been a grave-maker?
+
+1 Clown.
+Of all the days i' the year, I came to't that day that our
+last King Hamlet overcame Fortinbras.
+
+Ham.
+How long is that since?
+
+1 Clown.
+Cannot you tell that? every fool can tell that: it was the
+very day that young Hamlet was born,--he that is mad, and sent
+into England.
+
+Ham.
+Ay, marry, why was be sent into England?
+
+1 Clown.
+Why, because he was mad: he shall recover his wits there;
+or, if he do not, it's no great matter there.
+
+Ham.
+Why?
+
+1 Clown.
+'Twill not he seen in him there; there the men are as mad as he.
+
+Ham.
+How came he mad?
+
+1 Clown.
+Very strangely, they say.
+
+Ham.
+How strangely?
+
+1 Clown.
+Faith, e'en with losing his wits.
+
+Ham.
+Upon what ground?
+
+1 Clown.
+Why, here in Denmark: I have been sexton here, man and boy,
+thirty years.
+
+Ham.
+How long will a man lie i' the earth ere he rot?
+
+1 Clown.
+Faith, if he be not rotten before he die,--as we have many
+pocky corses now-a-days that will scarce hold the laying in,--he
+will last you some eight year or nine year: a tanner will last
+you nine year.
+
+Ham.
+Why he more than another?
+
+1 Clown.
+Why, sir, his hide is so tann'd with his trade that he will
+keep out water a great while; and your water is a sore decayer of
+your whoreson dead body. Here's a skull now; this skull hath lain
+in the earth three-and-twenty years.
+
+Ham.
+Whose was it?
+
+1 Clown.
+A whoreson, mad fellow's it was: whose do you think it was?
+
+Ham.
+Nay, I know not.
+
+1 Clown.
+A pestilence on him for a mad rogue! 'a pour'd a flagon of
+Rhenish on my head once. This same skull, sir, was Yorick's
+skull, the king's jester.
+
+Ham.
+This?
+
+1 Clown.
+E'en that.
+
+Ham.
+Let me see. [Takes the skull.] Alas, poor Yorick!--I knew him,
+Horatio; a fellow of infinite jest, of most excellent fancy: he
+hath borne me on his back a thousand times; and now, how abhorred
+in my imagination it is! my gorge rises at it. Here hung those
+lips that I have kiss'd I know not how oft. Where be your gibes
+now? your gambols? your songs? your flashes of merriment, that
+were wont to set the table on a roar? Not one now, to mock your
+own grinning? quite chap-fallen? Now, get you to my lady's
+chamber, and tell her, let her paint an inch thick, to this
+favour she must come; make her laugh at that.--Pr'ythee, Horatio,
+tell me one thing.
+
+Hor.
+What's that, my lord?
+
+Ham.
+Dost thou think Alexander looked o' this fashion i' the earth?
+
+Hor.
+E'en so.
+
+Ham.
+And smelt so? Pah!
+
+[Throws down the skull.]
+
+Hor.
+E'en so, my lord.
+
+Ham.
+To what base uses we may return, Horatio! Why may not
+imagination trace the noble dust of Alexander till he find it
+stopping a bung-hole?
+
+Hor.
+'Twere to consider too curiously to consider so.
+
+Ham.
+No, faith, not a jot; but to follow him thither with modesty
+enough, and likelihood to lead it: as thus: Alexander died,
+Alexander was buried, Alexander returneth into dust; the dust is
+earth; of earth we make loam; and why of that loam whereto he
+was converted might they not stop a beer-barrel?
+   Imperious Caesar, dead and turn'd to clay,
+   Might stop a hole to keep the wind away.
+   O, that that earth which kept the world in awe
+   Should patch a wall to expel the winter's flaw!
+But soft! but soft! aside!--Here comes the king.
+
+[Enter priests, &c, in procession; the corpse of Ophelia,
+Laertes, and Mourners following; King, Queen, their Trains, &c.]
+
+The queen, the courtiers: who is that they follow?
+And with such maimed rites? This doth betoken
+The corse they follow did with desperate hand
+Fordo it own life: 'twas of some estate.
+Couch we awhile and mark.
+
+[Retiring with Horatio.]
+
+Laer.
+What ceremony else?
+
+Ham.
+That is Laertes,
+A very noble youth: mark.
+
+Laer.
+What ceremony else?
+
+1 Priest.
+Her obsequies have been as far enlarg'd
+As we have warranties: her death was doubtful;
+And, but that great command o'ersways the order,
+She should in ground unsanctified have lodg'd
+Till the last trumpet; for charitable prayers,
+Shards, flints, and pebbles should be thrown on her,
+Yet here she is allowed her virgin rites,
+Her maiden strewments, and the bringing home
+Of bell and burial.
+
+Laer.
+Must there no more be done?
+
+1 Priest.
+No more be done;
+We should profane the service of the dead
+To sing a requiem and such rest to her
+As to peace-parted souls.
+
+Laer.
+Lay her i' the earth;--
+And from her fair and unpolluted flesh
+May violets spring!--I tell thee, churlish priest,
+A ministering angel shall my sister be
+When thou liest howling.
+
+Ham.
+What, the fair Ophelia?
+
+Queen.
+Sweets to the sweet: farewell.
+[Scattering flowers.]
+I hop'd thou shouldst have been my Hamlet's wife;
+I thought thy bride-bed to have deck'd, sweet maid,
+And not have strew'd thy grave.
+
+Laer.
+O, treble woe
+Fall ten times treble on that cursed head
+Whose wicked deed thy most ingenious sense
+Depriv'd thee of!--Hold off the earth awhile,
+Till I have caught her once more in mine arms:
+[Leaps into the grave.]
+Now pile your dust upon the quick and dead,
+Till of this flat a mountain you have made,
+To o'ertop old Pelion or the skyish head
+Of blue Olympus.
+
+Ham.
+[Advancing.]
+What is he whose grief
+Bears such an emphasis? whose phrase of sorrow
+Conjures the wandering stars, and makes them stand
+Like wonder-wounded hearers? this is I,
+Hamlet the Dane.
+[Leaps into the grave.]
+
+Laer.
+The devil take thy soul!
+[Grappling with him.]
+
+Ham.
+Thou pray'st not well.
+I pr'ythee, take thy fingers from my throat;
+For, though I am not splenetive and rash,
+Yet have I in me something dangerous,
+Which let thy wiseness fear: away thy hand!
+
+King.
+Pluck them asunder.
+
+Queen.
+Hamlet! Hamlet!
+
+All.
+Gentlemen!--
+
+Hor.
+Good my lord, be quiet.
+
+[The Attendants part them, and they come out of the grave.]
+
+Ham.
+Why, I will fight with him upon this theme
+Until my eyelids will no longer wag.
+
+Queen.
+O my son, what theme?
+
+Ham.
+I lov'd Ophelia; forty thousand brothers
+Could not, with all their quantity of love,
+Make up my sum.--What wilt thou do for her?
+
+King.
+O, he is mad, Laertes.
+
+Queen.
+For love of God, forbear him!
+
+Ham.
+'Swounds, show me what thou'lt do:
+Woul't weep? woul't fight? woul't fast? woul't tear thyself?
+Woul't drink up eisel? eat a crocodile?
+I'll do't.--Dost thou come here to whine?
+To outface me with leaping in her grave?
+Be buried quick with her, and so will I:
+And, if thou prate of mountains, let them throw
+Millions of acres on us, till our ground,
+Singeing his pate against the burning zone,
+Make Ossa like a wart! Nay, an thou'lt mouth,
+I'll rant as well as thou.
+
+Queen.
+This is mere madness:
+And thus a while the fit will work on him;
+Anon, as patient as the female dove,
+When that her golden couplets are disclos'd,
+His silence will sit drooping.
+
+Ham.
+Hear you, sir;
+What is the reason that you use me thus?
+I lov'd you ever: but it is no matter;
+Let Hercules himself do what he may,
+The cat will mew, and dog will have his day.
+
+[Exit.]
+
+King.
+I pray thee, good Horatio, wait upon him.--
+
+[Exit Horatio.]
+[To Laertes]
+Strengthen your patience in our last night's speech;
+We'll put the matter to the present push.--
+Good Gertrude, set some watch over your son.--
+This grave shall have a living monument:
+An hour of quiet shortly shall we see;
+Till then in patience our proceeding be.
+
+[Exeunt.]
+
+
+
+Scene II. A hall in the Castle.
+
+[Enter Hamlet and Horatio.]
+
+Ham.
+So much for this, sir: now let me see the other;
+You do remember all the circumstance?
+
+Hor.
+Remember it, my lord!
+
+Ham.
+Sir, in my heart there was a kind of fighting
+That would not let me sleep: methought I lay
+Worse than the mutinies in the bilboes. Rashly,
+And prais'd be rashness for it,--let us know,
+Our indiscretion sometime serves us well,
+When our deep plots do fail; and that should teach us
+There's a divinity that shapes our ends,
+Rough-hew them how we will.
+
+Hor.
+That is most certain.
+
+Ham.
+Up from my cabin,
+My sea-gown scarf'd about me, in the dark
+Grop'd I to find out them: had my desire;
+Finger'd their packet; and, in fine, withdrew
+To mine own room again: making so bold,
+My fears forgetting manners, to unseal
+Their grand commission; where I found, Horatio,
+O royal knavery! an exact command,--
+Larded with many several sorts of reasons,
+Importing Denmark's health, and England's too,
+With, ho! such bugs and goblins in my life,--
+That, on the supervise, no leisure bated,
+No, not to stay the grinding of the axe,
+My head should be struck off.
+
+Hor.
+Is't possible?
+
+Ham.
+Here's the commission: read it at more leisure.
+But wilt thou bear me how I did proceed?
+
+Hor.
+I beseech you.
+
+Ham.
+Being thus benetted round with villanies,--
+Or I could make a prologue to my brains,
+They had begun the play,--I sat me down;
+Devis'd a new commission; wrote it fair:
+I once did hold it, as our statists do,
+A baseness to write fair, and labour'd much
+How to forget that learning; but, sir, now
+It did me yeoman's service. Wilt thou know
+The effect of what I wrote?
+
+Hor.
+Ay, good my lord.
+
+Ham.
+An earnest conjuration from the king,--
+As England was his faithful tributary;
+As love between them like the palm might flourish;
+As peace should still her wheaten garland wear
+And stand a comma 'tween their amities;
+And many such-like as's of great charge,--
+That, on the view and know of these contents,
+Without debatement further, more or less,
+He should the bearers put to sudden death,
+Not shriving-time allow'd.
+
+Hor.
+How was this seal'd?
+
+Ham.
+Why, even in that was heaven ordinant.
+I had my father's signet in my purse,
+Which was the model of that Danish seal:
+Folded the writ up in the form of the other;
+Subscrib'd it: gave't the impression; plac'd it safely,
+The changeling never known. Now, the next day
+Was our sea-fight; and what to this was sequent
+Thou know'st already.
+
+Hor.
+So Guildenstern and Rosencrantz go to't.
+
+Ham.
+Why, man, they did make love to this employment;
+They are not near my conscience; their defeat
+Does by their own insinuation grow:
+'Tis dangerous when the baser nature comes
+Between the pass and fell incensed points
+Of mighty opposites.
+
+Hor.
+Why, what a king is this!
+
+Ham.
+Does it not, thinks't thee, stand me now upon,--
+He that hath kill'd my king, and whor'd my mother;
+Popp'd in between the election and my hopes;
+Thrown out his angle for my proper life,
+And with such cozenage--is't not perfect conscience
+To quit him with this arm? and is't not to be damn'd
+To let this canker of our nature come
+In further evil?
+
+Hor.
+It must be shortly known to him from England
+What is the issue of the business there.
+
+Ham.
+It will be short: the interim is mine;
+And a man's life is no more than to say One.
+But I am very sorry, good Horatio,
+That to Laertes I forgot myself;
+For by the image of my cause I see
+The portraiture of his: I'll court his favours:
+But, sure, the bravery of his grief did put me
+Into a towering passion.
+
+Hor.
+Peace; who comes here?
+
+[Enter Osric.]
+
+Osr.
+Your lordship is right welcome back to Denmark.
+
+Ham.
+I humbly thank you, sir. Dost know this water-fly?
+
+Hor.
+No, my good lord.
+
+Ham.
+Thy state is the more gracious; for 'tis a vice to know him. He
+hath much land, and fertile: let a beast be lord of beasts, and
+his crib shall stand at the king's mess; 'tis a chough; but, as I
+say, spacious in the possession of dirt.
+
+Osr.
+Sweet lord, if your lordship were at leisure, I should
+impart a thing to you from his majesty.
+
+Ham.
+I will receive it with all diligence of spirit. Put your
+bonnet to his right use; 'tis for the head.
+
+Osr.
+I thank your lordship, t'is very hot.
+
+Ham.
+No, believe me, 'tis very cold; the wind is northerly.
+
+Osr.
+It is indifferent cold, my lord, indeed.
+
+Ham.
+Methinks it is very sultry and hot for my complexion.
+
+Osr.
+Exceedingly, my lord; it is very sultry,--as 'twere--I cannot
+tell how. But, my lord, his majesty bade me signify to you that
+he has laid a great wager on your head. Sir, this is the
+matter,--
+
+Ham.
+I beseech you, remember,--
+[Hamlet moves him to put on his hat.]
+
+Osr.
+Nay, in good faith; for mine ease, in good faith. Sir, here
+is newly come to court Laertes; believe me, an absolute
+gentleman, full of most excellent differences, of very soft
+society and great showing: indeed, to speak feelingly of him, he
+is the card or calendar of gentry; for you shall find in him the
+continent of what part a gentleman would see.
+
+Ham.
+Sir, his definement suffers no perdition in you;--though, I
+know, to divide him inventorially would dizzy the arithmetic of
+memory, and yet but yaw neither, in respect of his quick sail.
+But, in the verity of extolment, I take him to be a soul of great
+article, and his infusion of such dearth and rareness as, to make
+true diction of him, his semblable is his mirror, and who else
+would trace him, his umbrage, nothing more.
+
+Osr.
+Your lordship speaks most infallibly of him.
+
+Ham.
+The concernancy, sir? why do we wrap the gentleman in our more
+rawer breath?
+
+Osr.
+Sir?
+
+Hor.
+Is't not possible to understand in another tongue? You will do't,
+sir, really.
+
+Ham.
+What imports the nomination of this gentleman?
+
+Osr.
+Of Laertes?
+
+Hor.
+His purse is empty already; all's golden words are spent.
+
+Ham.
+Of him, sir.
+
+Osr.
+I know, you are not ignorant,--
+
+Ham.
+I would you did, sir; yet, in faith, if you did, it would not
+much approve me.--Well, sir.
+
+Osr.
+You are not ignorant of what excellence Laertes is,--
+
+Ham.
+I dare not confess that, lest I should compare with him in
+excellence; but to know a man well were to know himself.
+
+Osr.
+I mean, sir, for his weapon; but in the imputation laid on
+him by them, in his meed he's unfellowed.
+
+Ham.
+What's his weapon?
+
+Osr.
+Rapier and dagger.
+
+Ham.
+That's two of his weapons:--but well.
+
+Osr.
+The king, sir, hath wager'd with him six Barbary horses:
+against the which he has imponed, as I take it, six French
+rapiers and poniards, with their assigns, as girdle, hangers, and
+so: three of the carriages, in faith, are very dear to fancy,
+very responsive to the hilts, most delicate carriages, and of
+very liberal conceit.
+
+Ham.
+What call you the carriages?
+
+Hor.
+I knew you must be edified by the margent ere you had done.
+
+Osr.
+The carriages, sir, are the hangers.
+
+Ham.
+The phrase would be more german to the matter if we could
+carry cannon by our sides. I would it might be hangers till then.
+But, on: six Barbary horses against six French swords, their
+assigns, and three liberal conceited carriages: that's the French
+bet against the Danish: why is this all imponed, as you call it?
+
+Osr.
+The king, sir, hath laid that, in a dozen passes between
+your and him, he shall not exceed you three hits: he hath
+laid on twelve for nine; and it would come to immediate trial
+if your lordship would vouchsafe the answer.
+
+Ham.
+How if I answer no?
+
+Osr.
+I mean, my lord, the opposition of your person in trial.
+
+Ham.
+Sir, I will walk here in the hall: if it please his majesty,
+it is the breathing time of day with me: let the foils be
+brought, the gentleman willing, and the king hold his purpose,
+I will win for him if I can; if not, I will gain nothing but my
+shame and the odd hits.
+
+Osr.
+Shall I re-deliver you e'en so?
+
+Ham.
+To this effect, sir; after what flourish your nature will.
+
+Osr.
+I commend my duty to your lordship.
+
+Ham.
+Yours, yours.
+
+[Exit Osric.]
+
+He does well to commend it himself; there are no tongues else
+for's turn.
+
+Hor.
+This lapwing runs away with the shell on his head.
+
+Ham.
+He did comply with his dug before he suck'd it. Thus has he,--and
+many more of the same bevy that I know the drossy age dotes on,--
+only got the tune of the time and outward habit of encounter;
+a kind of yesty collection, which carries them through and
+through the most fanned and winnowed opinions; and do but blow
+them to their trial, the bubbles are out,
+
+[Enter a Lord.]
+
+Lord.
+My lord, his majesty commended him to you by young Osric,
+who brings back to him that you attend him in the hall: he sends
+to know if your pleasure hold to play with Laertes, or that you
+will take longer time.
+
+Ham.
+I am constant to my purposes; they follow the king's pleasure:
+if his fitness speaks, mine is ready; now or whensoever, provided
+I be so able as now.
+
+Lord.
+The King and Queen and all are coming down.
+
+Ham.
+In happy time.
+
+Lord.
+The queen desires you to use some gentle entertainment to
+Laertes before you fall to play.
+
+Ham.
+She well instructs me.
+
+[Exit Lord.]
+
+Hor.
+You will lose this wager, my lord.
+
+Ham.
+I do not think so; since he went into France I have been in
+continual practice: I shall win at the odds. But thou wouldst not
+think how ill all's here about my heart: but it is no matter.
+
+Hor.
+Nay, good my lord,--
+
+Ham.
+It is but foolery; but it is such a kind of gain-giving as
+would perhaps trouble a woman.
+
+Hor.
+If your mind dislike anything, obey it: I will forestall their
+repair hither, and say you are not fit.
+
+Ham.
+Not a whit, we defy augury: there's a special providence in
+the fall of a sparrow. If it be now, 'tis not to come; if it be
+not to come, it will be now; if it be not now, yet it will come:
+the readiness is all: since no man has aught of what he leaves,
+what is't to leave betimes?
+
+[Enter King, Queen, Laertes, Lords, Osric, and Attendants with
+foils &c.]
+
+King.
+Come, Hamlet, come, and take this hand from me.
+
+[The King puts Laertes' hand into Hamlet's.]
+
+Ham.
+Give me your pardon, sir: I have done you wrong:
+But pardon't, as you are a gentleman.
+This presence knows, and you must needs have heard,
+How I am punish'd with sore distraction.
+What I have done
+That might your nature, honour, and exception
+Roughly awake, I here proclaim was madness.
+Was't Hamlet wrong'd Laertes? Never Hamlet:
+If Hamlet from himself be ta'en away,
+And when he's not himself does wrong Laertes,
+Then Hamlet does it not, Hamlet denies it.
+Who does it, then? His madness: if't be so,
+Hamlet is of the faction that is wrong'd;
+His madness is poor Hamlet's enemy.
+Sir, in this audience,
+Let my disclaiming from a purpos'd evil
+Free me so far in your most generous thoughts
+That I have shot my arrow o'er the house
+And hurt my brother.
+
+Laer.
+I am satisfied in nature,
+Whose motive, in this case, should stir me most
+To my revenge. But in my terms of honour
+I stand aloof; and will no reconcilement
+Till by some elder masters of known honour
+I have a voice and precedent of peace
+To keep my name ungor'd. But till that time
+I do receive your offer'd love like love,
+And will not wrong it.
+
+Ham.
+I embrace it freely;
+And will this brother's wager frankly play.--
+Give us the foils; come on.
+
+Laer.
+Come, one for me.
+
+Ham.
+I'll be your foil, Laertes; in mine ignorance
+Your skill shall, like a star in the darkest night,
+Stick fiery off indeed.
+
+Laer.
+You mock me, sir.
+
+Ham.
+No, by this hand.
+
+King.
+Give them the foils, young Osric. Cousin Hamlet,
+You know the wager?
+
+Ham.
+Very well, my lord;
+Your grace has laid the odds o' the weaker side.
+
+King.
+I do not fear it; I have seen you both;
+But since he's better'd, we have therefore odds.
+
+Laer.
+This is too heavy, let me see another.
+
+Ham.
+This likes me well. These foils have all a length?
+
+[They prepare to play.]
+
+Osr.
+Ay, my good lord.
+
+King.
+Set me the stoups of wine upon that table,--
+If Hamlet give the first or second hit,
+Or quit in answer of the third exchange,
+Let all the battlements their ordnance fire;
+The king shall drink to Hamlet's better breath;
+And in the cup an union shall he throw,
+Richer than that which four successive kings
+In Denmark's crown have worn. Give me the cups;
+And let the kettle to the trumpet speak,
+The trumpet to the cannoneer without,
+The cannons to the heavens, the heavens to earth,
+'Now the king drinks to Hamlet.'--Come, begin:--
+And you, the judges, bear a wary eye.
+
+Ham.
+Come on, sir.
+
+Laer.
+Come, my lord.
+
+[They play.]
+
+Ham.
+One.
+
+Laer.
+No.
+
+Ham.
+Judgment!
+
+Osr.
+A hit, a very palpable hit.
+
+Laer.
+Well;--again.
+
+King.
+Stay, give me drink.--Hamlet, this pearl is thine;
+Here's to thy health.--
+
+[Trumpets sound, and cannon shot off within.]
+
+Give him the cup.
+
+Ham.
+I'll play this bout first; set it by awhile.--
+Come.--Another hit; what say you?
+
+[They play.]
+
+Laer.
+A touch, a touch, I do confess.
+
+King.
+Our son shall win.
+
+Queen.
+He's fat, and scant of breath.--
+Here, Hamlet, take my napkin, rub thy brows:
+The queen carouses to thy fortune, Hamlet.
+
+Ham.
+Good madam!
+
+King.
+Gertrude, do not drink.
+
+Queen.
+I will, my lord; I pray you pardon me.
+
+King.
+[Aside.] It is the poison'd cup; it is too late.
+
+Ham.
+I dare not drink yet, madam; by-and-by.
+
+Queen.
+Come, let me wipe thy face.
+
+Laer.
+My lord, I'll hit him now.
+
+King.
+I do not think't.
+
+Laer.
+[Aside.] And yet 'tis almost 'gainst my conscience.
+
+Ham.
+Come, for the third, Laertes: you but dally;
+I pray you pass with your best violence:
+I am afeard you make a wanton of me.
+
+Laer.
+Say you so? come on.
+
+[They play.]
+
+Osr.
+Nothing, neither way.
+
+Laer.
+Have at you now!
+
+[Laertes wounds Hamlet; then, in scuffling, they
+change rapiers, and Hamlet wounds Laertes.]
+
+King.
+Part them; they are incens'd.
+
+Ham.
+Nay, come again!
+
+[The Queen falls.]
+
+Osr.
+Look to the queen there, ho!
+
+Hor.
+They bleed on both sides.--How is it, my lord?
+
+Osr.
+How is't, Laertes?
+
+Laer.
+Why, as a woodcock to my own springe, Osric;
+I am justly kill'd with mine own treachery.
+
+Ham.
+How does the Queen?
+
+King.
+She swoons to see them bleed.
+
+Queen.
+No, no! the drink, the drink!--O my dear Hamlet!--
+The drink, the drink!--I am poison'd.
+
+[Dies.]
+
+Ham.
+O villany!--Ho! let the door be lock'd:
+Treachery! seek it out.
+
+[Laertes falls.]
+
+Laer.
+It is here, Hamlet: Hamlet, thou art slain;
+No medicine in the world can do thee good;
+In thee there is not half an hour of life;
+The treacherous instrument is in thy hand,
+Unbated and envenom'd: the foul practice
+Hath turn'd itself on me; lo, here I lie,
+Never to rise again: thy mother's poison'd:
+I can no more:--the king, the king's to blame.
+
+Ham.
+The point envenom'd too!--
+Then, venom, to thy work.
+
+[Stabs the King.]
+
+Osric and Lords.
+Treason! treason!
+
+King.
+O, yet defend me, friends! I am but hurt.
+
+Ham.
+Here, thou incestuous, murderous, damned Dane,
+Drink off this potion.--Is thy union here?
+Follow my mother.
+
+[King dies.]
+
+Laer.
+He is justly serv'd;
+It is a poison temper'd by himself.--
+Exchange forgiveness with me, noble Hamlet:
+Mine and my father's death come not upon thee,
+Nor thine on me!
+
+[Dies.]
+
+Ham.
+Heaven make thee free of it! I follow thee.--
+I am dead, Horatio.--Wretched queen, adieu!--
+You that look pale and tremble at this chance,
+That are but mutes or audience to this act,
+Had I but time,--as this fell sergeant, death,
+Is strict in his arrest,--O, I could tell you,--
+But let it be.--Horatio, I am dead;
+Thou liv'st; report me and my cause aright
+To the unsatisfied.
+
+Hor.
+Never believe it:
+I am more an antique Roman than a Dane.--
+Here's yet some liquor left.
+
+Ham.
+As thou'rt a man,
+Give me the cup; let go; by heaven, I'll have't.--
+O good Horatio, what a wounded name,
+Things standing thus unknown, shall live behind me!
+If thou didst ever hold me in thy heart,
+Absent thee from felicity awhile,
+And in this harsh world draw thy breath in pain,
+To tell my story.--
+
+[March afar off, and shot within.]
+
+What warlike noise is this?
+
+Osr.
+Young Fortinbras, with conquest come from Poland,
+To the ambassadors of England gives
+This warlike volley.
+
+Ham.
+O, I die, Horatio;
+The potent poison quite o'er-crows my spirit:
+I cannot live to hear the news from England;
+But I do prophesy the election lights
+On Fortinbras: he has my dying voice;
+So tell him, with the occurrents, more and less,
+Which have solicited.--the rest is silence.
+
+[Dies.]
+
+Hor.
+Now cracks a noble heart.--Good night, sweet prince,
+And flights of angels sing thee to thy rest!
+Why does the drum come hither?
+
+[March within.]
+
+[Enter Fortinbras, the English Ambassadors, and others.]
+
+Fort.
+Where is this sight?
+
+Hor.
+What is it you will see?
+If aught of woe or wonder, cease your search.
+
+Fort.
+This quarry cries on havoc.--O proud death,
+What feast is toward in thine eternal cell,
+That thou so many princes at a shot
+So bloodily hast struck?
+
+1 Ambassador.
+The sight is dismal;
+And our affairs from England come too late:
+The ears are senseless that should give us hearing,
+To tell him his commandment is fulfill'd
+That Rosencrantz and Guildenstern are dead:
+Where should we have our thanks?
+
+Hor.
+Not from his mouth,
+Had it the ability of life to thank you:
+He never gave commandment for their death.
+But since, so jump upon this bloody question,
+You from the Polack wars, and you from England,
+Are here arriv'd, give order that these bodies
+High on a stage be placed to the view;
+And let me speak to the yet unknowing world
+How these things came about: so shall you hear
+Of carnal, bloody and unnatural acts;
+Of accidental judgments, casual slaughters;
+Of deaths put on by cunning and forc'd cause;
+And, in this upshot, purposes mistook
+Fall'n on the inventors' heads: all this can I
+Truly deliver.
+
+Fort.
+Let us haste to hear it,
+And call the noblest to the audience.
+For me, with sorrow I embrace my fortune:
+I have some rights of memory in this kingdom,
+Which now, to claim my vantage doth invite me.
+
+Hor.
+Of that I shall have also cause to speak,
+And from his mouth whose voice will draw on more:
+But let this same be presently perform'd,
+Even while men's minds are wild: lest more mischance
+On plots and errors happen.
+
+Fort.
+Let four captains
+Bear Hamlet like a soldier to the stage;
+For he was likely, had he been put on,
+To have prov'd most royally: and, for his passage,
+The soldiers' music and the rites of war
+Speak loudly for him.--
+Take up the bodies.--Such a sight as this
+Becomes the field, but here shows much amiss.
+Go, bid the soldiers shoot.
+
+[A dead march.]
+
+[Exeunt, bearing off the dead bodies; after the which a peal of
+ordnance is shot off.]
diff --git a/pandastruct.png b/pandastruct.png
new file mode 100644
index 0000000..3c1e0db
Binary files /dev/null and b/pandastruct.png differ