python 爬虫 大众点评美食排名
时间: 2023-09-29 22:08:47 浏览: 345
Python版大众点评爬虫
5星 · 资源好评率100%
你可以使用Python来编写一个爬虫程序来获取大众点评的美食排名。下面是一个简单的示例代码:
```python
import requests
from bs4 import BeautifulSoup
def get_restaurant_ranking():
url = 'https://www.dianping.com/'
headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3'}
# 发送HTTP请求获取网页内容
response = requests.get(url, headers=headers)
if response.status_code == 200:
# 使用BeautifulSoup解析网页内容
soup = BeautifulSoup(response.text, 'html.parser')
# 根据网页结构提取美食排名的相关信息
ranking_list = soup.find_all('div', class_='txt')
# 输出美食排名
for i, item in enumerate(ranking_list):
print(f"第{i+1}名: {item.text.strip()}")
else:
print("网页请求失败")
# 调用函数获取美食排名
get_restaurant_ranking()
```
你可以运行这段代码来获取大众点评的美食排名。请注意,爬取网站数据时要遵守相关的法律和网站的使用规定。
阅读全文