python wget
时间: 2023-04-30 16:00:09 浏览: 153
python_wget
Python 没有内置的 wget 工具,但是可以使用 Python 的第三方库来实现类似 wget 功能,比如 requests 库。使用方法是:
```python
import requests
url = 'http://example.com/file.txt'
response = requests.get(url)
with open('file.txt', 'wb') as f:
f.write(response.content)
```
这段代码将会下载一个名为 `file.txt` 的文件。
阅读全文