def get_clib(bytesobj): """ get_clib(bytesobj) Return the name of the compression library for Blosc `bytesobj` buffer. Parameters ---------- bytesobj : str / bytes The compressed buffer. Returns ------- out : str The name of the compression library. """ _check_bytesobj(bytesobj) return _ext.get_clib(bytesobj)