Python CLI and libary for dynalist.io based on the Dynalist API. Documentation available on Github Pages.
To run the test suite, run
python -m unittest
Get the token from https://dynalist.io/developer and enter for the tool to use by running
dynalist token
Fetch all documents
dynalist docs
Fetch all folders
dynalist folders
You can also interact with dynalist programatically.
import dynalist
dyn = Dynalist("yourtokenhere")
dyn.all()
dyn.doc("documentid")
dyn.to_inbox("Item to add", "Optional note")