README ¶ CSV Reader Simple Golang interface to extract csv data. Usage Get the library: $ go get -v github.com/Illuminasy/csvreader package somepackge import "github.com/Illuminasy/csvreader" func someFunction() { lines, err := csvreader.ExtractContents("some_file_path.csv") } Expand ▾ Collapse ▴ Documentation ¶ Overview ¶ Package csvreader ... Maintainer Illuminasy Packege to extract csv contents. Index ¶ func ExtractContents(fileName string) ([][]string, error) type CSVRow type CSVRows Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ func ExtractContents ¶ func ExtractContents(fileName string) ([][]string, error) ExtractContents extracts array of lines from csv file Types ¶ type CSVRow ¶ type CSVRow []string CSVRow column values for a single line in csv type CSVRows ¶ type CSVRows []CSVRow CSVRows lines from csv file Source Files ¶ View all Source files csvreader.go Click to show internal directories. Click to hide internal directories.