欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

django使用xlwt導(dǎo)出excel文件實(shí)例代碼

 更新時(shí)間:2018年02月06日 11:18:02   作者:扎心了老鐵  
這篇文章主要介紹了django使用xlwt導(dǎo)出excel文件實(shí)例代碼,分享了相關(guān)代碼示例,小編覺得還是挺不錯(cuò)的,具有一定借鑒價(jià)值,需要的朋友可以參考下

本文研究的主要是記錄一下下導(dǎo)出的方法,并沒有做什么REST處理和異常處理。

維護(hù)統(tǒng)一的style樣式,可以使導(dǎo)出的數(shù)據(jù)更加美觀。

def export_excel(request): 
  # 設(shè)置HttpResponse的類型
  response = HttpResponse(content_type='application/vnd.ms-excel') 
  response['Content-Disposition'] = 'attachment;filename=user.xls' 
  # new一個(gè)文件
  wb = xlwt.Workbook(encoding = 'utf-8') 
  # new一個(gè)sheet
  sheet = wb.add_sheet(u'人員表單')
  # 維護(hù)一些樣式, style_heading, style_body, style_red, style_green
   style_heading = xlwt.easyxf("""
    font:
      name Arial,
      colour_index white,
      bold on,
      height 0xA0;
    align:
      wrap off,
      vert center,
      horiz center;
    pattern:
      pattern solid,
      fore-colour 0x19;
    borders:
      left THIN,
      right THIN,
      top THIN,
      bottom THIN;
    """
  )
  style_body = xlwt.easyxf("""
    font:
      name Arial,
      bold off,
      height 0XA0;
    align:
      wrap on,
      vert center,
      horiz left;
    borders:
      left THIN,
      right THIN,
      top THIN,
      bottom THIN;
    """
  )
  style_green = xlwt.easyxf(" pattern: pattern solid,fore-colour 0x11;")
  style_red = xlwt.easyxf(" pattern: pattern solid,fore-colour 0x0A;")
  fmts = [
    'M/D/YY',
    'D-MMM-YY',
    'D-MMM',
    'MMM-YY',
    'h:mm AM/PM',
    'h:mm:ss AM/PM',
    'h:mm',
    'h:mm:ss',
    'M/D/YY h:mm',
    'mm:ss',
    '[h]:mm:ss',
    'mm:ss.0',
  ]
  style_body.num_format_str = fmts[0]

  # 寫標(biāo)題欄
  sheet.write(0,0, '姓名', style_heading) 
  sheet.write(0,1, '英文名', style_heading) 
  sheet.write(0,2, '職位', style_heading) 
  sheet.write(0,3, '公司電話', style_heading) 
  sheet.write(0,4, '手機(jī)', style_heading) 
  sheet.write(0,5, 'QQ', style_heading) 
  sheet.write(0,6, 'MSN', style_heading) 
  sheet.write(0,7, 'Email', style_heading) 
  sheet.write(0,8, '辦公地點(diǎn)', style_heading) 
  sheet.write(0,9, '部門', style_heading)
  sheet.write(0,10, '人員狀態(tài)', style_heading)
   
  # 寫數(shù)據(jù)
  row = 1 
  for usa in employesInfo.objects.all():
    sheet.write(row,0, usa.name, style_body)
    sheet.write(row,1, usa.eName, style_body)
    sheet.write(row,2, usa.postion, style_body)
    sheet.write(row,3, usa.cPhone, style_body)
    sheet.write(row,4, usa.pPhone, style_body)
    sheet.write(row,5, usa.qq, style_body)
    sheet.write(row,6, usa.msn, style_body)
    sheet.write(row,7, usa.email, style_body)
    sheet.write(row,8, usa.offAreas, style_body)
    sheet.write(row,9, usa.depart, style_body)
    if int(usa.status) == 1:
      sheet.write(row,10, '在職',style_green)
    else:
      sheet.write(row,10,'離職', style_red)
    row=row + 1 
  
  # 寫出到IO
  output = StringIO.StringIO()
  wb.save(output)
  # 重新定位到開始
  output.seek(0)
  response.write(output.getvalue()) 
  return response

總結(jié)

以上就是本文關(guān)于django使用xlwt導(dǎo)出excel文件實(shí)例代碼的全部內(nèi)容,希望對大家有所幫助。感興趣的朋友可以繼續(xù)參閱本站其他相關(guān)專題,如有不足之處,歡迎留言指出。感謝朋友們對本站的支持!

相關(guān)文章

  • Springboo如何t動(dòng)態(tài)修改配置文件屬性

    Springboo如何t動(dòng)態(tài)修改配置文件屬性

    這篇文章主要介紹了Springboo如何t動(dòng)態(tài)修改配置文件屬性問題,具有很好的參考價(jià)值,希望對大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-09-09
  • Python pandas軸旋轉(zhuǎn)stack和unstack的使用說明

    Python pandas軸旋轉(zhuǎn)stack和unstack的使用說明

    這篇文章主要介紹了Python pandas軸旋轉(zhuǎn)stack和unstack的使用說明,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2021-03-03
  • Python可視化學(xué)習(xí)之seaborn調(diào)色盤

    Python可視化學(xué)習(xí)之seaborn調(diào)色盤

    seaborn是在matplotlib基礎(chǔ)上封裝的,所以matplotlib的調(diào)色盤seaborn都可以使用。本文系統(tǒng)介紹seaborn調(diào)色盤,相較于matplotlib,有諸多不同,需要的可以參考一下
    2022-02-02
  • 使用Python打造高效多進(jìn)程TCP服務(wù)器

    使用Python打造高效多進(jìn)程TCP服務(wù)器

    這篇文章主要為大家詳細(xì)介紹了如何使用Python實(shí)現(xiàn)多進(jìn)程的TCP服務(wù)器,通過為每個(gè)連接進(jìn)來的客戶端分配一個(gè)進(jìn)程,實(shí)現(xiàn)并發(fā)處理多個(gè)客戶端請求的能力,感興趣的可以了解下
    2024-01-01
  • Python打印斐波拉契數(shù)列實(shí)例

    Python打印斐波拉契數(shù)列實(shí)例

    這篇文章主要介紹了Python打印斐波拉契數(shù)列的方法,實(shí)例分析了基于Python實(shí)現(xiàn)斐波那契數(shù)列的實(shí)現(xiàn)技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下
    2015-07-07
  • pycharm通過anaconda安裝pyqt5的教程

    pycharm通過anaconda安裝pyqt5的教程

    PyCharm是一種Python IDE,帶有一整套可以幫助用戶在使用Python語言開發(fā)時(shí)提高其效率的工具,這篇文章主要介紹了pycharm通過anaconda來安裝pyqt5的教程,需要的朋友可以參考下
    2020-03-03
  • python的數(shù)據(jù)與matlab互通問題:SciPy

    python的數(shù)據(jù)與matlab互通問題:SciPy

    這篇文章主要介紹了python的數(shù)據(jù)與matlab互通問題SciPy,具有很好的參考價(jià)值,希望對大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2022-12-12
  • 在python中對于bool布爾值的取反操作

    在python中對于bool布爾值的取反操作

    這篇文章主要介紹了在python中對于bool布爾值的取反操作,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2020-12-12
  • 深入理解Python裝飾器

    深入理解Python裝飾器

    裝飾器(decorator)是一種高級Python語法。裝飾器可以對一個(gè)函數(shù)、方法或者類進(jìn)行加工。這篇文章主要介紹了深入理解Python裝飾器的相關(guān)資料,需要的朋友可以參考下
    2016-07-07
  • Python將字符串常量轉(zhuǎn)化為變量方法總結(jié)

    Python將字符串常量轉(zhuǎn)化為變量方法總結(jié)

    在本篇內(nèi)容里我們給大家整理了一篇關(guān)于Python將字符串常量轉(zhuǎn)化為變量方法的知識點(diǎn)總結(jié),有需要的朋友們學(xué)習(xí)下。
    2019-03-03

最新評論