|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
代码如下:
import urllib.request
import json
import pickle
pickle_file = open('city_data.pkl','rb')
city = pickle.load(pickle_file)
password=input('请输入城市:')
name1=city[password]
File1 =urllib.request.urlopen('http://m.weather.com.cn/data/'+name1+'.html')#打开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('按任意键退出:')
运行之后报错是什么原因,求各位大佬
请输入城市:汕头
Traceback (most recent call last):
File "D:\Users\Desktop\天气脚本\天气查询.py", line 12, in <module>
weatherJSON = json.JSONDecoder().decode(weatherHTML)#创建json
File "C:\Users\Administrator\AppData\Local\Programs\Python\Python310\lib\json\decoder.py", line 337, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "C:\Users\Administrator\AppData\Local\Programs\Python\Python310\lib\json\decoder.py", line 355, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 2 column 1 (char 1)
没人能保证一个网页在一夜之间不会改变,更何况这是9年前出现在论坛上的帖子,鱼C论坛的界面以前也不是这样的,你看视频也多多少少能看出点。只要一改代码就很有可能用不了。所以当年老师能用的代码放在现在就不一定能用了
至于要怎么修改,等你学到后面的爬虫就知道了,另外建议看看另一个系列,叫《极客Python之效率革命》,里面有教一个比官方爬虫库更方便的模块
|
|