通过python3.5从cgi容器服务器下载excel文件

时间:2017-04-20 10:19:01

标签: python cgi

我想通过python下载服务器(CGI容器)中的excel文件。我可以像json格式的txt文件一样下载处理过的数据。

def downloadJsonResult(finalJson):
    print ("application/vnd.ms-excel")
    print ("Content-Disposition: attachment; filename=TEST.xls")
    print
    print   ("""

    """+str(json.dumps(finalJson)))

我已将已处理的数据保存在excel中,现在我想从客户端浏览器下载它。无需保存到服务器,只需从客户端下载。

0 个答案:

没有答案