可以过滤搜索使用python中的tabulate()创建的表(HTML格式)吗?

时间:2019-06-28 20:18:07

标签: python html search filter tabulate

是否可以过滤搜索用python中的tabulate()创建的表(HTML格式)?我正在将制表的表格闪烁到HTML页面中,并希望将搜索过滤器合并到其中。

我当前用于制作和刷新表格的代码:

def history():

    listOfFiles = os.listdir(VERIFIED_FILE_PATH)
    newList = []
    for file in listOfFiles:
        raw_name = stripExtension(file)
        raw_name = stripDate(raw_name)
        fileType = getFileType(raw_name)
        coID = getCoID(raw_name)      
        newList.append([raw_name, fileType, coID, dateUploaded(file)])
    listTable = tabulate(newList, headers = ['File','Type','CompanyID','Upload Date and time'],tablefmt='html')
    flash(listTable)
    return render_template('history.html')

我正在将表格刷新到history.html

0 个答案:

没有答案