[docs]defbintoparquet(file_in,file_out,file_type,**kwargs):"""Convert bin file to parquet file based on file type Args: file_in (str | os.PathLike): Input file path file_out (str | os.PathLike): Output file path file_type (str): File type str from SUPPORTED_BINTOPARQUET """withExitStack()asstack:file_out=resolve_file(file_out,"wb",stack)default_toparquet(stack,file_in,file_out,file_type,**kwargs)