wenwu781923 发表于 2022-1-5 15:13:24

Python 零基础 :031 课

代码如下:

import urllib.request
import json
import pickle

pickle_file = open('city_data.pkl','rb')
city = pickle.load(pickle_file)

password=input('请输入城市:')
name1=city
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)

wp231957 发表于 2022-1-5 15:39:24

json解析错误,你得看一下你往里安的东东到底是不是json

78065564 发表于 2022-1-5 16:29:30

本帖最后由 78065564 于 2022-1-5 16:47 编辑

您好,raise JSONDecodeErrorjosn数据解码错误。
错误应该出在HTML= File1.read().decode('utf-8')#读入打开的url
weatherJSON = json.JSONDecoder
这两行代码

wenwu781923 发表于 2022-1-5 18:39:53

wp231957 发表于 2022-1-5 15:39
json解析错误,你得看一下你往里安的东东到底是不是json

我跟着小甲鱼老师走的,都是复制的

wp231957 发表于 2022-1-5 21:27:07

本帖最后由 wp231957 于 2022-1-5 21:32 编辑

wenwu781923 发表于 2022-1-5 18:39
我跟着小甲鱼老师走的,都是复制的

和那没关系,尤其是网络解析,瞬时变化
所以写代码,永远都要知道你在做什么
你都不知道你在做什么,那你的代码也是如此

wenwu781923 发表于 2022-1-7 10:09:26

wp231957 发表于 2022-1-5 21:27
和那没关系,尤其是网络解析,瞬时变化
所以写代码,永远都要知道你在做什么
你都不知道你在做什么, ...

好的,因为我是零基础,现在才到31课,课程里面的内容也还没有学到,跟着老师做的,只是老师的能运行,我的运行不了

PFBZSC 发表于 2022-1-9 19:54:23

wenwu781923 发表于 2022-1-7 10:09
好的,因为我是零基础,现在才到31课,课程里面的内容也还没有学到,跟着老师做的,只是老师的能运行,我 ...

没人能保证一个网页在一夜之间不会改变,更何况这是9年前出现在论坛上的帖子,鱼C论坛的界面以前也不是这样的,你看视频也多多少少能看出点。只要一改代码就很有可能用不了。所以当年老师能用的代码放在现在就不一定能用了

至于要怎么修改,等你学到后面的爬虫就知道了,另外建议看看另一个系列,叫《极客Python之效率革命》,里面有教一个比官方爬虫库更方便的模块

wenwu781923 发表于 2022-1-10 19:10:41

PFBZSC 发表于 2022-1-9 19:54
没人能保证一个网页在一夜之间不会改变,更何况这是9年前出现在论坛上的帖子,鱼C论坛的界面以前也不是这 ...

好的,应该是我太年轻了,谢谢
页: [1]
查看完整版本: Python 零基础 :031 课