Archivos de muestra CSV
Comma-Separated Values (.csv) files encode tabular data in a simple text-based format where each row is a record and commas (or other delimiters) separate fields. Ubiquitous in spreadsheets, databases, and ETL pipelines, CSV’s human-readable structure can hide edge cases like embedded delimiters, quoted fields, or multiline entries. Use sample .csv files to exercise parser resilience, header recognition, alternative delimiters (semicolon, tab), and streaming import in low-memory environments.
CSV Sample Files — Download
Starter file
DescargarQuoted-Field CSV
Descargar fixtureMultiline-Field CSV
Descargar fixtureInconsistent-Columns CSV
Descargar| Nombre de archivo | Tamano | MIME | Descargar |
|---|---|---|---|
| 139 B | text/csv |
Descargar
|
|
| 229 B | text/csv |
Descargar
|
|
| 129 B | text/csv |
Descargar
|
|
| 118 B | text/csv |
Descargar
|
|
| 125 B | text/csv |
Descargar
|
|
| 106 B | text/csv |
Descargar
|
|
| 119 B | text/csv |
Descargar
|
|
| 100.0 MB | text/csv |
Descargar
|
|
| 100.0 MB | text/csv |
Descargar
|
|
| 10.0 MB | text/csv |
Descargar
|
|
| 1.0 MB | text/csv |
Descargar
|
|
| 200.0 KB | text/csv |
Descargar
|
|
| 250.0 MB | text/csv |
Descargar
|
|
| 25.0 MB | text/csv |
Descargar
|
|
| 2.0 MB | text/csv |
Descargar
|
|
| 500.0 KB | text/csv |
Descargar
|
|
| 50.0 KB | text/csv |
Descargar
|
|
| 50.0 MB | text/csv |
Descargar
|
|
| 5.0 MB | text/csv |
Descargar
|
|
| 121 B | text/csv |
Descargar
|
|
| 86 B | text/csv |
Descargar
|
|
| 1.6 KB | text/csv |
Descargar
|
CSV Testing Workflows
Upload Testing
Abrir formato CSVParser Regression
Abrir formato CSVQA Automation
Abrir formato CSVCSV Format Comparisons
CSV vs JSON
Compare tabular vs structured dataSQL vs CSV
Compare loader vs seed replayCSV File FAQ
Verificacion de checksum
Usa checksums para confirmar la integridad del archivo despues de descargarlo.
shasum -a 256 your_file_name_here
# Compare output with SHA256 values listed above.
Where is the machine-readable manifest?
Use the manifest when you need stable names, SHA256 values, and URLs for automation.
Metodologia de validacion
- Test parser behavior on varied sizes and edge-case encodings.
- Validate text extraction and metadata integrity.
- Confirm conversion and round-trip fidelity where applicable.
Usa la matriz curada de CSV para elegir fixtures limpios, limite y rotos para este formato.
Abrir matriz