pyexcel.Sheet.array

Sheet.array

Get/Set data in/from array format

You could obtain content in array format by dot notation:

Sheet.array

And you could as well set content by dot notation:

Sheet.array = the_io_stream_in_array_format

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

Sheet.get_array(**keywords)
Sheet.set_array(the_io_stream_in_array_format, **keywords)