爬虫-练习(四)爬取一周内天气JSON格式

本文介绍了如何使用爬虫技术抓取一周内的天气信息,并以JSON格式存储。通过示例代码,展示了爬虫的实现过程。
摘要由CSDN通过智能技术生成

网址:

http://www.weather.com.cn/weather/101010100.shtml

代码:

from urllib.request import urlopen
from bs4 import  BeautifulSoup
import  json


url = "http://www.weather.com.cn/weather/101010100.shtml"

response = urlopen(url)

bs = BeautifulSoup(response, "html.parser")

# 按照顺序依次找出五列数据:   日期date, 描述 desc,  温度temp    风向direction  level 风力
date_list = bs.select("li > h1")
desc_list = bs.select("li > p.wea")
temp_list = bs.select("li > p.tem")
direction_list = bs.select("li > p.win > em")
level_list = bs.select("li > p.win > i")

result_list = []
for i in range(len(date_list)):
    date = date_list[i].text
    desc = desc_list[i].text
    temp = temp_list[i].stripped_strings
    temp = "".join(temp)
    direction_temp = direction_list[i]
    two_span_list = direction_temp.select("span")
    direction = two_span_list[0].get("title") + "-" + two_span_list[1].get("title")
    level = level_list[i].text
    # result_list.append([date, desc, temp,direction,level])
    # print(date, desc, temp,direction,level, sep="\t")
	#json模式写法
    result_list.append({"date":date, "desc":desc, "temp":temp, "direction":direction, "level":level})

aa = {"date":1, "desc":2, "temp":3, "direction":4, "level":5}
print(aa)
print(type(aa))

for result in result_list:
    print(result)






with open("c:/weather3.json", "w", encoding="utf-8") as f:
    json.dump(result_list, f, ensure_ascii=False)


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值