python 爬取网页json数据处理

#格式不符合json.loads的格式要求,格式为:jquery123123_123123({}),所以用正则取{}的内容

#又温习了一下字典的遍历

r=requests.post(url,data=postData)

r.encoding=r.apparent_encoding
#print(r.text)

html=r.text

jsondata = re.search(r'\(([\s\S]*?)$',html).group(1)[:-1]

#print(jsondata)
s=json.loads(jsondata)
comList=s['data']['CorpInfoList']
i=1
for com in comList:

line=''

for key,value in com.items():
line+=value+'\t'
wf.write(line+'\n')
wf.flush()

你可能感兴趣的:(python)