Skip to content
Permalink
master
Go to file
@TheBlusky
Latest commit 5113133 on Oct 5, 2017 History
1 contributor
9 lines (6 sloc) 201 Bytes
from wekanapi import WekanApi
api_url = "https://..."
api = WekanApi(api_url, {"username": "...", "password": "..."}, )
boards = api.get_user_boards()
for board in boards:
print(board.pprint())