python爬虫广州景点
时间: 2024-05-23 22:08:00 浏览: 148
python爬虫
Python是一种十分强大的编程语言,广泛应用于各种领域,包括网络爬虫。如果你想了解广州的景点信息,你可以使用Python编写爬虫程序来获取相关数据。以下是一个简单的爬虫程序示例:
```python
import requests
from bs4 import BeautifulSoup
url = 'https://you.ctrip.com/sight/guangzhou14/s0-p1.html'
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
spots = soup.select('.list_mod2 .rdetailbox')
for spot in spots:
name = spot.select_one('.rdetailbox_top h2 a').text
score = spot.select_one('.total_comment span').text
address = spot.select_one('.ellipsis').text
print(name, score, address)
```
这个程序使用requests模块向目标网站发送请求,然后使用BeautifulSoup模块解析响应内容,最后提取出需要的景点名称、评分和地址信息。你可以根据需要修改程序中的URL和解析规则。
阅读全文