Skip to content

Interact with your Minecraft server from hosts that use Multicraft using Python.

License

Notifications You must be signed in to change notification settings

legopitstop/multicraft-py

Repository files navigation

multicraft

PyPI Python Downloads Status Issues

Interact with your Minecraft server from hosts that use Multicraft using Python.

Installation

Install the module with pip:

pip3 install multicraft

Update existing installation: pip3 install multicraft --upgrade

Features

  • Includes a handful of common multicraft hosts.
  • Manage users, players, commands, schedules, and databases.
  • Start, stop, or restart your server.
  • Run console commands (give, kill, whitelist, op, etc)
  • Read your servers current cpu and memmory usage.
  • Send a chat message.

See the docs for more information.

Dependencies

Name Description
requests Requests is a simple, yet elegant, HTTP library.

Example

from multicraft import MulticraftAPI

api = MulticraftAPI(
    url = 'https://localhost/api.php',
    user = 'username',
    key = 'apiKey'
)

owner = api.get_user_id(api.user)

owned_servers = api.list_servers_by_owner(owner)
print(owned_servers)

for id in owned_servers.keys():
    server = api.get_server(id)
    print(server)