No description
|
||
---|---|---|
.forgejo/workflows | ||
.vscode | ||
src/plankapy | ||
.gitignore | ||
LICENSE | ||
pyproject.toml | ||
README.md | ||
renovate.json |
plankapy
A python 3 based API for controlling a self-hosted Planka instance
This is a fork of the original plankapy project by hwelch-fle that primarily focuses on making the project a pip installable package.
Installation
pip install git+https://git.private.coffee/PrivateCoffee/plankapy.git
Usage
from plankapy import Planka, User
planka = Planka('http://localhost:3000', 'username', 'password')
users = User(planka)
for user in users.get():
print(user)
Refer to the original docs for more information.
Rest API Source
Routes
https://github.com/plankanban/planka/blob/master/server/config/routes.js
Models
https://github.com/plankanban/planka/tree/master/server/api/models
Helpers
https://github.com/plankanban/planka/tree/master/server/api/helpers