Skip to content
GlossaryConceptUpdated May 2026

CSV

noun · also: json, spreadsheet

What is csv?

CSV (Comma-Separated Values) is the lowest-common-denominator data file format — spreadsheets exported as text.

Definition

Full definition of csv

A CSV file looks like name,email,signup_date\\nAlice,alice@example.com,2026-01-15. Excel, Google Sheets, and every database can import/export CSVs. Tiny Command has built-in actions to read, write, and transform CSVs — useful for bulk imports, exports, or moving data between systems that don't speak each other's API.

In practice

CSV examples

CSV row
"Alice Smith", "alice@example.com", "2026-01-15"
Used by

Apps that exemplify csv

See csv in action across real integrations.

FAQ

Common questions about csv

How are commas handled inside fields?
Wrap fields containing commas in double quotes: "Smith, Alice". Most parsers handle this automatically.
What about big CSVs?
Tiny Command streams large CSVs row-by-row instead of loading the whole file in memory. Handles millions of rows.