Why the CSV standard library is broken (Part II) - The Wonders of CSV Formats
Hello, I’ve written a follow-up on why the CSV standard library is broken, broken, broken (and how to fix it).
Let’s have a look at the wonders of CSV formats / dialects such as MYSQL CSV export or PostgreSQL CSV or TEXT export. In a nutshell - the standard CSV parser is a (simplistic) kludge
using string.split() and, thus, needs to get replaced with a “real” parser that can handle more “edge” cases and formats. Questions and comments welcome. Cheers. Prost. PS: If want to see other (more) CSV formats / dialects pre-configured and supported “out-of-the-box” in the new csv reader, please tell.
Post a comment