Skip to main content

An async Minecraft RCON client library with support for fragmented responses.

Project description

aiomcrcon

Python Versions CodeFactor Grade PyPI - Version PyPI - Downloads

An async Minecraft RCON client library with support for fragmented responses.

Installing

pip install py-aio-mcrcon

Example

import asyncio
import aiomcrcon

async def main():
    # As context manager
    async with aiomcrcon.Client("myserver.com", "password") as client:
        response = await client.command("list")

    # Without context manager
    client = aiomcrcon.Client("myserver.com", "password") # port is optional, default is default RCON port
    await client.connect()
    response = await client.command("list")
    await client.close()

asyncio.run(main())

Documentation

Everything is properly type hinted and documented in the source code. Using the IDE of your choice, you should be able to get all the information you need. Otherwise, just take a look at the source code.

Fragmented responses

The Minecraft server implementation has a limit on the maximum response size of about 4096 bytes. If the response exceeds this limit, it will be split into multiple fragments. The client will automatically reassemble these fragments into a single response.
I do currently not know any other similar library that supports this feature.

Information regarding asyncio.gather()

The client does technically support asyncio.gather(), but in practice it will currently cause errors, because of a bug in the Minecraft server implementation. As long as this bug is not fixed, using the client with asyncio.gather() will execute the first command and return its response, but everything else will be ignored and the connection will be closed by the server. This causes all of the remaining or following commands to time out (raise TimeoutError) or wait indefinitely (based on timeout parameter). The client must be closed and connected to be used again.
This is not a bug in this library, but in the Minecraft server implementation!

Contributing

If you want to contribute to this project, feel free to open a pull request or issue.

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

py_aio_mcrcon-1.0.1.tar.gz (18.6 kB view hashes)

Uploaded Source

Built Distribution

py_aio_mcrcon-1.0.1-py3-none-any.whl (17.9 kB view hashes)

Uploaded Python 3

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