csv
The csv
codec provides marshalling support for the Comma Separated Volume format.
The codec expects a single line of RFC-4180 CSV format data.
If there is more than a single line in the message, the lines after the first will be discarded unless
a lines
preprocessor is used during deserialization.
Example
The following CSV line
"some "" field",1234567,other_text,"2020-01-01 00:00:00"
Will get transalted the following equivalent tremor value:
[
"some \" field",
"1234567",
"other_text",
"2020-01-01 00:00:00"
]