This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
#Gets username as string, returns Minecraft offline UUID as string | |
#Translated by Nikdoge from source in PHP https://gist.github.com/games647/2b6a00a8fc21fd3b88375f03c9e2e603 | |
import hashlib | |
import sys | |
def main(): | |
#Getting argument from command line as username to convert | |
#Printing UUID |