python-爬虫天气并保存到excel

爬取的网站:http://www.air-level.com

import requests
from bs4 import BeautifulSoup
import bs4
import pandas as pd

file = open('天气.csv','w')
aqilist = []  # 储存城市AQI
clist = []  # 储存城市链接
cnlist = []  # 储存城市名字
cwlink = ["/air/changdudiqu/", "/air/kezilesuzhou/", "/air/linzhidiqu/", "/air/rikazediqu/",
          "/air/shannandiqu/", "/air/simao/", "/air/xiangfan/", "/air/yilihasake/","/air/laiwu/"]  #如果有遇到某个城市哪里报错了,就把那个城市的拼音加进来就好了~


def get_one_page(city):  # 获得HTML 爬取城市信息
    url = "http://www.air-level.com" + city
    if city in cwlink:
        aqilist.append("异常链接")
    else:
        try:
            kv = {'user-agent': 'Mozilla/5.0'}  # 伪装成浏览器,headers
            r = requests.get(url, headers=kv)
            r.raise_for_status()
            r.encoding = r.apparent_encoding
        except:
            print("爬取失败")
        demo = r.text
        soup = BeautifulSoup(demo, "html.parser")
        s = soup.find("span")
        aqilist.append(s.string)


def get_all_city():  # 爬取城市链接
    url = "http://www.air-level.com"
    try:
        kv = {'user-agent': 'Mozilla/5.0'}  # 伪装成浏览器,headers
        r = requests.get(url, headers=kv)
        r.raise_for_status()
        r.encoding = r.apparent_encoding
    except:
        print("爬取城市链接失败")
    demo = r.text
    soup = BeautifulSoup(demo, "html.parser")
    time = soup.find('h4').string
    print(time)
    for it in soup.find(id="citylist").children:
        if isinstance(it, bs4.element.Tag):  # 检测it的类型,得是一个bs4.element.Tag类型
            for its in it.find_all('a'):
                clist.append(its.get('href'))  # 加入列表当中去
                cnlist.append(its.string)


def main():
    get_all_city()
    print("共爬取了{}个城市".format(len(clist)))
    city1=[]
    for it in range(len(clist)):
        get_one_page(clist[it])
        city_all=("{} {}".format(cnlist[it], aqilist[it]))
        city_all=[it]+city_all.split(" ")

        city1.append(city_all)
        print(it,city_all,type(city_all))
    df = pd.DataFrame(city1,columns=["序号","城市","AQI","等级"])
    df.to_excel("表0410.xlsx", index=False)
main()

print("完成了!!!!")

最后跑出来的结果:
在这里插入图片描述

Python爬取天气数据并保存Excel文件(xls格式),通常需要几个步骤: 1. **选择天气API**:首先,你需要找到一个提供天气信息的API,比如中国气象局的API、OpenWeatherMap等。注册获取API密钥。 2. **安装库**:安装必要的库,如requests(用于发送HTTP请求)、BeautifulSoup(用于解析HTML)和pandas(处理数据和导出到Excel)。可以使用`pip install requests beautifulsoup4 pandas openpyxl`命令安装。 3. **编写代码**: ```python import requests from bs4 import BeautifulSoup import pandas as pd # 使用API密钥和URL构建请求 api_url = "https://your_weather_api.com/weather" headers = { 'Authorization': 'Bearer your_api_key', 'Content-Type': 'application/json' } def get_weather_data(): response = requests.get(api_url, headers=headers) data = response.json() # 提取所需的数据字段,例如城市名、日期和温度 city = data['city'] date = data['date'] temperature = data['temperature'] # 创建一个字典列表,存储每一天的天气信息 weather_list = [{'City': city, 'Date': date, 'Temperature': temperature}] return weather_list weather_data = get_weather_data() # 将数据转换为DataFrame df = pd.DataFrame(weather_data) # 导出为Excel文件(xls格式) df.to_excel('weather_data.xls', index=False) ``` **注意事项**: - API的具体使用方式和返回的数据结构可能会因服务而异,请查阅文档调整相应部分。 - 对于某些API,可能还需要对JSON数据进行适当的处理才能提取所需字段。 - 如果API返回的是CSV或其他格式,可能需要额外的转换步骤。
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值