You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.rst
+28-20Lines changed: 28 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,25 +18,28 @@ Installation
18
18
pip install kanboard
19
19
20
20
21
-
This library is compatible with Python 3.5, 3.6, and 3.7.
21
+
This library is compatible with Python >= 3.5.
22
+
23
+
Note: **Support for Python 2.7 has been dropped from version 1.1.0.**
22
24
23
25
Examples
24
26
========
25
27
26
-
Methods and arguments are the same as the JSON-RPC procedures described in the `official documentation <https://docs.kanboard.org/en/latest/api/index.html>`_.
28
+
Methods and arguments are the same as the JSON-RPC procedures described in the
The client also exposes async/await style method calls. Similarly to the synchronous calls (see above), the method names are mapped to the API methods.
68
-
To invoke an asynchronous call, the method name must be appended with `_async`: for example, a synchronous call to `create_project` can be made asynchronous by calling `create_project_async` instead.
70
+
The client also exposes async/await style method calls. Similarly to the synchronous calls (see above),
71
+
the method names are mapped to the API methods.
72
+
73
+
To invoke an asynchronous call, the method name must be appended with ``_async``. For example, a synchronous call
74
+
to ``create_project`` can be made asynchronous by calling ``create_project_async`` instead.
0 commit comments