Metadata-Version: 2.1
Name: py3rcon
Version: 1.0
Summary: API wrapper for RCON.
Home-page: https://github.com/Jestemkioskiem/py3rcon
Author: Wiktor Metryka
Author-email: jestemkiosk@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# py3rcon
RCON API for Python3

Built and tested for Quake3, but will work with most RCON systems.

## Installation:

`$ pip install py3rcon`

## Examples:

Send RCON commands without waiting for a response:
```python
from py3rcon import RCON

rcon = RCON("127.0.0.1", "secret_password") 
rcon.send_command("say Hello, world!", response=False)
```

Send RCON commands and get their response:
```python
from py3rcon import RCON

rcon = RCON("127.0.0.1", "secret_password", port=27960) #port is optional
status = rcon.send_command("status") 
print(status)
```


