An asynchronous Python wrapper over the BattlEye RCON protocol.
- Easy to use event-based interface
- Automatic network loss recovery
- Included extension for using Arma-related commands
import asyncio
import berconpy
client = berconpy.AsyncRCONClient()
IP = "XXX.XXX.XXX.XXX"
PORT = 9999
PASSWORD = "ASCII_PASSWORD"
@client.dispatch.on_login
async def on_login():
print("We have logged in!")
async def main():
async with client.connect(IP, PORT, PASSWORD):
players = await client.send_command("players")
print(players)
asyncio.run(main())
See the documentation for more details.
(Python 3.10 or higher is required)
This package can be installed from PyPi using the following command:
# Linux/macOS
python3 -m pip install berconpy
# Windows
py -m pip install berconpy
If you want to install the development version instead, and you have git installed:
pip install git+https://github.com/thegamecracks/berconpy
This project uses the MIT License.