No description
Find a file
Kumi 89c2ea8cf3
Some checks failed
website / build (push) Failing after 41s
Merge pull request 'chore(deps): update node.js to v22' (#4) from renovate/node-22.x into main
Reviewed-on: #4
2025-03-30 16:50:10 +00:00
.forgejo/workflows Merge branch 'main' into renovate/node-22.x 2025-03-30 16:50:01 +00:00
.vscode Rebuild project structure and add AGPL license 2023-03-26 23:31:20 -04:00
src/plankapy feat: optimize pdoc workflow and deps installation 2024-04-25 08:58:31 +02:00
.gitignore feat: optimize pdoc workflow and deps installation 2024-04-25 08:58:31 +02:00
LICENSE Rebuild project structure and add AGPL license 2023-03-26 23:31:20 -04:00
pyproject.toml feat(plankapy): add installation and usage guidelines 2024-04-26 12:04:41 +02:00
README.md feat(plankapy): add installation and usage guidelines 2024-04-26 12:04:41 +02:00
renovate.json Add renovate.json 2025-03-06 07:28:53 +00:00

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.

Original Docs

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