Skip to main content

Python3 wrapper for RCON communication.

Project description

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:

from py3rcon import RCON

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

Send RCON commands and get their response:

from py3rcon import RCON

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

py3rcon-0.1.5.tar.gz (1.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page