/usr/lib/python3/dist-packages/kanboard-1.0.1.egg-info/PKG-INFO is in python3-kanboard 1.0.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | Metadata-Version: 1.1
Name: kanboard
Version: 1.0.1
Summary: Kanboard API client
Home-page: https://github.com/kanboard/kanboard-api-python
Author: Frédéric Guillot
Author-email: fred@kanboard.net
License: MIT
Description: ==============================
Python API Client for Kanboard
==============================
.. image:: https://travis-ci.org/kanboard/kanboard-api-python.svg?branch=master
:target: https://travis-ci.org/kanboard/kanboard-api-python
Minimalist Kanboard Python client.
- Author: Frédéric Guillot
- License: MIT
Installation
============
.. code-block:: bash
pip install kanboard
This library is compatible with Python 2.7, Python 3.4 and 3.5.
Examples
========
The methods and arguments are the same as the JSON-RPC procedures described in the `official documentation <http://kanboard.net/documentation/api-json-rpc>`_.
Python methods are dynamically mapped to the API procedures. You must use named arguments.
Create a new team project
-------------------------
.. code-block:: python
from kanboard import Kanboard
kb = Kanboard('http://localhost/jsonrpc.php', 'jsonrpc', 'your_api_token')
project_id = kb.create_project(name='My project')
Authenticate as user
--------------------
.. code-block:: python
from kanboard import Kanboard
kb = Kanboard('http://localhost/jsonrpc.php', 'admin', 'admin')
kb.get_my_projects()
Create a new task
-----------------
.. code-block:: python
from kanboard import Kanboard
kb = Kanboard('http://localhost/jsonrpc.php', 'jsonrpc', 'your_api_token')
project_id = kb.create_project(name='My project')
task_id = kb.create_task(project_id=project_id, title='My task title')
See the `official API documentation <https://kanboard.net/documentation/api-json-rpc>`_ for the complete list of methods and arguments.
Keywords: kanboard
api
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
|