博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Http client to POST using multipart/form-data
阅读量:6333 次
发布时间:2019-06-22

本文共 1985 字,大约阅读时间需要 6 分钟。

转载一段python代码,通过urllib2使用multipart/form-data来发送文件

import httplib, mimetypesdef post_multipart(host, selector, fields, files):    """    Post fields and files to an http host as multipart/form-data.    fields is a sequence of (name, value) elements for regular form fields.    files is a sequence of (name, filename, value) elements for data to be uploaded as files    Return the server's response page.    """    content_type, body = encode_multipart_formdata(fields, files)    h = httplib.HTTP(host)    h.putrequest('POST', selector)    h.putheader('content-type', content_type)    h.putheader('content-length', str(len(body)))    h.endheaders()    h.send(body)    errcode, errmsg, headers = h.getreply()    return h.file.read()def encode_multipart_formdata(fields, files):    """    fields is a sequence of (name, value) elements for regular form fields.    files is a sequence of (name, filename, value) elements for data to be uploaded as files    Return (content_type, body) ready for httplib.HTTP instance    """    BOUNDARY = '----------ThIs_Is_tHe_bouNdaRY_$'    CRLF = '\r\n'    L = []    for (key, value) in fields:        L.append('--' + BOUNDARY)        L.append('Content-Disposition: form-data; name="%s"' % key)        L.append('')        L.append(value)    for (key, filename, value) in files:        L.append('--' + BOUNDARY)        L.append('Content-Disposition: form-data; name="%s"; filename="%s"' % (key, filename))        L.append('Content-Type: %s' % get_content_type(filename))        L.append('')        L.append(value)    L.append('--' + BOUNDARY + '--')    L.append('')    body = CRLF.join(L)    content_type = 'multipart/form-data; boundary=%s' % BOUNDARY    return content_type, bodydef get_content_type(filename):    return mimetypes.guess_type(filename)[0] or 'application/octet-stream'

建议将httplib.HTTP更换为httplib.HTTPConnection,这样一来就能在httplib.Connection初始化的时候传入一个timeout,以实现更灵活的控制。

参阅:

转载于:https://www.cnblogs.com/Jerryshome/archive/2012/12/27/2836112.html

你可能感兴趣的文章
Silverlight实用窍门系列:50.InkPresenter涂鸦板的基本使用,以及将效果保存为Png图片【附带源码实例】...
查看>>
MySQL数据库经典书籍share
查看>>
给出三个数,要求输出 最大的一个
查看>>
Linux系统中获取帮助的方法及Linux系统的哲学思想
查看>>
在windows环境创建,安装windows服务
查看>>
Liferay 启动过程分析4-初始化Servlet上下文池
查看>>
电脑城论坛出品:前沿技术制作GHOST WES_WIN7 软件选择纯净版V4.0
查看>>
Nginx请求反向代理
查看>>
vim常用操作
查看>>
Chrome调试----js调试技巧
查看>>
Vue--内置组件
查看>>
dubbo面试题
查看>>
React的入门
查看>>
学习笔记TF058:人脸识别
查看>>
String 和Object
查看>>
golang的GJSON库
查看>>
ASP.NET CORE Shadow Properties
查看>>
mybatis 中的<![CDATA[ ]]>
查看>>
教你如何在linux下查看服务是否已经启动或者关闭
查看>>
E14-rpm命令被误删
查看>>