python - Examples for Formatters in pyexcel -
i working on project, replacing xlwt pyexcel. xlwt, there bunch of ways style cells, columns etc. in pyexcel, there bunch of references of formatters like:
sheet.column.format(col_index, formatter=some_object)
but can't find reference of these objects are. also, there references datatypes, not sure valid values said data types.
any can provide appreciated!
for excel files, default, numbers read float, can converted them string following:
sheet.column.format(0, str)
as formatter = some_object
, think can use datatype keywords provided python float,str...
. hoped can you.
Comments
Post a Comment