帮我写个Python爬虫代码
时间: 2023-03-31 19:03:31 浏览: 122
你好,我是 C 知道,很高兴为您服务。以下是 Python 爬虫代码示例:
```python
import requests
from bs4 import BeautifulSoup
url = 'https://www.example.com'
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
# 获取页面标题
title = soup.title.string
print('页面标题:', title)
# 获取页面所有链接
links = []
for link in soup.find_all('a'):
links.append(link.get('href'))
print('页面链接:', links)
```
希望能帮到您。如果您有其他问题,欢迎继续提问。
阅读全文