MRAB <pyt...@mrabarnett.plus.com> writes:

> Does Workbook support the 'with' statement?
>
> If it does, then that's the best way of doing it.
>
> (Untested)
>
>     with Workbook() as wb_out:
>         for filepath in filepathArr:
>             current_row = []
>
>             with load_workbook(filepath) as wb_in:
>                 for cell in wb_in.active[src_row]:
>                     current_row.append(cell.value)
>
>                 wb_out.active.append(current_row)
>
>         wb_out.save(report_start + datetime.now().strftime('%Y-%m-%d') +
> report_end)

It seems not. I get AttributeError.

-- 
Cecil Westerhof
Senior Software Engineer
LinkedIn: http://www.linkedin.com/in/cecilwesterhof
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to