What is the easiest way to generate a random hash (MD5) in Python?
import os, hashlib hashlib.md5(os.urandom(32)).hexdigest()