Skip to content

be6te/pypimc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bot-icon-1
version stars forks tweet

Install

$ pip install pypimc

Examples

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']

Hypixel stats examples

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]

A list to facilitate the use and to make it more understandable

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

About

pypimc is a library to get minecraft account information and get hypixel stats information.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages