Python client for Shortcut
The package is available on pypi and can be installed like any other packages.
$ pip install shortcut # not currently published on pypi
Refer to Shortcut API Docs for more information.
from shortcut import ShortcutClient
shortcut = ShortcutClient('your api key')
story = {'name': 'A new story', 'description': 'Do something!'}
shortcut.post('stories', json=story)