Skip to content

Instantly share code, notes, and snippets.

@gdugas
Created June 4, 2013 09:42
Show Gist options
  • Save gdugas/5704815 to your computer and use it in GitHub Desktop.
Save gdugas/5704815 to your computer and use it in GitHub Desktop.
Return ip in hex format: 192.168.1.1 => C0A80101
def gethostip(ip):
return "".join([("%0.2x" % int(i)).upper() for i in ip.split('.')])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment