Last active
February 17, 2025 10:40
-
Star
(129)
You must be signed in to star a gist -
Fork
(29)
You must be signed in to fork a gist
-
-
Save jkubecki/d61d3e953ed5c8379075b5ddd8a95f22 to your computer and use it in GitHub Desktop.
Amazon Kindle Export
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// The following data should be run in the console while viewing the page https://read.amazon.com/ | |
// It will export a CSV file called "download" which can (and should) be renamed with a .csv extension | |
var db = openDatabase('K4W', '3', 'thedatabase', 1024 * 1024); | |
getAmazonCsv = function() { | |
// Set header for CSV export line - change this if you change the fields used | |
var csvData = "ASIN,Title,Authors,PurchaseDate\n"; | |
db.transaction(function(tx) { | |
tx.executeSql('SELECT * FROM bookdata;', [], function(tx, results) { | |
var len = results.rows.length; | |
for (i = 1; i < len; i++) { | |
// Get the data | |
var asin = results.rows.item(i).asin; | |
var title = results.rows.item(i).title; | |
var authors = JSON.parse(results.rows.item(i).authors); | |
var purchaseDate = new Date(results.rows.item(i).purchaseDate).toLocaleDateString(); | |
// Remove double quotes from titles to not interfere with CSV double-quotes | |
title = title.replace(/"/g, ''); | |
// Concatenate the authors list - uncomment the next line to get all authors separated by ";" | |
// var authorList = authors.join(';'); | |
// OR Take only first author - comment the next line if you uncommented the previous one | |
var authorList = authors[0]; | |
// Write out the CSV line | |
csvData += '"' + asin + '","' + title + '","' + authorList + '","' + purchaseDate + '"\n' | |
} | |
// "Export" the data | |
window.location = 'data:text/csv;charset=utf8,' + encodeURIComponent(csvData); | |
console.log("Sample Row:"); | |
console.log(results.rows.item(1)); | |
}); | |
}); | |
}; | |
getAmazonCsv(); |
Hi cgillinger,
I tried your code for kindle and it seems to work.
I would like to ask you if you could modify/improve a little bit further,
even at an agreed price.
I am thinking something like:
1- no need to scroll down until the last book: very tedious and slow
process if one has thousands books;
2- add to fields: editor and year
3- IF technically possible: a tag with something about the content (i.e.
narrative, essay, science, music, economics, etc..) AND (miracle needed) a
small thumbnail photo of the cover...
This, GT
Il giorno ven 14 feb 2025 alle ore 12:27 cgillinger <
***@***.***> ha scritto:
… ***@***.**** commented on this gist.
------------------------------
I couldn't get it to work. but I made my own version:
https://gist.github.com/cgillinger/6b301279e519a6890cfa82883aec37d1
Trying to get ISBN lookup to work as well, but so far have failed.
—
Reply to this email directly, view it on GitHub
<https://gist.github.com/jkubecki/d61d3e953ed5c8379075b5ddd8a95f22#gistcomment-5439028>
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AKW3YA6YCHKHBURME2WKVJ32PXHI7BFKMF2HI4TJMJ2XIZLTSKBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DFVRZXKYTKMVRXIX3UPFYGLK2HNFZXIQ3PNVWWK3TUUZ2G64DJMNZZDAVEOR4XAZNEM5UXG5FFOZQWY5LFVA2DANZVHEYDMNNHORZGSZ3HMVZKMY3SMVQXIZI>
.
You are receiving this email because you commented on the thread.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>
.
Yes, those are all reasonable suggestions! The challenge is that the method we're using is more of a workaround, and strictly speaking, Amazon probably isn't too thrilled about it. Plus, the website provides very little data on the books—ISBN lookups are redirected to another site, which means I have to "clean up" the titles by removing things like parentheses (e.g., "(The Expanse Series 4)"), as they cause issues with the ISBN lookup.
It might be possible to make the page auto-scroll to the end, but unfortunately, I don't quite have the time to dive into that right now!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I couldn't get it to work. but I made my own version:
https://gist.github.com/cgillinger/6b301279e519a6890cfa82883aec37d1
Trying to get ISBN lookup to work as well, but so far have failed.
EDIT: ISBN lookup now works.