async def md5(ctx,*,hashlib, arg): try: hash = hashlib.md5(arg) output = hash.hexdigest() await ctx.channel.send(f"encoded: `{output}`") ex