91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python實現數據導出到excel的示例--普通格式

發布時間:2020-09-10 19:32:28 來源:腳本之家 閱讀:143 作者:AFei0018 欄目:開發技術

此文是在django框架下編寫,從數據庫中獲取數據使用的是django-orm

用python導出數據到excel,簡單到爆!(普通的excel格式)

安裝xlwt

pip install xlwt

編寫py文件

from xlwt import *
import StringIO
from apps.song.models import Song
def excel_ktvsong(request):

  """
導出excel表格
"""

  _id = request.GET.get('id', 0)

  list_obj = Song.objects.filter(is_delete__exact=False)
 # django orm  
  if list_obj:
 # 創建工作薄

    ws = Workbook(encoding='utf-8')

    w = ws.add_sheet(u"歌曲列表")

    w.write(0, 0, u"歌曲名稱")

    w.write(0, 1, u"歌手")

    # 寫入數據

    excel_row = 1

    for obj in list_obj:

      data_song = obj.song

      data_singer_name = obj.singer_name

      w.write(excel_row, 0, data_song)

      w.write(excel_row, 1, data_singer_name)


      excel_row += 1


    sio = StringIO.StringIO()

    ws.save(sio)

    sio.seek(0)

    response = HttpResponse(sio.getvalue(),     
    content_type='application/vnd.ms-excel')

    response['Content-Disposition'] = 'attachment;filename=%s.xls' % time.strftime('%Y%m%d%H%M%S')

    response.write(sio.getvalue())

    return response

  else:

    return HttpResponse("無數據")

以上這篇python實現數據導出到excel的示例--普通格式就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

甘德县| 孟州市| 都昌县| 绍兴县| 柳林县| 巴青县| 昌图县| 临邑县| 东丰县| 娱乐| 绥阳县| 雷山县| 桃江县| 商城县| 射阳县| 大港区| 晋宁县| 宁化县| 甘德县| 桐城市| 威信县| 亳州市| 陆河县| 崇文区| 洪泽县| 微山县| 丹凤县| 温泉县| 桃园市| 故城县| 且末县| 定边县| 延川县| 工布江达县| 个旧市| 桂平市| 安岳县| 龙州县| 商河县| 萝北县| 昔阳县|