帮我用pyrhon写一个上传下载的程序
时间: 2024-06-09 11:10:52 浏览: 46
好的,下面是一个使用Python编写的上传下载程序的示例代码:
上传文件:
```python
import requests
url = 'http://example.com/upload'
file_path = '/path/to/file'
with open(file_path, 'rb') as f:
r = requests.post(url, files={'file': f})
```
下载文件:
```python
import requests
url = 'http://example.com/file'
file_path = '/path/to/save/file'
r = requests.get(url)
with open(file_path, 'wb') as f:
f.write(r.content)
```
这是一个非常简单的例子,用于演示如何使用Python进行文件上传和下载。实际上,这只是最基本的功能,你可能需要添加更多的代码来处理错误、认证、断点续传等功能,具体实现方式会根据你的需求而有所不同。
阅读全文