Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > Amazon Kindle

Notices

Reply
 
Thread Tools Search this Thread
Old 08-13-2021, 01:04 AM   #1
Rellwood
Library Breeder (She/Her)
Rellwood ought to be getting tired of karma fortunes by now.Rellwood ought to be getting tired of karma fortunes by now.Rellwood ought to be getting tired of karma fortunes by now.Rellwood ought to be getting tired of karma fortunes by now.Rellwood ought to be getting tired of karma fortunes by now.Rellwood ought to be getting tired of karma fortunes by now.Rellwood ought to be getting tired of karma fortunes by now.Rellwood ought to be getting tired of karma fortunes by now.Rellwood ought to be getting tired of karma fortunes by now.Rellwood ought to be getting tired of karma fortunes by now.Rellwood ought to be getting tired of karma fortunes by now.
 
Rellwood's Avatar
 
Posts: 1,257
Karma: 1937891
Join Date: Apr 2015
Location: Fullerton, California
Device: Paperwhite 2015 (2), PW 2024 (12 GEN), PW 2023 (11 GEN), Scribe (1st)
Who is in charge of the Amazon Content and Devices UI?

The recent changes to Content and Devices have totally ruined my ability to manage my library. Now there are only 25 books shown at a time, and the covers are also shown. Now if you only have 100 books in your library, this isn't too big of a deal, but if you have 1000 books like I do, then there is NO way to be able to scroll through and set them into the collecitons.

ALSO, this was done to the Kindle Unlimited books.

I have long since used webdeveloper tools - the inspector to copy the inner html of the book lists so that I can parse the titles, authors, and dates purchased (or as a Kindle book - dates rented/returned) now I cannot do this. There are no book titles to parse.

https://www.ardenstone.com/2015/01/1...s-from-amazon/

Like not being able to sort the books in collections, this is just another way Amazon has mucked up my ability to organize and manage my library. It is way too tempting to just leave and go somewhere else. My Kobos stopped working, but I am tempted to get another.

Who are the developers of the Amazon website and how can I get them to fix this?
Rellwood is offline   Reply With Quote
Old 08-13-2021, 03:02 AM   #2
Sirtel
Grand Sorcerer
Sirtel ought to be getting tired of karma fortunes by now.Sirtel ought to be getting tired of karma fortunes by now.Sirtel ought to be getting tired of karma fortunes by now.Sirtel ought to be getting tired of karma fortunes by now.Sirtel ought to be getting tired of karma fortunes by now.Sirtel ought to be getting tired of karma fortunes by now.Sirtel ought to be getting tired of karma fortunes by now.Sirtel ought to be getting tired of karma fortunes by now.Sirtel ought to be getting tired of karma fortunes by now.Sirtel ought to be getting tired of karma fortunes by now.Sirtel ought to be getting tired of karma fortunes by now.
 
Sirtel's Avatar
 
Posts: 13,452
Karma: 239219453
Join Date: Jan 2014
Location: Estonia
Device: Kobo Sage & Libra 2
I doubt anyone here knows the answer to your question.

For my part, I gave up on using Amazon for library management years ago. I just download all my purchases and manage them in Calibre. If you use a Kobo, then Calibre can also automatically sort your books into collections on your device, no manual management needed.
Sirtel is offline   Reply With Quote
Advert
Old 08-13-2021, 03:16 PM   #3
tomsem
Grand Sorcerer
tomsem ought to be getting tired of karma fortunes by now.tomsem ought to be getting tired of karma fortunes by now.tomsem ought to be getting tired of karma fortunes by now.tomsem ought to be getting tired of karma fortunes by now.tomsem ought to be getting tired of karma fortunes by now.tomsem ought to be getting tired of karma fortunes by now.tomsem ought to be getting tired of karma fortunes by now.tomsem ought to be getting tired of karma fortunes by now.tomsem ought to be getting tired of karma fortunes by now.tomsem ought to be getting tired of karma fortunes by now.tomsem ought to be getting tired of karma fortunes by now.
 
Posts: 6,936
Karma: 27060151
Join Date: Apr 2009
Location: USA
Device: iPhone 15PM, Kindle Scribe, iPad mini 6, PocketBook InkPad Color 3
They are not going to revert the change. Obviously they redesign without regard to how convenient it is to web scrape. Actually breaking it into pages (instead of infinite scroll) makes it a little easier IMO.

What they should provide is a built-in export feature. And fix the functional issues, e.g., getting more accurate accounting of which books are on which devices.

Just as obviously, the information is still there, and so it is possible to extract it. Some basic JavaScript can do this using the Console. For example, to get all of the Titles on a page, you can:
Quote:
titleText = “”
titles = document.getElementsByClassName(“digital_entity_ti tle”)
for (n in titles) {
titleText += titles[n].textContent + “\n”
}
copy(titleText)
This simple example will copy titles to the clipboard. If you use class name “digital_entity_details” you will get a string with all of the information concatenated together, but easily split up by a search and replace with an editor.

I have not yet worked out how to extend this and get the details for all pages, at least in the browser console environment.

Last edited by tomsem; 08-13-2021 at 06:42 PM.
tomsem is offline   Reply With Quote
Old 08-20-2021, 05:02 PM   #4
Rellwood
Library Breeder (She/Her)
Rellwood ought to be getting tired of karma fortunes by now.Rellwood ought to be getting tired of karma fortunes by now.Rellwood ought to be getting tired of karma fortunes by now.Rellwood ought to be getting tired of karma fortunes by now.Rellwood ought to be getting tired of karma fortunes by now.Rellwood ought to be getting tired of karma fortunes by now.Rellwood ought to be getting tired of karma fortunes by now.Rellwood ought to be getting tired of karma fortunes by now.Rellwood ought to be getting tired of karma fortunes by now.Rellwood ought to be getting tired of karma fortunes by now.Rellwood ought to be getting tired of karma fortunes by now.
 
Rellwood's Avatar
 
Posts: 1,257
Karma: 1937891
Join Date: Apr 2015
Location: Fullerton, California
Device: Paperwhite 2015 (2), PW 2024 (12 GEN), PW 2023 (11 GEN), Scribe (1st)
Quote:
Originally Posted by tomsem View Post
They are not going to revert the change. Obviously they redesign without regard to how convenient it is to web scrape. Actually breaking it into pages (instead of infinite scroll) makes it a little easier IMO.

What they should provide is a built-in export feature. And fix the functional issues, e.g., getting more accurate accounting of which books are on which devices.

Just as obviously, the information is still there, and so it is possible to extract it. Some basic JavaScript can do this using the Console. For example, to get all of the Titles on a page, you can:

This simple example will copy titles to the clipboard. If you use class name “digital_entity_details” you will get a string with all of the information concatenated together, but easily split up by a search and replace with an editor.

I have not yet worked out how to extend this and get the details for all pages, at least in the browser console environment.
This is the webpage that I would copy and paste the clipboard after using the element to select the innerhtml

https://www.ardenstone.com/2015/01/1...s-from-amazon/

When I do it now it says there are no titles.

Also, I do like the covers, dont' get me wrong, but the fact that I only get to see 20 books at a time really, really gets annoying.

I'll try your example, but in the end, I am probably just going to use the following file:

C:\Users\UserName\AppData\Local\Amazon\Kindle\Cach e\KindleSyncMetadataCache.xml

It keeps up to date with what is current, and is easy to format to import into Calibre
Rellwood is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Synchonizing content of 2 devices jiembe Devices 3 10-24-2020 01:26 AM
Troubleshooting Amazon Content & Devices - Double Devices Jo69 Amazon Kindle 16 09-17-2018 09:15 AM
This router can wirelessly charge up to 12 devices from almost 5 metres away Hamlet53 News 14 01-16-2015 07:00 PM
Troubleshooting Manage Your Content and Devices jgaiser Amazon Kindle 11 12-01-2014 11:55 PM
Can you charge the Touch or other devices with the Vox charger? TonyToews Kobo Tablets 5 11-05-2011 01:15 AM


All times are GMT -4. The time now is 06:19 AM.


MobileRead.com is a privately owned, operated and funded community.