Versions in this module Expand all Collapse all v1 v1.0.1 Jul 26, 2026 v1.0.0 Jul 26, 2026 Changes in this version + func IsURL(s string) bool + func Register(f Format, r Reader) + func SupportedFormats() []string + type Format string + const FormatCSV + const FormatDSV + const FormatExcel + const FormatFWF + const FormatHTML + const FormatJSON + const FormatJSONL + const FormatLogfmt + const FormatMarkdown + const FormatParquet + const FormatSQLite + const FormatTSV + func Detect(path string) Format + type InferMode string + const InferFast + const InferNo + const InferSafe + type NamedFrame struct + Frame *data.Frame + Name string + type Options struct + FlexibleWidth bool + Format Format + IgnoreErrors bool + InferSchema InferMode + InferTypes []string + Key string + NoHeader bool + Quote rune + Separator rune + SeparatorLength int + TruncateRagged bool + Widths []int + func DefaultOptions() Options + type Reader interface + Read func(src *Source, opt Options) ([]NamedFrame, error) + func For(f Format) (Reader, error) + type Source struct + LocalPath string + Path string + Stdin bool + URL bool + func FromFile(path string) (*Source, error) + func FromStdin() (*Source, error) + func FromURL(rawurl string) (*Source, error) + func (s *Source) Bytes() ([]byte, error) + func (s *Source) Cleanup() + func (s *Source) Name() string + func (s *Source) Open() (io.ReadCloser, error)