This is an unofficial Python3 HypixelAPI wrapper.
You can simply install the package by using:
python3 -m pip install pyhypixel
First of all you have to get an api key by using /api
while on Hypixel network.
Everything starts with the creation of an api instance:
from hypixelapi import hypixelapi
api = hypixelapi.HypixelAPI('YOUR_HYPIXEL_API_KEY')
You can get a player by using:
player = api.get_player('SonoMichele') # also works with uuid
You can get a guild by using one of three methods:
# first method using guild id
guild_by_id = api.get_guild_by_id('52e57a1c0cf2e250d1cd00f8')
# second method using guild name
guild_by_name = api.get_guild_by_name('The Sloths')
# third method using a player instance
guild_by_player = player.get_guild()
A detailed documentation is available here
If you want to contribute you can do it by opening an issue or a pull request.
You can also contact me on telegram @sonomichelequellostrano
All contributors will be listed on this repository.