pyexcel.Book.xls

Book.xls

Get/Set data in/from xls format

You could obtain content in xls format by dot notation:

Book.xls

And you could as well set content by dot notation:

Book.xls = the_io_stream_in_xls_format

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

Book.get_xls(**keywords)
Book.set_xls(the_io_stream_in_xls_format, **keywords)