python爬虫小程序案例
时间: 2023-03-26 11:03:34 浏览: 162
python编写爬虫小程序
你好,以下是一个 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)
```
希望对你有帮助!
阅读全文