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 중국어 웹사이트의 기타 관련 기사를 참조하세요!