Skip to content

legopitstop/geysermc

Repository files navigation

geysermc

PyPI Python Downloads Status Code style: black Issues

The unofficial Python wrapper for geysermc.org

Installation

Install the module with pip:

pip3 install geysermc

Update existing installation: pip3 install geysermc --upgrade

Requirements

Name Description
Pillow Python Imaging Library (Fork)
requests Requests is a simple, yet elegant, HTTP library.

Features

  • Get Microsoft xuid or gamertag.
  • Download any geyser project.
  • Get bedrock skin.

Examples

Show bedrock player skin

import geysermc

xuid = geysermc.get_xuid('legopitstop')
skin = geysermc.get_skin(xuid)
image = geysermc.get_raw_texture(skin.texture_id)
image.show()

Download Geyser plugin

import geysermc

with open('geyser-spigot.jar', 'wb') as fd:
    data = geysermc.get_download('geyser', 'spigot')
    fd.write(data)