06/08/2014, 12:19
|
| | Fecha de Ingreso: julio-2011 Ubicación: Peru
Mensajes: 92
Antigüedad: 13 años, 4 meses Puntos: 1 | |
Respuesta: Leer y guardar archivos de Execl en Python Django y como hago eso puedes darme un ejemplo este mi codigo
views.py
Código:
book = xlrd.open_workbook({{'MEDIA_URL'}} '00.HELTEX_S_A_20140106_S del 30.12 al 05 enero 2014.xls')
print "The number of worksheets is", book.nsheets
print "Worksheet name(s):", book.sheet_names()
sh = book.sheet_by_index(0)
print sh.name, sh.nrows, sh.ncols
print "Cell (5,0) is: ", sh.cell_value(rowx=2, colx=0)
for rx in range(sh.nrows):
print sh.row(rx)
|