-
-
Save mhshohel/1a3d8db054c29aafae36eb0b099d4495 to your computer and use it in GitHub Desktop.
Revisions
-
drernie created this gist
Mar 10, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,25 @@ // CSVToMap takes a reader and returns an array of dictionaries, using the header row as the keys func CSVToMap(reader io.Reader) []map[string]string { r := csv.NewReader(reader) rows := []map[string]string{} var header []string for { record, err := r.Read() if err == io.EOF { break } if err != nil { log.Fatal(err) } if header == nil { header = record } else { dict := map[string]string{} for i := range header { dict[header[i]] = record[i] } rows = append(rows, dict) } } return rows }