CSV === A :doc:`Callable ` for generating a Comma-Separated Values (CSV) file. Definition ---------- .. py:class:: controller.callable.outputter.CSV(self) :callable name: ``csv`` :callable type: :doc:`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 --------------------- .. code-block:: javascript { "name": "foo", "callable": "csv", "params": {} }