$ pip install pypimc
from pypimc import Minecraft # Minecraft account information
info = Minecraft()
print(info.minecraft(username='wDirty')) # Display minecraft account information on screen
Output:
['wDirty', 'buzzdlux', 'None', 'https://mc-heads.net/head/wDirty', 'https://mc-heads.net/player/wDirty']
from pypimc import Hypixel # Hypixel Information
info = Hypixel()
username = 'wDirty'
print(info.hypixelstats(username=username)) # Display hypixel stats in list
print(info.hypixelstats(username=username)[0]) # Shows if the user is connected to hypixel True/False
print(info.hypixelstats(username=username)[1]) # Show user rank in hypixel
print(info.hypixelstats(username=username)[2]) # Shows the total experience on the server
print(info.hypixelstats(username=username)[3]) # Shows hypixel level
print(info.hypixelstats(username=username)[4]) # Shows total coins in hypixel
Output:
['False', 'VIP', '832905', '23.54', 330716]
from pypimc import Minecraft
info = Minecraft()
username = 'wDirty'
print(info.minecraft(username=username)) # Show minecraft account information in list
print(info.minecraft(username=username)[0]) # Show minecraft username
print(info.minecraft(username=username)[1]) # Show first minecraft username
print(info.minecraft(username=username)[2]) # Slim skin
print(info.minecraft(username=username)[3]) # Minecraft head skin Output example: https://mc-heads.net/head/wDirty
print(info.minecraft(username=username)[4]) # Full minecraft skin
- This is just a small test and is not finished and may have bugs.
Please consider leaving a ⭐ in the top right on the repo :D