空洞骑士ln 发表于 2022-5-14 17:12:17

关于第31讲,天气预报系统的求助?

import urllib.request
import json
import pickle
#建立城市字典
pickle_file = open('citycount.pkl', 'rb')
city = pickle.load(pickle_file)
password=input('请输入城市:')
name1=city
File1 =urllib.request.urlopen('http://m.weather.com.cn/mweather/'+name1+'.shtml')#打开url
weatherHTML = File1.read().decode('utf-8')#读入打开的url
weatherJSON = json.JSONDecoder().decode(weatherHTML)#创建json
weatherInfo = weatherJSON['weatherinfo']
#打印信息
print ( '城市:', weatherInfo['city'])
print ('时间:', weatherInfo['date_y'])
print ( '24小时天气:')
print ('温度:', weatherInfo['temp1'])
print ('天气:', weatherInfo['weather1'])
print ('风速:', weatherInfo['wind1'])
print ('紫外线:', weatherInfo['index_uv'])
print ('穿衣指数:', weatherInfo['index_d'])
print ('48小时天气:')
print ('温度:', weatherInfo['temp2'])
print ('天气:', weatherInfo['weather2'])
print ('风速:', weatherInfo['wind2'])
print ('紫外线:', weatherInfo['index48_uv'])
print ('穿衣指数:', weatherInfo['index48_d'])
print ('72小时天气:')
print ('温度:', weatherInfo['temp3'])
print ('天气:', weatherInfo['weather3'])
print ('风速:', weatherInfo['wind3'])
input ('按任意键退出:')


这个代码一直报错,不知道为什么?求大佬解答

空洞骑士ln 发表于 2022-5-14 17:13:42

.pkl文件我不知道怎么上传,是不是我等级不够呀?

Twilight6 发表于 2022-5-15 12:12:11


不支持上传 pkl 文件,可以 将文件压缩后上传压缩包即可

suchocolate 发表于 2022-5-15 12:47:56

报错信息贴一下。

空洞骑士ln 发表于 2022-5-15 21:31:06

Twilight6 发表于 2022-5-15 12:12
不支持上传 pkl 文件,可以 将文件压缩后上传压缩包即可

好的,谢谢大佬。

空洞骑士ln 发表于 2022-5-15 21:40:07

本帖最后由 空洞骑士ln 于 2022-5-15 21:46 编辑

Traceback (most_recent , ca11. 1ast) :
File "F:\天气预报\天气查询.py",line 11, in <module>
weather JSON = json.JSONDecoder (). decode (weatherHTML)#创建jsonFi1e "F : \python\iib\json\ decoder.py", 1ine 337,in decode
obj, end = self.raw_decode(s,idx=_w(s,o). end()
Fi1e"F : \python\lib\json)decoder.py", 1ine 355, in raw_decode
raise JSONDecodeError("Expecting value", s,err. value) from Nonejson. decoder.JSONDecodeError: Expecting value: 1ine 1 column 1 (char 0)
>>>

suchocolate 发表于 2022-5-15 22:42:55

空洞骑士ln 发表于 2022-5-15 21:40


第9句爬取返回的是html,不是json,传给json处理不是json的数据就会报这个错。
页: [1]
查看完整版本: 关于第31讲,天气预报系统的求助?