pythonでダウンロードCGIにハマった件の解決

| | Comments (0) | TrackBacks (0)
HDEラボの桜井です。
今日は東京暖かいです。仕事してる場合ではありませんw

前回のエントリーにツッコミいただいたので、その方法を試したところ解決しました。
pythonのprint関数の仕様がよくわからなかったので。

念のため、解決方法。ダウンロード時に対処します。
    import sys

    print "Content-Type: application/zip;\r\nContent-Disposition: attachment; filename=test.zip\r\n\r\n",
    f = open("/tmp/test.zip")
    sys.stdout.write(f.read())
    f.close()

ふーん、なるほど。

0 TrackBacks

Listed below are links to blogs that reference this entry: pythonでダウンロードCGIにハマった件の解決.

TrackBack URL for this entry: https://lab.hde.co.jp/blog/mt-tb.cgi/104

Leave a comment

About this Entry

This page contains a single entry by Takeshi SAKURAI published on March 16, 2009 11:07 AM.

pythonでzipファイルをダウンロードさせることにハマる was the previous entry in this blog.

男のちょい割る 強ソーダを飲んでみた is the next entry in this blog.

Find recent content on the main index or look in the archives to find all content.