f = urlopen('http://api.wunderground.com/api/API_KEY_HERE/geolookup/conditions/q/CA/LosAngeles.json')
str_response = f.readline().decode('utf-8')
parsed_json = json.loads(str_response)
location = parsed_json['location']['city']
temp_f = parsed_json['current_observation']['temp_f']
print ("Current temperature is:", temp_f, " degrees Fahrenheit")
precep = parsed_json['current_observation']['precep_today_in']
print("Current wind speed is:", precep)
wind = parsed_json['current_observation']['wind_mph']
print("Current wind speed is:", wind)
gust = parsed_json['current_observation']['wind_gust_mph']
print("Current wind gust speed:", gust)
f.close()
我看到了这个JSONDecodeError: Expecting value: line 1 column 1,但我不知道如何在其中添加这段代码。
这是我要求的API部分:
relative_humidity "81%"
wind_string "Calm"
wind_dir "NNE"
wind_degrees 23
wind_mph 0
wind_gust_mph 0
wind_kph 0
wind_gust_kph 0
pressure_mb "1012"
pressure_in "29.87"
pressure_trend "-"
dewpoint_string "53 F (12 C)"
dewpoint_f 53
dewpoint_c 12
heat_index_string "NA"
heat_index_f "NA"
heat_index_c "NA"
windchill_string "NA"
windchill_f "NA"
windchill_c "NA"
答案 0 :(得分:3)
使用f.readline()
,您的代码仅读取API返回的第一行,该行恰好是空行,因此JSON编码器抱怨没有数据。
将f.readline().decode('utf-8')
更改为f.read().decode('utf-8')
,您应该克服此错误。