爬虫获取到的信息转换成Json格式时出错
发表在Python图书答疑
2020-07-26
《Python项目开发案例集锦》第11章 火车票分析助手 219页-219页
是否精华
是
否
版块置顶:
是
否
def query(date, from_station, to_station): data.clear() # 清空数据 type_data.clear() # 清空车次分类保存的数据 # 查询请求地址 url = 'https://kyfw.12306.cn/otn/leftTicket/queryZ?leftTicketDTO.train_date={}&leftTicketDTO.from_station={}&leftTicketDTO.to_station={}&purpose_codes=ADULT'.format( date, from_station, to_station) # 发送查询请求 response = requests.get(url) print(response) # # 将json数据转换为字典类型,通过键值对取数据 result = response.json() print(result) 出错信息如下: File "C:\python\lib\json\decoder.py", line 337, in decode obj, end = self.raw_decode(s, idx=_w(s, 0).end()) File "C:\python\lib\json\decoder.py", line 355, in raw_decode raise JSONDecodeError("Expecting value", s, err.value) from None json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
首页上一页 1 下一页尾页 4 条记录 1/1页