谷歌翻译二十遍代码
import json
import requests
def fy1(word):
b = word
def fy(b):
cd = b
# 翻译函数,word 需要翻译的内容
def translate(cd):
global aaa
# 有道词典 api
url = 'http://fanyi.youdao.com/translate?smartresult=dict&smartresult=rule&smartresult=ugc&sessionFrom=null'
# 传输的参数,其中 i 为需要翻译的内容
key = {
'type': "AUTO",
'i': cd,
"doctype": "json",
"version": "2.1",
"keyfrom": "fanyi.web",
"ue": "UTF-8",
"action": "FY_BY_CLICKBUTTON",
"typoResult": "true"
}
# key 这个字典为发送给有道词典服务器的内容
response = requests.post(url, data=key)
# 判断服务器是否相应成功
if response.status_code == 200:
# 然后相应的结果
return response.text
aaa = response.text
else:
print("有道词典调用失败")
# 相应失败就返回空
return None
def get_reuslt(repsonse):
global result
# 通过 json.loads 把返回的结果加载成 json 格式
result = json.loads(repsonse)
def main():
global list_trans
list_trans = translate(cd)
get_reuslt(list_trans)
if __name__ == '__main__':
main()
return result
c = fy(b)
d = c['translateResult'][0][0]['tgt']
return d
print("该软件使用有道翻译api,一天翻译次数超过24000次就会被封禁!")
txt = input("请输入要翻译20遍的内容:\n")
print("翻译中...")
try:
for i in range(20):
txt = fy1(txt)
except:
pass
print("结果:")
print(txt)
input("摁回车键继续...")