Python爬虫代码
时间: 2024-05-04 11:14:42 浏览: 122
Python爬虫是指使用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)
```
这段代码使用了Python中的requests和BeautifulSoup库,首先通过requests.get方法访问指定的网站,然后使用BeautifulSoup库对返回的HTML页面进行解析,最后获取页面中的title标签内容并打印输出。
阅读全文