ocf / ocflib

Python libraries for account and server management
https://pypi.python.org/pypi/ocflib
Other
15 stars 32 forks source link

Add kanboard support #162

Closed dkess closed 4 years ago

dkess commented 5 years ago

See ocflib.infra.discourse for inspiration on how to do this. I believe users can make personal Kanboard tokens for this (for testing purposes), and ircbot can use the global admin token.

This is necessary for https://github.com/ocf/ircbot/issues/106

willtunnels commented 5 years ago

Looks like the Kanboard API uses JSON-RPC 2. We have a couple options: (1) add the official kanboard python client as a dependency (might be overkill unless we plan on adding more kanboard functionality) (2) do an ad hoc request with the right format (3) add a generic JSON-RPC library as a dependency (probably not)

dkess commented 5 years ago

Their documentation has examples that use curl, so I assume it won't be too hard for us to make ad-hoc requests with the right format (using the requests library).

cg505 commented 4 years ago

I believe this should have been closed.