xlsadd.py 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. import xlrd
  2. import datetime
  3. import uuid
  4. import os
  5. def process_cell(table,i,j):
  6. _temp=table.cell(i,j)
  7. if _temp.ctype==1:
  8. return _temp.value
  9. if _temp.ctype==2:
  10. return str(int(_temp.value))
  11. #raise "Error xls!"
  12. def processxls(FILE):
  13. BASE_DIR = os.path.dirname(os.path.dirname(__file__))
  14. xlsname = os.path.join(BASE_DIR, 'uploads', '%s.xls' % str(uuid.uuid4()))
  15. destination = open(xlsname,'wb')
  16. for chunk in FILE.chunks():
  17. destination.write(chunk)
  18. destination.close()
  19. data = xlrd.open_workbook(xlsname)
  20. table = data.sheet_by_index(0)
  21. head = table.row_values(0)
  22. assert len(head)==6
  23. assert head[0].strip()==u'\u5b66\u53f7'
  24. assert head[1].strip()==u'\u59d3\u540d'
  25. assert head[2].strip()==u'\u6027\u522b'
  26. assert head[3].strip()==u'\u5bc6\u7801'
  27. assert head[4].strip()==u'\u5206\u7ec4\u53f7'
  28. assert head[5].strip()==u'\u751f\u65e5'
  29. rets=[]
  30. for i in range(table.nrows-1):
  31. col = table.row_values(i+1)
  32. sid=str(int(col[0]))
  33. name=process_cell(table,i+1,1)
  34. sex=col[2]
  35. password=process_cell(table,i+1,3)
  36. cid=str(int(col[4]))
  37. if table.cell(i+1,5).ctype==3:
  38. birthday = datetime.date(*xlrd.xldate_as_tuple(table.cell(i+1,5).value,data.datemode)[:3])
  39. else:
  40. try:
  41. birthday = datetime.datetime.strptime(process_cell(table,i+1,5), "%Y-%m-%d").date()
  42. except:
  43. try:
  44. birthday = datetime.datetime.strptime(process_cell(table,i+1,5), "%Y%m%d").date()
  45. except:
  46. pass
  47. #raise "Error xls!"
  48. rets.append((sid,name,sex,password,cid,birthday))
  49. return rets