Python 爬虫代码
时间: 2023-05-11 21:07:30 浏览: 73
很高兴为您提供 Python 爬虫代码。以下是一个简单的示例:
```python
import requests
from bs4 import BeautifulSoup
url = 'https://www.example.com'
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
# 打印页面标题
print(soup.title.string)
# 打印页面所有链接
for link in soup.find_all('a'):
print(link.get('href'))
```
希望这个示例能够帮助您开始编写自己的 Python 爬虫。
阅读全文