subdavis / kobo-book-downloader

A tool to download and remove DRM from your purchased Kobo.com ebooks and audiobooks.
https://pypi.org/project/kobodl/
The Unlicense
331 stars 31 forks source link

Feature Request: --get-all supports --read #54

Closed NomadThanatos closed 3 years ago

NomadThanatos commented 3 years ago

Since I manage my books by subdirectories, the feature gh-4 does not work well in that situation.

I use read flag to mark those downloaded.

My workaround here:

kobodl --fmt "presto" book list |  tail -n +3 | awk -F '|' '{print $3}' | xargs kobodl book get --format-str '{Title}'
subdavis commented 3 years ago

I looked into it and this is tricky because listing to list and listing to download function differently. I don't plan on spending time to do this. Looks like your workaround is reasonable.