xlutils 1.7.0 released!

C

Chris Withers

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:
.... for row in rows:
.... for value in row:
.... print value,
.... print
from xlutils.view import View, Row, Col
print_data(view['Sheet1'][:2, :1])
R0C0
R1C0
print_data(view['Sheet1'][Row(1):Row(2), Col('A'):Col('B')])
R0C0 R0C1
R1C0 R1C1

There's also some help for values that are dates or times:
for row in View(join(test_files,'date.xls'))[0]:
.... for value in row:
.... print repr(value)
datetime.datetime(2012, 4, 13, 0, 0)

Please have a play and let me know what you think.

Full docs here:

http://pythonhosted.org/xlutils/

Details of all things Python and Excel related can be found here:

http://www.python-excel.org/

cheers,

Chris
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

xlutils 1.7.0 released! 0
xlutils 1.6.0 released! 0
xlutils 1.5.0 released! 0
xlutils 1.3.2 released! 0
xlutils 1.4.1 released! 0
xlutils 1.1.0 released! 0
xlutils 1.0.0 released! 0
YAMI4 1.7.0 released 0

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,012
Latest member
RoxanneDzm

Latest Threads

Top