Browse Source

Fixed usage documentation.

pull/2/head
Richard Neumann 4 years ago
parent
commit
266c2908a8
  1. 13
      README.md
  2. 13
      docs/source/usage.rst

13
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

13
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 = <hostname_or_ip_address>
port = <port>
passwd = <password>
prompt = <console_prompr>
prompt = <console_prompt>
The :code:`passwd` and :code:`prompt` entries are optional.

Loading…
Cancel
Save