The xlsxwriter.workbook.Workbook constructor defines an 'options' kwarg that accepts a dict of workbook settings, e.g.:
options = {'constant_memory': True, 'strings_to_numbers': True}
workbook = xlsxwriter.Workbook(filename, options=options)
This is a request to add pass-through support for the 'options' kwarg to XLSXWriter.open():
options = {'constant_memory': True, 'strings_to_numbers': True}
writer = pyexcel_xlsxw.xlsx.XLSXWriter()
writer.open(filename, options=options)
The xlsxwriter.workbook.Workbook constructor defines an 'options' kwarg that accepts a dict of workbook settings, e.g.:
This is a request to add pass-through support for the 'options' kwarg to XLSXWriter.open():