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 characters
| package main | |
| import ( | |
| "bytes" | |
| "crypto/tls" | |
| "flag" | |
| "fmt" | |
| "io" | |
| "io/ioutil" | |
| "log" |
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 characters
| package mapping | |
| import "reflect" | |
| // based on 'na_values' from: | |
| // https://pandas.pydata.org/pandas-docs/stable/generated/pandas.read_csv.html | |
| var nanMap = map[string]struct{}{ | |
| "": {}, | |
| "#N/A": {}, | |
| "#N/A N/A": {}, |
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 characters
| package main | |
| import ( | |
| "bytes" | |
| "encoding/csv" | |
| "fmt" | |
| "io" | |
| "io/ioutil" | |
| "log" | |
| "os" |
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 characters
| package csvutil_test | |
| import ( | |
| "bytes" | |
| "testing" | |
| "github.com/gocarina/gocsv" | |
| "github.com/jszwec/csvutil" | |
| ) |
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 characters
| package csvutil_test | |
| import ( | |
| "bytes" | |
| "encoding/csv" | |
| "testing" | |
| "github.com/gocarina/gocsv" | |
| "github.com/jszwec/csvutil" | |
| "github.com/yunabe/easycsv" |