pyexcel.Sheet.csv

Sheet.csv

Get/Set data in/from csv format

You could obtain content in csv format by dot notation:

Sheet.csv

And you could as well set content by dot notation:

Sheet.csv = the_io_stream_in_csv_format

if you need to pass on more parameters, you could use:

Sheet.get_csv(**keywords)
Sheet.set_csv(the_io_stream_in_csv_format, **keywords)