python写一个翻译的小脚本

时间:2021-11-05 03:54:18

起因:

想着上学看不懂English的PDF感慨万分........

然后就有了翻译的脚本。

截图:python写一个翻译的小脚本

代码:

#-*- coding:'utf-8' -*-
import requests
import json
import time
start=time.time()
def live():
while True:
content=input('输入你要翻译的:')
if content=="e":
break
chrome={"user-agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36"}
url="https://fanyi.youdao.com/openapi.do?keyfrom=123licheng&key=1933182090&type=data&doctype=json&version=1.1&q={}".format(content)
html=requests.get(url,headers=chrome)
resqer=html.content
load=json.loads(resqer)
print(load["translation"][0])
live()
exit=time.time()
print('[+]该程序耗时',exit-start)