def md5(string): m = hashlib.md5() m.update(string) return m.digest()