Python スクリプトから POST を使用してファイルを送信する方法
Python スクリプトから POST リクエストを使用してファイルを送信するのは簡単なプロセスです。 Requests ライブラリを利用すると、このタスクを簡単に実行できます。
解決策:
POST リクエスト経由でファイルを送信するには、files パラメータを利用できます。 request.post() 関数内。これを行う方法を示す例を次に示します。
<code class="python">import requests file_path = 'report.xls' # Replace with your file's path url = 'http://httpbin.org/post' # Replace with your target URL with open(file_path, 'rb') as file_handle: # Open file in binary read mode response = requests.post(url, files={'report.xls': file_handle}) print(response.text) # The response will contain details about the uploaded file</code>
このメソッドを使用すると、Python スクリプトから POST リクエストの一部としてファイルをシームレスに送信できます。
以上がPython スクリプトから POST を使用してファイルを送信するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。