The PKM helper for Emacs Org mode written in Python.
This tool currently supports Org-format conversion of notes/annotations/highlights dumps from several PKM services and devices.
To convert an export JSON dump from Kindle notes and highlights using Bookcision to an Org file, use org-from-kindle.
org-from-kindle -h # help
org-from-kindle -l en <json-dump> # dump is in English
org-from-kindle -l ja <json_dump> # dump is in JapaneseTo convert an export Markdown dump from Snipd to an Org file,
use org-from-snipd.
org-from-snipd -h # help
org-from-snipd <markdown-dump> # Org export of Snipd dump
org-from-snipd <markdown-dump> <no> # extract <no>-th sectionTo export a PDF document from a local Zotero installation to
an Org file, use org-from-zotero.
org-from-zotero -h # help
org-from-zotero list # get doc IDs
org-from-zotero extract <id> # Org export of doc with IDThe orgutils is a pure Python package. As such, it is best to install it to a clean
virtual environment. We assume the following install commands are run within such an
environment.
pip install .
pip install .[dev,test] # for local developmentThe Snipd submodule uses pandoc. Install it separately if you need it.