From 266c2908a829bb44bbe37b87c7802467e66e51a5 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Sun, 20 Dec 2020 02:06:56 +0100 Subject: [PATCH] Fixed usage documentation. --- README.md | 13 ++++--------- docs/source/usage.rst | 13 ++++--------- 2 files changed, 8 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index d2b4177..625a5cf 100644 --- a/README.md +++ b/README.md @@ -21,15 +21,10 @@ commands on a game server and receive the respective results. ```python from rcon import Client -with Client('127.0.0.1', 5000) as client: - client.login('mysecretpassword') # Perform initial login. - seed = client.seed # Get the server's seed. - players = client.players # Get the server's players info. - mansion = client.locate('Mansion') # Get the next mansion's location. - -print(seed) -print(players) -print(mansion) +with Client('127.0.0.1', 5000, passwd='mysecretpassword') as client: + response = client.run('some_command', 'with', 'some', 'arguments') + +print(response) ``` ## License diff --git a/docs/source/usage.rst b/docs/source/usage.rst index a5b1bce..e4a62c9 100644 --- a/docs/source/usage.rst +++ b/docs/source/usage.rst @@ -6,15 +6,10 @@ For usage in code, there is the class :py:class:`rcon.Client`. from rcon import Client - with Client('127.0.0.1', 5000) as client: - client.login('mysecretpassword') # Perform initial login. - seed = client.seed # Get the server's seed. - players = client.players # Get the server's players info. - mansion = client.locate('Mansion') # Get the next mansion's location. + with Client('127.0.0.1', 5000, passwd='mysecretpassword') as client: + response = client.run('some_command', 'with', 'some', 'arguments') - print(seed) - print(players) - print(mansion) + print(response) Configuration ------------- @@ -27,7 +22,7 @@ The configuration file format is: host = port = passwd = - prompt = + prompt = The :code:`passwd` and :code:`prompt` entries are optional.