您好,登錄后才能下訂單哦!
本篇內容介紹了“python MultipartEncoder如何傳輸zip文件”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
Python是一種編程語言,內置了許多有效的工具,Python幾乎無所不能,該語言通俗易懂、容易入門、功能強大,在許多領域中都有廣泛的應用,例如最熱門的大數據分析,人工智能,Web開發等。
需求:對方提供處理文件的接口,本地將待處理文件壓縮后,通過http post multipart方式上傳,等待處理完成后從相應連接下載結果
代碼:
import os import time import zipfile import requests from requests_toolbelt.multipart.encoder import MultipartEncoder class Func4Fuxi(object): def __init__(self): self.remote_result = 0 # 壓縮文件 def zip_dir(self, dirname, zipfilename): filelist = [] if os.path.isfile(dirname): filelist.append(dirname) else: for root, dirs, files in os.walk(dirname): for name in files: filelist.append(os.path.join(root, name)) zf = zipfile.ZipFile(zipfilename, mode="w", compression=zipfile.zlib.DEFLATED, allowZip64=True) for tar in filelist: arcname = tar[len(dirname):] zf.write(tar, arcname) zf.close() # 解壓文件 def unzip_file(self, zipfilename, unziptodir): if not os.path.exists(unziptodir): os.mkdir(unziptodir) zfobj = zipfile.ZipFile(zipfilename) for name in zfobj.namelist(): name = name.replace('\\', '/') if name.endswith('/'): os.mkdir(os.path.join(unziptodir, name)) else: ext_filename = os.path.join(unziptodir, name) ext_dir = os.path.dirname(ext_filename) if not os.path.exists(ext_dir): os.mkdir(ext_dir) outfile = open(ext_filename, 'wb') outfile.write(zfobj.read(name)) outfile.close() # 下載 def download_result(self, filename): filename.replace('\\', '/') file = filename.split('/')[-1] URL = '--------------' re = requests.get(URL+'?name='+file, stream=True) self.remote_result = re.status_code if self.remote_result == 200: print("find result,try to download") f = open("download_"+file, "wb") for chunk in re.iter_content(chunk_size=512): if chunk: f.write(chunk) print("download result success") return self.remote_result # 上傳 def upload_zip(self, filename): self.remote_result = 0 filename.replace('\\', '/') file = filename.split('/')[-1] file_tup = (file, open(filename, 'rb'), 'application/zip') URL = '-----------------' #fields屬性根據對方接口說明設置 m = MultipartEncoder( fields={'name': file, 'zipfile': file_tup} ) re = requests.post(URL, data=m, headers={'Content-Type': m.content_type}) self.remote_result = re.status_code if self.remote_result == 200: print("upload success") else: print("upload failed") return self.remote_result
補充知識:Python模擬瀏覽器上傳文件腳本(Multipart/form-data格式)
http協議本身的原始方法不支持multipart/form-data請求,這個請求由原始方法演變而來的。
multipart/form-data的基礎方法是post,也就是說是由post方法來組合實現的,與post方法的不同之處:請求頭,請求體。
multipart/form-data的請求頭必須包含一個特殊的頭信息:
Content-Type,且其值也必須規定為multipart/form-data,同時還需要規定一個內容分割符用于分割請求體中的多個post的內容,如文件內容和文本內容自然需要分割開來,不然接收方就無法正常解析和還原這個文件了。
具體的頭信息如下:
Content-Type: multipart/form-data; boundary=${bound}
實例:
import os, random, sys, requests from requests_toolbelt.multipart.encoder import MultipartEncoder url = 'http://127.0.0.1/sendmsg' argvstr = sys.argv[1:] argv_dict = {} for argv in argvstr : argv = str(argv).replace("\r\n" , "") DICT = eval(argv) argv_dict.update(DICT) headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:50.0) Gecko/20100101 Firefox/50.0', 'Referer': url } multipart_encoder = MultipartEncoder( fields={ 'username': argv_dict['username'], 'pwd': argv_dict['pwd'], 'type': 'txt', 'friendfield': argv_dict['friendfield'], 'friend': argv_dict['friend'], 'content': argv_dict['content'], 'file': (os.path.basename(argv_dict['file']) , open(argv_dict['file'], 'rb'), 'application/octet-stream') #file為路徑 }, boundary='-----------------------------' + str(random.randint(1e28, 1e29 - 1)) ) headers['Content-Type'] = multipart_encoder.content_type #請求頭必須包含一個特殊的頭信息,類似于Content-Type: multipart/form-data; boundary=${bound} r = requests.post(url, data=multipart_encoder, headers=headers) print(r.text) #注意,不要設置cookies等其他參數,否則會報錯 # 例子/usr/local/python36/bin/python3 /opt/lykchat/test_upload.py "{'username':'lykchat','pwd':'123456','type':'img','friendfield':'1','friend':'xxxx','content':'恭喜發財','file':'/root/b.jpg'}" #等同于curl -F "file=@/root/a" 'http://127.0.0.1/sendmsg?username=lykchat&pwd=123456&type=img&friendfield=1&friend=xxxx&content=恭喜發財'
“python MultipartEncoder如何傳輸zip文件”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。