Skip to content

Utilities for working with Excel files that require both xlrd and xlwt.

Notifications You must be signed in to change notification settings

pacoqueen/xlutils

 
 

Repository files navigation

xlutils

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

Sample

from xlutils.xlutils import copy
from xlwt import xlwt
from xlrd import xlrd
wb = copy.copy(xlrd.open_workbook("/tmp/Formulario solicitud crédito.xls", formatting_info = True))
s = wb.get_sheet(0)
s
s.cols
s.write(2, 0, "TEST TEST TEST")
wb.save("/tmp/test.xls")

About

Utilities for working with Excel files that require both xlrd and xlwt.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 97.8%
  • Shell 2.2%