写一段Python爬取数据的代码
时间: 2023-10-02 12:08:01 浏览: 105
用Python语言编写一个爬虫程序
当然,我很乐意帮你写一段Python爬取数据的代码。以下是一个简单的示例,使用 Python 的 requests 和 BeautifulSoup 库来获取并解析网页内容:
```python
import requests
from bs4 import BeautifulSoup
url = 'https://www.example.com'
r = requests.get(url)
soup = BeautifulSoup(r.content, 'html.parser')
# 输出网页标题
print(soup.title.string)
# 输出所有链接
for link in soup.find_all('a'):
print(link.get('href'))
```
这段代码会向 https://www.example.com 发送一个 GET 请求,并用 BeautifulSoup 解析 HTML 内容。然后,它会输出网页标题和所有链接。当然,你可以根据自己的需求修改这个代码,来爬取你需要的数据。
阅读全文