From e27fafb38b341f66abe81c71331f9a631d9dbade Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Mon, 11 Jan 2021 23:14:42 +0100 Subject: [PATCH] Added documentation on async support. --- README.md | 11 +++++++++++ docs/source/usage.rst | 12 ++++++++++++ 2 files changed, 23 insertions(+) diff --git a/README.md b/README.md index 75de426..0ba5398 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,17 @@ with Client('127.0.0.1', 5000, passwd='mysecretpassword') as client: print(response) ``` +## Async support +If you prefer to use `RCON` in an asynchronous environment, you can use `rcon()`. + +```python +from rcon import rcon + +response = await rcon('some_command', 'with', 'some', 'arguments', + host='127.0.0.1', port=5000, passwd='mysecretpassword') +print(response) +``` + ## License Copyright (C) 2018-2020 Richard Neumann diff --git a/docs/source/usage.rst b/docs/source/usage.rst index 8bdf144..61b3167 100644 --- a/docs/source/usage.rst +++ b/docs/source/usage.rst @@ -11,6 +11,18 @@ For usage in code, there is the class :py:class:`rcon.Client`. print(response) +Async support +------------- +If you want to use RCOn in an asynchronous environment, use :py:function:`rcon.rcon`. + +.. code-block:: python + + from rcon import rcon + + response = await rcon('some_command', 'with', 'some', 'arguments', + host='127.0.0.1', port=5000, passwd='mysecretpassword') + print(response) + Configuration ------------- `rconclt` servers can be configured in :file:`/etc/rcon.conf`.