Python爬取苏州市旅游景点代码
时间: 2023-10-07 11:08:37 浏览: 132
你可以使用Python中的requests和BeautifulSoup库来爬取苏州市旅游景点的数据。以下是一个简单的爬取示例:
```python
import requests
from bs4 import BeautifulSoup
url = "http://www.suzhou.gov.cn/zwgk/zwdt/jrsz/index.html" # 苏州市旅游景点网址
response = requests.get(url)
soup = BeautifulSoup(response.content, "html.parser")
# 定位到景点列表所在的标签
spot_list = soup.find("div", {"class": "list_con"})
# 遍历景点列表,提取景点名称和代码
for spot in spot_list.find_all("li"):
name = spot.find("a").text
code = spot.find("span").text
print(name, code)
```
注意:在爬取网站数据时,请务必遵守网站的规定和法律法规。
阅读全文