Open
Description
Description
As of #16126, I can see that the way CsvReader
is constructed has changed, offloading the options to CsvReadOptions
. However, it's now unclear how one might construct a CsvReader
, with options, reading from a bytestream rather than a file path. As the new method of constructing the reader only has the implementation with_path
, I'm wondering could a similar implementation be implemented such as with_stream
or with_reader
or similar?
Correct me if there is already an elegant way to do this.