pyexcel.Sheet.dict

Sheet.dict

Get/Set data in/from dict format

You could obtain content in dict format by dot notation:

Sheet.dict

And you could as well set content by dot notation:

Sheet.dict = the_io_stream_in_dict_format

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

Sheet.get_dict(**keywords)
Sheet.set_dict(the_io_stream_in_dict_format, **keywords)