久久久国产精品久久久I国产亚洲久一区二区I制服丝袜亚洲I日韩av片在线I久久免费视频8I日韩av在线小说

您好,歡迎訪問通商軟件官方網站!
24小時免費咨詢熱線: 400-1611-009
聯系我們 | 加入合作

Python, 將HTML table 導出Excel

ERP系統 & MES 生產管理系統

10萬用戶實施案例,ERP 系統實現微信、銷售、庫存、生產、財務、人資、辦公等一體化管理

本文開放系統中的一段代碼。將HTML5 table文本導出Excel。

需要的庫

  • python 2.7/2.x
  • xlwt
  • Django(可選)

目標

網頁上的table部分,只要輸出文本,將html文本輸出成excel。幾乎一摸一樣,可以帶出簡單的css樣式(本文基于bootstrap的標準樣式),合并單元格,表頭等內容。但不能帶出單元格樣式,公式等。

例子

比如上圖。頁面輸出是這個樣子的。

導出后

例子

很簡單吧。

代碼

__author__ = 'm.uzefa.com'

from django.http import HttpResponse
from django.utils.http import urlquote
import xlwt, HTMLParser, StringIO, uuid

blue_stype = xlwt.easyxf('alignment: horz left, vert top; pattern: pattern solid, fore_colour light_blue; font: bold on;')
red_stype = xlwt.easyxf('alignment: horz left, vert top; pattern: pattern solid, fore_colour red; font: bold on;')
green_stype = xlwt.easyxf('alignment: horz left, vert top; pattern: pattern solid, fore_colour light_green; font: bold on;')
yellow_stype = xlwt.easyxf('alignment: horz left, vert top; pattern: pattern solid, fore_colour light_yellow; font: bold on;')
orange_stype = xlwt.easyxf('alignment: horz left, vert top; pattern: pattern solid, fore_colour light_orange; font: bold on;')
merge_stype = xlwt.easyxf('alignment: wrap on;')

bold_stype = xlwt.easyxf('alignment: horz left, vert top; font: bold on;')
mydefault_stype = xlwt.easyxf('alignment: horz left, vert top')

STAG = 'stag'
ETAG = 'etag'
DATA = 'data'

def html_table_to_excel(table):
    """ html_table_to_excel(table): Takes an HTML table of data and formats it so that it can be inserted into an Excel Spreadsheet.
    """
    table_ls = []

    class MyHTMLParser(HTMLParser.HTMLParser):
        '''
        parser
        '''

        def handle_starttag(self, tag, attrs):
            table_ls.append((STAG, tag, attrs))

        def handle_endtag(self, tag):
            table_ls.append((ETAG, tag, None))

        def handle_data(self, contentstr):
            table_ls.append((DATA, contentstr.strip(), None))

    p = MyHTMLParser()
    p.feed(table)

    return table_ls

def export_to_sheet(wb, sheet_title, table_str):
    '''
    sheet
    '''
    ws = wb.add_sheet(sheet_title)

    ls = html_table_to_excel(table_str)

    xstatus = ''
    cline = 0
    ccell = 0
    b_readyinsert = False
    xattrs = None
    xcontent = ''
    cells_occupy = set()

    for tag, content, attrs in ls:
        if tag == STAG and content == 'thead':
            xstatus = 'thead'
        elif tag == ETAG and content == 'thead':
            xstatus = ''
        if tag == STAG and content == 'tbody':
            xstatus = 'tbody'
        elif tag == ETAG and content == 'tbody':
            xstatus = ''

        elif tag == STAG and content == 'tr':
            # row go
            ccell = 0
        elif tag == ETAG and content == 'tr':
            # row go
            cline += 1

        elif tag == STAG and content in ['td', 'th']:
            b_readyinsert = True
            xcontent = ''
            xattrs = dict(attrs)
        elif tag == ETAG and content in ['td', 'th']:
            # fill cell
            xstyle = mydefault_stype
            if 'class' in xattrs:
                xattr_class = xattrs['class']
                if 'success' in xattr_class:
                    xstyle = green_stype
                elif 'warning' in xattr_class:
                    xstyle = yellow_stype
                elif 'danger' in xattr_class:
                    xstyle = red_stype
                elif 'info' in xattr_class:
                    xstyle = blue_stype
            if not xstyle:
                xstyle = xstatus == 'thead' and bold_stype or mydefault_stype

            # test occupy
            while (cline, ccell) in cells_occupy:
                ccell += 1

            if 'colspan' in xattrs and 'rowspan' in xattrs:
                rowspan = int(xattrs['rowspan'])
                colspan = int(xattrs['colspan'])
                ws.write_merge(cline, rowspan - 1 + cline, ccell, colspan - 1 + ccell, xcontent, xstyle)
                for x in range(0, rowspan):
                    cells_occupy.add((cline + x, ccell))
                for x in range(0, colspan):
                    cells_occupy.add((cline, ccell + x))
            elif 'rowspan' in xattrs:
                rowspan = int(xattrs['rowspan'])
                ws.write_merge(cline, rowspan - 1 + cline, ccell, ccell, xcontent, xstyle)
                for x in range(0, rowspan):
                    cells_occupy.add((cline + x, ccell))
            elif 'colspan' in xattrs:
                colspan = int(xattrs['colspan'])
                ws.write_merge(cline, cline, ccell, colspan - 1 + ccell, xcontent, xstyle)
                for x in range(0, colspan):
                    cells_occupy.add((cline, ccell + x))
            else:
                ws.write(cline, ccell, xcontent, xstyle)
                cells_occupy.add((cline, ccell))

            b_readyinsert = False
            xattrs = {}
            xstyle = None
            # cell go
            # ccell += 1

        elif b_readyinsert:
            if content == 'br':
                if xcontent:
                    xcontent += 'r'

            elif tag == DATA:
                content = content.strip()
                if content:
                    if xcontent:
                        xcontent += ' ' + content
                    else:
                        xcontent = content

    return wb

def export_to_xls(table, b_export_response=True, table_title=''):
    """
    @param  table:              string or dict
    """
    wb = xlwt.Workbook(style_compression=2)
    if isinstance(table, dict):
        if table:
            vx = ''
            for kt, v in table.items():
                export_to_sheet(wb, unicode(kt), v)
        else:
            wb.add_sheet('EMPTY')
    elif isinstance(table, list):
        if table:
            vx = ''
            for kt, v in table:
                vx += u'<table><thead><tr><th></th></tr><tr><th>{}</th></tr></thead></table>{}'.format(unicode(kt), v)
            export_to_sheet(wb, 'NEW', vx)
        else:
            wb.add_sheet('EMPTY')
    else:
        export_to_sheet(wb, 'NEW', table)

    if b_export_response:
        sio = StringIO.StringIO()
        wb.save(sio)
        dd = sio.getvalue()
        sio.close()

        #download
        response = HttpResponse(dd, content_type='application/vnd.ms-excel')
        response['Content-Disposition'] = 'attachment; filename={0}.xls'.format(urlquote(table_title) or str(uuid.uuid4()))
        return response

    else:
        return wb

調用最后一個函數 export_to_xls 就可以了。參數table,是HTML table 字符串。結合django的話,用render_to_string輸出就可以了。

在線疑問仍未解決?專業顧問為您一對一講解

24小時人工在線已服務6865位顧客5分鐘內回復

Scroll to top
咨詢電話
客服郵箱
掃碼咨詢
主站蜘蛛池模板: 天天爽夜夜爽人人爽一区二区 | av在线播放免费 | 天天干夜夜干 | 欧洲成人av| 91亚洲永久精品 | 依人成人综合网 | 成人福利av | 久久艹免费 | 精品亚洲午夜久久久久91 | 国产不卡免费av | 久草视频资源 | 亚洲精品18日本一区app | 国产免费影院 | 人人爽人人爽人人片av | 免费网址在线播放 | 欧美性生活免费看 | 亚洲欧洲一区二区在线观看 | 色诱亚洲精品久久久久久 | 亚洲精选久久 | 五月综合色 | 91试看 | 国产精品刺激对白麻豆99 | 国产专区在线 | 亚洲一区二区高潮无套美女 | 中文字幕一区二区三区四区在线视频 | 日韩精品视频第一页 | 在线免费黄色av | 狠狠色2019综合网 | 欧美日韩亚洲国产一区 | 99精品免费久久久久久日本 | 国产精品1区2区3区在线观看 | a天堂最新版中文在线地址 久久99久久精品国产 | 国产成人精品一区二区三区在线观看 | 久操免费视频 | 欧美精品小视频 | 在线国产片 | 美女国内精品自产拍在线播放 | 久久国产电影 | 国产成人在线播放 | 伊人影院在线观看 | av免费看av | 中文字幕在线字幕中文 | 国产一区二区在线看 | 色综合久久久久综合体桃花网 | 日日夜夜狠狠操 | 久久国产精品99久久久久久进口 | 91成人免费电影 | 一区二区精品在线 | 国产在线第三页 | 国产精品黑丝在线观看 | 黄在线免费看 | 国产一级电影 | 在线岛国av| 91精品久久久久 | 国产一级高清 | 国产免费一区二区三区网站免费 | 国产成人精品一区二 | 亚洲资源网 | 国产一区二区三区高清播放 | 精品国产日本 | 久久亚洲精品电影 | 精品国产精品久久 | 激情五月婷婷综合 | 日本黄色免费大片 | 国内精品久久久久久久久久久 | 亚洲成a人片在线观看中文 中文字幕在线视频第一页 狠狠色丁香婷婷综合 | 国产免码va在线观看免费 | 91精品国自产拍天天拍 | 黄色视屏在线免费观看 | 青春草视频在线播放 | 日韩久久精品一区二区 | 91最新视频在线观看 | 欧美一二三视频 | 国产精品久久久久久久午夜片 | 91在线免费视频 | 午夜精品99久久免费 | 亚洲精品视频在线播放 | 国产精品自在欧美一区 | 国产一区在线免费观看视频 | 日韩电影在线观看中文字幕 | 日韩在线观看一区二区三区 | 狠狠干夜夜操 | 一区二区三区在线观看免费视频 | 日韩在线电影一区 | 久久99热精品这里久久精品 | 99久久久国产精品免费99 | 99草视频在线观看 | 国产成人精品一区二区在线观看 | 亚洲区二区 | 久久精品网站免费观看 | 亚洲成色777777在线观看影院 | 国产精品青草综合久久久久99 | 中文字幕av最新更新 | 久久久久免费视频 | 天天天在线综合网 | 精品99久久久久久 | 大型av综合网站 | 亚洲精品视频网站在线观看 | 在线观看免费观看在线91 |