Skip to content
This repository has been archived by the owner on Dec 1, 2018. It is now read-only.

dfederschmidt/dynalist

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dynalist

Python CLI and libary for dynalist.io based on the Dynalist API. Documentation available on Github Pages.

Testing

To run the test suite, run

python -m unittest

CLI Usage

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

Library Usage

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")