久久r热视频,国产午夜精品一区二区三区视频,亚洲精品自拍偷拍,欧美日韩精品二区

您的位置:首頁技術文章
文章詳情頁

python 調用Google翻譯接口的方法

瀏覽:2日期:2022-07-02 17:13:33

一、網頁分析打開谷歌翻譯鏈接:https://translate.google.com/

按F12,點擊network。在左側輸入'who are you'

python 調用Google翻譯接口的方法

可以看到,請求的鏈接為:

https://translate.google.com/_/TranslateWebserverUi/data/batchexecute?rpcids=MkEWBc&f.sid=-2609060161424095358&bl=boq_translate-webserver_20201203.07_p0&hl=zh-CN&soc-app=1&soc-platform=1&soc-device=1&_reqid=359373&rt=c

發送的數據為:

python 調用Google翻譯接口的方法

這里面的who are you表示,需要翻譯的文字

ja 表示日本的簡稱。

二、代碼演示

# !/usr/bin/python3# -*- coding: utf-8 -*-import requestsimport redef translated_content(text, target_language): headers = { 'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9', # 'accept-language': 'en,zh-CN;q=0.9,zh;q=0.8', 'content-type': 'application/x-www-form-urlencoded;charset=UTF-8', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Safari/537.36' } # 請求url url = 'https://translate.google.com/_/TranslateWebserverUi/data/batchexecute?rpcids=MkEWBc&f.sid=-2609060161424095358&bl=boq_translate-webserver_20201203.07_p0&hl=zh-CN&soc-app=1&soc-platform=1&soc-device=1&_reqid=359373&rt=c' # 數據參數 from_data = { 'f.req': r'''[[['MkEWBc','[['{}','auto','{}',true],[null]]',null,'generic']]]'''.format(text, target_language) } try: r = requests.post(url, headers=headers, data=from_data, timeout=60) if r.status_code == 200: # 正則匹配結果 response = re.findall(r’,[['(.*?)',[’, r.text) if response:response = response[0] else:response = re.findall(r’,[['(.*?)']’, r.text)if response: response = response[0] return response except Exception as e: print(e) return False# 翻譯各個國家語言for i in [’en’, ’zh’, ’fr’, ’ja’, ’de’]: response = translated_content('who are you', i) print(response)

執行輸出:

python 調用Google翻譯接口的方法

以上就是python 調用Google翻譯接口的方法的詳細內容,更多關于python 調用Google翻譯接口的資料請關注好吧啦網其它相關文章!

標簽: Python 編程
相關文章:
主站蜘蛛池模板: 武定县| 潮州市| 登封市| 丰都县| 栾川县| 湘阴县| 绥棱县| 扬中市| 家居| 修文县| 寻乌县| 阿勒泰市| 西畴县| 阜阳市| 重庆市| 白山市| 房产| 汽车| 钟山县| 红原县| 麻城市| 福建省| 夏邑县| 岚皋县| 石渠县| 金阳县| 牙克石市| 陵川县| 长寿区| 舟曲县| 诸城市| 东兰县| 扎鲁特旗| 文山县| 蕲春县| 荆州市| 西乡县| 信阳市| 蕲春县| 纳雍县| 临朐县|