python爬取网页上的文件
时间: 2024-06-12 18:09:52 浏览: 171
python 爬取网页
要在Python中爬取网页上的文件,你可以使用`requests`库来发送HTTP请求,并使用`open`函数来保存文件。以下是一个简单的示例代码:
```python
import requests
url = 'http://example.com/file.pdf' # 替换为你要爬取的文件的URL
filename = 'file.pdf' # 保存的文件名
response = requests.get(url)
with open(filename, 'wb') as f:
f.write(response.content)
print('文件下载完成!')
```
在这个示例中,我们使用`requests.get()`函数发送GET请求获取文件的内容,然后使用`open()`函数以二进制模式打开一个文件,将文件内容写入文件中。
阅读全文