python http上传文件处理示例

2018-07-20    来源:open-open

容器云强势上线!快速搭建集群,上万Linux镜像随意使用
<HTML>

<FORM ACTION='cgi-bin/action.py' METHOD='POST' enctype='multipart/form-data'>
    <input type='hidden' name='user' value='lola'>
    <input type='hidden' name='action' value='upload'>
    <BR><I>FILE:</I> <INPUT TYPE='FILE' NAME=upfile>
<br>
<input type='submit' value='Press'> to upload the file!
</form>

</HTML>

File:action.py

#!c:/Python25/python

import cgi
import sys

def gen_html_header() :
    print 'Content-Type: text/html\n\n'
    print '<HTML>'

def gen_html_trailer() :
    print '</HTML>'
gen_html_header()
form = cgi.FieldStorage()
try :
    file_contents = form['upfile'].value
    print file_contents
except :
    print sys.exc_info()

gen_html_trailer()

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇:python的AES加密解密

下一篇:利用PHP实现MySQL表数据的简单分页