python 读取某个地址的网页源码
时间: 2024-01-06 07:06:44 浏览: 190
可以使用 Python 中的 requests 库来获取网页源码。具体步骤如下:
1. 首先需要安装 requests 库,可以使用 pip 进行安装:
```
pip install requests
```
2. 导入 requests 库:
```
import requests
```
3. 使用 requests 库中的 get() 方法来获取网页源码,需要传入一个 URL 参数:
```
url = 'https://www.example.com'
response = requests.get(url)
```
4. 获取到的网页源码存储在 response 对象的 text 属性中,可以使用 print() 函数来输出:
```
print(response.text)
```
完整代码示例:
```
import requests
url = 'https://www.example.com'
response = requests.get(url)
print(response.text)
```
阅读全文