pyexcel.Sheet.records

Sheet.records

Get/Set data in/from records format

You could obtain content in records format by dot notation:

Sheet.records

And you could as well set content by dot notation:

Sheet.records = the_io_stream_in_records_format

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

Sheet.get_records(**keywords)
Sheet.set_records(the_io_stream_in_records_format, **keywords)