rHLDS

This library allows you to use Half-Life RCON protocol


Keywords
HLDS, RCON, Half-Life, hl, Counter-Strike, cstrike, cs
License
MIT
Install
pip install rHLDS==0.1.3

Documentation

rHLDS

This library allows you to use Half-Life RCON protocol.

REQUIREMENTS

Python 3+

INSTALLATION

$ sudo pip3 install rHLDS

Or from git:

$ git clone https://github.com/chmod1/rHLDS.git
$ cd rHLDS
$ sudo python3 setup.py install

USING

from rHLDS import Console

# Default port 27015
srv = Console(host='127.0.0.1', password='somePass')
# If you need another port
srv = Console(host='127.0.0.1', port=27016, password='somePass')

# Connect to server
srv.connect()

# Execute any command
print(srv.execute("status"))

# Сlose connection
srv.disconnect()

LICENSE

MIT License