CSV

A Callable for generating a Comma-Separated Values (CSV) file.

Definition

class controller.callable.outputter.CSV(self)
Callable name:

csv

Callable type:

Outputter

Parameters

None.

Output

A DataFrame is returned where it contains two columns matching the output conventions of an Outputter.

  • The data column contains the generated CSV file in text format.

  • The type column indicates the data type to be text/csv.

Example configuration

{
    "name": "foo",
    "callable": "csv",
    "params": {}
}