You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Richard Neumann 58b25acfd8 Removed travis integration. 4 years ago
docs Removed remainders of mcipc. 4 years ago
files init 4 years ago
rcon init 4 years ago
.gitignore init 4 years ago
.readthedocs.yml init 4 years ago
LICENSE.txt init 4 years ago
Makefile init 4 years ago
README.md Removed remainders of mcipc. 4 years ago
setup.py init 4 years ago

README.md

rcon

An RCON protocol client implementation.

Requirements

Build Status
rcon requires Python 3.8 or higher.

Documentation

Documentation Status
Documentation is available on readthedocs.

Installations

Install rcon from the AUR or via:

pip install rcon

Quick start

The RCON protocol is used to remotely control a game server, i.e. execute commands on a game server and receive the respective results.

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)

License

Copyright (C) 2018-2020 Richard Neumann

rcon is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

rcon is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with rcon. If not, see http://www.gnu.org/licenses/.