What is the easiest way to generate a random hash (MD5) in Python?
import uuid from md5 import md5 print md5(str(uuid.uuid4())).hexdigest()