Parse CSV data into records
Reads a raw CSV/TXT file into a structured dataset — rows, named columns, and inferred types. Streams the file so multi-gigabyte CSVs parse without filling memory.
Input example
name,age
Alice,34
Bob,28Output example
dataset (2 rows) — columns: name (text), age (number)| Field | Description |
|---|---|
| Source filerequired | Which variable to use as the file to parse. |
| Has header | When on, the first row is used as the column names. |
| Delimiter | Column separator (e.g. "," or ";"). Leave blank to auto-detect. |
| Output variable namerequired | Name this node's result so downstream nodes can select it. Auto-suggested; edit freely. |