Hi All,
I'm pleased to announce the release of xlutils 1.7.1:
http://pypi.python.org/pypi/xlutils/1.7.1
This release has a couple of small changes:
- Add support for time cells in when using View classes.
- Add support for ``.xlsx`` files when using View classes, at the
expense of formattin
Hi All,
I'm pleased to announce the release of xlutils 1.7.0:
http://pypi.python.org/pypi/xlutils/1.7.0
This release features a handy new view module that lets you do things like:
>>> def print_data(rows):
... for row in rows:
... for value in row:
... print value,
...