python爬取长三角地区空气质量的全部爬虫部分代码
时间: 2023-04-05 18:03:23 浏览: 131
【python爬虫源代码】用python爬取百度搜索的搜索结果!
5星 · 资源好评率100%
我可以回答这个问题。以下是一个简单的 Python 爬虫代码,可以爬取长三角地区空气质量数据:
```python
import requests
from bs4 import BeautifulSoup
url = 'http://www.pm25.in/shanghai'
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'}
res = requests.get(url, headers=headers)
soup = BeautifulSoup(res.text, 'html.parser')
table = soup.find('table', {'class': 'table table-striped table-bordered'})
trs = table.find_all('tr')[1:]
for tr in trs:
tds = tr.find_all('td')
city = tds[0].text.strip()
aqi = tds[1].text.strip()
print(city, aqi)
```
这段代码可以爬取上海市的空气质量数据,你可以根据需要修改 `url` 参数来爬取其他城市的数据。
阅读全文