Skip to content

Python package for authenticating and communicating with a Minecraft server using the Minecraft RCON protocol

License

Notifications You must be signed in to change notification settings

AbandonTech/siren

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

McRcon

Python package for authenticating and communicating with a Minecraft server using the Minecraft RCON protocol

Sample Usage

import asyncio

from siren import RconClient


async def test_auth() -> None:
    async with RconClient("123.2.3.4", 25575, "AVeryRealPassword") as client:
        print(await client.send("list"))


if __name__ == '__main__':
    loop = asyncio.new_event_loop()
    loop.run_until_complete(test_auth())

About

Python package for authenticating and communicating with a Minecraft server using the Minecraft RCON protocol

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages