in reply to The future of Text::CSV_XS - TODO
And again, a lot of water has flown through <your favorite river>, so some highlights that might affect the end-users...
Personally I see myself going to use the stacked encoding quite a bit in the future:
# Read GZipped CSV use PerlIO::gzip; my $aoa = csv (in => "test.csv.gz", encoding => ":gzip"); # Write GZipped CSV use PerlIO::gzip; csv ( in => \@csv, out => "test.csv.gz", encoding => ":via(gzip):encoding(utf-8)", );
|
---|