import hashlib def md5(args): hash = hashlib.md5(bytes('aaadf',encoding='utf-8')) hash.update(bytes(args,encoding='utf-8')) return hash.hexdigest()