Skip to content

Instantly share code, notes, and snippets.

@bjjay
Created July 23, 2012 14:09
Show Gist options
  • Save bjjay/3163801 to your computer and use it in GitHub Desktop.
Save bjjay/3163801 to your computer and use it in GitHub Desktop.
get PC MAC address
import uuid
mac=uuid.UUID(int = uuid.getnode()).hex[-12:]
mac=":".join([mac[e:e+2] for e in range(0,11,2)])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment