plankapy/README.md

45 lines
1,020 B
Markdown
Raw Normal View History

2023-03-24 01:25:36 +00:00
# plankapy
2023-03-24 01:25:36 +00:00
A python 3 based API for controlling a self-hosted Planka instance
2023-05-01 18:46:26 +00:00
This is a fork of the original [plankapy](https://github.com/hwelch-fle/plankapy)
project by [hwelch-fle](https://github.com/hwelch-fle) that primarily focuses on
making the project a pip installable package.
[Original Docs](https://hwelch-fle.github.io/plankapy/plankapy.html)
## Installation
```bash
pip install git+https://git.private.coffee/PrivateCoffee/plankapy.git
```
## Usage
```python
from plankapy import Planka, User
planka = Planka('http://localhost:3000', 'username', 'password')
users = User(planka)
2023-05-24 20:03:19 +00:00
for user in users.get():
print(user)
```
Refer to the [original docs](https://hwelch-fle.github.io/plankapy/plankapy.html)
for more information.
## Rest API Source
### Routes
2023-05-24 20:04:09 +00:00
2023-05-24 20:03:19 +00:00
https://github.com/plankanban/planka/blob/master/server/config/routes.js
2023-05-24 20:04:09 +00:00
### Models
2023-05-24 20:04:09 +00:00
https://github.com/plankanban/planka/tree/master/server/api/models
2023-05-24 20:05:02 +00:00
### Helpers
2023-05-24 20:05:02 +00:00
https://github.com/plankanban/planka/tree/master/server/api/helpers