從 Python 腳本使用 POST 傳送檔案
使用 Requests 函式庫,在 Python 中使用 POST 方法傳送檔案可以很簡單。為此,請按照以下步驟操作:
使用請求庫
來自請求文件(https://requests.readthedocs.io/en/latest/user / quickstart/#post-a-multipart-encoded-file),以下程式碼片段示範如何使用POST 傳送檔案:
<code class="python">with open('report.xls', 'rb') as f: r = requests.post('http://httpbin.org/post', files={'report.xls': f})</code>
在此程式碼中:
驗證檔案上傳
要確認檔案上傳成功,您可以列印 POST 要求的回應。例如:
<code class="python">>>> print(r.text)</code>
以上是如何從 Python 腳本使用 POST 傳送檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!