Post方式之百度翻译的爬取
生活随笔
收集整理的這篇文章主要介紹了
Post方式之百度翻译的爬取
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
from urllib import request,parse
import json
# 翻譯函數(shù)
def fanyi(msg):
#參數(shù)封裝
data = {
"kw": content
}
#參數(shù)拼接以及轉(zhuǎn)碼
data = parse.urlencode(data)
#請求地址
base_url = "http://fanyi.baidu.com/sug"
# Post
headers = {
"Content-Length": len(data), #動態(tài)計算d··ata長度
"User-Agent": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36"
}
#封裝一個request對象(地址,數(shù)據(jù),headers)
req = request.Request(url=base_url, data=bytes(data, encoding="utf-8"), headers=headers)
#發(fā)起請求,并得到響應(yīng)
response = request.urlopen(req)
#讀取內(nèi)容
html = response.read()
html = html.decode("utf-8") #轉(zhuǎn)碼
json_data = json.loads(html)#使用json格式化
#print(json_data)
# 整理數(shù)據(jù)
for item in json_data["data"]:
print(item["k"], item["v"])
if __name__ == "__main__":
#輸入數(shù)據(jù)
content = input("請輸入您要翻譯的內(nèi)容:")
#翻譯
fanyi(content)
# https://tbmsg.baidu.com/gmessage/get?mtype=1&_=1521032999727
# https://tieba.baidu.com/f?kw=qq%E7%82%AB%E8%88%9E%E6%89%8B%E6%B8%B8&ie=utf-8&pn=50
import json
# 翻譯函數(shù)
def fanyi(msg):
#參數(shù)封裝
data = {
"kw": content
}
#參數(shù)拼接以及轉(zhuǎn)碼
data = parse.urlencode(data)
#請求地址
base_url = "http://fanyi.baidu.com/sug"
# Post
headers = {
"Content-Length": len(data), #動態(tài)計算d··ata長度
"User-Agent": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36"
}
#封裝一個request對象(地址,數(shù)據(jù),headers)
req = request.Request(url=base_url, data=bytes(data, encoding="utf-8"), headers=headers)
#發(fā)起請求,并得到響應(yīng)
response = request.urlopen(req)
#讀取內(nèi)容
html = response.read()
html = html.decode("utf-8") #轉(zhuǎn)碼
json_data = json.loads(html)#使用json格式化
#print(json_data)
# 整理數(shù)據(jù)
for item in json_data["data"]:
print(item["k"], item["v"])
if __name__ == "__main__":
#輸入數(shù)據(jù)
content = input("請輸入您要翻譯的內(nèi)容:")
#翻譯
fanyi(content)
# https://tbmsg.baidu.com/gmessage/get?mtype=1&_=1521032999727
# https://tieba.baidu.com/f?kw=qq%E7%82%AB%E8%88%9E%E6%89%8B%E6%B8%B8&ie=utf-8&pn=50
轉(zhuǎn)載于:https://www.cnblogs.com/cuihengyue/p/8714584.html
與50位技術(shù)專家面對面20年技術(shù)見證,附贈技術(shù)全景圖總結(jié)
以上是生活随笔為你收集整理的Post方式之百度翻译的爬取的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Django:ORM关系字段
- 下一篇: 1 python基础