samples
turbot/flowpipe-samples/csv-to-json
OverviewPipelines
0
Triggers
0
Variables
GitHub

Convert Local CSV File to JSON

Read a CSV file and transform it into JSON format.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run csv_to_json.pipeline.local_csv_file_to_json

Use this pipeline

To call this pipeline from your pipeline, use a step:

step "pipeline" "step_name" {
pipeline = csv_to_json.pipeline.local_csv_file_to_json
}

Params

NameTypeRequiredDescriptionDefault
local_csv_file_pathstringYesPath to the CSV file../users.csv

Outputs

NameDescription
csv_contentsContents of the local CSV file.
csv_decodedDecoded data from the CSV file.
csv_to_jsonCSV file converted to JSON.