diff --git a/README.md b/README.md index 652cfd1..f3ccf1a 100644 --- a/README.md +++ b/README.md @@ -43,8 +43,8 @@ src="https://img.shields.io/github/downloads/giovannicoppola/alfred-kindle/total ## Default settings - In Alfred, open the 'Configure Workflow' menu in `alfred-kindle` preferences - set the keyword for the workflow (default: `!k`) - - set the book content icon, i.e. if a book has been downloaded locally. (default: 📘) - - show 'ghost' books (i.e. books not downloaded, or previously loaned)? (default: yes) + - set the book content icon, i.e. if a book has been downloaded locally (default: 📘) + - show 'ghost' books (i.e. books not downloaded, or previously loaned)? (default: yes) - set search scope (default: 'Title') - `Title`: search titles only - `Author`: search authors only diff --git a/images/kindle.png b/images/kindle.png new file mode 100644 index 0000000..95c98d1 Binary files /dev/null and b/images/kindle.png differ diff --git a/releases/alfred-kindle_0.1.alfredworkflow b/releases/alfred-kindle_0.1.alfredworkflow new file mode 100644 index 0000000..1a190a8 Binary files /dev/null and b/releases/alfred-kindle_0.1.alfredworkflow differ diff --git a/source/info.plist b/source/info.plist index ada509d..fdf0671 100644 --- a/source/info.plist +++ b/source/info.plist @@ -23,7 +23,7 @@ createdby giovanni description - + Browse and open your Kindle books disabled name @@ -109,7 +109,60 @@ python3 kindle-query.py "$1" readme - + # alfred-kindle 📚 +List and open your Kindle books with Alfred + + +## Motivation ✅ + +- Quickly list, search, and open your Kindle books + + +## Setting up ⚙ī¸ + +- Alfred 5 with Powerpack license +- Python3 +- Kindle app installed + + + +### Default settings +- In Alfred, open the 'Configure Workflow' menu in `alfred-kindle` preferences + - set the keyword for the workflow (default: `!k`) + - set the book content icon, i.e. if a book has been downloaded locally (default: 📘) + - show 'ghost' books (i.e. books not downloaded, or previously loaned)? (default: yes) + - set search scope (default: 'Title') + - `Title`: search titles only + - `Author`: search authors only + - `Both`: search across titles and authors + + +## Basic Usage 📖 + +- launch with keyword (default: `!k`), or custom hotkey +- `enter` ↩ī¸ will open the book in Kindle (if downloaded) or the corresponding webpage on Amazon (if not downloaded) + + +## Limitations & known issues ⚠ī¸ + +- None for now, but I have not done extensive testing, let me know if you see anything! +- tested with ~100 books. The book list is currently created on the fly, and book covers are downloaded if missing. Might be slower if your library has thousands of books, in which case a sqlite database it might be more efficient. Let me know if that is the case! +- tested with Python 3.9.13 + + +## Acknowledgments 😀 + +- Thanks to the [Alfred forum](https://www.alfredforum.com) community! +- Icon from [SF symbols](https://developer.apple.com/sf-symbols/) + +## Changelog 🧰 + +- 02-28-2023: version 0.1 + + +## Feedback 🧐 + +Feedback welcome! If you notice a bug, or have ideas for new features, please feel free to get in touch either on [Github](https://github.com/giovannicoppola/alfred-kindle), or on the [Alfred](https://www.alfredforum.com) forum. uidata C201E860-5900-49B2-8980-4B8E5DA0A4C8 @@ -182,7 +235,7 @@ python3 kindle-query.py "$1" Check to show 'ghost' books description - Books not downloaded, or previously loaned + Show books not downloaded locally, or previously loaned label Show 'ghost' books type @@ -221,9 +274,11 @@ python3 kindle-query.py "$1" SEARCH_SCOPE + variablesdontexport + version - + 0.1 webaddress - + https://github.com/giovannicoppola/alfred-kindle diff --git a/source/kindle-query.py b/source/kindle-query.py index 48e0de4..993b685 100644 --- a/source/kindle-query.py +++ b/source/kindle-query.py @@ -55,10 +55,16 @@ def getKindleDB(): resultList.append(','.join(str(x) for x in result[i:i+10])) return resultList - #print(resultList) + def GetKindleData(myList): + """ + + A function to get kindle information using a third party API. + Currently not used in this workflow + + """ url = "https://amazon-product-price-data.p.rapidapi.com/product" myResults = [] @@ -67,7 +73,7 @@ def GetKindleData(myList): querystring = {"asins":myBatch,"locale":"US"} headers = { - "X-RapidAPI-Key": "060192ca34msh77aa6624f8e5d93p186236jsn93b44b5109c8", + "X-RapidAPI-Key": "INSERT API KEY HERE", "X-RapidAPI-Host": "amazon-product-price-data.p.rapidapi.com" } @@ -82,12 +88,25 @@ def GetKindleData(myList): def getDownloadedBooks(basepath): import os myContentBooks = [] + # List all subdirectories using scandir() - with os.scandir(basepath) as entries: - for entry in entries: - if entry.is_dir(): - myContentBooks.append(entry.name.split("_")[0]) - return myContentBooks + try: + with os.scandir(basepath) as entries: + for entry in entries: + if entry.is_dir(): + myContentBooks.append(entry.name.split("_")[0]) + return myContentBooks + except: + result= {"items": [{ + "title": "Error: Cannot find Kindle directory", + "subtitle": basepath, + "arg": "", + "icon": { + + "path": "icons/Warning.png" + } + }]} + print (json.dumps(result)) def getXML(myFile, downloaded): ## Importing the XML table @@ -96,10 +115,7 @@ def getXML(myFile, downloaded): data_dict = xmltodict.parse(xml_file.read()) xml_file.close() - #print (data_dict) - # with open('xml.json', 'w') as f: - # json.dump(data_dict, f,indent=4) result = {"items": []} myBooks = data_dict['response']['add_update_list']['meta_data'] @@ -118,7 +134,10 @@ def getXML(myFile, downloaded): myFilteredBooks = [i for i in myBooks if (MYINPUT in i['authorString'].casefold())] elif SEARCH_SCOPE == "Both": myFilteredBooks = [i for i in myBooks if (MYINPUT in i['authorString'].casefold()) or (MYINPUT in i['title']['#text'].casefold())] - + + + if GHOST_RESULTS == '0': + myFilteredBooks = [i for i in myFilteredBooks if (i['ASIN'] in downloaded)] if MYINPUT and not myFilteredBooks: result["items"].append({ @@ -130,14 +149,15 @@ def getXML(myFile, downloaded): } }) - #print (json.dumps(result)) - - + + + totalLibrary = (len(myFilteredBooks)) + myCounter = 0 for book in myFilteredBooks: - #print (book['title']['#text']) + if book['ASIN'] in downloaded: BookSymbol = BOOK_CONTENT_SYMBOL @@ -160,10 +180,10 @@ def getXML(myFile, downloaded): continue - + myCounter += 1 result["items"].append({ "title": book['title']['#text']+BookSymbol, - 'subtitle': book['authorString'], + 'subtitle': f"{myCounter}/{totalLibrary} {book['authorString']}", 'valid': True, "icon": { @@ -171,8 +191,8 @@ def getXML(myFile, downloaded): }, 'arg': bookURL }) - log (len(data_dict['response']['add_update_list']['meta_data'])) - log (len(myFilteredBooks)) + + print (json.dumps(result)) diff --git a/source/xml.json b/source/xml.json deleted file mode 100644 index a525455..0000000 --- a/source/xml.json +++ /dev/null @@ -1,3578 +0,0 @@ -{ - "response": { - "sync_time": "2023-02-18T04:26:29+0000;softwareVersion:65466;SE:F;SC:F;CS:H;CT:F;ST:KB-15000000000387,KS-15000000000007,Periodical-1676694389565,KP-15000000000019,", - "cache_metadata": { - "version": "1" - }, - "add_update_list": { - "meta_data": [ - { - "ASIN": "B000N2HBSO", - "title": { - "@pronunciation": "", - "#text": "Team of Rivals: The Political Genius of Abraham Lincoln" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Goodwin, Doris Kearns" - } - }, - "publishers": { - "publisher": "Simon & Schuster" - }, - "publication_date": "2006-12-08T00:00:00+0000", - "purchase_date": "2023-02-15T19:06:05+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B000QXDGL6", - "title": { - "@pronunciation": "", - "#text": "The Great Bridge: The Epic Story of the Building of the Brooklyn Bridge" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "McCullough, David" - } - }, - "publishers": { - "publisher": "Simon & Schuster" - }, - "publication_date": "2007-05-31T00:00:00+0000", - "purchase_date": "2023-02-12T16:58:23+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B06W2J89PV", - "title": { - "@pronunciation": "", - "#text": "Grant" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Chernow, Ron" - } - }, - "publishers": { - "publisher": "Penguin Books" - }, - "publication_date": "2017-10-10T00:00:00+0000", - "purchase_date": "2023-02-08T01:43:27+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B000XCQ4A0", - "title": { - "@pronunciation": "", - "#text": "Andrew Carnegie" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Nasaw, David" - } - }, - "publishers": { - "publisher": "Penguin Books" - }, - "publication_date": "2007-10-30T00:00:00+0000", - "purchase_date": "2023-02-05T23:41:17+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B08X19W2HD", - "title": { - "@pronunciation": "", - "#text": "Bewilderment: A Novel" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Powers, Richard" - } - }, - "publishers": { - "publisher": "W. W. Norton & Company" - }, - "publication_date": "2021-09-21T00:00:00+0000", - "purchase_date": "2023-02-02T10:29:10+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B0091YL5KK", - "title": { - "@pronunciation": "", - "#text": "The Art of Procrastination: A Guide to Effective Dawdling, Lollygagging, and Postponing" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Perry, John" - } - }, - "publishers": { - "publisher": "Workman Publishing Company" - }, - "publication_date": "2012-08-28T00:00:00+0000", - "purchase_date": "2023-01-26T00:28:03+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B002FK3U4Q", - "title": { - "@pronunciation": "", - "#text": "The Path Between the Seas: The Creation of the Panama Canal, 1870-1914" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "McCullough, David" - } - }, - "publishers": { - "publisher": "Simon & Schuster" - }, - "publication_date": "2001-10-27T00:00:00+0000", - "purchase_date": "2023-01-26T00:24:10+0000", - "textbook_type": "unknown", - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B004DEPH0M", - "title": { - "@pronunciation": "", - "#text": "Theodore Rex (Theodore Roosevelt Series Book 2)" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Morris, Edmund" - } - }, - "publishers": { - "publisher": "Random House" - }, - "publication_date": "2010-11-24T00:00:00+0000", - "purchase_date": "2023-01-19T14:40:39+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B003EY7IQI", - "title": { - "@pronunciation": "", - "#text": "Colonel Roosevelt (Theodore Roosevelt Series Book 3)" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Morris, Edmund" - } - }, - "publishers": { - "publisher": "Random House" - }, - "publication_date": "2010-11-23T00:00:00+0000", - "purchase_date": "2023-01-19T14:38:22+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B000QCQ970", - "title": { - "@pronunciation": "", - "#text": "The Art of Learning: An Inner Journey to Optimal Performance" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Waitzkin, Josh" - } - }, - "publishers": { - "publisher": "Free Press" - }, - "publication_date": "2007-05-08T00:00:00+0000", - "purchase_date": "2023-01-05T21:41:07+0000", - "textbook_type": "unknown", - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B07VX79ZSK", - "title": { - "@pronunciation": "", - "#text": "Piano Lessons" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Feltsman, Vladimir" - } - }, - "publishers": { - "publisher": "Booklocker.com, Inc." - }, - "publication_date": "2019-07-29T14:36:29+0000", - "purchase_date": "2023-01-05T21:39:31+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B00C5R7HMU", - "title": { - "@pronunciation": "", - "#text": "Springboard: Launching Your Personal Search for Success" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Shell, G. Richard" - } - }, - "publishers": { - "publisher": "Portfolio" - }, - "publication_date": "2013-08-15T00:00:00+0000", - "purchase_date": "2023-01-05T21:32:20+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B079RLPFG7", - "title": { - "@pronunciation": "", - "#text": "Leadership: In Turbulent Times" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Goodwin, Doris Kearns" - } - }, - "publishers": { - "publisher": "Simon & Schuster" - }, - "publication_date": "2018-09-18T00:00:00+0000", - "purchase_date": "2023-01-05T14:11:13+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B09JPJ711V", - "title": { - "@pronunciation": "", - "#text": "A Man of Iron: The Turbulent Life and Improbable Presidency of Grover Cleveland" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Senik, Troy" - } - }, - "publishers": { - "publisher": "Threshold Editions" - }, - "publication_date": "2022-09-20T00:00:00+0000", - "purchase_date": "2023-01-03T15:27:59+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B004DEPH3E", - "title": { - "@pronunciation": "", - "#text": "The Rise of Theodore Roosevelt (Theodore Roosevelt Series Book 1)" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Morris, Edmund" - } - }, - "publishers": { - "publisher": "Modern Library" - }, - "publication_date": "2010-11-24T00:00:00+0000", - "purchase_date": "2022-12-19T11:46:02+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B005VSN8RI", - "title": { - "@pronunciation": "", - "#text": "Wizard: The Life and Times of Nikola Tesla" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Seifer, Marc J." - } - }, - "publishers": { - "publisher": "Citadel Press" - }, - "publication_date": "2011-10-24T00:00:00+0000", - "purchase_date": "2022-12-15T15:47:25+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B08BZW42YF", - "title": { - "@pronunciation": "", - "#text": "The Invention of Miracles: Language, Power, and Alexander Graham Bell's Quest to End Deafness" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Booth, Katie" - } - }, - "publishers": { - "publisher": "Simon & Schuster" - }, - "publication_date": "2021-04-06T00:00:00+0000", - "purchase_date": "2022-11-10T11:56:15+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B074TGPTF4", - "title": { - "@pronunciation": "", - "#text": "Greater Gotham: A History of New York City from 1898 to 1919 (The History of NYC Series Book 2)" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Wallace, Mike" - } - }, - "publishers": { - "publisher": "Oxford University Press" - }, - "publication_date": "2017-09-04T00:00:00+0000", - "purchase_date": "2022-11-06T17:05:49+0000", - "textbook_type": "trade", - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B002SAUBWM", - "title": { - "@pronunciation": "", - "#text": "Gotham: A History of New York City to 1898 (The History of NYC Series)" - }, - "authors": { - "author": [ - { - "@pronunciation": "", - "#text": "Burrows, Edwin G." - }, - { - "@pronunciation": "", - "#text": "Wallace, Mike" - } - ] - }, - "publishers": { - "publisher": "Oxford University Press" - }, - "publication_date": "1998-11-19T00:00:00+0000", - "purchase_date": "2022-11-06T17:05:49+0000", - "textbook_type": "trade", - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B01HSMRWNU", - "title": { - "@pronunciation": "", - "#text": "Tools Of Titans: The Tactics, Routines, and Habits of Billionaires, Icons, and World-Class Performers" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Ferriss, Timothy" - } - }, - "publishers": { - "publisher": "Harper Business" - }, - "publication_date": "2016-12-06T00:00:00+0000", - "purchase_date": "2022-11-05T16:05:41+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B071KJ7PTB", - "title": { - "@pronunciation": "", - "#text": "Tribe Of Mentors: Short Life Advice from the Best in the World" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Ferriss, Timothy" - } - }, - "publishers": { - "publisher": "Harper Business" - }, - "publication_date": "2017-11-21T00:00:00+0000", - "purchase_date": "2022-11-05T16:05:26+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B01BNSK4V2", - "title": { - "@pronunciation": "", - "#text": "Born to Run" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Springsteen, Bruce" - } - }, - "publishers": { - "publisher": "Simon & Schuster" - }, - "publication_date": "2016-09-27T00:00:00+0000", - "purchase_date": "2022-10-28T22:04:59+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B01LL8BRXS", - "title": { - "@pronunciation": "", - "#text": "The Gates of Europe: A History of Ukraine" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Plokhy, Serhii" - } - }, - "publishers": { - "publisher": "Basic Books" - }, - "publication_date": "2017-05-30T00:00:00+0000", - "purchase_date": "2022-10-28T22:04:35+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B004J4WNL2", - "title": { - "@pronunciation": "", - "#text": "Quiet: The Power of Introverts in a World That Can't Stop Talking" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Cain, Susan" - } - }, - "publishers": { - "publisher": "Crown" - }, - "publication_date": "2012-01-24T00:00:00+0000", - "purchase_date": "2022-10-13T09:19:51+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B002WE46UW", - "title": { - "@pronunciation": "", - "#text": "The 4-Hour Workweek, Expanded and Updated: Expanded and Updated, With Over 100 New Pages of Cutting-Edge Content." - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Ferriss, Timothy" - } - }, - "publishers": { - "publisher": "Harmony" - }, - "publication_date": "2009-11-18T00:00:00+0000", - "purchase_date": "2022-07-07T23:51:20+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B003JE1GSE", - "title": { - "@pronunciation": "", - "#text": "The History of the Medieval World: From the Conversion of Constantine to the First Crusade" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Bauer, Susan Wise" - } - }, - "publishers": { - "publisher": "W. W. Norton & Company" - }, - "publication_date": "2010-02-22T00:00:00+0000", - "purchase_date": "2022-06-15T00:25:11+0000", - "textbook_type": "professional", - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B00AR3546A", - "title": { - "@pronunciation": "", - "#text": "The History of the Renaissance World: From the Rediscovery of Aristotle to the Conquest of Constantinople" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Bauer, Susan Wise" - } - }, - "publishers": { - "publisher": "W. W. Norton & Company" - }, - "publication_date": "2013-09-23T00:00:00+0000", - "purchase_date": "2022-06-15T00:21:31+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B01BU0P3CS", - "title": { - "@pronunciation": "", - "#text": "THE HISTORY OF THE DECLINE AND FALL OF THE ROMAN EMPIRE (All 6 Volumes): From the Height of the Roman Empire, the Age of Trajan and the Antonines - to ... the State of Rome during the Middle Ages" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Gibbon, Edward" - } - }, - "publishers": { - "publisher": "e-artnow" - }, - "publication_date": "2016-02-14T00:00:00+0000", - "purchase_date": "2022-02-08T14:13:09+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B08KPFPSNS", - "title": { - "@pronunciation": "", - "#text": "How to Change: The Science of Getting from Where You Are to Where You Want to Be" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Milkman, Katy" - } - }, - "publishers": { - "publisher": "Portfolio" - }, - "publication_date": "2021-05-04T00:00:00+0000", - "purchase_date": "2022-01-27T09:55:30+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B07R4NMHJ2", - "title": { - "@pronunciation": "", - "#text": "10% Happier Revised Edition: How I Tamed the Voice in My Head, Reduced Stress Without Losing My Edge, and Found Self-Help That Actually Works--A True Story" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Harris, Dan" - } - }, - "publishers": { - "publisher": "Dey Street Books" - }, - "publication_date": "2019-05-21T00:00:00+0000", - "purchase_date": "2022-01-26T17:34:22+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B000YJ66ZU", - "title": { - "@pronunciation": "", - "#text": "Gandhi & Churchill: The Epic Rivalry that Destroyed an Empire and Forged Our Age" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Herman, Arthur" - } - }, - "publishers": { - "publisher": "Bantam" - }, - "publication_date": "2008-04-29T00:00:00+0000", - "purchase_date": "2021-11-29T19:05:38+0000", - "textbook_type": "unknown", - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B095BZ463N", - "title": { - "@pronunciation": "", - "#text": "I Alone Can Fix It: Donald J. Trump's Catastrophic Final Year" - }, - "authors": { - "author": [ - { - "@pronunciation": "", - "#text": "Leonnig, Carol" - }, - { - "@pronunciation": "", - "#text": "Rucker, Philip" - } - ] - }, - "publishers": { - "publisher": "Penguin Press" - }, - "publication_date": "2021-07-20T00:00:00+0000", - "purchase_date": "2021-11-03T09:05:58+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B084M1SM4D", - "title": { - "@pronunciation": "", - "#text": "The Problem of Alzheimer's: How Science, Culture, and Politics Turned a Rare Disease into a Crisis and What We Can Do About It" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Karlawish, Jason" - } - }, - "publishers": { - "publisher": "St. Martin's Press" - }, - "publication_date": "2021-02-23T00:00:00+0000", - "purchase_date": "2021-10-21T12:06:03+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B002RI99KK", - "title": { - "@pronunciation": "", - "#text": "Letters from a Stoic: Epistulae Morales Ad Lucilium (Classics S.)" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Seneca" - } - }, - "publishers": { - "publisher": "Penguin" - }, - "publication_date": "2004-08-26T00:00:00+0000", - "purchase_date": "2021-10-21T12:04:18+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B003E8AK4Q", - "title": { - "@pronunciation": "", - "#text": "How to Live: Or A Life of Montaigne in One Question and Twenty Attempts at an Answer" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Bakewell, Sarah" - } - }, - "publishers": { - "publisher": "Other Press" - }, - "publication_date": "2010-10-19T00:00:00+0000", - "purchase_date": "2021-09-27T12:14:41+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B009U9S6FI", - "title": { - "@pronunciation": "", - "#text": "Man's Search for Meaning" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Frankl, Viktor E." - } - }, - "publishers": { - "publisher": "Beacon Press" - }, - "publication_date": "2006-06-01T00:00:00+0000", - "purchase_date": "2021-09-24T09:47:35+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B014NW88S6", - "title": { - "@pronunciation": "", - "#text": "Man's Search For Meaning, Gift Edition" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Frankl, Viktor E." - } - }, - "publishers": { - "publisher": "Beacon Press" - }, - "publication_date": "2015-10-06T00:00:00+0000", - "purchase_date": "2021-09-24T09:47:17+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B073VX7HT4", - "title": { - "@pronunciation": "", - "#text": "The Overstory: A Novel" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Powers, Richard" - } - }, - "publishers": { - "publisher": "W. W. Norton & Company" - }, - "publication_date": "2018-04-03T00:00:00+0000", - "purchase_date": "2021-09-12T18:26:58+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B00X47ZVXM", - "title": { - "@pronunciation": "", - "#text": "Deep Work: Rules for Focused Success in a Distracted World" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Newport, Cal" - } - }, - "publishers": { - "publisher": "Grand Central Publishing" - }, - "publication_date": "2016-01-05T00:00:00+0000", - "purchase_date": "2021-07-19T01:33:06+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B08GJZFBYV", - "title": { - "@pronunciation": "", - "#text": "A Promised Land" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Obama, Barack" - } - }, - "publishers": { - "publisher": "Crown" - }, - "publication_date": "2020-11-17T00:00:00+0000", - "purchase_date": "2021-06-21T00:19:38+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B000XUBEYS", - "title": { - "@pronunciation": "", - "#text": "American Prometheus: The Triumph and Tragedy of J. Robert Oppenheimer" - }, - "authors": { - "author": [ - { - "@pronunciation": "", - "#text": "Bird, Kai" - }, - { - "@pronunciation": "", - "#text": "Sherwin, Martin J." - } - ] - }, - "publishers": { - "publisher": "Vintage" - }, - "publication_date": "2007-12-18T00:00:00+0000", - "purchase_date": "2021-06-04T10:38:14+0000", - "textbook_type": "unknown", - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B06XZKDBTR", - "title": { - "@pronunciation": "", - "#text": "The Last Man Who Knew Everything: The Life and Times of Enrico Fermi, Father of the Nuclear Age" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Schwartz, David N." - } - }, - "publishers": { - "publisher": "Basic Books" - }, - "publication_date": "2017-12-05T00:00:00+0000", - "purchase_date": "2021-05-20T09:39:03+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B07H18BPHC", - "title": { - "@pronunciation": "", - "#text": "The First World War: A Complete History" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Gilbert, Martin" - } - }, - "publishers": { - "publisher": "RosettaBooks" - }, - "publication_date": "2014-06-05T00:00:00+0000", - "purchase_date": "2021-05-02T00:43:37+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B008TRU7SQ", - "title": { - "@pronunciation": "", - "#text": "The Making of the Atomic Bomb: 25th Anniversary Edition" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Rhodes, Richard" - } - }, - "publishers": { - "publisher": "Simon & Schuster" - }, - "publication_date": "2012-09-18T00:00:00+0000", - "purchase_date": "2021-04-23T09:36:48+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B07JYQV52N", - "title": { - "@pronunciation": "", - "#text": "George Marshall: Defender of the Republic" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Roll, David L." - } - }, - "publishers": { - "publisher": "Dutton Caliber" - }, - "publication_date": "2019-07-09T00:00:00+0000", - "purchase_date": "2021-04-09T00:10:22+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B000SEP9OK", - "title": { - "@pronunciation": "", - "#text": "American Caesar: Douglas MacArthur 1880 - 1964" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Manchester, William" - } - }, - "publishers": { - "publisher": "Back Bay Books" - }, - "publication_date": "2008-05-12T00:00:00+0000", - "purchase_date": "2021-03-28T17:11:31+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B00TG24BC6", - "title": { - "@pronunciation": "", - "#text": "The Conquering Tide: War in the Pacific Islands, 1942-1944 (Vol. 2) (The Pacific War Trilogy): War in the Pacific Islands, 1942\u20131944" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Toll, Ian W." - } - }, - "publishers": { - "publisher": "W. W. Norton & Company" - }, - "publication_date": "2015-09-21T00:00:00+0000", - "purchase_date": "2021-03-28T16:32:38+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B07ZTSJGK8", - "title": { - "@pronunciation": "", - "#text": "Twilight of the Gods: War in the Western Pacific, 1944-1945 (The Pacific War Trilogy)" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Toll, Ian W." - } - }, - "publishers": { - "publisher": "W. W. Norton & Company" - }, - "publication_date": "2020-09-01T00:00:00+0000", - "purchase_date": "2021-03-28T12:52:40+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B01IPCWN7M", - "title": { - "@pronunciation": "", - "#text": "The Todoist Ninja: Work Smarter, Increase Your Productivity, and Become More Organized at Work" - }, - "authors": { - "author": [ - { - "@pronunciation": "", - "#text": "Ali, Abder-Rahman" - }, - { - "@pronunciation": "", - "#text": "Kiander, Timo" - } - ] - }, - "publishers": null, - "publication_date": "2016-07-18T12:03:24+0000", - "purchase_date": "2021-03-22T09:38:08+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B00540PBAA", - "title": { - "@pronunciation": "", - "#text": "Eisenhower in War and Peace" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Smith, Jean Edward" - } - }, - "publishers": { - "publisher": "Random House" - }, - "publication_date": "2012-02-21T00:00:00+0000", - "purchase_date": "2021-01-14T10:52:58+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B07DBRBP7G", - "title": { - "@pronunciation": "", - "#text": "Digital Minimalism: Choosing a Focused Life in a Noisy World" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Newport, Cal" - } - }, - "publishers": { - "publisher": "Portfolio" - }, - "publication_date": "2019-02-05T00:00:00+0000", - "purchase_date": "2021-01-01T05:36:59+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B000FC0VVQ", - "title": { - "@pronunciation": "", - "#text": "Truman" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "McCullough, David" - } - }, - "publishers": { - "publisher": "Simon & Schuster" - }, - "publication_date": "2003-08-20T00:00:00+0000", - "purchase_date": "2020-12-16T20:33:31+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B07TRVW6VX", - "title": { - "@pronunciation": "", - "#text": "The Splendid and the Vile: A Saga of Churchill, Family, and Defiance During the Blitz" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Larson, Erik" - } - }, - "publishers": { - "publisher": "Crown" - }, - "publication_date": "2020-02-25T00:00:00+0000", - "purchase_date": "2020-11-27T16:49:33+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B006BAE842", - "title": { - "@pronunciation": "", - "#text": "Lincoln" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Donald, David Herbert" - } - }, - "publishers": { - "publisher": "Simon & Schuster" - }, - "publication_date": "2011-12-20T00:00:00+0000", - "purchase_date": "2020-07-28T12:18:45+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B017QL8WFU", - "title": { - "@pronunciation": "", - "#text": "John Quincy Adams: Militant Spirit" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Traub, James" - } - }, - "publishers": { - "publisher": "Basic Books" - }, - "publication_date": "2016-03-22T00:00:00+0000", - "purchase_date": "2020-07-12T19:39:57+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B004C43GGU", - "title": { - "@pronunciation": "", - "#text": "The Civil War: A Narrative: Volume 1: Fort Sumter to Perryville (Vintage Civil War Library)" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Foote, Shelby" - } - }, - "publishers": { - "publisher": "Vintage" - }, - "publication_date": "2011-01-26T00:00:00+0000", - "purchase_date": "2020-07-12T19:39:26+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B001FA0JSM", - "title": { - "@pronunciation": "", - "#text": "American Lion: Andrew Jackson in the White House" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Meacham, Jon" - } - }, - "publishers": { - "publisher": "Random House" - }, - "publication_date": "2008-11-04T00:00:00+0000", - "purchase_date": "2020-07-12T19:39:14+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B0030V0PEW", - "title": { - "@pronunciation": "", - "#text": "The Checklist Manifesto: How to Get Things Right" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Gawande, Atul" - } - }, - "publishers": { - "publisher": "Metropolitan Books" - }, - "publication_date": "2009-12-15T00:00:00+0000", - "purchase_date": "2020-07-04T02:36:41+0000", - "textbook_type": "unknown", - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B01N5X6B6S", - "title": { - "@pronunciation": "", - "#text": "The Three Lives of James Madison: Genius, Partisan, President" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Feldman, Noah" - } - }, - "publishers": { - "publisher": "Random House" - }, - "publication_date": "2017-10-31T00:00:00+0000", - "purchase_date": "2020-06-21T03:23:44+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B000FC0QHA", - "title": { - "@pronunciation": "", - "#text": "John Adams" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "McCullough, David" - } - }, - "publishers": { - "publisher": "Simon & Schuster" - }, - "publication_date": "2001-05-22T00:00:00+0000", - "purchase_date": "2020-06-21T03:23:09+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B07TQKJ2RG", - "title": { - "@pronunciation": "", - "#text": "James Monroe: A Life" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "McGrath, Tim" - } - }, - "publishers": { - "publisher": "Dutton" - }, - "publication_date": "2020-05-05T00:00:00+0000", - "purchase_date": "2020-06-21T01:22:40+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "037355EBFF5840BEBF020869E8E94A0A", - "title": { - "@pronunciation": "", - "#text": "Python_Tutorial_vanRossum" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Guido van Rossum, and the Python development team" - } - }, - "publishers": null, - "publication_date": "2020-05-23T17:31:01+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "PDOC", - "content_type": "application/pdf", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B0089EHKE8", - "title": { - "@pronunciation": "", - "#text": "Thomas Jefferson: The Art of Power" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Meacham, Jon" - } - }, - "publishers": { - "publisher": "Random House" - }, - "publication_date": "2012-11-13T00:00:00+0000", - "purchase_date": "2020-04-28T22:29:35+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B000RWC6NU", - "title": { - "@pronunciation": "", - "#text": "Great Tales and Poems of Edgar Allan Poe (Enriched Classics)" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Poe, Edgar Allan" - } - }, - "publishers": { - "publisher": "Simon & Schuster" - }, - "publication_date": "2007-06-19T00:00:00+0000", - "purchase_date": "2020-04-20T18:05:56+0000", - "textbook_type": "trade", - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B079D9LT6W", - "title": { - "@pronunciation": "", - "#text": "Rush: Revolution, Madness, and Benjamin Rush, the Visionary Doctor Who Became a Founding Father" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Fried, Stephen" - } - }, - "publishers": { - "publisher": "Crown" - }, - "publication_date": "2018-09-04T00:00:00+0000", - "purchase_date": "2020-04-19T20:29:20+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "DE0F5B83E6544468A2E09C5E449792A9", - "title": { - "@pronunciation": "", - "#text": "DEVONthink Documentation" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Eric B\u00f6hnisch-Volkmann" - } - }, - "publishers": null, - "publication_date": "2020-01-25T03:46:36+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "PDOC", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "064890C8FF7F487D8EFC6D303D6847FA", - "title": { - "@pronunciation": "", - "#text": "Swann's Way" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Marcel Proust" - } - }, - "publishers": null, - "publication_date": "2019-11-27T03:33:59+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "PDOC", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B000QJLQZI", - "title": { - "@pronunciation": "", - "#text": "Alexander Hamilton" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Chernow, Ron" - } - }, - "publishers": { - "publisher": "Penguin Books" - }, - "publication_date": "2005-03-29T00:00:00+0000", - "purchase_date": "2019-06-28T09:44:44+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "E9E9D899574247DBA2599461FB78D6BC", - "title": { - "@pronunciation": "", - "#text": "The Idiot" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Fyodor Dostoyevsky" - } - }, - "publishers": null, - "publication_date": "2018-07-11T13:16:41+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "PDOC", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "0C5C2B30F4244301990E58F13C8AFCC7", - "title": { - "@pronunciation": "", - "#text": "Ramon-Cajal-Advice-to-the-young-investigator" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Ram\u00f3n y Cajal" - } - }, - "publishers": null, - "publication_date": "2018-05-04T12:39:48+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "PDOC", - "content_type": "application/pdf", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B7D21A462FDA40FE941F93C8346AFBFC", - "title": { - "@pronunciation": "", - "#text": "The Enchiridion" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Epictetus" - } - }, - "publishers": null, - "publication_date": "2017-12-14T23:32:22+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "PDOC", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "8BFA37C6CCA44317BE118BAAA0FCBB50", - "title": { - "@pronunciation": "", - "#text": "The Idiot" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Fyodor Dostoyevsky" - } - }, - "publishers": null, - "publication_date": "2017-11-05T15:11:38+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "PDOC", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "1941259DED0242EFB6E50DEF90126908", - "title": { - "@pronunciation": "", - "#text": "Crime and Punishment" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Fyodor Dostoyevsky" - } - }, - "publishers": null, - "publication_date": "2017-10-19T13:22:52+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "PDOC", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B0092XHV4Y", - "title": { - "@pronunciation": "", - "#text": "The Last Lion: Volume 2: Winston Spencer Churchill: Alone, 1932-1940" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Manchester, William" - } - }, - "publishers": { - "publisher": "Little, Brown and Company" - }, - "publication_date": "2012-11-06T00:00:00+0000", - "purchase_date": "2017-08-24T00:58:37+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B0092XHPWC", - "title": { - "@pronunciation": "", - "#text": "The Last Lion: Volume 1: Winston Churchill: Visions of Glory, 1874 - 1932" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Manchester, William" - } - }, - "publishers": { - "publisher": "Little, Brown and Company" - }, - "publication_date": "2012-11-06T00:00:00+0000", - "purchase_date": "2017-08-24T00:58:37+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B0076DEPUK", - "title": { - "@pronunciation": "", - "#text": "The Last Lion: Winston Spencer Churchill: Defender of the Realm, 1940-1965" - }, - "authors": { - "author": [ - { - "@pronunciation": "", - "#text": "Reid, Paul" - }, - { - "@pronunciation": "", - "#text": "Manchester, William" - } - ] - }, - "publishers": { - "publisher": "Little, Brown and Company" - }, - "publication_date": "2012-11-06T00:00:00+0000", - "purchase_date": "2017-08-24T00:58:37+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "BOELM73G6A5IVYWNGURHBNS56XDVT3KQ", - "title": { - "@pronunciation": "", - "#text": "Anna Karenina" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "graf Leo Tolstoy" - } - }, - "publishers": null, - "publication_date": "2016-12-15T14:34:35+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "PDOC", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "2FLUQWCIJLTNRBHGQQQEBJQNSL6UT5JV", - "title": { - "@pronunciation": "", - "#text": "The Brothers Karamazov" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Fyodor Dostoyevsky" - } - }, - "publishers": null, - "publication_date": "2016-12-15T14:26:17+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "PDOC", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "6Q4YGG4UKZLFD43KE3DWWXVO2EUVZ5GM", - "title": { - "@pronunciation": "", - "#text": "War and Peace" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "graf Leo Tolstoy" - } - }, - "publishers": null, - "publication_date": "2016-12-14T22:58:29+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "PDOC", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "3083FC2B98D6493FA6CCF828F38EA52D", - "title": { - "@pronunciation": "", - "#text": "Chopin and the G Minor Ballade" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "David Bjorling" - } - }, - "publishers": null, - "publication_date": "2016-07-21T14:34:59+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "PDOC", - "content_type": "application/pdf", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B00CWR4ZZK", - "title": { - "@pronunciation": "", - "#text": "Piano Technique (Dover Books On Music: Piano)" - }, - "authors": { - "author": [ - { - "@pronunciation": "", - "#text": "Gieseking, Walter" - }, - { - "@pronunciation": "", - "#text": "Leimer, Karl" - } - ] - }, - "publishers": { - "publisher": "Dover Publications" - }, - "publication_date": "2013-04-09T00:00:00+0000", - "purchase_date": "2016-07-10T17:27:49+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B007DNAZWA", - "title": { - "@pronunciation": "", - "#text": "How to Memorize Music \u2013 A Practical Approach for Non-Geniuses" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Bolton, David" - } - }, - "publishers": { - "publisher": "David Bolton" - }, - "publication_date": "2012-02-25T03:45:28+0000", - "purchase_date": "2016-07-03T21:16:57+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B00QQIFERE", - "title": { - "@pronunciation": "", - "#text": "By Heart: The Art of Memorizing Music" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Cienniwa, Paul" - } - }, - "publishers": null, - "publication_date": "2014-12-07T14:23:54+0000", - "purchase_date": "2016-06-17T14:08:01+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B008498HL8", - "title": { - "@pronunciation": "", - "#text": "Beethoven's Letters 1790-1826, Volume 2" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Beethoven, Ludwig van" - } - }, - "publishers": null, - "publication_date": "2012-05-17T02:14:38+0000", - "purchase_date": "2016-05-31T17:07:14+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B004TQTK02", - "title": { - "@pronunciation": "", - "#text": "Beethoven's Letters 1790-1826, Volume 1" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Beethoven, Ludwig van" - } - }, - "publishers": null, - "publication_date": "2011-03-24T11:28:47+0000", - "purchase_date": "2016-05-31T17:06:46+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B004TRQ78Y", - "title": { - "@pronunciation": "", - "#text": "Frederick Chopin, as a Man and Musician \u2014 Complete" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Niecks, Frederick" - } - }, - "publishers": null, - "publication_date": "2011-03-24T14:00:19+0000", - "purchase_date": "2016-05-31T17:05:49+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B004TRQ6DU", - "title": { - "@pronunciation": "", - "#text": "Frederick Chopin, as a Man and Musician \u2014 Volume 2" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Niecks, Frederick" - } - }, - "publishers": null, - "publication_date": "2011-03-24T13:59:58+0000", - "purchase_date": "2016-05-31T17:05:10+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B0082X0Z8E", - "title": { - "@pronunciation": "", - "#text": "Chopin : the Man and His Music" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Huneker, James" - } - }, - "publishers": null, - "publication_date": "2012-05-12T12:45:21+0000", - "purchase_date": "2016-05-31T17:04:46+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B019CI6CAC", - "title": { - "@pronunciation": "", - "#text": "A family journey in Patagonia: Trekking Pumalin, Paine and Tierra del Fuego with kids" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "ArchundiaPineda, Abel" - } - }, - "publishers": null, - "publication_date": "2015-12-13T13:03:29+0000", - "purchase_date": "2015-12-17T03:52:41+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B004IYIU7O", - "title": { - "@pronunciation": "", - "#text": "In Patagonia (Penguin Classics)" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Chatwin, Bruce" - } - }, - "publishers": { - "publisher": "Penguin Classics" - }, - "publication_date": "2003-03-25T00:00:00+0000", - "purchase_date": "2015-12-17T03:52:15+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B0084AHN6C", - "title": { - "@pronunciation": "", - "#text": "How to Live on 24 Hours a Day" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Bennett, Arnold" - } - }, - "publishers": null, - "publication_date": "2012-05-17T05:35:01+0000", - "purchase_date": "2015-09-29T00:04:16+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "AJZLKHNWPZWEZLIW2WZB5YKHXBZAHOA5", - "title": { - "@pronunciation": "", - "#text": "Bennet" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Giovanni Coppola" - } - }, - "publishers": null, - "publication_date": "2015-09-28T23:30:40+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "PDOC", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "H5MZ7KDZSEZZCEOJ22N32EUKQCBRFPTI", - "title": { - "@pronunciation": "", - "#text": "Chopin_Ballade1_noC" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Napoleon Hill" - } - }, - "publishers": null, - "publication_date": "2015-09-02T17:23:59+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "PDOC", - "content_type": "application/pdf", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B00C2RXUTM", - "title": { - "@pronunciation": "", - "#text": "Play It Again: An Amateur Against the Impossible" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Rusbridger, Alan" - } - }, - "publishers": { - "publisher": "Farrar, Straus and Giroux" - }, - "publication_date": "2013-09-17T00:00:00+0000", - "purchase_date": "2015-08-25T02:24:25+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B0084AZXKK", - "title": { - "@pronunciation": "", - "#text": "Treasure Island" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Stevenson, Robert Louis" - } - }, - "publishers": null, - "publication_date": "2012-05-17T00:00:00+0000", - "purchase_date": "2015-06-22T17:13:00+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B0031574KK", - "title": { - "@pronunciation": "", - "#text": "Think and Grow Rich" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Hill, Napoleon" - } - }, - "publishers": { - "publisher": "White Dog Publishing" - }, - "publication_date": "2009-12-16T00:00:00+0000", - "purchase_date": "2015-06-02T00:58:03+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "CKNLZ4WAPREXHMU5MXT54U3EY2LCVIR2", - "title": { - "@pronunciation": "", - "#text": "Think and Grow Rich" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Napoleon Hill" - } - }, - "publishers": null, - "publication_date": "2015-05-06T06:04:53+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "PDOC", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B008TVLRU4", - "title": { - "@pronunciation": "", - "#text": "Meditations (Dover Thrift Editions: Philosophy)" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Aurelius, Marcus" - } - }, - "publishers": { - "publisher": "Dover Publications" - }, - "publication_date": "2012-03-01T00:00:00+0000", - "purchase_date": "2015-01-28T03:01:26+0000", - "textbook_type": "trade", - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B003K15IF8", - "title": { - "@pronunciation": "", - "#text": "Stoner (New York Review Books Classics)" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Williams, John" - } - }, - "publishers": { - "publisher": "NYRB Classics" - }, - "publication_date": "2010-05-01T00:00:00+0000", - "purchase_date": "2015-01-06T17:48:32+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B0084AXZRI", - "title": { - "@pronunciation": "", - "#text": "The Phantom of the Opera" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Leroux, Gaston" - } - }, - "publishers": null, - "publication_date": "2012-05-17T06:23:31+0000", - "purchase_date": "2015-01-06T06:43:28+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "7EMSMXHBGTAGZCP2TUHN22OEUTMIRZ2C", - "title": { - "@pronunciation": "", - "#text": "Take_Control_of_TextExpander_(1.1)" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Michael E. Cohen" - } - }, - "publishers": null, - "publication_date": "2014-11-15T00:05:57+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "PDOC", - "content_type": "application/pdf", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "IKZQO55O2TESAI6RWWAJHFCKCD57GFXH", - "title": { - "@pronunciation": "", - "#text": "asestesso" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Giovanni Coppola" - } - }, - "publishers": null, - "publication_date": "2014-07-02T15:11:33+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "PDOC", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "P2PNXXJCHYBVBXXIP3SHR6AIDGT4E2EA", - "title": { - "@pronunciation": "", - "#text": "asestesso" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Giovanni Coppola" - } - }, - "publishers": null, - "publication_date": "2014-07-02T15:10:54+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "PDOC", - "content_type": "application/pdf", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "BDX3CICUVJWN5GVV5GZQAC2TTKNLPV74", - "title": { - "@pronunciation": "", - "#text": "aureliusetext01medma10kindle" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Giovanni Coppola" - } - }, - "publishers": null, - "publication_date": "2014-07-02T15:10:42+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "PDOC", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B00KE9ZBII", - "title": { - "@pronunciation": "", - "#text": "Evernote Essentials: The Definitive Guide for New Evernote Users" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Kelly, Brett" - } - }, - "publishers": { - "publisher": "Brett Kelly Media, Inc." - }, - "publication_date": "2013-09-26T00:00:00+0000", - "purchase_date": "2014-06-29T05:25:11+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B00BE64MAI", - "title": { - "@pronunciation": "", - "#text": "The Decision Maker: Unlock the Potential of Everyone in Your Organization, One Decision at a Time" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Bakke, Dennis" - } - }, - "publishers": { - "publisher": "Pear Press" - }, - "publication_date": "2013-03-05T00:00:00+0000", - "purchase_date": "2014-06-13T12:52:24+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B000SEHJHK", - "title": { - "@pronunciation": "", - "#text": "Wooden on Leadership: How to Create a Winning Organizaion" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Wooden, John" - } - }, - "publishers": { - "publisher": "McGraw Hill" - }, - "publication_date": "2005-04-26T00:00:00+0000", - "purchase_date": "2014-05-19T14:46:23+0000", - "textbook_type": "unknown", - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B0036FTO08", - "title": { - "@pronunciation": "", - "#text": "Wooden: A Lifetime of Observations and Reflections On and Off the Court" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Wooden, John" - } - }, - "publishers": { - "publisher": "McGraw-Hill Education" - }, - "publication_date": "1997-04-22T00:00:00+0000", - "purchase_date": "2014-05-19T14:43:08+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B00EX0XYU6", - "title": { - "@pronunciation": "", - "#text": "Overwhelmed: Work, Love, and Play When No One Has the Time" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Schulte, Brigid" - } - }, - "publishers": { - "publisher": "Sarah Crichton Books" - }, - "publication_date": "2014-03-11T00:00:00+0000", - "purchase_date": "2014-05-18T19:24:21+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B003WUYEC0", - "title": { - "@pronunciation": "", - "#text": "A Romance on Three Legs: Glenn Gould's Obsessive Quest for the Perfect Piano" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Hafner, Katie" - } - }, - "publishers": { - "publisher": "Bloomsbury USA" - }, - "publication_date": "2010-07-15T00:00:00+0000", - "purchase_date": "2014-05-11T23:18:20+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B004OA6KIS", - "title": { - "@pronunciation": "", - "#text": "\"What Do You Care What Other People Think?\": Further Adventures of a Curious Character (Feynman Book 2)" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Feynman, Richard P." - } - }, - "publishers": { - "publisher": "W. W. Norton & Company" - }, - "publication_date": "2011-02-14T00:00:00+0000", - "purchase_date": "2014-05-11T23:17:36+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B003V1WXKU", - "title": { - "@pronunciation": "", - "#text": "\"Surely You're Joking, Mr. Feynman!\": Adventures of a Curious Character" - }, - "authors": { - "author": [ - { - "@pronunciation": "", - "#text": "Feynman, Richard P." - }, - { - "@pronunciation": "", - "#text": "Ralph Leighton" - } - ] - }, - "publishers": { - "publisher": "W. W. Norton & Company" - }, - "publication_date": "2010-06-28T00:00:00+0000", - "purchase_date": "2014-05-11T23:06:17+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B0055PGUYU", - "title": { - "@pronunciation": "", - "#text": "The Power of Habit: Why We Do What We Do in Life and Business" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Duhigg, Charles" - } - }, - "publishers": { - "publisher": "Random House" - }, - "publication_date": "2012-02-28T00:00:00+0000", - "purchase_date": "2013-11-30T22:11:51+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B0083ZRAJS", - "title": { - "@pronunciation": "", - "#text": "The Wonderful Wizard of Oz (Oz Series Book 1)" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Baum, L. Frank (Lyman Frank)" - } - }, - "publishers": null, - "publication_date": "2012-05-16T04:15:18+0000", - "purchase_date": "2013-11-10T02:56:25+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B001QNVPY0", - "title": { - "@pronunciation": "", - "#text": "The Art and Politics of Science" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Varmus, Harold" - } - }, - "publishers": { - "publisher": "W. W. Norton & Company" - }, - "publication_date": "2009-01-25T00:00:00+0000", - "purchase_date": "2012-12-08T06:40:56+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B007A4V33M", - "title": { - "@pronunciation": "", - "#text": "An Unexpected Twist (Kindle Single)" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Borowitz, Andy" - } - }, - "publishers": null, - "publication_date": "2012-02-15T00:00:00+0000", - "purchase_date": "2012-04-27T12:17:25+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B003WMAAMG", - "title": { - "@pronunciation": "", - "#text": "How We Decide" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Lehrer, Jonah" - } - }, - "publishers": { - "publisher": "Mariner Books" - }, - "publication_date": "2010-01-14T00:00:00+0000", - "purchase_date": "2012-02-23T14:48:40+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B000JMLMXI", - "title": { - "@pronunciation": "", - "#text": "The Autobiography of Benjamin Franklin" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Franklin, Benjamin" - } - }, - "publishers": { - "publisher": "Public Domain Books" - }, - "publication_date": "1994-07-01T00:00:00+0000", - "purchase_date": "2010-08-02T23:39:56+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B003B02ONW", - "title": { - "@pronunciation": "", - "#text": "Breakthrough!: How the 10 Greatest Discoveries in Medicine Saved Millions and Changed Our View of the World" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Queijo, Jon" - } - }, - "publishers": { - "publisher": "FT Press" - }, - "publication_date": "2010-02-25T00:00:00+0000", - "purchase_date": "2010-08-02T23:38:58+0000", - "textbook_type": "professional", - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B003ODIZL6", - "title": { - "@pronunciation": "", - "#text": "The New Oxford American Dictionary" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "McKean, Erin" - } - }, - "publishers": { - "publisher": "Oxford University Press" - }, - "publication_date": "2010-04-01T00:00:00+0000", - "purchase_date": "2010-08-02T23:34:03+0000", - "textbook_type": "unknown", - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B000JMLNHI", - "title": { - "@pronunciation": "", - "#text": "Fairy Tales Every Child Should Know" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Mabie, Hamilton Wright" - } - }, - "publishers": { - "publisher": "Public Domain Books" - }, - "publication_date": "2005-02-05T00:00:00+0000", - "purchase_date": "2010-05-16T16:23:35+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B003YL4LVQ", - "title": { - "@pronunciation": "", - "#text": "Duden Dictionary test" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Robert Wolfe" - } - }, - "publishers": { - "publisher": "Kongc Test Pub" - }, - "publication_date": "2011-02-04T00:00:00+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B003WUYRGI", - "title": { - "@pronunciation": "", - "#text": "Oxford Dictionary of English" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Stevenson, Angus" - } - }, - "publishers": { - "publisher": "Oxford University Press" - }, - "publication_date": "2010-08-16T00:00:00+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B005F12G7O", - "title": { - "@pronunciation": "", - "#text": "---------------" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "----" - } - }, - "publishers": { - "publisher": "-------" - }, - "publication_date": "2010-08-16T00:00:00+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B005EOCESI", - "title": { - "@pronunciation": "", - "#text": "---------------" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "----" - } - }, - "publishers": { - "publisher": "-------" - }, - "publication_date": "2010-08-16T00:00:00+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B005F3XOMI", - "title": { - "@pronunciation": "", - "#text": "---------------" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "----" - } - }, - "publishers": { - "publisher": "-------" - }, - "publication_date": "2010-08-16T00:00:00+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B005F12G6U", - "title": { - "@pronunciation": "", - "#text": "---------------" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "----" - } - }, - "publishers": { - "publisher": "-------" - }, - "publication_date": "2010-08-16T00:00:00+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B005FNK020", - "title": { - "@pronunciation": "", - "#text": "---------------" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "----" - } - }, - "publishers": { - "publisher": "-------" - }, - "publication_date": "2010-08-16T00:00:00+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B005FNK002", - "title": { - "@pronunciation": "", - "#text": "---------------" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "----" - } - }, - "publishers": { - "publisher": "-------" - }, - "publication_date": "2010-08-16T00:00:00+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B00DQB1G3K", - "title": { - "@pronunciation": "", - "#text": "---------------" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "----" - } - }, - "publishers": { - "publisher": "-------" - }, - "publication_date": "2010-08-16T00:00:00+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B006VXP5LY", - "title": { - "@pronunciation": "", - "#text": "---------------" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "----" - } - }, - "publishers": { - "publisher": "-------" - }, - "publication_date": "2010-08-16T00:00:00+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B00AZOHEFU", - "title": { - "@pronunciation": "", - "#text": "---------------" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "----" - } - }, - "publishers": { - "publisher": "-------" - }, - "publication_date": "2010-08-16T00:00:00+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B007Z8VKSQ", - "title": { - "@pronunciation": "", - "#text": "---------------" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "----" - } - }, - "publishers": { - "publisher": "-------" - }, - "publication_date": "2010-08-16T00:00:00+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B00AZOHEGE", - "title": { - "@pronunciation": "", - "#text": "---------------" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "----" - } - }, - "publishers": { - "publisher": "-------" - }, - "publication_date": "2010-08-16T00:00:00+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B009HB9VMG", - "title": { - "@pronunciation": "", - "#text": "---------------" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "----" - } - }, - "publishers": { - "publisher": "-------" - }, - "publication_date": "2010-08-16T00:00:00+0000", - "purchase_date": null, - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B08G1XNG7J", - "title": { - "@pronunciation": "", - "#text": "The Code Breaker: Jennifer Doudna, Gene Editing, and the Future of the Human Race" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Isaacson, Walter" - } - }, - "publishers": { - "publisher": "Simon & Schuster" - }, - "publication_date": "2021-03-09T00:00:00+0000", - "purchase_date": "2023-02-16T11:06:40+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B08X19W2HD", - "title": { - "@pronunciation": "", - "#text": "Bewilderment: A Novel" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Powers, Richard" - } - }, - "publishers": { - "publisher": "W. W. Norton & Company" - }, - "publication_date": "2021-09-21T00:00:00+0000", - "purchase_date": "2023-02-02T10:29:10+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - }, - { - "ASIN": "B00B1FG7QO", - "title": { - "@pronunciation": "", - "#text": "Wilson" - }, - "authors": { - "author": { - "@pronunciation": "", - "#text": "Berg, A. Scott" - } - }, - "publishers": { - "publisher": "Berkley" - }, - "publication_date": "2013-09-10T00:00:00+0000", - "purchase_date": "2023-02-16T17:50:38+0000", - "textbook_type": null, - "cde_contenttype": "EBOK", - "content_type": "application/x-mobipocket-ebook", - "origins": { - "origin": { - "type": null - } - } - } - ] - } - } -} \ No newline at end of file