An async API wrapper around api.iapetus.me
Get started || Documentation
pip install -U minecraftstatus
pip install -U git+https://github.com/Infernum1/minecraftstatus
(make sure you have git installed)
For examples, checkout the examples directory
import discord
import minecraftstatus
client = minecraftstatus.MCStatus()
bot = discord.ext.commands.Bot()
@bot.command()
async def achievement(achievement: str):
image = await client.achievement(achievement)
file = discord.File(image, "achievement.png")
await ctx.send(file=file)