请使用python编写一个爬虫
时间: 2024-06-08 20:12:31 浏览: 45
好的,下面是一个简单的Python爬虫示例:
```
import requests
from bs4 import BeautifulSoup
url = "https://www.example.com"
page = requests.get(url)
soup = BeautifulSoup(page.content, "html.parser")
# 提取页面中所有的链接
links = [link.get("href") for link in soup.find_all("a")]
print(links)
```
这个爬虫使用了 `requests` 库来发送HTTP请求并获取响应,并使用 `BeautifulSoup` 库来解析HTML页面。
上面的代码可以提取页面中所有的链接,你可以根据需要更改代码来提取其他数据。
阅读全文