Skip to content

Instantly share code, notes, and snippets.

@ammarx
Created May 24, 2015 22:59
Show Gist options
  • Save ammarx/721cdb40ca86b905c2df to your computer and use it in GitHub Desktop.
Save ammarx/721cdb40ca86b905c2df to your computer and use it in GitHub Desktop.
Premium Check Minecraft
import json
import urllib2
print ("Enter the username: ")
prompt = '> '
username = raw_input(prompt)
try:
data = json.load(urllib2.urlopen("https://api.mojang.com/users/profiles/minecraft/" + username))
print data['id']
print "User is premium."
except ValueError:
print "Not premium."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment