码迷,mamicode.com
首页 > Web开发 > 详细

baidu_urllib_requests

时间:2018-08-16 00:56:07      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:any   python   翻译   highlight   解析json   urllib   text   print   pos   

import requests
import json
# 1. url
url = ‘http://fanyi.baidu.com/sug‘
# 2. form/ data/ body
def translate(kw):
    form = {
        ‘kw‘: kw
    }
    
    # request 的post方法色使用
    response = requests.post(url, data=form)

    # str = response.content.decode(‘utf-8/gbk/gb2312/gb18080‘) =
    response.encoding = ‘utf-8/gbk/gb2312/gb18080‘
    str = response.text

    # 4. 解析json
    res_dict = json.loads(response.text)
    # 5. 打印翻译结果
    #print(res_dict)
    result = res_dict[‘data‘][0][‘v‘]
    return result

if __name__ == ‘__main__‘:
    res = translate(‘哈哈‘)
    print(res)
    res = translate(‘绿色‘)
    print(res)

  

baidu_urllib_requests

标签:any   python   翻译   highlight   解析json   urllib   text   print   pos   

原文地址:https://www.cnblogs.com/gxsmm/p/9484520.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!