pyexcel.Book.csv

Book.csv

Get/Set data in/from csv format

You could obtain content in csv format by dot notation:

Book.csv

And you could as well set content by dot notation:

Book.csv = the_io_stream_in_csv_format

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

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