Python爬取国家统计局
时间: 2023-12-25 18:30:15 浏览: 233
python 爬虫 爬取国家统计局 行政区数据
4星 · 用户满意度95%
以下是使用Python爬取国家统计局数据的步骤:
1. 导入所需的库:
```python
import requests
from bs4 import BeautifulSoup
```
2. 发送HTTP请求获取网页内容:
```python
url = "http://data.stats.gov.cn/easyquery.htm?cn=A01"
response = requests.get(url)
```
3. 使用BeautifulSoup解析网页内容:
```python
soup = BeautifulSoup(response.text, 'html.parser')
```
4. 查找所需数据的位置并提取:
```python
data = soup.find('div', class_='center_list_contlist').text
```
5. 对数据进行处理和清洗:
```python
data = data.strip().replace('\n', '')
```
6. 打印提取到的数据:
```python
print(data)
```
阅读全文