Skip to content

MrReacher/async-mcrcon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

async-mcrcon

Description

Implementation of Minecraft's RCON protocol in Python.

  • async_mcrcon.py is a module you can import from your own python code to send commands to a minecraft server and read responses.
  • async_mcrcon.py is the async version of mcrcon.py

Usage

from async_mcrcon import MinecraftClient

async with MinecraftClient('1.3.3.7', 25575, 'password') as mc:
  output = await mc.send('list')
  print(output)

Requirements

Python3.5 or higher is required.