Skip to content

Instantly share code, notes, and snippets.

@kazlauskis
Last active November 5, 2020 13:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kazlauskis/5472b30ce96f49d13aed0afd785ac2db to your computer and use it in GitHub Desktop.
Save kazlauskis/5472b30ce96f49d13aed0afd785ac2db to your computer and use it in GitHub Desktop.
Extract Kindle vocabulary words to CSV

This was done mainly to upload it to Anki.

  • Mount kindle
  • cd Kindle/system/vocabulary
  • sqlite vocab.db
sqlite> .headers on
sqlite> .mode csv
sqlite> .output data.csv
sqlite> SELECT word FROM WORDS;

// optionally
sqlite> DELETE from WORDS; 

sqlite> .quit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment