python3 urllib.urlopen
时间: 2024-02-19 15:50:23 浏览: 68
python urllib3
5星 · 资源好评率100%
在 Python 3 中,`urllib.urlopen()` 已经被移除了,可以使用 `urllib.request.urlopen()` 来代替。同时,也可以使用更方便的第三方库 `requests`,例如:
```python
import requests
response = requests.get('http://www.example.com')
print(response.content)
```
这里使用 `requests.get()` 方法来获取指定 URL 的内容,返回的对象包含了响应的内容、状态码等信息。注意,`requests` 库需要额外安装。
阅读全文