您好,登錄后才能下訂單哦!
方法1:
import requests url = "http://www.xxxx.net/login" #參數拼湊,附件上傳格式如picurl參數,其他表單參數值拼成tuple格式: 2-tuples (filename, fileobj), 3-tuples (filename, fileobj, contentype), 4-tuples (filename, fileobj, contentype, custom_headers) files = {"username": (None, "billy"), "password": (None, "abcd1234"), 'picUrl': ('pic.png', open('E:\\download\\pic.png', 'rb'), 'image/png')} #如需headers,不需要賦值Content-Type,不然可能會報錯 res = requests.post(url, files=files) print res.request.body print res.request.headers
方法2:
安裝requests_toolbelt
pip install requests-toolbelt
實現代碼
a.發送文件中的數據
from requests_toolbelt import MultipartEncoder import requests m = MultipartEncoder( fields={'field0': 'value', 'field1': 'value', 'field2': ('filename', open('file.py', 'rb'), 'text/plain')}, ) r = requests.post('http://httpbin.org/post', data=m, headers={'Content-Type': m.content_type})
b.不需要文件
from requests_toolbelt import MultipartEncoder import requests m = MultipartEncoder(fields={'field0': 'value', 'field1': 'value'}) r = requests.post('http://httpbin.org/post', data=m, headers={'Content-Type': m.content_type})
以上這篇python處理multipart/form-data的請求方法就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。