pyexcel.Book.xlsm

Book.xlsm

Get/Set data in/from xlsm format

You could obtain content in xlsm format by dot notation:

Book.xlsm

And you could as well set content by dot notation:

Book.xlsm = the_io_stream_in_xlsm_format

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

Book.get_xlsm(**keywords)
Book.set_xlsm(the_io_stream_in_xlsm_format, **keywords)