1 Star 1 Fork 1

度量衡/ms-script-conf

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
TranslateDemo.py 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
度量衡 提交于 2023-12-04 09:59 . add code
import requests
import sys
from utils.AuthV3Util import addAuthParams
# 您的应用ID
APP_KEY = '2cbc2f3b2e927a6f'
# 您的应用密钥
APP_SECRET = 'oLkwQZX4cqsd313FyJppwhvQC7V4Zc3O'
def createRequest():
'''
note: 将下列变量替换为需要请求的参数
'''
q = sys.argv[1]
lang_from = 'en'
lang_to = 'zh-CHS'
vocab_id = '您的用户词表ID'
data = {'q': q, 'from': lang_from, 'to': lang_to, 'vocabId': vocab_id}
addAuthParams(APP_KEY, APP_SECRET, data)
header = {'Content-Type': 'application/x-www-form-urlencoded'}
res = doCall('https://openapi.youdao.com/api', header, data, 'post')
print(str(res.content, 'utf-8'))
def doCall(url, header, params, method):
if 'get' == method:
return requests.get(url, params)
elif 'post' == method:
return requests.post(url, params, header)
# 网易有道智云翻译服务api调用demo
# api接口: https://openapi.youdao.com/api
if __name__ == '__main__':
createRequest()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/laoyang103/ms-script-conf.git
[email protected]:laoyang103/ms-script-conf.git
laoyang103
ms-script-conf
ms-script-conf
master

搜索帮助