package
1.0.5
Repository: https://github.com/los-crackitos/excelante.git
Documentation: pkg.go.dev

# Functions

ReadExcelFileByColumn read a given excel file column by column and return every data into JSON format Max excel size is 60mb @Summary Read Excel file column by column @Description transform given Excel file to JSON @Tags Readers @Accept mpfd @Produce json @Param file body string true "The Excel file to convert" @Param options body models.ReaderOption false "Reader optional options" @Success 200 {object} services.Output @Failure 400 {string} string @Router /read/columns [post].
ReadExcelFileByLine read a given excel file line by line and return every data into JSON format Max excel size is 60mb @Summary Read Excel file line by line @Description transform given Excel file to JSON @Tags Readers @Accept mpfd @Produce json @Param file body string true "The Excel file to convert" @Param options body models.ReaderOption false "Reader optional options" @Success 200 {object} services.Output @Failure 400 {string} string @Router /read/lines [post].
WriteExcelFile write an Excel file with the JSON input passed through HTTP POST method @Summary Write Excel file @Description transform JSON to Excel file @Tags Writers @Accept json @Param file body models.File true "Items you want to convert into an Excel file" @Produce octet-stream @Success 201 {string} string @Failure 422 {string} string @Router /write [post].