regluit/notebooks/doab_loading.ipynb

1557 lines
91 KiB
Plaintext
Raw Normal View History

{
"metadata": {
"name": "",
"signature": "sha256:8dbf29673bfcf10cead8d3b369e46135dbcf4445350d0296d5968cb837de0ad4"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Checking the results of a local celery task"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"from regluit.core import tasks\n",
"\n",
"task_id = \"c7c6c4a9-c9bf-4881-8800-ecea8e365655\"\n",
"result = tasks.fac.AsyncResult(task_id)\n",
"result.get()"
],
"language": "python",
"metadata": {},
"outputs": []
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"http://doabooks.org/doab?func=about&uiLanguage=en#metadata\n"
]
},
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Loading the list of books"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import json\n",
"import codecs\n",
"s = codecs.open(\"../bookdata/doab.json\", encoding='UTF-8').read()\n",
"records = json.loads(s)\n",
"records[:5]"
],
"language": "python",
"metadata": {},
"outputs": [
{
"metadata": {},
"output_type": "pyout",
"prompt_number": 7,
"text": [
"[[[u'provider', u'OAPEN Library'],\n",
" [u'rights', u'CC BY-NC-ND'],\n",
" [u'language', u'en'],\n",
" [u'isbns', [u'9781847881298']],\n",
" [u'title', u'Jihad Beyond Islam'],\n",
" [u'url', u'http://www.oapen.org/download?type=document&docid=390768'],\n",
" [u'format', u'pdf'],\n",
" [u'seed_isbn', u'9781847881298'],\n",
" [u'doab_id', u'12555']],\n",
" [[u'provider', u'Directory of Open Access Books'],\n",
" [u'rights', u'CC BY-NC-ND'],\n",
" [u'language', u'en'],\n",
" [u'isbns', [u'9781847881298']],\n",
" [u'title', u'Jihad Beyond Islam'],\n",
" [u'url', u'http://www.doabooks.org/doab?func=search&query=rid:12555'],\n",
" [u'format', u'html'],\n",
" [u'seed_isbn', u'9781847881298'],\n",
" [u'doab_id', u'12555']],\n",
" [[u'provider', u'OAPEN Library'],\n",
" [u'rights', u'CC BY-NC-ND'],\n",
" [u'language', u'en'],\n",
" [u'isbns', [u'9781847883162']],\n",
" [u'title', u'Knowledge Goes Pop : From Conspiracy Theory to Gossip'],\n",
" [u'url', u'http://www.oapen.org/download?type=document&docid=390769'],\n",
" [u'format', u'pdf'],\n",
" [u'seed_isbn', u'9781847883162'],\n",
" [u'doab_id', u'12556']],\n",
" [[u'provider', u'Directory of Open Access Books'],\n",
" [u'rights', u'CC BY-NC-ND'],\n",
" [u'language', u'en'],\n",
" [u'isbns', [u'9781847883162']],\n",
" [u'title', u'Knowledge Goes Pop : From Conspiracy Theory to Gossip'],\n",
" [u'url', u'http://www.doabooks.org/doab?func=search&query=rid:12556'],\n",
" [u'format', u'html'],\n",
" [u'seed_isbn', u'9781847883162'],\n",
" [u'doab_id', u'12556']],\n",
" [[u'provider', u'OAPEN Library'],\n",
" [u'rights', u'CC BY-NC-ND'],\n",
" [u'language', u'en'],\n",
" [u'isbns', [u'9781847883308']],\n",
" [u'title', u'Anthropology and the Bushman'],\n",
" [u'url', u'http://www.oapen.org/download?type=document&docid=390770'],\n",
" [u'format', u'pdf'],\n",
" [u'seed_isbn', u'9781847883308'],\n",
" [u'doab_id', u'12557']]]"
]
}
],
"prompt_number": 7
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# new algorithm\n",
"\n",
" for each doab_id:\n",
" for each isbn,\n",
" try to find a google_id for the isbn (by add_by_isbn), otherwise create our own edition\n",
" (asynchronously), populate related isbns for each of the isbns\n",
" for each of the works associated with this list of editions:\n",
" we can manually run merge_work on all of them pairwise\n",
"\n",
" when we should end up w/ one work per doab_id --> tie that doab_id the super-merged work."
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"def load_doab_edition_0(title, doab_id, seed_isbn, url, format, rights, \n",
" provider='Directory of Open Access Books', **kwargs):\n",
" \n",
" \"\"\"associate a book from DOAB with an Edition\"\"\"\n",
" \n",
" # assumed data relationship: a given DOAB id tied to 1 Work and 1 Edition (at most)\n",
" # can we find doab_id as an identifier? \n",
" # doab work or edition id\n",
" \n",
" from regluit.core import tasks\n",
" \n",
" # first step, see whether there is a Work with the doab_id.\n",
" \n",
" try:\n",
" work = models.Identifier.objects.get(type='doab',value=doab_id).work\n",
" \n",
" # if there is no such work, try to find an Edition with the seed_isbn and use that work to hang off of\n",
" \n",
" except models.Identifier.DoesNotExist: \n",
" sister_edition = add_by_isbn(seed_isbn)\n",
" \n",
" if sister_edition is None:\n",
" raise Exception(\"No edition created for DOAB %s ISBN %s\" % (doab_id, seed_isbn))\n",
" \n",
" # at this point, we should be able to grab the associated work\n",
" work = sister_edition.work\n",
" \n",
" # if this is a new edition, then add related editions asynchronously\n",
" if getattr(sister_edition,'new', False):\n",
" tasks.populate_edition.delay(sister_edition.isbn_13)\n",
"\n",
" # make sure the doab_id is attached to the work/sister_edition\n",
" doab_identifer = models.Identifier.get_or_add(type='doab',value=doab_id, \n",
" work=work,\n",
" edition=sister_edition)\n",
" \n",
" except models.Identifier.MultipleObjectsReturned, e:\n",
" raise e\n",
"\n",
" # Now pull out any existing DOAB editions tied to the work with the proper DOAB ID\n",
" try:\n",
" edition = models.Identifier.objects.get( type='doab', value=doab_id).edition \n",
" except models.Identifier.DoesNotExist:\n",
" edition = models.Edition()\n",
" edition.title = title\n",
" edition.work = work\n",
" \n",
" edition.save()\n",
" edition_id = models.Identifier.get_or_add(type='doab',value=doab_id, \n",
" edition=edition, work=work)\n",
" except models.Identifier.MultipleObjectsReturned, e:\n",
" raise e\n",
" \n",
" # check to see whether the Edition hasn't already been loaded first\n",
" # search by url\n",
" ebooks = models.Ebook.objects.filter(url=url)\n",
" \n",
" if len(ebooks): \n",
" ebook = ebooks[0]\n",
" elif len(ebooks) == 0: # need to create new ebook\n",
" ebook = models.Ebook()\n",
"\n",
" if len(ebooks) > 1:\n",
" raise Exception(\"There is more than one Ebook matching url {0}\".format(url))\n",
" \n",
" ebook.format = format\n",
" ebook.provider = provider\n",
" ebook.url = url\n",
" ebook.rights = rights\n",
" \n",
" # is an Ebook instantiable without a corresponding Edition? (No, I think)\n",
" \n",
" ebook.edition = edition\n",
" ebook.save()\n",
" \n",
" return ebook"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 11
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"In the current incarnation of regluit.core.doab.load_doab_edition, I do a query for whether the doab_id is currently tied to any Work or Edition in the search for where to hang the Ebook record. Real question is whether the ebook URL is already in the database...if so, there's \n",
"nothing to do. If not, then the question is finding Work and Edition to which to associate the Ebook.\n",
"\n",
"Some things that seem to be desirable:\n",
"\n",
" * all the Ebooks for a given DOAB record are tied to the same Edition.\n",
" * the Work tied to the Edition with the DOAB ebooks should have the given doab_id --> make sure this Work is the one left standing in all the DOAB-related merging\n",
" * what ISBN to tie to the Edition? Look first for whether any of the ISBNs already in unglue.it. If not, then try to find an isbn that is recognized by Google Books. Otherwise, just pick the first one. \n",
" * make new Editions/Works for the remaining ISBNs.\n",
" * do the merging of all the resulting works.\n",
"\n",
"**Question**: issue of the \"selected edition\" for given Work? I guess I should make the Edition with with the Ebook the selected_edition....[I might want to follow up and figure out what editions are currently becoming the selected ones.]\n",
"\n",
"```SQL\n",
"SELECT count(*) FROM core_work WHERE selected_edition_id IS NULL \n",
"UNION ALL\n",
"SELECT count(*) FROM core_work WHERE selected_edition_id IS NOT NULL;\n",
"```\n",
"\n",
"shows\n",
"\n",
" 2238\n",
" 51856\n",
" \n",
"How did the 2238 of the Works end up with selected editions? What benefits come with being the selected edition?"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"from itertools import islice\n",
"from regluit.core.models import Ebook\n",
"\n",
"ebook = Ebook.objects.all()[0]\n",
"ebook.edition.work.identifiers.get_or_create(type=\"doab\", value="
],
"language": "python",
"metadata": {},
"outputs": [
{
"metadata": {},
"output_type": "pyout",
"prompt_number": 25,
"text": [
"u'12555'"
]
}
],
"prompt_number": 25
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"def load_doab_edition(title, doab_id, seed_isbn, url, format, rights,\n",
" language, isbns,\n",
" provider='Directory of Open Access Books', **kwargs):\n",
" \n",
"\n",
" from django.db.models import (Q, F)\n",
" \n",
" from regluit.core import tasks\n",
" from regluit.core import (models, bookloader)\n",
" \n",
" # check to see whether the Edition hasn't already been loaded first\n",
" # search by url\n",
" ebooks = models.Ebook.objects.filter(url=url)\n",
" \n",
" # 1 match\n",
" # > 1 match\n",
" # 0 match\n",
"\n",
" # simplest case -- if match (1 or more), we could check whether any\n",
" # ebook.edition.work has a doab id matching given doab_id\n",
" \n",
" # put a migration to force Ebook.url to be unique id\n",
" \n",
" # if yes, then return one of the Edition(s) whose work is doab_id\n",
" # if no, then \n",
" \n",
" if len(ebooks) > 1:\n",
" raise Exception(\"There is more than one Ebook matching url {0}\".format(url)) \n",
" elif len(ebooks) == 1: \n",
" ebook = ebooks[0]\n",
" doab_identifer = models.Identifier.get_or_add(type='doab',value=doab_id, \n",
" work=ebook.edition.work)\n",
" return ebook\n",
" \n",
" # remaining case --> need to create a new Ebook \n",
" assert len(ebooks) == 0\n",
" \n",
" # make sure we have isbns to work with before creating ebook\n",
" if len(isbns) == 0:\n",
" return None\n",
" \n",
" ebook = models.Ebook()\n",
" ebook.format = format\n",
" ebook.provider = provider\n",
" ebook.url = url\n",
" ebook.rights = rights\n",
"\n",
" # we still need to find the right Edition/Work to tie Ebook to...\n",
" \n",
" # look for the Edition with which to associate ebook.\n",
" # loop through the isbns to see whether we get one that is not None\n",
" \n",
" for isbn in isbns:\n",
" edition = bookloader.add_by_isbn(isbn)\n",
" if edition is not None: break \n",
" \n",
" if edition is not None:\n",
" # if this is a new edition, then add related editions asynchronously\n",
" if getattr(edition,'new', False):\n",
" tasks.populate_edition.delay(edition.isbn_13)\n",
" \n",
" # QUESTION: Is this good enough?\n",
" # what's going to happen to edition.work if there's merging \n",
" doab_identifer = models.Identifier.get_or_add(type='doab',value=doab_id, \n",
" work=edition.work)\n",
"\n",
" # we need to create Edition(s) de novo \n",
" else: \n",
" # if there is a Work with doab_id already, attach any new Edition(s)\n",
" try:\n",
" work = models.Identifier.objects.get(type='doab',value=doab_id).work\n",
" except models.Identifier.DoesNotExist:\n",
" work = models.Work(language=language,title=title)\n",
" doab_identifer = models.Identifier.get_or_add(type='doab',value=doab_id, \n",
" work=work)\n",
" work.save()\n",
" \n",
" # create Edition(s) for each of the isbn from the input info\n",
" editions = []\n",
" for isbn in isbns:\n",
" edition = models.Edition(title=title, work=work)\n",
" edition.save()\n",
" \n",
" isbn_id = models.Identifier.get_or_add(type='isbn',value=isbn,work=work)\n",
" \n",
" editions.append(edition)\n",
" \n",
" # if work has any ebooks already, attach the ebook to the corresponding edition\n",
" # otherwise pick the first one\n",
" # pick the first edition as the one to tie ebook to \n",
" editions_with_ebooks = models.Edition.objects.filter(Q(work__id=work.id) & \\\n",
" Q(ebooks__isnull=False)).distinct()\n",
" if editions_with_ebooks:\n",
" edition = editions_with_ebooks[0]\n",
" else:\n",
" edition = editions[0]\n",
" \n",
" # tie the edition to ebook\n",
" \n",
" ebook.edition = edition\n",
" ebook.save()\n",
" \n",
" return ebook"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 77
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"book = records[2]\n",
"\n",
"ebook = load_doab_edition(**dict(book))\n",
"ebook.id, ebook.edition.id, ebook.edition.work.id"
],
"language": "python",
"metadata": {},
"outputs": [
{
"metadata": {},
"output_type": "pyout",
"prompt_number": 85,
"text": [
"(1336L, 216094L, 137982L)"
]
}
],
"prompt_number": 85
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"from itertools import islice\n",
"\n",
"for (i, book) in enumerate(islice(records,1)):\n",
" print i, \n",
" d = dict(book)\n",
" if d['format'] == 'pdf':\n",
" try:\n",
" edition = load_doab_edition(**dict(book))\n",
" print \"success\"\n",
" except Exception, e:\n",
" print e\n",
" else:\n",
" print \"non-pdf\"\n",
" "
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"0 "
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"success\n"
]
}
],
"prompt_number": 78
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"from regluit.core.models import (Ebook, Edition, Work)\n",
"from django.db.models import (Q, F)\n",
"\n",
"# models.Identifier.objects.filter(edition__isnull=False).filter(~Q(edition__work__id = F('work__id'))).count()\n",
"\n",
"editions_with_ebooks = Edition.objects.filter(ebooks__isnull=False)\n",
"editions_with_ebooks\n",
"\n",
"edition = editions_with_ebooks[0]\n",
"print edition.work_id\n",
"work = edition.work\n",
"print work.editions.all()\n",
"# didn't know you should use distinct()\n",
"Edition.objects.filter(Q(work__id=edition.work_id) & Q(ebooks__isnull=False)).distinct()\n",
"#Edition.objects.filter(Q(work__id=edition.work_id))\n",
"#work.objects.filter(editions__ebooks__isnull=False)"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"213\n",
"[<Edition: Moby Dick; or, The white whale (GOOG XV8XAAAAYAAJ) St. Botolph Society>]\n"
]
},
{
"metadata": {},
"output_type": "pyout",
"prompt_number": 70,
"text": [
"[<Edition: Moby Dick; or, The white whale (GOOG XV8XAAAAYAAJ) St. Botolph Society>]"
]
}
],
"prompt_number": 70
},
{
"cell_type": "code",
"collapsed": false,
"input": [],
"language": "python",
"metadata": {},
"outputs": [
{
"ename": "AttributeError",
"evalue": "'Edition' object has no attribute 'editions'",
"output_type": "pyerr",
"traceback": [
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m\n\u001b[0;31mAttributeError\u001b[0m Traceback (most recent call last)",
"\u001b[0;32m<ipython-input-53-79750141c7ad>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mwork\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0meditions\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m",
"\u001b[0;31mAttributeError\u001b[0m: 'Edition' object has no attribute 'editions'"
]
}
],
"prompt_number": 53
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"# let me grab ebooks and look at their parent works\n",
"\n",
"from regluit.core.models import Ebook\n",
"\n",
"[eb.edition for eb in Ebook.objects.all()]"
],
"language": "python",
"metadata": {},
"outputs": [
{
"metadata": {},
"output_type": "pyout",
"prompt_number": 27,
"text": [
"[<Edition: Moby Dick; or, The white whale (GOOG XV8XAAAAYAAJ) St. Botolph Society>,\n",
" <Edition: Moby Dick; or, The white whale (GOOG XV8XAAAAYAAJ) St. Botolph Society>,\n",
" <Edition: Down and Out in the Magic Kingdom (ISBN 9780765309532) Macmillan>,\n",
" <Edition: The brothers Karamazov (GOOG mMNKAAAAYAAJ) Macmillan>,\n",
" <Edition: The brothers Karamazov (GOOG mMNKAAAAYAAJ) Macmillan>,\n",
" <Edition: Letters of a woman homesteader (GOOG -4UUAAAAYAAJ) Houghton Mifflin Company>,\n",
" <Edition: Letters of a woman homesteader (GOOG -4UUAAAAYAAJ) Houghton Mifflin Company>,\n",
" <Edition: Letters of Emily Dickinson (GOOG 64JaAAAAMAAJ) Reprint Service Corp.>,\n",
" <Edition: Letters of Emily Dickinson (GOOG 64JaAAAAMAAJ) Reprint Service Corp.>,\n",
" <Edition: My \u00c1ntonia (GOOG RFJaAAAAMAAJ) Houghton Mifflin>,\n",
" <Edition: My \u00c1ntonia (GOOG RFJaAAAAMAAJ) Houghton Mifflin>,\n",
" <Edition: Anne of Green Gables (GOOG RDg1AAAAMAAJ) Grosset & Dunlap>,\n",
" <Edition: Anne of Green Gables (GOOG RDg1AAAAMAAJ) Grosset & Dunlap>,\n",
" <Edition: Oliver Twist (GOOG DTcJAAAAQAAJ) Richard Bentley>,\n",
" <Edition: Oliver Twist (GOOG DTcJAAAAQAAJ) Richard Bentley>,\n",
" <Edition: Mopsa the fairy (GOOG BxACAAAAQAAJ) Longmans, Green, and Co.>,\n",
" <Edition: Mopsa the fairy (GOOG BxACAAAAQAAJ) Longmans, Green, and Co.>,\n",
" <Edition: The poetical works of Jean Ingelow (GOOG Fb0VAAAAYAAJ) T.Y. Crowell & company>,\n",
" <Edition: Tales (GOOG nQ0EAAAAQAAJ) Wiley and Putnam>,\n",
" <Edition: Tales (GOOG nQ0EAAAAQAAJ) Wiley and Putnam>,\n",
" <Edition: The American novel (GOOG JQNaAAAAMAAJ) Macmillan>,\n",
" <Edition: The American novel (GOOG JQNaAAAAMAAJ) Macmillan>,\n",
" <Edition: Tess of the D'Urbervilles (GOOG -xw3AAAAIAAJ) Osgood, McIlvaine>,\n",
" <Edition: Tess of the D'Urbervilles (GOOG -xw3AAAAIAAJ) Osgood, McIlvaine>,\n",
" <Edition: Library patron privacy (ISBN 9781594076107) Association of Research Libr>,\n",
" <Edition: Knitting (GOOG wi_zAAAAMAAJ) American school of correspondence>,\n",
" <Edition: Pride and Prejudice (GOOG s1gVAAAAYAAJ) C. Scribner's sons>,\n",
" <Edition: Pride and Prejudice (GOOG s1gVAAAAYAAJ) C. Scribner's sons>,\n",
" <Edition: The Mill on the Floss (GOOG rnEAAAAAYAAJ) Ginn and Company>,\n",
" <Edition: The Mill on the Floss (GOOG rnEAAAAAYAAJ) Ginn and Company>,\n",
" <Edition: New England's chattels (GOOG f19TAAAAYAAJ) H. Dayton>,\n",
" <Edition: New England's chattels (GOOG f19TAAAAYAAJ) H. Dayton>,\n",
" <Edition: The beautiful and damned (ISBN 9780684178165) Scribner Book Company>,\n",
" <Edition: The beautiful and damned (ISBN 9780684178165) Scribner Book Company>,\n",
" <Edition: Reports of cases argued and determined in the Supreme Court of ... Vermont (GOOG cStFAAAAYAAJ) >,\n",
" <Edition: Bleak House (GOOG KlsJAAAAQAAJ) Bradbury and Evans>,\n",
" <Edition: Bleak House (GOOG KlsJAAAAQAAJ) Bradbury and Evans>,\n",
" <Edition: Twas the night before Christmas (ISBN 9780395069523) Houghton Mifflin Harcourt>,\n",
" <Edition: The Hunting of the Snark (GLUE 92406) >,\n",
" <Edition: The Book of Mormon (GLUE 92454) >,\n",
" <Edition: Narrative of the Life of Frederick Douglass (GLUE 92524) >,\n",
" <Edition: O Pioneers! (GLUE 92525) >,\n",
" <Edition: Far from the Madding Crowd (GLUE 92527) >,\n",
" <Edition: Herland (GLUE 92532) >,\n",
" <Edition: The Scarlet Letter (GLUE 92535) >,\n",
" <Edition: The Time Machine (GLUE 92537) >,\n",
" <Edition: The War of the Worlds (GLUE 92542) >,\n",
" <Edition: The Strange Case of Dr. Jekyll and Mr. Hyde (GLUE 92547) >,\n",
" <Edition: The Song of the Lark (GLUE 92882) >,\n",
" <Edition: A Christmas Carol (GLUE 92883) >,\n",
" <Edition: A Christmas Carol (GLUE 92883) >,\n",
" <Edition: Anne of Avonlea (GLUE 92888) >,\n",
" <Edition: Anne of the Island (GLUE 92892) >,\n",
" <Edition: The Marvelous Land of Oz (GLUE 92897) >,\n",
" <Edition: The Wonderful Wizard of Oz (GLUE 92898) >,\n",
" <Edition: Paradise Regained (GLUE 92905) >,\n",
" <Edition: The Scarlet Pimpernel (GLUE 92908) >,\n",
" <Edition: The Communist Manifesto (GLUE 92910) >,\n",
" <Edition: The Gods of Mars (GLUE 92917) >,\n",
" <Edition: Warlord of Mars (GLUE 92923) >,\n",
" <Edition: Return of Tarzan (GLUE 92927) >,\n",
" <Edition: Ivanhoe (GLUE 92931) >,\n",
" <Edition: Beasts of Tarzan (GLUE 92935) >,\n",
" <Edition: Son of Tarzan (GLUE 92940) >,\n",
" <Edition: Tarzan and the Jewels of Opar (GLUE 92947) >,\n",
" <Edition: Tom Sawyer, Detective (GLUE 92952) >,\n",
" <Edition: The Prisoner of Zenda (GLUE 92958) >,\n",
" <Edition: A Tale of Two Cities (GLUE 92962) >,\n",
" <Edition: Around the World in 80 Days (OCLC 30877706) >,\n",
" <Edition: Jungle Tales of Tarzan (GLUE 92973) >,\n",
" <Edition: The Return of the Native (GLUE 92979) >,\n",
" <Edition: The Poison Belt (GLUE 92985) >,\n",
" <Edition: The art of war (OCLC 703433868) >,\n",
" <Edition: The Damnation of Theron Ware (GLUE 92994) >,\n",
" <Edition: The Lost World (GLUE 92999) >,\n",
" <Edition: The Jungle (GLUE 93005) >,\n",
" <Edition: The Voyage Out (GLUE 93010) >,\n",
" <Edition: Middlemarch (GLUE 93011) >,\n",
" <Edition: The Autobiography of Benjamin Franklin (GLUE 93017) >,\n",
" <Edition: The Rime of the Ancient Mariner (GLUE 93021) >,\n",
" <Edition: Jude the Obscure (GLUE 93025) >,\n",
" <Edition: Jude the Obscure (GLUE 93025) >,\n",
" <Edition: The Moonstone (GLUE 93030) >,\n",
" <Edition: The Island of Doctor Moreau (GLUE 93032) >,\n",
" <Edition: The Awakening and Selected Short Stories (GLUE 93035) >,\n",
" <Edition: Sense and Sensibility (GLUE 93039) >,\n",
" <Edition: McTeague (GLUE 93043) >,\n",
" <Edition: Charlotte Temple (GLUE 93049) >,\n",
" <Edition: The Haunted Bookshop (GLUE 96707) >,\n",
" <Edition: The Picture of Dorian Gray (GLUE 96708) >,\n",
" <Edition: The American (GLUE 96710) >,\n",
" <Edition: The Turn of the Screw (GLUE 96714) >,\n",
" <Edition: The Aspern Papers (GLUE 96719) >,\n",
" <Edition: Sons and Lovers (GLUE 96724) >,\n",
" <Edition: Moon and Sixpence (GLUE 96728) >,\n",
" <Edition: A Pair of Blue Eyes (GLUE 96732) >,\n",
" <Edition: At the Back of the North Wind (GLUE 96738) >,\n",
" <Edition: Child Christopher and Goldilind the Fair (GLUE 96742) >,\n",
" <Edition: Dear Enemy (GLUE 97053) >,\n",
" <Edition: A Study in Scarlet (GLUE 97056) >,\n",
" <Edition: Beasts and Super-Beasts (GLUE 97060) >,\n",
" <Edition: Black Beauty (GLUE 97065) >,\n",
" <Edition: The Golden Age (GLUE 97070) >,\n",
" <Edition: Three Men in a Boat (GLUE 97075) >,\n",
" <Edition: Three Men in a Boat (GLUE 97075) >,\n",
" <Edition: The Golden Road (GLUE 97080) >,\n",
" <Edition: John Barleycorn (GLUE 97085) >,\n",
" <Edition: The Mucker (GLUE 97091) >,\n",
" <Edition: Of Human Bondage (GLUE 97827) >,\n",
" <Edition: Beyond the City (GLUE 97832) >,\n",
" <Edition: The Mad King (GLUE 97837) >,\n",
" <Edition: The Country of the Pointed Firs (GLUE 97842) >,\n",
" <Edition: The Outlaw of Torn (GLUE 97848) >,\n",
" <Edition: Prince Otto, a Romance (GLUE 97852) >,\n",
" <Edition: Prince Otto, a Romance (GLUE 97852) >,\n",
" <Edition: Memories and Portraits (GLUE 97854) >,\n",
" <Edition: Memories and Portraits (GLUE 97854) >,\n",
" <Edition: The Great God Pan (GLUE 97856) >,\n",
" <Edition: The Blue Lagoon: a romance (GLUE 97858) >,\n",
" <Edition: Cranford (GLUE 97861) >,\n",
" <Edition: Penrod (GLUE 97865) >,\n",
" <Edition: The Souls of Black Folk (GLUE 97868) >,\n",
" <Edition: The Magic of Oz (GLUE 97872) >,\n",
" <Edition: Dorothy and the Wizard in Oz (GLUE 97873) >,\n",
" <Edition: Kidnapped (GLUE 97876) >,\n",
" <Edition: Just David (GLUE 97879) >,\n",
" <Edition: Little Lord Fauntleroy (GLUE 97881) >,\n",
" <Edition: The Woodlanders (GLUE 97883) >,\n",
" <Edition: The Road to Oz (GLUE 97884) >,\n",
" <Edition: Ozma of Oz (GLUE 97887) >,\n",
" <Edition: Rebecca of Sunnybrook Farm (GLUE 97890) >,\n",
" <Edition: The Story of Doctor Dolittle (GLUE 97894) >,\n",
" <Edition: Adam Bede (GLUE 97895) >,\n",
" <Edition: The Silverado Squatters (GLUE 97898) >,\n",
" <Edition: The Emerald City of Oz (GLUE 97899) >,\n",
" <Edition: Life and Adventures of Santa Claus (GLUE 97903) >,\n",
" <Edition: Robinson Crusoe (GLUE 98415) >,\n",
" <Edition: Heart of Darkness (GLUE 98420) >,\n",
" <Edition: Main Street (GLUE 98421) >,\n",
" <Edition: Silas Marner (GLUE 98425) >,\n",
" <Edition: The Land That Time Forgot (GLUE 98429) >,\n",
" <Edition: The People That Time Forgot (GLUE 98435) >,\n",
" <Edition: The Thirty-Nine Steps (GLUE 98440) >,\n",
" <Edition: The Pickwick Papers (GLUE 98445) >,\n",
" <Edition: The Woman in White (GLUE 98450) >,\n",
" <Edition: Vanity Fair (GLUE 98453) >,\n",
" <Edition: Pellucidar (GLUE 98457) >,\n",
" <Edition: Prester John (GLUE 98460) >,\n",
" <Edition: Sylvie and Bruno (GLUE 98464) >,\n",
" <Edition: Varieties of Religious Experience, a Study in Human Nature (GLUE 98467) >,\n",
" <Edition: Looking Backward, 2000 to 1887 (GLUE 98470) >,\n",
" <Edition: An Outcast of the Islands (GLUE 98474) >,\n",
" <Edition: The Chimes (GLUE 98477) >,\n",
" <Edition: The Battle of Life (GLUE 98481) >,\n",
" <Edition: The Cricket on the Hearth (GLUE 98484) >,\n",
" <Edition: The Castle of Otranto (GLUE 99729) >,\n",
" <Edition: The Old Curiosity Shop (GLUE 99733) >,\n",
" <Edition: The King of the Golden River (GLUE 99737) >,\n",
" <Edition: The Princess and the Goblin (GLUE 99740) >,\n",
" <Edition: The Princess and Curdie (GLUE 99742) >,\n",
" <Edition: Tono Bungay (GLUE 99745) >,\n",
" <Edition: Oliver Twist (GLUE 99748) >,\n",
" <Edition: The Story of Mankind (GLUE 99750) >,\n",
" <Edition: The Moon Pool (GLUE 99752) >,\n",
" <Edition: David Copperfield (GLUE 99753) >,\n",
" <Edition: Wuthering Heights (OCLC 44954172) >,\n",
" <Edition: The Story of the Treasure Seekers (GLUE 99760) >,\n",
" <Edition: When the Sleeper Wakes (GLUE 99763) >,\n",
" <Edition: Five Children and It (GLUE 99767) >,\n",
" <Edition: The War in the Air (GLUE 99770) >,\n",
" <Edition: Hard Times (GLUE 99774) >,\n",
" <Edition: La Chartreuse De Parme (GLUE 99777) >,\n",
" <Edition: Le Rouge et le noir (GLUE 99780) >,\n",
" <Edition: This Side of Paradise (GLUE 99785) >,\n",
" <Edition: The Memoirs of Sherlock Holmes (GLUE 99790) >,\n",
" <Edition: The Phoenix and the Carpet (GLUE 99794) >,\n",
" <Edition: The Story of the Amulet (GLUE 99800) >,\n",
" <Edition: New Arabian Nights (GLUE 99805) >,\n",
" <Edition: The Mysterious Affair at Styles (GLUE 99811) >,\n",
" <Edition: A House of Pomegranates (GLUE 99815) >,\n",
" <Edition: Our Mutual Friend (GLUE 99816) >,\n",
" <Edition: An Ideal Husband (GLUE 99820) >,\n",
" <Edition: The Rose and the Ring (GLUE 99824) >,\n",
" <Edition: The Happy Prince and Other Tales (GLUE 99827) >,\n",
" <Edition: The White Company (GLUE 99832) >,\n",
" <Edition: A Hero of Our Time (GLUE 99834) >,\n",
" <Edition: The Last of the Mohicans; A narrative of 1757 (GLUE 99839) >,\n",
" <Edition: The Patchwork Girl of Oz (GLUE 99844) >,\n",
" <Edition: Tik-Tok of Oz (GLUE 99849) >,\n",
" <Edition: The Scarecrow of Oz (GLUE 99854) >,\n",
" <Edition: The Lost Princess of Oz (GLUE 99860) >,\n",
" <Edition: Glinda of Oz (GLUE 99864) >,\n",
" <Edition: Little Dorrit (GLUE 99868) >,\n",
" <Edition: The Black Tulip (GLUE 99872) >,\n",
" <Edition: The Tenant of Wildfell Hall (GLUE 99879) >,\n",
" <Edition: The Tenant of Wildfell Hall (GLUE 99879) >,\n",
" <Edition: The Secret Agent a Simple Tale (GLUE 99883) >,\n",
" <Edition: Alice Adams (GLUE 99887) >,\n",
" <Edition: The First Men in the Moon (GLUE 99890) >,\n",
" <Edition: The Water-Babies (GLUE 99896) >,\n",
" <Edition: Bleak House (GLUE 99898) >,\n",
" <Edition: The Wrecker (GLUE 99902) >,\n",
" <Edition: The Professor (GLUE 99909) >,\n",
" <Edition: The Pupil (GLUE 99914) >,\n",
" <Edition: Venus and Adonis (GLUE 99918) >,\n",
" <Edition: Martin Eden (GLUE 99923) >,\n",
" <Edition: The World Set Free (GLUE 99928) >,\n",
" <Edition: The Sea Wolf (GLUE 99930) >,\n",
" <Edition: The Wallet of Kai Lung (GLUE 99935) >,\n",
" <Edition: The Beast in the Jungle (GLUE 99940) >,\n",
" <Edition: King Richard III (GLUE 99945) >,\n",
" <Edition: Romeo and Juliet (GLUE 99950) >,\n",
" <Edition: Measure for Measure (GLUE 99955) >,\n",
" <Edition: King Lear (GLUE 99960) >,\n",
" <Edition: Typhoon (GLUE 99966) >,\n",
" <Edition: Rupert of Hentzau (GLUE 99970) >,\n",
" <Edition: The Chessmen of Mars (GLUE 99975) >,\n",
" <Edition: Secret Adversary (GLUE 99989) >,\n",
" <Edition: Babbitt (GLUE 99991) >,\n",
" <Edition: Penrod and Sam (GLUE 99995) >,\n",
" <Edition: The Iron Heel (GLUE 100000) >,\n",
" <Edition: The Jolly Corner (GLUE 100003) >,\n",
" <Edition: Taras Bulba and Other Tales (GLUE 100007) >,\n",
" <Edition: Nada the Lily (GLUE 100010) >,\n",
" <Edition: The Expression of the Emotions in Man and Animals (GLUE 100014) >,\n",
" <Edition: The Prince (GLUE 100016) >,\n",
" <Edition: Anthem (GLUE 100017) >,\n",
" <Edition: The Three Musketeers (GLUE 100019) >,\n",
" <Edition: Twenty Years After (GLUE 100021) >,\n",
" <Edition: Jane Eyre (GLUE 100023) >,\n",
" <Edition: Jane Eyre (GLUE 100023) >,\n",
" <Edition: The Wheels of Chance: a Bicycling Idyll (GLUE 100028) >,\n",
" <Edition: Spoon River Anthology (GLUE 100033) >,\n",
" <Edition: This side of paradise (ISBN 9780684156019) Macmillan Pub Co>,\n",
" <Edition: This side of paradise (ISBN 9780684156019) Macmillan Pub Co>,\n",
" <Edition: Tales from Shakespeare (GLUE 101719) >,\n",
" <Edition: Dream Days (GLUE 101724) >,\n",
" <Edition: The Way of the World (GLUE 101728) >,\n",
" <Edition: Riders of the Purple Sage (GLUE 101732) >,\n",
" <Edition: The Ball at Sceaux (GLUE 101735) >,\n",
" <Edition: The Waste Land (GLUE 101739) >,\n",
" <Edition: Leaves of Grass (GLUE 101742) >,\n",
" <Edition: Elizabeth and Her German Garden (GLUE 101746) >,\n",
" <Edition: A Voyage to Arcturus (GLUE 101750) >,\n",
" <Edition: Chronicles of Avonlea (GLUE 101753) >,\n",
" <Edition: The Talisman (GLUE 101757) >,\n",
" <Edition: Great Expectations (GLUE 101764) >,\n",
" <Edition: Tarzan the Untamed (GLUE 101768) >,\n",
" <Edition: The Federalist Papers (GLUE 101776) >,\n",
" <Edition: Mugby Junction (GLUE 101781) >,\n",
" <Edition: No Thoroughfare (GLUE 101786) >,\n",
" <Edition: Castle Rackrent (GLUE 101790) >,\n",
" <Edition: Beautiful Stories from Shakespeare (GLUE 101794) >,\n",
" <Edition: Beautiful Stories from Shakespeare (GLUE 101794) >,\n",
" <Edition: No Name (GLUE 101800) >,\n",
" <Edition: Heidi (GLUE 101804) >,\n",
" <Edition: The Valley of the Moon (GLUE 101809) >,\n",
" <Edition: Pollyanna (GLUE 101814) >,\n",
" <Edition: A Legend of Montrose (GLUE 101818) >,\n",
" <Edition: The Absentee (GLUE 101823) >,\n",
" <Edition: Coriolanus (GLUE 101828) >,\n",
" <Edition: The Profits of Religion (GLUE 101833) >,\n",
" <Edition: The Ebb-Tide (GLUE 101837) >,\n",
" <Edition: Kenilworth (GLUE 101841) >,\n",
" <Edition: The Law and the Lady (GLUE 101844) >,\n",
" <Edition: The Frozen Deep (GLUE 101848) >,\n",
" <Edition: Meno (GLUE 101851) >,\n",
" <Edition: The Adventures of Sherlock Holmes (GLUE 101853) >,\n",
" <Edition: The Golden Asse (GLUE 101855) >,\n",
" <Edition: At the Sign of the Cat & Racket (GLUE 101857) >,\n",
" <Edition: The Egoist (GLUE 101859) >,\n",
" <Edition: The People of the Abyss (GLUE 101861) >,\n",
" <Edition: The Man Who Was Thursday, a nightmare (GLUE 101863) >,\n",
" <Edition: The Club of Queer Trades (GLUE 101865) >,\n",
" <Edition: The Survivors of the Chancellor (GLUE 101867) >,\n",
" <Edition: New Grub Street (GLUE 101870) >,\n",
" <Edition: Manalive (GLUE 101873) >,\n",
" <Edition: Philebus (GLUE 101876) >,\n",
" <Edition: Cousin Betty (GLUE 101879) >,\n",
" <Edition: Laws (GLUE 101883) >,\n",
" <Edition: The Sea-Gull (GLUE 101885) >,\n",
" <Edition: The Financier, a novel (GLUE 101889) >,\n",
" <Edition: Cousin Pons (GLUE 101892) >,\n",
" <Edition: Tartarin of Tarascon (GLUE 101896) >,\n",
" <Edition: The Red House Mystery (GLUE 101899) >,\n",
" <Edition: The Railway Children (GLUE 101903) >,\n",
" <Edition: Pathfinder; or, the inland sea (GLUE 101906) >,\n",
" <Edition: Armadale (GLUE 101909) >,\n",
" <Edition: Typee (GLUE 101913) >,\n",
" <Edition: The Chouans (GLUE 101917) >,\n",
" <Edition: Penguin Island (GLUE 101920) >,\n",
" <Edition: The Second Jungle Book (GLUE 101923) >,\n",
" <Edition: Scaramouche (GLUE 101927) >,\n",
" <Edition: Captain Blood (GLUE 101928) >,\n",
" <Edition: Catherine: a Story (GLUE 101931) >,\n",
" <Edition: Crome Yellow (GLUE 101934) >,\n",
" <Edition: Sonnets from the Portuguese (GLUE 101936) >,\n",
" <Edition: Spirits in bondage; a cycle of lyrics (GLUE 101938) >,\n",
" <Edition: Piccadilly Jim (GLUE 101941) >,\n",
" <Edition: The Autobiography of Charles Darwin (GLUE 101945) >,\n",
" <Edition: Tarzan the Terrible (GLUE 101948) >,\n",
" <Edition: Confessions of an English Opium-Eater (GLUE 101952) >,\n",
" <Edition: Something New (GLUE 101955) >,\n",
" <Edition: The Education of Henry Adams (GLUE 101959) >,\n",
" <Edition: The Sketch-Book of Geoffrey Crayon (GLUE 101962) >,\n",
" <Edition: To the Last Man (GLUE 101965) >,\n",
" <Edition: The Blithedale Romance (GLUE 101969) >,\n",
" <Edition: In Search of the Castaways; or the Children of Captain Grant (GLUE 101973) >,\n",
" <Edition: The Way of All Flesh (GLUE 101976) >,\n",
" <Edition: The Sign of the Four (GLUE 101979) >,\n",
" <Edition: Mary Barton (GLUE 101981) >,\n",
" <Edition: A Little Tour in France (GLUE 101984) >,\n",
" <Edition: The Expedition of Humphry Clinker (GLUE 101988) >,\n",
" <Edition: The Lifted Veil (GLUE 101991) >,\n",
" <Edition: Three Men on the Bummel (GLUE 101994) >,\n",
" <Edition: Captains Courageous (GLUE 101995) >,\n",
" <Edition: Die Aufzeichnungen des Malte Laurids Brigge (GLUE 101998) >,\n",
" <Edition: Mauprat (GLUE 102001) >,\n",
" <Edition: A Damsel in Distress (GLUE 102003) >,\n",
" <Edition: The Comedy of Errors (GLUE 102005) >,\n",
" <Edition: The Merchant of Venice (GLUE 102009) >,\n",
" <Edition: As You Like It (GLUE 102015) >,\n",
" <Edition: Henry V (GLUE 102019) >,\n",
" <Edition: Julius Caesar (GLUE 102023) >,\n",
" <Edition: How to Live on 24 Hours a Day (GLUE 102028) >,\n",
" <Edition: The Pioneers (GLUE 102034) >,\n",
" <Edition: The Private Memoirs and Confessions of a Justified Sinner (GLUE 102040) >,\n",
" <Edition: The Descent of Man (GLUE 102045) >,\n",
" <Edition: A House to Let (GLUE 102050) >,\n",
" <Edition: His Last Bow (GLUE 102054) >,\n",
" <Edition: John Halifax, Gentleman (GLUE 102058) >,\n",
" <Edition: The Riddle of the Sands (GLUE 102061) >,\n",
" <Edition: The Riddle of the Sands (GLUE 102061) >,\n",
" <Edition: One of Ours (GLUE 102064) >,\n",
" <Edition: Sir Gibbie (GLUE 102935) >,\n",
" <Edition: Up from Slavery: an autobiography (GLUE 102939) >,\n",
" <Edition: The Canterbury Tales, and Other Poems (GLUE 102945) >,\n",
" <Edition: Die Wahlverwandtschaften (GLUE 102946) >,\n",
" <Edition: Madame Bovary (GLUE 102952) >,\n",
" <Edition: La dame aux cam\u00e9lias (GLUE 102957) >,\n",
" <Edition: New Atlantis (GLUE 102962) >,\n",
" <Edition: An Enemy of the People (GLUE 102973) >,\n",
" <Edition: Eminent Victorians (GLUE 102977) >,\n",
" <Edition: Under Western Eyes (GLUE 102982) >,\n",
" <Edition: Redgauntlet (GLUE 102987) >,\n",
" <Edition: The Sorrows of Young Werther (GLUE 102993) >,\n",
" <Edition: Clouds (GLUE 102998) >,\n",
" <Edition: The Longest Journey (GLUE 103004) >,\n",
" <Edition: Psmith, Journalist (GLUE 103007) >,\n",
" <Edition: A House-Boat on the Styx (GLUE 103013) >,\n",
" <Edition: A Room with a View (GLUE 103018) >,\n",
" <Edition: The Vicar of Wakefield (GLUE 103024) >,\n",
" <Edition: The Real Thing (GLUE 103029) >,\n",
" <Edition: Eric Brighteyes (GLUE 103033) >,\n",
" <Edition: Eight Cousins (GLUE 103034) >,\n",
" <Edition: The Lady from the Sea (GLUE 103037) >,\n",
" <Edition: The Good Soldier (GLUE 103041) >,\n",
" <Edition: Just So Stories (GLUE 103044) >,\n",
" <Edition: Wilhelm Tell (GLUE 103048) >,\n",
" <Edition: Jack and Jill (GLUE 103052) >,\n",
" <Edition: The Commonwealth of Oceana (GLUE 103056) >,\n",
" <Edition: Ramona (GLUE 103060) >,\n",
" <Edition: Dubliners (GLUE 103061) >,\n",
" <Edition: Democracy, an American novel (GLUE 103065) >,\n",
" <Edition: The City of the Sun (GLUE 103068) >,\n",
" <Edition: Barrack Room Ballads (GLUE 103072) >,\n",
" <Edition: Framley Parsonage (GLUE 103078) >,\n",
" <Edition: The Light That Failed (GLUE 103084) >,\n",
" <Edition: Howards End (GLUE 103085) >,\n",
" <Edition: Following the Equator (GLUE 103090) >,\n",
" <Edition: Following the Equator (GLUE 103090) >,\n",
" <Edition: Where Angels Fear to Tread (GLUE 103096) >,\n",
" <Edition: Desperate Remedies (GLUE 103101) >,\n",
" <Edition: The Last Chronicle of Barset (GLUE 103107) >,\n",
" <Edition: The Last Chronicle of Barset (GLUE 103107) >,\n",
" <Edition: Wood Beyond the World (GLUE 103112) >,\n",
" <Edition: The Hound of the Baskervilles (GLUE 103118) >,\n",
" <Edition: Eight Hundred Leagues on the Amazon (GLUE 103122) >,\n",
" <Edition: Two on a Tower (GLUE 103126) >,\n",
" <Edition: Doctor Thorne (GLUE 103131) >,\n",
" <Edition: The Pursuit of the House-Boat (GLUE 103136) >,\n",
" <Edition: The Innocents Abroad (GLUE 103139) >,\n",
" <Edition: The Innocents Abroad (GLUE 103139) >,\n",
" <Edition: The Stolen White Elephant (GLUE 103146) >,\n",
" <Edition: Leviathan (GLUE 103151) >,\n",
" <Edition: The Mysteries of Udolpho (GLUE 103155) >,\n",
" <Edition: The Valley of Fear (GLUE 103158) >,\n",
" <Edition: The Sea-Hawk (GLUE 103162) >,\n",
" <Edition: Barchester Towers (GLUE 103165) >,\n",
" <Edition: Vindication of the Rights of Woman (GLUE 103169) >,\n",
" <Edition: The Gadfly (GLUE 103173) >,\n",
" <Edition: The Hand of Ethelberta (GLUE 103176) >,\n",
" <Edition: Such Is Life (GLUE 103179) >,\n",
" <Edition: The Metal Monster (GLUE 103182) >,\n",
" <Edition: Five Weeks in a Balloon (GLUE 103185) >,\n",
" <Edition: Letters on Sweden, Norway, and Denmark (GLUE 103189) >,\n",
" <Edition: Sunshine Sketches of a Little Town (GLUE 103193) >,\n",
" <Edition: The Enchanted Castle (GLUE 103197) >,\n",
" <Edition: The Ragged Trousered Philanthropists (GLUE 103203) >,\n",
" <Edition: The Golden Bough (GLUE 103207) >,\n",
" <Edition: The Titan (GLUE 103212) >,\n",
" <Edition: The Rosary (GLUE 103216) >,\n",
" <Edition: Every Man out of His Humour (GLUE 103221) >,\n",
" <Edition: The Voyage of the Beagle (GLUE 103222) >,\n",
" <Edition: The Voyage of the Beagle (GLUE 103222) >,\n",
" <Edition: The Decameron, Volume I (GLUE 103228) >,\n",
" <Edition: Bel Ami (GLUE 103233) >,\n",
" <Edition: A Far Country \u2014 Complete (GLUE 103238) >,\n",
" <Edition: Indiscretions of Archie (GLUE 103243) >,\n",
" <Edition: The Jewel of Seven Stars (GLUE 103247) >,\n",
" <Edition: Under the Lilacs (GLUE 103252) >,\n",
" <Edition: Rilla of Ingleside (GLUE 103258) >,\n",
" <Edition: The Master of the World (GLUE 103262) >,\n",
" <Edition: Love Among the Chickens (GLUE 103266) >,\n",
" <Edition: Omoo (GLUE 103268) >,\n",
" <Edition: The Picture of Dorian Gray (GLUE 103269) >,\n",
" <Edition: The Adventures of Roderick Random (GLUE 103273) >,\n",
" <Edition: From Ritual to Romance (GLUE 103278) >,\n",
" <Edition: Culture and Anarchy (GLUE 103282) >,\n",
" <Edition: A Portrait of the Artist as a Young Man (GLUE 103285) >,\n",
" <Edition: Women in Love (GLUE 103288) >,\n",
" <Edition: The Golden Bowl \u2014 Complete (GLUE 103291) >,\n",
" <Edition: Wives and Daughters (GLUE 103296) >,\n",
" <Edition: Ruth (GLUE 103297) >,\n",
" <Edition: Two Years Before the Mast (GLUE 103299) >,\n",
" <Edition: Ulysses (GLUE 103304) >,\n",
" <Edition: An Enquiry Concerning the Principles of Morals (GLUE 103308) >,\n",
" <Edition: Beyond Good and Evil (GLUE 103309) >,\n",
" <Edition: Flappers and Philosophers (GLUE 103314) >,\n",
" <Edition: A Romance of Two Worlds (GLUE 103320) >,\n",
" <Edition: The Woman Who Did (GLUE 103325) >,\n",
" <Edition: Ethan Frome (GLUE 103327) >,\n",
" <Edition: In His Steps (GLUE 103622) >,\n",
" <Edition: Cinq Semaines En Ballon (GLUE 103628) >,\n",
" <Edition: The Border Legion (GLUE 103632) >,\n",
" <Edition: Barry Lyndon (GLUE 103637) >,\n",
" <Edition: The Small House at Allington (GLUE 103641) >,\n",
" <Edition: The Kingdom of God Is Within You (GLUE 103648) >,\n",
" <Edition: A Treatise of Human Nature (GLUE 103649) >,\n",
" <Edition: Voyage au Centre de la Terre (GLUE 103654) >,\n",
" <Edition: Marmion (GLUE 103660) >,\n",
" <Edition: Le Chateau des Carpathes (GLUE 103665) >,\n",
" <Edition: The Man of Feeling (GLUE 103671) >,\n",
" <Edition: He Knew He Was Right (GLUE 103675) >,\n",
" <Edition: He Knew He Was Right (GLUE 103675) >,\n",
" <Edition: Rodney Stone (GLUE 103681) >,\n",
" <Edition: The Invisible Man (GLUE 103685) >,\n",
" <Edition: The Way We Live Now (GLUE 103690) >,\n",
" <Edition: Nana (GLUE 103694) >,\n",
" <Edition: Sister Carrie (GLUE 103699) >,\n",
" <Edition: Parnassus on Wheels (GLUE 103705) >,\n",
" <Edition: Mother Goose in Prose (GLUE 103709) >,\n",
" <Edition: Woyzeck (GLUE 103715) >,\n",
" <Edition: Effi Briest (GLUE 103719) >,\n",
" <Edition: Every Man in His Humor (GLUE 103724) >,\n",
" <Edition: Further Chronicles of Avonlea (GLUE 103728) >,\n",
" <Edition: Lord Jim (GLUE 103732) >,\n",
" <Edition: Fundamental Principles of the Metaphysic of Morals (GLUE 103738) >,\n",
" <Edition: The Critique of Practical Reason (GLUE 103742) >,\n",
" <Edition: Germinal (GLUE 103744) >,\n",
" <Edition: A Shropshire Lad (GLUE 103749) >,\n",
" <Edition: She and Allan (GLUE 103755) >,\n",
" <Edition: Le Grand Meaulnes (GLUE 103756) >,\n",
" <Edition: Le Grand Meaulnes (GLUE 103756) >,\n",
" <Edition: The Problems of Philosophy (GLUE 103760) >,\n",
" <Edition: Waverley (GLUE 103764) >,\n",
" <Edition: Waverley (GLUE 103764) >,\n",
" <Edition: The Spanish Tragedie (GLUE 103770) >,\n",
" <Edition: King of the Khyber Rifles (GLUE 103775) >,\n",
" <Edition: Biographia Literaria (GLUE 103780) >,\n",
" <Edition: The Vampyre; a Tale (GLUE 103785) >,\n",
" <Edition: Sailing Alone Around the World (GLUE 103789) >,\n",
" <Edition: Sailing Alone Around the World (GLUE 103789) >,\n",
" <Edition: Italian Hours (GLUE 103794) >,\n",
" <Edition: The Life, Adventures & Piracies of the Famous Captain Singleton (GLUE 103799) >,\n",
" <Edition: A Modern Utopia (GLUE 103803) >,\n",
" <Edition: Elsie Dinsmore (GLUE 103808) >,\n",
" <Edition: The Prairie (GLUE 103814) >,\n",
" <Edition: The Little Lady of the Big House (GLUE 103820) >,\n",
" <Edition: Public Opinion (GLUE 103825) >,\n",
" <Edition: Le Ventre de Paris (GLUE 103826) >,\n",
" <Edition: The Little Nugget (GLUE 103830) >,\n",
" <Edition: Uneasy Money (GLUE 103836) >,\n",
" <Edition: The Mill on the Floss (GLUE 103839) >,\n",
" <Edition: Tales of the Jazz Age (GLUE 103845) >,\n",
" <Edition: A Strange Manuscript Found in a Copper Cylinder (GLUE 103850) >,\n",
" <Edition: Psmith in the City (GLUE 103855) >,\n",
" <Edition: The Adventures of Sir Launcelot Greaves (GLUE 103859) >,\n",
" <Edition: The Adventures of Sir Launcelot Greaves (GLUE 103859) >,\n",
" <Edition: The Adventures of Ferdinand Count Fathom \u2014 Complete (GLUE 103864) >,\n",
" <Edition: The Adventures of Ferdinand Count Fathom \u2014 Complete (GLUE 103864) >,\n",
" <Edition: The Man Upstairs and Other Stories (GLUE 103868) >,\n",
" <Edition: The People of the Mist (GLUE 103873) >,\n",
" <Edition: Venus in Furs (GLUE 103879) >,\n",
" <Edition: The Gold Bat (GLUE 103884) >,\n",
" <Edition: The Coming of Bill (GLUE 103889) >,\n",
" <Edition: Rudin (GLUE 103895) >,\n",
" <Edition: The White Feather (GLUE 103900) >,\n",
" <Edition: Old Mortality, Complete (GLUE 103905) >,\n",
" <Edition: Old Mortality, Complete (GLUE 103905) >,\n",
" <Edition: The Heart of Mid-Lothian, Complete (GLUE 103909) >,\n",
" <Edition: The Heart of Mid-Lothian, Complete (GLUE 103909) >,\n",
" <Edition: The Prince and Betty (GLUE 103913) >,\n",
" <Edition: The Pothunters (GLUE 103921) >,\n",
" <Edition: The Clicking of Cuthbert (GLUE 103925) >,\n",
" <Edition: Fanshawe (GLUE 103929) >,\n",
" <Edition: Vestiges of the Natural History of Creation (GLUE 103934) >,\n",
" <Edition: What Maisie Knew (GLUE 103937) >,\n",
" <Edition: The History of the Peloponnesian War (GLUE 103940) >,\n",
" <Edition: The Home and the World (GLUE 103944) >,\n",
" <Edition: G\u00f6tzen-D\u00e4mmerung (GLUE 103947) >,\n",
" <Edition: Jenseits von Gut und B\u00f6se (GLUE 103949) >,\n",
" <Edition: Also sprach Zarathustra (GLUE 103952) >,\n",
" <Edition: Die Geburt der Trag\u00f6die (GLUE 103955) >,\n",
" <Edition: Menschliches, Allzumenschliches (GLUE 103959) >,\n",
" <Edition: Not George Washington \u2014 an Autobiographical Novel (GLUE 103962) >,\n",
" <Edition: William Tell Told Again (GLUE 103967) >,\n",
" <Edition: Equality (GLUE 103971) >,\n",
" <Edition: The History of Mr. Polly (GLUE 103975) >,\n",
" <Edition: A Sicilian Romance (GLUE 103980) >,\n",
" <Edition: The Eustace Diamonds (GLUE 103985) >,\n",
" <Edition: An Essay on Criticism (GLUE 103988) >,\n",
" <Edition: Mike (GLUE 103993) >,\n",
" <Edition: Mike (GLUE 103993) >,\n",
" <Edition: The Awkward Age (GLUE 103998) >,\n",
" <Edition: The Adventures of Sally (GLUE 104003) >,\n",
" <Edition: The Man with Two Left Feet And Other Stories (GLUE 104009) >,\n",
" <Edition: The Book of Wonder (GLUE 104012) >,\n",
" <Edition: The Last American (GLUE 104016) >,\n",
" <Edition: Heidis Lehr- und Wanderjahre (GLUE 104019) >,\n",
" <Edition: A Dog of Flanders (GLUE 104023) >,\n",
" <Edition: Madame De Mauves (GLUE 104029) >,\n",
" <Edition: The Trial (GLUE 104033) >,\n",
" <Edition: The Mystery of Cloomber (GLUE 104038) >,\n",
" <Edition: The Pilot (GLUE 104042) >,\n",
" <Edition: Sklepy cynamonowe (GLUE 104046) >,\n",
" <Edition: The Virginians (GLUE 104050) >,\n",
" <Edition: My Man Jeeves (GLUE 104055) >,\n",
" <Edition: A Modern Instance (GLUE 104059) >,\n",
" <Edition: Through the Eye of the Needle A Romance (GLUE 104063) >,\n",
" <Edition: The Doings of Raffles Haw (GLUE 104067) >,\n",
" <Edition: Love-Letters Between a Nobleman and His Sister (GLUE 104073) >,\n",
" <Edition: A Traveler from Altruria: Romance (GLUE 104079) >,\n",
" <Edition: The King in Yellow (GLUE 104084) >,\n",
" <Edition: Le Docteur Pascal (GLUE 104088) >,\n",
" <Edition: La Terre (GLUE 104092) >,\n",
" <Edition: A Man of Means (GLUE 104098) >,\n",
" <Edition: The Water of the Wondrous Isles (GLUE 104102) >,\n",
" <Edition: The Magnificent Ambersons (GLUE 104106) >,\n",
" <Edition: Pot-bouille (GLUE 104112) >,\n",
" <Edition: Sanine (GLUE 104117) >,\n",
" <Edition: The Praise of Folly (GLUE 104122) >,\n",
" <Edition: The Trespasser (GLUE 104127) >,\n",
" <Edition: Joseph Andrews, Volume 2 (GLUE 104132) >,\n",
" <Edition: Joseph Andrews Vol 1 (GLUE 104133) >,\n",
" <Edition: An Enquiry Concerning Human Understanding (GLUE 104138) >,\n",
" <Edition: The Rape of the Lock and Other Poems (GLUE 104143) >,\n",
" <Edition: The Beautiful and Damned (GLUE 104144) >,\n",
" <Edition: Nightmare Abbey (GLUE 104149) >,\n",
" <Edition: The House on the Borderland (GLUE 104153) >,\n",
" <Edition: The Twilight of the Gods, and Other Tales (GLUE 104157) >,\n",
" <Edition: The Twilight of the Gods, and Other Tales (GLUE 104157) >,\n",
" <Edition: Lady into Fox (GLUE 104163) >,\n",
" <Edition: Lady into Fox (GLUE 104163) >,\n",
" <Edition: Precaution (GLUE 104169) >,\n",
" <Edition: Right Ho, Jeeves (GLUE 104175) >,\n",
" <Edition: Doctor Pascal (GLUE 104179) >,\n",
" <Edition: Moonfleet (GLUE 104184) >,\n",
" <Edition: The Anatomy of Melancholy (GLUE 104189) >,\n",
" <Edition: The Anatomy of Melancholy (GLUE 104189) >,\n",
" <Edition: The Sword of Welleran and Other Stories (GLUE 104194) >,\n",
" <Edition: Carnacki, the Ghost Finder (GLUE 104200) >,\n",
" <Edition: The Wonderful Adventures of Nils (GLUE 104203) >,\n",
" <Edition: The Ghost Pirates (GLUE 104209) >,\n",
" <Edition: Incidents in the Life of a Slave Girl Written by Herself (GLUE 104214) >,\n",
" <Edition: The Custom of the Country (GLUE 104218) >,\n",
" <Edition: Utilitarianism (GLUE 104222) >,\n",
" <Edition: The Purple Cloud (GLUE 104228) >,\n",
" <Edition: French Mediaeval Romances from the Lays of Marie de France (GLUE 104234) >,\n",
" <Edition: Tales of Three Hemispheres (GLUE 104238) >,\n",
" <Edition: My Brilliant Career (GLUE 104242) >,\n",
" <Edition: Love and Mr. Lewisham (GLUE 104247) >,\n",
" <Edition: The Food of the Gods and How It Came to Earth (GLUE 104252) >,\n",
" <Edition: The Velveteen Rabbit (GLUE 104256) >,\n",
" <Edition: The Velveteen Rabbit (GLUE 104256) >,\n",
" <Edition: The Country of the Blind, and Other Stories (GLUE 104262) >,\n",
" <Edition: Der Tod in Venedig (GLUE 104263) >,\n",
" <Edition: Stonewall Jackson and the American Civil War (GLUE 104268) >,\n",
" <Edition: Stonewall Jackson and the American Civil War (GLUE 104268) >,\n",
" <Edition: The Man Who Laughs (GLUE 104272) >,\n",
" <Edition: The Stolen Bacillus and Other Incidents (GLUE 104275) >,\n",
" <Edition: The Phantom Ship (GLUE 104278) >,\n",
" <Edition: Vildanden (GLUE 104282) >,\n",
" <Edition: The Firm of Girdlestone (GLUE 104285) >,\n",
" <Edition: Dialogue aux enfers entre Machiavel et Montesquieu (GLUE 104289) >,\n",
" <Edition: Maria Chapdelaine (GLUE 104292) >,\n",
" <Edition: Past and Present (GLUE 104295) >,\n",
" <Edition: Mardi: and A Voyage Thither, Vol. I (GLUE 104299) >,\n",
" <Edition: Mardi: and A Voyage Thither, Vol. II (GLUE 104300) >,\n",
" <Edition: Tristan (GLUE 104303) >,\n",
" <Edition: La reine Margot - Tome I (GLUE 104307) >,\n",
" <Edition: La reine Margot - Tome II (GLUE 104308) >,\n",
" <Edition: Adolphe (GLUE 104313) >,\n",
" <Edition: The Hill of Dreams (GLUE 104317) >,\n",
" <Edition: Lord of the World (GLUE 104322) >,\n",
" <Edition: Madame Bovary (GLUE 104324) >,\n",
" <Edition: Les enfants du capitaine Grant (GLUE 104329) >,\n",
" <Edition: The Tale of the Flopsy Bunnies (GLUE 104333) >,\n",
" <Edition: The Tale of the Flopsy Bunnies (GLUE 104333) >,\n",
" <Edition: The Magician (GLUE 104338) >,\n",
" <Edition: The Consolation of Philosophy (GLUE 104339) >,\n",
" <Edition: The Consolation of Philosophy (GLUE 104339) >,\n",
" <Edition: His Family (GLUE 104344) >,\n",
" <Edition: The Tale of Benjamin Bunny (GLUE 104349) >,\n",
" <Edition: The Tale of Benjamin Bunny (GLUE 104349) >,\n",
" <Edition: London to Ladysmith via Pretoria (GLUE 104353) >,\n",
" <Edition: London to Ladysmith via Pretoria (GLUE 104353) >,\n",
" <Edition: The Canterville Ghost (GLUE 104357) >,\n",
" <Edition: The Canterville Ghost (GLUE 104357) >,\n",
" <Edition: When William Came (GLUE 104363) >,\n",
" <Edition: Unleavened Bread (GLUE 104366) >,\n",
" <Edition: A Daughter of the Snows (GLUE 104372) >,\n",
" <Edition: Dorothy Vernon of Haddon Hall (GLUE 104376) >,\n",
" <Edition: Dorothy Vernon of Haddon Hall (GLUE 104376) >,\n",
" <Edition: The Tale of Timmy Tiptoes (GLUE 104381) >,\n",
" <Edition: The Tale of Timmy Tiptoes (GLUE 104381) >,\n",
" <Edition: The Tale of Tom Kitten (GLUE 104387) >,\n",
" <Edition: The Tale of Tom Kitten (GLUE 104387) >,\n",
" <Edition: The Story of Miss Moppet (GLUE 104391) >,\n",
" <Edition: The Story of Miss Moppet (GLUE 104391) >,\n",
" <Edition: The Tale of Squirrel Nutkin (GLUE 104396) >,\n",
" <Edition: The Tale of Squirrel Nutkin (GLUE 104396) >,\n",
" <Edition: Elsie's children (GLUE 104397) >,\n",
" <Edition: Elsie's children (GLUE 104397) >,\n",
" <Edition: The Tale of Ginger and Pickles (GLUE 104404) >,\n",
" <Edition: The Tale of Ginger and Pickles (GLUE 104404) >,\n",
" <Edition: The Inheritors (GLUE 104408) >,\n",
" <Edition: Three Contributions to the Theory of Sex (GLUE 104412) >,\n",
" <Edition: The Tale of Mr. Jeremy Fisher (GLUE 104417) >,\n",
" <Edition: The Tale of Mr. Jeremy Fisher (GLUE 104417) >,\n",
" <Edition: The Tale of Mrs. Tiggy-Winkle (GLUE 104420) >,\n",
" <Edition: The Tale of Mrs. Tiggy-Winkle (GLUE 104420) >,\n",
" <Edition: Un billet de loterie (GLUE 104424) >,\n",
" <Edition: The Tale of the Pie and the Patty Pan (GLUE 104428) >,\n",
" <Edition: The Tale of the Pie and the Patty Pan (GLUE 104428) >,\n",
" <Edition: The Tale of Johnny Town-Mouse (GLUE 104432) >,\n",
" <Edition: The Tale of Johnny Town-Mouse (GLUE 104432) >,\n",
" <Edition: The Negro (GLUE 104438) >,\n",
" <Edition: The Negro (GLUE 104438) >,\n",
" <Edition: The Interesting Narrative of the Life of Olaudah Equiano, Or Gustavus Vassa, The African Written By Himself (GLUE 104442) >,\n",
" <Edition: The Interesting Narrative of the Life of Olaudah Equiano, Or Gustavus Vassa, The African Written By Himself (GLUE 104442) >,\n",
" <Edition: The Tale of Samuel Whiskers Or, The Roly-Poly Pudding (GLUE 104447) >,\n",
" <Edition: The Tale of Samuel Whiskers Or, The Roly-Poly Pudding (GLUE 104447) >,\n",
" <Edition: The Economic Consequences of the Peace (GLUE 104451) >,\n",
" <Edition: Come Rack! Come Rope! (GLUE 104455) >,\n",
" <Edition: Thought-Forms (GLUE 104460) >,\n",
" <Edition: Thought-Forms (GLUE 104460) >,\n",
" <Edition: All Around the Moon (GLUE 104465) >,\n",
" <Edition: All Around the Moon (GLUE 104465) >,\n",
" <Edition: The Profits of Religion, Fifth Edition (GLUE 104466) >,\n",
" <Edition: The Profits of Religion, Fifth Edition (GLUE 104466) >,\n",
" <Edition: Liza of Lambeth (GLUE 104471) >,\n",
" <Edition: Beyond The Rocks A Love Story (GLUE 104476) >,\n",
" <Edition: Orthodoxy (GLUE 104480) >,\n",
" <Edition: Au bonheur des dames (GLUE 104484) >,\n",
" <Edition: Plague Ship (GLUE 104490) >,\n",
" <Edition: Fortunata y Jacinta dos historias de casadas (GLUE 104494) >,\n",
" <Edition: The Tale of Mrs. Tittlemouse (GLUE 104499) >,\n",
" <Edition: The Tale of Mrs. Tittlemouse (GLUE 104499) >,\n",
" <Edition: Twas the Night before Christmas A Visit from St. Nicholas (GLUE 104501) >,\n",
" <Edition: Twas the Night before Christmas A Visit from St. Nicholas (GLUE 104501) >,\n",
" <Edition: Elsie at Home (GLUE 104503) >,\n",
" <Edition: Elsie at Home (GLUE 104503) >,\n",
" <Edition: When Knighthood Was in Flower or, the Love Story of Charles Brandon and Mary Tudor the King's Sister, and Happening in the Reign of His August Majesty King Henry the Eighth (GLUE 104508) >,\n",
" <Edition: When Knighthood Was in Flower or, the Love Story of Charles Brandon and Mary Tudor the King's Sister, and Happening in the Reign of His August Majesty King Henry the Eighth (GLUE 104508) >,\n",
" <Edition: Romance (GLUE 104513) >,\n",
" <Edition: Little Black Sambo (GLUE 104517) >,\n",
" <Edition: Little Black Sambo (GLUE 104517) >,\n",
" <Edition: The Sport of the Gods (GLUE 104521) >,\n",
" <Edition: Little Fuzzy (GLUE 104525) >,\n",
" <Edition: The Last Man (GLUE 104529) >,\n",
" <Edition: Sei personaggi in cerca d'autore (GLUE 104534) >,\n",
" <Edition: Alec Forbes of Howglen (GLUE 104540) >,\n",
" <Edition: The Four Feathers (GLUE 104545) >,\n",
" <Edition: The Four Feathers (GLUE 104545) >,\n",
" <Edition: Dot and the Kangaroo (GLUE 104548) >,\n",
" <Edition: Dot and the Kangaroo (GLUE 104548) >,\n",
" <Edition: Zadig Or, The Book of Fate (GLUE 104552) >,\n",
" <Edition: Zadig Or, The Book of Fate (GLUE 104552) >,\n",
" <Edition: A Book of Prefaces (GLUE 104556) >,\n",
" <Edition: Man of Many Minds (GLUE 104561) >,\n",
" <Edition: Apologia pro Vita Sua (GLUE 104566) >,\n",
" <Edition: The Tale of Mr. Tod (GLUE 104571) >,\n",
" <Edition: The Tale of Mr. Tod (GLUE 104571) >,\n",
" <Edition: Candide (GLUE 104572) >,\n",
" <Edition: Candide (GLUE 104572) >,\n",
" <Edition: The Napoleon of Notting Hill (GLUE 104578) >,\n",
" <Edition: The Napoleon of Notting Hill (GLUE 104578) >,\n",
" <Edition: Autobiography of Benjamin Franklin (GLUE 104579) >,\n",
" <Edition: Autobiography of Benjamin Franklin (GLUE 104579) >,\n",
" <Edition: Noli Me Tangere (GLUE 104585) >,\n",
" <Edition: Noli Me Tangere (GLUE 104585) >,\n",
" <Edition: A Political Romance (GLUE 104590) >,\n",
" <Edition: Edward the Second (GLUE 104593) >,\n",
" <Edition: Space Viking (GLUE 104597) >,\n",
" <Edition: Space Viking (GLUE 104597) >,\n",
" <Edition: The Skylark of Space (GLUE 104603) >,\n",
" <Edition: The Skylark of Space (GLUE 104603) >,\n",
" <Edition: The Status Civilization (GLUE 104609) >,\n",
" <Edition: Mr. Midshipman Easy (GLUE 104613) >,\n",
" <Edition: The Confidence-Man His Masquerade (GLUE 104626) >,\n",
" <Edition: The Scarlet Plague (GLUE 104630) >,\n",
" <Edition: The Scarlet Plague (GLUE 104630) >,\n",
" <Edition: The Book of the Damned (GLUE 104636) >,\n",
" <Edition: The Book of the Damned (GLUE 104636) >,\n",
" <Edition: The Frontier in American History (GLUE 104642) >,\n",
" <Edition: The Frontier in American History (GLUE 104642) >,\n",
" <Edition: The Lost Girl (GLUE 104646) >,\n",
" <Edition: The Rivals A Comedy (GLUE 104651) >,\n",
" <Edition: Free Air (GLUE 104655) >,\n",
" <Edition: Free Air (GLUE 104655) >,\n",
" <Edition: The Wind in the Willows (GLUE 104661) >,\n",
" <Edition: The Wind in the Willows (GLUE 104661) >,\n",
" <Edition: David and the Phoenix (GLUE 104665) >,\n",
" <Edition: David and the Phoenix (GLUE 104665) >,\n",
" <Edition: The Brothers Karamazov (GLUE 104668) >,\n",
" <Edition: Jenseits des Lustprinzips (GLUE 104673) >,\n",
" <Edition: Jenseits des Lustprinzips (GLUE 104673) >,\n",
" <Edition: Recollections of a Tour Made in Scotland A.D. 1803 (GLUE 104678) >,\n",
" <Edition: The Rainbow (GLUE 104683) >,\n",
" <Edition: In Desert and Wilderness (GLUE 104687) >,\n",
" <Edition: Letters from my Windmill (GLUE 104692) >,\n",
" <Edition: Fathers and Children (GLUE 104697) >,\n",
" <Edition: Fathers and Children (GLUE 104697) >,\n",
" <Edition: An Apology for the Life of Mrs. Shamela Andrews (GLUE 104701) >,\n",
" <Edition: An Apology for the Life of Mrs. Shamela Andrews (GLUE 104701) >,\n",
" <Edition: A Wonder Book for Girls & Boys (GLUE 104707) >,\n",
" <Edition: A Wonder Book for Girls & Boys (GLUE 104707) >,\n",
" <Edition: The Big Time (GLUE 104711) >,\n",
" <Edition: The Big Time (GLUE 104711) >,\n",
" <Edition: Essays in Radical Empiricism (GLUE 104715) >,\n",
" <Edition: Essays in Radical Empiricism (GLUE 104715) >,\n",
" <Edition: Pierre; or The Ambiguities (GLUE 104721) >,\n",
" <Edition: The Return of the Soldier (GLUE 104725) >,\n",
" <Edition: The Return of the Soldier (GLUE 104725) >,\n",
" <Edition: The last chronicle of Barset (ISBN 9781857152081) >,\n",
" <Edition: The last chronicle of Barset (ISBN 9781857152081) >,\n",
" <Edition: The innocents abroad (ISBN 9780870527579) >,\n",
" <Edition: The innocents abroad (ISBN 9780870527579) >,\n",
" <Edition: Ginger & Pickles (ISBN 9780723234777) Frederick Warne and Company>,\n",
" <Edition: Ginger & Pickles (ISBN 9780723234777) Frederick Warne and Company>,\n",
" <Edition: The Economic Consequences of the Peace (ISBN 9781931541138) Simon Pubns>,\n",
" <Edition: The Economic Consequences of the Peace (ISBN 9781931541138) Simon Pubns>,\n",
" <Edition: Freckles (GOOG ywAeAAAAMAAJ) Grosset & Dunlap>,\n",
" <Edition: Freckles (GOOG ywAeAAAAMAAJ) Grosset & Dunlap>,\n",
" <Edition: Code (ISBN 9780465039142) Lawrence Lessig>,\n",
" <Edition: Code (ISBN 9780465039142) Lawrence Lessig>,\n",
" <Edition: Remix (ISBN 9781408113479) A&C Black>,\n",
" <Edition: Remix (ISBN 9781408113479) A&C Black>,\n",
" <Edition: Remix (ISBN 9781408113479) A&C Black>,\n",
" <Edition: THE DARK FOREST (GOOG o6ysmQ0EH9gC) >,\n",
" <Edition: THE DARK FOREST (GOOG o6ysmQ0EH9gC) >,\n",
" <Edition: A Christmas Carol (GOOG f8ANAAAAQAAJ) Bradbury and Evans>,\n",
" <Edition: A Christmas Carol (GOOG f8ANAAAAQAAJ) Bradbury and Evans>,\n",
" <Edition: A house-boat on the Styx (GOOG cJwhAAAAMAAJ) Harper & brothers>,\n",
" <Edition: A house-boat on the Styx (GOOG cJwhAAAAMAAJ) Harper & brothers>,\n",
" <Edition: Man and Superman (GOOG KS9HAAAAYAAJ) Constable>,\n",
" <Edition: Man and Superman (GOOG KS9HAAAAYAAJ) Constable>,\n",
" <Edition: Man and Superman (GOOG NS9pt1465pAC) >,\n",
" <Edition: Man and Superman (GOOG NS9pt1465pAC) >,\n",
" <Edition: Captain Blood (GOOG -MdHAAAAYAAJ) Houghton Mifflin Company>,\n",
" <Edition: Captain Blood (GOOG -MdHAAAAYAAJ) Houghton Mifflin Company>,\n",
" <Edition: Os Lusiadas (GOOG UhVw6WcVwCYC) Livraria Europea de Baudry>,\n",
" <Edition: Os Lusiadas (GOOG UhVw6WcVwCYC) Livraria Europea de Baudry>,\n",
" <Edition: The colonial history of Hartford (GOOG r7s-AAAAYAAJ) Published by the author>,\n",
" <Edition: The colonial history of Hartford (GOOG r7s-AAAAYAAJ) Published by the author>,\n",
" <Edition: Dracula (ISBN 9780393970128) W W Norton & Co Inc>,\n",
" <Edition: Dracula (ISBN 9780393970128) W W Norton & Co Inc>,\n",
" <Edition: The history of Tom Jones, a foundling (ISBN 9780140436228) Penguin Classics>,\n",
" <Edition: The history of Tom Jones, a foundling (ISBN 9780140436228) Penguin Classics>,\n",
" <Edition: Relativity (GOOG 1sjaAAAAMAAJ) Henry Holt>,\n",
" <Edition: The works of Edgar Allan Poe (GOOG qNNEAAAAYAAJ) Charles Scribner's Sons>,\n",
" <Edition: The works of Edgar Allan Poe (GOOG qNNEAAAAYAAJ) Charles Scribner's Sons>,\n",
" <Edition: Astronomy (GOOG -uCgAAAAMAAJ) Govt. print. off.>,\n",
" <Edition: Astronomy (GOOG 7OCgAAAAMAAJ) Govt. print. off.>,\n",
" <Edition: Astronomy (GOOG qQQFAAAAQAAJ) Longmans, Green, and Company>,\n",
" <Edition: Astronomy (GOOG qQQFAAAAQAAJ) Longmans, Green, and Company>,\n",
" <Edition: Astronomy (GOOG UTSsAAAAIAAJ) Macmillan Co.>,\n",
" <Edition: Elements of astronomy (GOOG Vx8SAAAAYAAJ) Hilliard, Gray and Co.>,\n",
" <Edition: Elements of astronomy (GOOG Vx8SAAAAYAAJ) Hilliard, Gray and Co.>,\n",
" <Edition: A man's conscience (GOOG DXAHAQAAIAAJ) Harper & brothers>,\n",
" <Edition: A man's conscience (GOOG DXAHAQAAIAAJ) Harper & brothers>,\n",
" <Edition: The travels of Sir John Mandeville (GOOG VKwLAAAAIAAJ) Macmillan and Co., Limited>,\n",
" <Edition: The voyages and travels of Sir John Mandevile, knight (GOOG wshD3dkbW4cC) Printed by A. Wilde, for G. Conyers, in Little-Britain, T. Norris, at London-bridge, and A. Bettesworth, in Pater-Noster-Row>,\n",
" <Edition: Le api (GOOG cB88AAAAcAAJ) >,\n",
" <Edition: Catalog of Copyright Entries. Third Series (GOOG vkAhAQAAIAAJ) Copyright Office, Library of Congress>,\n",
" <Edition: Php Reference (ISBN 9781435715905) Mario Lurig>,\n",
" <Edition: My Bondage and My Freedom (GOOG b6aoonoeiiAC) Mundus Publishing>,\n",
" <Edition: The Cunning Little Vixen (ISBN 9780374133474) Farrar, Straus & Giroux>,\n",
" <Edition: The faggot (GOOG 81RHAAAAYAAJ) S. Harris & Co.>,\n",
" <Edition: The faggot (GOOG 81RHAAAAYAAJ) S. Harris & Co.>,\n",
" <Edition: The Works of Epictetus (GOOG CYHFBDu0F1IC) Little, Brown,>,\n",
" <Edition: The Works of Epictetus (GOOG CYHFBDu0F1IC) Little, Brown,>,\n",
" <Edition: The Latin language (OCLC 1246014) Allyn and Bacon>,\n",
" <Edition: The Latin language (OCLC 1246014) Allyn and Bacon>,\n",
" <Edition: Christabel (GOOG kd3QAAAAMAAJ) H. Frowde>,\n",
" <Edition: Aids to reflection (GOOG Y-MNAAAAYAAJ) W. Pickering>,\n",
" <Edition: Aids to reflection (GOOG Y-MNAAAAYAAJ) W. Pickering>,\n",
" <Edition: The poetical works of John Keats (GOOG dtUIAAAAQAAJ) William Smith>,\n",
" <Edition: Reliques of ancient English poetry (GOOG EUQAjM5708oC) J.E. Moore>,\n",
" <Edition: Reliques of ancient English poetry (GOOG EUQAjM5708oC) J.E. Moore>,\n",
" <Edition: Reliques of ancient English poetry: consisting of old heroic ballads, songs, and other pieces of our earlier poets; together with some few of later date (GOOG 7s1EAAAAIAAJ) L.A. Lewis>,\n",
" <Edition: Roma sotterranea (GOOG UQ1OAAAAYAAJ) Michel'Angelo e Pietro Vincenzo Fratelli de' Rossi>,\n",
" <Edition: Roma antica (GOOG RItJAAAAMAAJ) G. Andreoli>,\n",
" <Edition: L'antiquario, o sia La guida de' forestieri pel giro delle antichit\u00e0 di Roma (GOOG ohEIAAAAQAAJ) Si vende dall'Autore medesimo>,\n",
" <Edition: L'antiquario, o sia La guida de' forestieri pel giro delle antichit\u00e0 di Roma (GOOG ohEIAAAAQAAJ) Si vende dall'Autore medesimo>,\n",
" <Edition: Accurata e succinta descrizione topografica delle antichita di Roma (GOOG 59nbmG7j99QC) >,\n",
" <Edition: Roma nell'anno MDCCCXXXVIII [i.e. Milleotto-cento-trentotto] (GOOG qvc7AQAAIAAJ) Tipografia delle Belle Arti>,\n",
" <Edition: Roma nell'anno MDCCCXXXVIII [i.e. Milleotto-cento-trentotto] (GOOG qvc7AQAAIAAJ) Tipografia delle Belle Arti>,\n",
" <Edition: Indicazione topografica di Roma antica (GOOG _0chWwywsfoC) Dai Tipi dello Stesso Canina>,\n",
" <Edition: Indicazione topografica di Roma antica (GOOG _0chWwywsfoC) Dai Tipi dello Stesso Canina>,\n",
" <Edition: Le acque e gli acquedotti di Roma antica e di Roma moderna (GOOG tbAOAAAAYAAJ) tipografia Elzeviriana>,\n",
" <Edition: Le acque e gli acquedotti di Roma antica e di Roma moderna (GOOG tbAOAAAAYAAJ) tipografia Elzeviriana>,\n",
" <Edition: Sulle acque di Roma antiche e moderne ... (GOOG K5ugAAAAMAAJ) Tipografia Sinimberghi>,\n",
" <Edition: Sulle acque di Roma antiche e moderne ... (GOOG K5ugAAAAMAAJ) Tipografia Sinimberghi>,\n",
" <Edition: Indicazione topografica di Roma antica in corrispondenza dell'epoca imperiale (GOOG dzU_AQAAIAAJ) Canina>,\n",
" <Edition: Indicazione topografica di Roma antica in corrispondenza dell'epoca imperiale (GOOG dzU_AQAAIAAJ) Canina>,\n",
" <Edition: Lo assedio di Roma (GOOG QIsHAAAAQAAJ) Libreria editrice Dante Alighieri>,\n",
" <Edition: Lo assedio di Roma (GOOG QIsHAAAAQAAJ) Libreria editrice Dante Alighieri>,\n",
" <Edition: Memorie istoriche delle chiese (GOOG Do8xAQAAMAAJ) Stamperia della Rev. Cam. Apost>,\n",
" <Edition: Storia della rivoluzione di Roma (GOOG SGIpAAAAYAAJ) A spese della Societ\u00e0 editrice>,\n",
" <Edition: Storia della rivoluzione di Roma (GOOG SGIpAAAAYAAJ) A spese della Societ\u00e0 editrice>,\n",
" <Edition: Storia di Roma (GOOG 5_YnAQAAIAAJ) C. Clausen>,\n",
" <Edition: Storia d'Italia (GOOG XQIHAAAAcAAJ) Baudry>,\n",
" <Edition: Napoli nell' anno 1656 (GOOG -CtGIfPuXgAC) D. dei Pascale>,\n",
" <Edition: Napoli nell' anno 1656 (GOOG -CtGIfPuXgAC) D. dei Pascale>,\n",
" <Edition: Open Access eBooks (ISBN 9781938616006) Gluejar, Inc.>,\n",
" <Edition: Open Access eBooks (ISBN 9781938616006) Gluejar, Inc.>,\n",
" <Edition: The Inferno (GOOG 46_t4AwG0boC) Bickers and Son>,\n",
" <Edition: The Inferno (GOOG 46_t4AwG0boC) Bickers and Son>,\n",
" <Edition: Amtsblatt der Regierung in Potsdam (GOOG kVQNAAAAIAAJ) >,\n",
" <Edition: Amts-Blatt der K\u00f6niglichen Regierung zu Potsdam und der Stadt Berlin (GOOG 9bYqAAAAYAAJ) s.n.>,\n",
" <Edition: The life and travels of Mungo Park (GOOG jMURAAAAYAAJ) Harper and Brothers>,\n",
" <Edition: A sketch of modern France (GOOG rVw2AAAAMAAJ) printed for T. Cadell jun. and W. Davies>,\n",
" <Edition: A sketch of modern France (GOOG rVw2AAAAMAAJ) printed for T. Cadell jun. and W. Davies>,\n",
" <Edition: Winter and spring on the shores of the Mediterranean (GOOG u2wSAAAAYAAJ) J. Churchill & sons>,\n",
" <Edition: Winter and spring on the shores of the Mediterranean (GOOG u2wSAAAAYAAJ) J. Churchill & sons>,\n",
" <Edition: Lessons learnt in Italy and the Riviera (GOOG jwgDAAAAQAAJ) D.B. Friend>,\n",
" <Edition: Lessons learnt in Italy and the Riviera (GOOG jwgDAAAAQAAJ) D.B. Friend>,\n",
" <Edition: Die Leiden des jungen Werther (GOOG bHwHAAAAQAAJ) Weygandsche Buchhandlung>,\n",
" <Edition: Die Leiden des jungen Werther (GOOG bHwHAAAAQAAJ) Weygandsche Buchhandlung>,\n",
" <Edition: Einstein and the Poet (ISBN 9780828318730) Branden Books>,\n",
" <Edition: Tank, combat, full tracked, 105-mm gun, M1 (2350-01-061-2445) general abrams hull (GOOG nf4XAAAAYAAJ) Headquarters, Dept. of the Army>,\n",
" <Edition: Tank, combat, full-tracked 105-MM gun, M1 (2350-01-061-2445) General Abrams turret (GOOG 5wEYAAAAYAAJ) Headquarters, Dept. of the Army>,\n",
" <Edition: Il principe (GOOG sx88AAAAcAAJ) >,\n",
" <Edition: Poesie und Kunst der Araber in Spanien und Sicilien (GOOG 7Rc-AAAAcAAJ) Hertz>,\n",
" <Edition: Poesie und Kunst der Araber in Spanien und Sicilien (GOOG 7Rc-AAAAcAAJ) Hertz>,\n",
" <Edition: Faust (GOOG H0BKAAAAIAAJ) >,\n",
" <Edition: Faust (GOOG H0BKAAAAIAAJ) >,\n",
" <Edition: Oliver Twist (GOOG zjYJAAAAQAAJ) Insel>,\n",
" <Edition: Oliver Twist (GOOG zjYJAAAAQAAJ) Insel>,\n",
" <Edition: Regesta historiae Brandenburgensis (GOOG bBwEAAAAYAAJ) In der Nicolai'schen Buchhandlung>,\n",
" <Edition: Les nuits de Paris, ou, Le spectateur nocturne (GOOG tJEtAAAAMAAJ) s.n.>,\n",
" <Edition: Les nuits de Paris (GOOG KyEgAAAAIAAJ) Livre Club du Libraire>,\n",
" <Edition: Les nuits de Paris (GOOG KyEgAAAAIAAJ) Livre Club du Libraire>,\n",
" <Edition: Pride and Prejudice (ISBN 9789562910668) >,\n",
" <Edition: Pride and Prejudice (ISBN 9789562910668) >,\n",
" <Edition: Geschichte von Passau (GOOG 8LZCAAAAcAAJ) Ambrosi>,\n",
" <Edition: Biblia Sagrada, contendo o Velho e o Novo Testamento (GOOG YoZLAAAAIAAJ) Sociedade Americana da Biblia>,\n",
" <Edition: Biblia Sagrada contendo o novo e o velho testamento (GOOG hrrsjdl0pWIC) R. e A. Taylor>,\n",
" <Edition: G\u00f6ttliche Kom\u00f6die (GOOG ZRVLAAAAcAAJ) Neff>,\n",
" <Edition: Robinson Crusoe (GOOG 7blEAAAAYAAJ) Macmillan>,\n",
" <Edition: Robinson Crusoe (GOOG 7blEAAAAYAAJ) Macmillan>,\n",
" <Edition: Die biene Maja und ihre abenteuer (GOOG n_46AAAAMAAJ) Schuster & Loeffler>,\n",
" <Edition: Design E Ergonomia (ISBN 9788579830013) Unesp>,\n",
" <Edition: Rights of Man (GOOG hghCAAAAcAAJ) Jordan>,\n",
" <Edition: Rights of Man (GOOG hghCAAAAcAAJ) Jordan>,\n",
" <Edition: The Mathematical Principles of Natural Philosophy (GOOG Mi5WAAAAMAAJ) Printed for H.D. Symond>,\n",
" <Edition: The Mathematical Principles of Natural Philosophy (GOOG Mi5WAAAAMAAJ) Printed for H.D. Symond>,\n",
" <Edition: Principia (GOOG 1x9LAAAAYAAJ) Macmillan and Company>,\n",
" <Edition: A Treatise of the System of the World (GOOG rEYUAAAAQAAJ) printed for F. Fayram>,\n",
" <Edition: A Treatise of the System of the World (GOOG rEYUAAAAQAAJ) printed for F. Fayram>,\n",
" <Edition: The Method of Fluxions and Infinite Series (GOOG WyQOAAAAQAAJ) Henry Woodfall; and sold by John Nourse>,\n",
" <Edition: Sir Isaac Newton's Two Treatises (GOOG z-RJAAAAMAAJ) James Bettenham, at the expense of the Society>,\n",
" <Edition: The Chronology of Ancient Kingdoms Amended (GOOG 20BEtXQBb8MC) J. Tonson, J. Osborn and T. Longman>,\n",
" <Edition: The Chronology of Ancient Kingdoms Amended (GOOG 20BEtXQBb8MC) J. Tonson, J. Osborn and T. Longman>,\n",
" <Edition: Sir Isaac Newton's Mathematick Philosophy More Easily Demonstrated: (GOOG t3hbAAAAQAAJ) J. Senex at the Globe in Salisbury-Court; and W. Taylor at the Ship in Pater-Noster-Row.>,\n",
" <Edition: Sir Isaac Newton's Mathematick Philosophy More Easily Demonstrated: (GOOG t3hbAAAAQAAJ) J. Senex at the Globe in Salisbury-Court; and W. Taylor at the Ship in Pater-Noster-Row.>,\n",
" <Edition: Universal Arithmetick (GOOG 3_s2AAAAMAAJ) J. Senex>,\n",
" <Edition: The System of the World (GOOG f7Kv2iFUNJoC) R. Phillips>,\n",
" <Edition: The System of the World (GOOG f7Kv2iFUNJoC) R. Phillips>,\n",
" <Edition: The System of the World (GOOG 02xbAAAAQAAJ) printed for J. Robinson>,\n",
" <Edition: The System of the World (GOOG 02xbAAAAQAAJ) printed for J. Robinson>,\n",
" <Edition: On the Origin of Species by Means of Natural Selection (GOOG ez9KAAAAYAAJ) D. Appleton and company>,\n",
" <Edition: On the Origin of Species by Means of Natural Selection (GOOG ez9KAAAAYAAJ) D. Appleton and company>,\n",
" <Edition: On the origin of species by means of natural selection (GOOG P-QEAAAAYAAJ) D. Appleton>,\n",
" <Edition: On the origin of species by means of natural selection (GOOG P-QEAAAAYAAJ) D. Appleton>,\n",
" <Edition: An Inquiry Into the Nature and Causes of the Wealth of Nations (GOOG AwgHAAAAQAAJ) At the Clarendon press>,\n",
" <Edition: An Inquiry Into the Nature and Causes of the Wealth of Nations (GOOG AwgHAAAAQAAJ) At the Clarendon press>,\n",
" <Edition: The Theory of Moral Sentiments (GOOG xVkOAAAAQAAJ) Printed for A. Millar>,\n",
" <Edition: The Theory of Moral Sentiments (GOOG xVkOAAAAQAAJ) Printed for A. Millar>,\n",
" <Edition: Endymion (GOOG vKJUAAAAYAAJ) Baumert & Ronge>,\n",
" <Edition: Oral Literature in Africa (ISBN 9781906924737) Open Book Publishers>,\n",
" <Edition: Oral Literature in Africa (ISBN 9781906924737) Open Book Publishers>,\n",
" <Edition: Oral Literature in Africa (ISBN 9781906924737) Open Book Publishers>,\n",
" <Edition: Bible (GOOG mJU5zblEzksC) >,\n",
" <Edition: Catalog of Copyright Entries. New Series (GOOG cKwhAQAAIAAJ) Copyright Office, Library of Congress>,\n",
" <Edition: Catalog of Copyright Entries. New Series (GOOG cKwhAQAAIAAJ) Copyright Office, Library of Congress>,\n",
" <Edition: Buddenbrooks (GOOG 115cAAAAMAAJ) Secker>,\n",
" <Edition: A Key to Uncle Tom's Cabin (GOOG kp4eAAAAMAAJ) Sampson Low, Son & Co.>,\n",
" <Edition: A Key to Uncle Tom's Cabin (GOOG kp4eAAAAMAAJ) Sampson Low, Son & Co.>,\n",
" <Edition: Dictionary of the Holy Bible (GOOG v1ga4m9vIhYC) Crocker and Brewster>,\n",
" <Edition: The Cambridge MS. ... Gg 4. 27 of Chaucer's Canterbury tales, ed. by F.J. Furnivall (GOOG wwEVAAAAQAAJ) >,\n",
" <Edition: The children's Bible picture-book. (The accompanying descriptions are by the writer of 'Historical tales, by M.J.'). (GOOG BJYCAAAAQAAJ) >,\n",
" <Edition: The children's Bible picture-book. (The accompanying descriptions are by the writer of 'Historical tales, by M.J.'). (GOOG BJYCAAAAQAAJ) >,\n",
" <Edition: The Third Awakening (ISBN 9781476003221) Smashwords>,\n",
" <Edition: Les Miserables (GOOG E18Bom4aEnIC) Dodd, Mead>,\n",
" <Edition: Les Miserables (GOOG E18Bom4aEnIC) Dodd, Mead>,\n",
" <Edition: Catalog of Copyright Entries. Third Series (GOOG RhwhAQAAIAAJ) Copyright Office, Library of Congress>,\n",
" <Edition: So You Want to Be a Librarian (ISBN 9780980200485) Library Juice Pr Llc>,\n",
" <Edition: Faust (ISBN 9788182520271) >,\n",
" <Edition: Belinde (GOOG JNNEAQAAIAAJ) E. Rowohlt>,\n",
" <Edition: Dogengl\u00fcck (GOOG hkk-AAAAYAAJ) E. Rowohlt>,\n",
" <Edition: Ritter Blaubart (GOOG zc9EAQAAIAAJ) Rowohlt>,\n",
" <Edition: Ritter Blaubart (GOOG zc9EAQAAIAAJ) Rowohlt>,\n",
" <Edition: M\u00fcnchhausen, ein deutsches schauspiel. Leidenschaft, ein trauerspiel. Kurt von der Kreith ein halber held eine trag\u00f6die (GOOG FJo5AAAAMAAJ) K. Wolff>,\n",
" <Edition: La vie douloureuse de Marceline Desbordes-Valmore (GOOG oXE0AQAAIAAJ) \u00c9ditions d'Art et de litt\u00e9rature>,\n",
" <Edition: La vie douloureuse de Marceline Desbordes-Valmore (GOOG oXE0AQAAIAAJ) \u00c9ditions d'Art et de litt\u00e9rature>,\n",
" <Edition: Maroon tales (GOOG 7GxLAAAAMAAJ) Forbes & Company>,\n",
" <Edition: Maroon tales (GOOG 7GxLAAAAMAAJ) Forbes & Company>,\n",
" <Edition: My Dog (GOOG gPiCilInkRgC) G. Allen>,\n",
" <Edition: My Dog (GOOG gPiCilInkRgC) G. Allen>,\n",
" <Edition: So You Want to Be a Librarian (ISBN 9780980200485) Library Juice Pr Llc>,\n",
" <Edition: The Third Awakening (ISBN 9781476003221) Smashwords>,\n",
" <Edition: Treasure Island (GOOG UPAYAAAAYAAJ) Roberts Brothers>,\n",
" <Edition: Treasure Island (GOOG UPAYAAAAYAAJ) Roberts Brothers>,\n",
" <Edition: A Practical Treatise on the Diseases of Children (GOOG 8QpAAAAAYAAJ) Lea & Blanchard>,\n",
" <Edition: A Practical Treatise on the Diseases of Children (GOOG 8QpAAAAAYAAJ) Lea & Blanchard>,\n",
" <Edition: Tableau de Paris (GOOG J0kGAAAAQAAJ) Virchaux & Compagnie>,\n",
" <Edition: Tableau de Paris (GOOG J0kGAAAAQAAJ) Virchaux & Compagnie>,\n",
" <Edition: La Sorci\u00e8re (GOOG tMs0AAAAMAAJ) Simpkin, Marshall. and Company>,\n",
" <Edition: La Sorci\u00e8re (GOOG tMs0AAAAMAAJ) Simpkin, Marshall. and Company>,\n",
" <Edition: Histoire du merveilleux dans les temps modernes (GOOG TDISAAAAYAAJ) L.Hachette et Cie.>,\n",
" <Edition: Histoire du merveilleux dans les temps modernes (GOOG TDISAAAAYAAJ) L.Hachette et Cie.>,\n",
" <Edition: Les merveilles de la science, ou Description populaire des inventions modernes: \u00c9clairage (GOOG 3JFBAAAAcAAJ) Furne, Jouvet et Cie.>,\n",
" <Edition: L \u0301 alch\u00e9mie et les alchimistes (GOOG ov6wOg4pMAgC) Lib.de L.Hachette et Cie.>,\n",
" <Edition: L \u0301 alch\u00e9mie et les alchimistes (GOOG ov6wOg4pMAgC) Lib.de L.Hachette et Cie.>,\n",
" <Edition: A Manual of Style (GOOG yppAAAAAYAAJ) University of Chicago Press>,\n",
" <Edition: Catalog of Copyright Entries. Third Series (GOOG BkMhAQAAIAAJ) Copyright Office, Library of Congress>,\n",
" <Edition: Reminiscences (GOOG HbpiAAAAMAAJ) H. L. Green>,\n",
" <Edition: Reminiscences (GOOG HbpiAAAAMAAJ) H. L. Green>,\n",
" <Edition: Costs (GOOG iKsDAAAAQAAJ) W. Maxwell>,\n",
" <Edition: Pilgrim's Progress (GOOG PStXAAAAYAAJ) P. F. Collier & son>,\n",
" <Edition: Pilgrim's Progress (GOOG PStXAAAAYAAJ) P. F. Collier & son>,\n",
" <Edition: The Dramatic Works of William Shakespeare (GOOG 2SokAAAAMAAJ) C. Whittingham>,\n",
" <Edition: A Genealogical and Heraldic Dictionary of the Peerage and Baronetage of the British Empire (GOOG h_U8AQAAIAAJ) Henry Colburn>,\n",
" <Edition: What's Up with Catalonia? (ISBN 9781611500325) Catalonia Press>,\n",
" <Edition: What's Up with Catalonia? (ISBN 9781611500332) Catalonia Press>,\n",
" <Edition: What's Up with Catalonia? (ISBN 9781611500349) Catalonia Press>,\n",
" <Edition: Open initiatives (ISBN 9783862230617) Ulrich Herb>,\n",
" <Edition: Open Access (ISBN 9780262300988) MIT Press>,\n",
" <Edition: Open Access (ISBN 9780262300988) MIT Press>,\n",
" <Edition: Open Access (ISBN 9780262300988) MIT Press>,\n",
" <Edition: The Latin Language (GOOG N1RfAAAAMAAJ) Allyn and Bacon>,\n",
" <Edition: The Latin Language (GOOG N1RfAAAAMAAJ) Allyn and Bacon>,\n",
" <Edition: My Confession (GOOG B-PWAAAAMAAJ) T. Y. Crowell Company>,\n",
" <Edition: My Confession (GOOG B-PWAAAAMAAJ) T. Y. Crowell Company>,\n",
" <Edition: Reports from Commissioners (GOOG SypcAAAAQAAJ) Ordered to be printed>,\n",
" <Edition: Wired Love; a Romance of Dots and Dashes (ISBN 9781150903427) >,\n",
" <Edition: Wired Love; a Romance of Dots and Dashes (ISBN 9781150903427) >,\n",
" <Edition: The Trial of Thomas Paine (GOOG tcsDAAAAQAAJ) From the Press of John Parker>,\n",
" <Edition: The Life of Thomas Paine (GOOG jlNTf8EaEU4C) author, Beacon Office, 84 Roosevelt St.>,\n",
" <Edition: La Gazette de France (GOOG RSgDAAAAYAAJ) >,\n",
" <Edition: \u00c9tat militaire de France (GOOG trymBDbWHqwC) Guillyn>,\n",
" <Edition: 20,000 Leagues Under the Sea (OCLC 708248153) Project Gutenberg>,\n",
" <Edition: 20,000 Leagues Under the Sea (OCLC 708248153) Project Gutenberg>,\n",
" <Edition: 20,000 Leagues Under the Sea (OCLC 708248153) Project Gutenberg>,\n",
" <Edition: 20,000 Leagues Under the Sea (OCLC 708248153) Project Gutenberg>,\n",
" <Edition: The Bed-load Function for Sediment Transportation in Open Channel Flows (GOOG xIhtv2wpR9oC) U.S. Department of Agriculture>,\n",
" <Edition: Down and Out in the Magic Kingdom (ISBN 9780765309532) Macmillan>,\n",
" <Edition: Down and Out in the Magic Kingdom (ISBN 9780765309532) Macmillan>,\n",
" <Edition: Down and Out in the Magic Kingdom (ISBN 9780765309532) Macmillan>,\n",
" <Edition: What's Up with Catalonia? (ISBN 9781611500332) Catalonia Press>,\n",
" <Edition: Feeding the City (ISBN 9781909254022) Open Book Publishers>,\n",
" <Edition: Feeding the City (ISBN 9781909254039) Open Book Publishers>,\n",
" <Edition: Feeding the City (ISBN 9781909254046) Open Book Publishers>,\n",
" <Edition: The rights of man, for the use and benefit of all mankind (GOOG M4cBAAAAQAAJ) >,\n",
" <Edition: The rights of man, for the use and benefit of all mankind (GOOG M4cBAAAAQAAJ) >,\n",
" <Edition: Das Grossherzogthum Oldenburg (GOOG 22AAAAAAcAAJ) Stalling>,\n",
" <Edition: Comedias y entremeses de Miguel de Cervantes Saavedra ... divididas en dos tomos, con una disertacion o prologo sobre las comedias de Espa\u00f1a: El gallardo espa\u00f1ol (pp. 1-63) ; La casa de los zelos y Selvas de Ardenia (pp. 64-124) ; Los ba\u00f1os de Argel (pp. 125-186) ; El juez de los divorcios (Entrem\u00e9s) (pp. 187-195) ; El rufi\u00e1n viudo, llamado Trampagos (Entrem\u00e9s) (pp. 196-209) ; La elecci\u00f3n de los alcaldes de Daganzo (Entrem\u00e9s) (pp. 209-221) ; La guarda cuidadosa (Entrem\u00e9s) (pp. 221-232) ; El vizca\u00edno fingido (Entrem\u00e9s) (pp. 233-245) (GOOG 0bvw7bP1YeAC) en la Imprenta de Antonio Marin>,\n",
" <Edition: The Odyssey (GOOG _f09AAAAYAAJ) James R. Osgood>,\n",
" <Edition: The Odyssey (GOOG _f09AAAAYAAJ) James R. Osgood>,\n",
" <Edition: The public domain (ISBN 9780300137408) Yale Univ Pr>,\n",
" <Edition: The public domain (ISBN 9780300137408) Yale Univ Pr>,\n",
" <Edition: The public domain (ISBN 9780300137408) Yale Univ Pr>,\n",
" <Edition: The public domain (ISBN 9780300137408) Yale Univ Pr>,\n",
" <Edition: Open Government (ISBN 9781449388805) O'Reilly Media, Inc.>,\n",
" <Edition: Open Government (ISBN 9781449388805) O'Reilly Media, Inc.>,\n",
" <Edition: Open Government (ISBN 9781449388805) O'Reilly Media, Inc.>,\n",
" <Edition: Twelve Years a Slave (GOOG 61kSAAAAIAAJ) Miller, Orton & Mulligan>,\n",
" ...]"
]
}
],
"prompt_number": 27
},
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Using regluit.core.doab functions"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"from regluit.core import doab\n"
],
"language": "python",
"metadata": {},
"outputs": []
}
],
"metadata": {}
}
]
}