写个Python 爬虫
时间: 2024-01-20 18:16:22 浏览: 59
手把手教你写python爬虫
5星 · 资源好评率100%
以下是一个简单的Python爬虫示例:
```python
import requests
from bs4 import BeautifulSoup
# 发送HTTP请求获取网页内容
url = "https://www.example.com" # 替换为你要爬取的网页地址
response = requests.get(url)
html_content = response.text
# 使用BeautifulSoup解析网页内容
soup = BeautifulSoup(html_content, "lxml")
# 提取需要的数据
# 这里以提取网页标题为例
title = soup.title.text
# 打印结果
print("网页标题:", title)
```
这个示例使用了`requests`库发送HTTP请求获取网页内容,使用`BeautifulSoup`库解析网页内容,并提取了网页标题。你可以根据自己的需求修改代码来爬取其他数据。
阅读全文