pyexcel.Sheet.xls

Sheet.xls

Get/Set data in/from xls format

You could obtain content in xls format by dot notation:

Sheet.xls

And you could as well set content by dot notation:

Sheet.xls = the_io_stream_in_xls_format

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

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