1 Star 0 Fork 1

AskBuckly/python

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
translate.py 656 Bytes
一键复制 编辑 原始数据 按行查看 历史
九世 提交于 2018-01-21 16:57 . 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)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/askbuckly/python.git
[email protected]:askbuckly/python.git
askbuckly
python
python
master

搜索帮助