帮我写一个爬取网页的爬虫代码
时间: 2024-03-28 15:13:29 浏览: 137
好的,以下是一个简单的Python爬虫代码:
```python
import requests
from bs4 import BeautifulSoup
url = "https://www.example.com"
response = requests.get(url)
soup = BeautifulSoup(response.content, "html.parser")
for link in soup.find_all("a"):
print(link.get("href"))
```
以上代码可以爬取指定网页中的所有超链接。需要安装requests和beautifulsoup4这两个库,可以使用以下指令安装:
```
pip install requests
pip install beautifulsoup4
```
希望对您有所帮助!
阅读全文