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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
Metadata-Version: 1.1
Name: kanboard_cli
Version: 0.0.2
Summary: Kanboard Command Line Client
Home-page: https://github.com/kanboard/kanboard-cli
Author: Frédéric Guillot
Author-email: fred@kanboard.net
License: MIT
Description: ============================
Kanboard Command Line Client
============================
.. image:: https://travis-ci.org/kanboard/kanboard-cli.svg?branch=master
:target: https://travis-ci.org/kanboard/kanboard-cli
Kanboard command line client.
- Author: Frédéric Guillot
- License: MIT
Installation
============
.. code-block:: bash
pip install kanboard_cli
This application is compatible with Python 2.7, Python 3.4 and 3.5.
Configuration
=============
You can define connection parameters as environment variables:
.. code-block:: bash
export KANBOARD_URL=http://localhost/jsonrpc.php
export KANBOARD_USERNAME=admin
export KANBOARD_PASSWORD=admin
Or as command line arguments:
.. code-block:: bash
kanboard --url http://localhost/jsonrpc.php --username admin --password admin
Examples
========
Display application version:
.. code-block:: bash
> kanboard app version
1.0.35
Display project information:
.. code-block:: bash
> kanboard project show 1
+-------------+--------------------------------------------------------------------------------+
| Field | Value |
+-------------+--------------------------------------------------------------------------------+
| ID | 1 |
| Name | Demo Project |
| Description | None |
| Board URL | http://localhost/?controller=BoardViewController&action=show&project_id=1 |
+-------------+--------------------------------------------------------------------------------+
Display projects list:
.. code-block:: bash
> kanboard project list
+----+------+--------------------------+--------+---------+--------+
| ID | Name | Description | Status | Private | Public |
+----+------+--------------------------+--------+---------+--------+
| 7 | Demo | My _project_ is awesome. | Active | False | True |
| 8 | test | | Active | False | False |
+----+------+--------------------------+--------+---------+--------+
Keywords: kanboard
api
cli
Platform: UNKNOWN
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
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
|