如何用python爬取网页链接
时间: 2024-02-28 11:48:02 浏览: 141
python 爬取网页
你可以使用 Python 的 requests 库来爬取网页链接。下面是一个简单的示例代码:
```python
import requests
url = "https://www.example.com" # 要爬取的网页链接
response = requests.get(url)
html_content = response.text
print(html_content) # 输出网页内容
```
上面的代码中,我们首先使用 `requests.get()` 方法发送一个 GET 请求,获取网页的响应。然后使用 `response.text` 属性获取网页的内容。最后,我们将网页内容打印出来。
阅读全文