python安装urllib.request库
时间: 2023-11-03 11:59:29 浏览: 144
python urllib发送请求示例
`urllib.request` 库是 Python 内置的标准库,无需安装。只需在 Python 代码中导入该库即可使用其中的模块和函数。
例如,以下是使用 `urllib.request` 库发送 HTTP 请求的示例代码:
```python
import urllib.request
url = 'https://www.example.com'
response = urllib.request.urlopen(url)
html = response.read()
print(html)
```
在这个例子中,`urllib.request.urlopen()` 函数发送一个 HTTP 请求并返回响应。响应对象可以使用 `read()` 函数读取内容。
阅读全文