def loads(x): """deserialize python object(s)""" try: return dill.loads(x) except Exception as e: logger.exception(e) raise