python中非标准json处理 Posted on 2017-12-18 python中使用requests库时如果服务器返回结果非标准json格式,可以用re来处理,只匹配出标准的json格式。例子如下 response = requests.get('https://lay.com/', headers=headers, params=params, cookies=cookies, verify=False)js = json.loads(re.findall(r'\{.+\}', response.text)[0])tk = js['data']['Token']