要在Python中實現文件的上傳和下載,可以使用requests
庫。首先確保已經安裝了requests
庫,如果沒有安裝,可以使用以下命令進行安裝:
pip install requests
以下是一個簡單的文件上傳示例:
import requests
url = 'https://example.com/upload' # 替換為目標URL
file_path = 'path/to/your/file.txt' # 替換為要上傳的文件路徑
with open(file_path, 'rb') as file:
files = {'file': (file.name, file)}
response = requests.post(url, files=files)
print(response.text)
以下是一個簡單的文件下載示例:
import requests
url = 'https://example.com/download' # 替換為目標URL
file_path = 'path/to/save/downloaded_file.txt' # 替換為要保存的文件路徑
response = requests.get(url)
with open(file_path, 'wb') as file:
file.write(response.content)
print('文件下載完成')
請注意,這些示例僅用于演示目的。在實際應用中,您需要根據目標服務的要求進行相應的調整,例如設置請求頭、處理異常等。