pyexcel.Book.xlsx

Book.xlsx

Get/Set data in/from xlsx format

You could obtain content in xlsx format by dot notation:

Book.xlsx

And you could as well set content by dot notation:

Book.xlsx = the_io_stream_in_xlsx_format

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

Book.get_xlsx(**keywords)
Book.set_xlsx(the_io_stream_in_xlsx_format, **keywords)