Syncs the highlights and annotations you made on your Tolino to Readwise.
Download the latest binary (link) and run it with the following flags (or see help message):
tolino-sync -t TOKEN_FILE -n NOTES_FILE
TOKEN_FILE
is the path to the file containing your Readwise API token, see Usage.NOTES_FILE
is the path to the file you got off of your Tolino (usuallynotes.txt
, located at the root of the Tolino's filesystem)
Docker command to pull image from GHCR:
docker pull ghcr.io/ssppooff/tolino-readwise-sync/tolino-sync:latest
- Default command uses the flags
-t /files/token -n /files/notes.txt
, ie., it looks for the filestoken
andnotes.txt
inside the container file system at/folder
; the files contain the API token and notes & highlights, respectively. - The command to run it using docker and a bind mount from the current working directory (assuming
token
¬es.txt
insidelocal_files/
) would bedocker run -v "$(pwd)"/local_files:/files tolino-sync:latest
Readwise can import your highlights and annotations from many other services, including Amazon's Kindle.
For Kindle devices, it supports importing directly from your highlights page on amazon.com, but only for books purchased directly through Amazon. For all other books and documents, there is a file on Kindle devices called My Clippings.txt
with all your highlights and annotations. Readwise let's you import that file either via email or uploading it to Readwise.
However, there is no import mechanism for Tolino devices, which are available in many parts of Europe (see Wikipedia DE - Tolino, and especially popular in German speaking countries (namely Germany, Austria, parts of Switzerland). Even though Tolino devices also use a local file to save highlights and annotations, its structure is different from Kindle's My Clippings.txt
. And there is a cloud & app system available similar to Amazon's, however, it does not present your highlights and annotations on one page.
However, Readwise provides an API which manages an account's highlights.
- Only works if
notes.txt
file is in English (probably depends on which language is chosen for the Tolino) - Mass upload of highlights & notes, irrespective of whether they have been already added
or changed on the Tolino (Readwise does de-duplication based on
title/author/text/source_url
)
- Get your API token readwise.io/access_token (subscription or trial necessary)
- Demo data Tolino
notes.txt
included in repo - Read help message from CLI for which flags to use
- Upload highlights & notes mode on your Tolino (done)
- Don't add highlights & notes if they are already on Readwise
- Like previous version, but if a note or highlight has been marked as modified on the Tolino, add corresponding metadata to Readwise
- Detect if a highlight has been deleted on the Tolino, delete it on Readwise (or make it an option to do so)
- Add metadata inside Tolino's
notes.txt
, not sure if it would mess with the Tolino - Add highlights/notes as well as books/documents to Readwise's new Reader
- Improve test coverage