赞
踩
import json
import requests
##以翻译hello为例
###输入查询词,在header处显示的是post方式访问,访问的链接是https://fanyi.baidu.com/sug,response时数据是json格式content-type: application/json,输入的值是kw: hell
url="https://fanyi.baidu.com/sug"
data={'kw':'hello'}
resp=requests.post(url,data=data)
html=resp.content.decode('utf-8')
myjson=json.loads(html)
print(myjson)
print(myjson['data'][0]['v'])
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。