DeepLX 使用
大约 2 分钟使用指南DeepLX
概述
DeepLX 是一个开源项目,它基于 DeepL 免费服务,将其转换为本地 API,提供给第三次程序使用,如沉浸式翻译等.DeepLX 是一个开源项目,项目GITHUB地址→DeepLX←
相关信息
zhile佬同样反代了DeepL服务,并且能完美绕过频率限制,让你能够爽用
注意
假如你发现用不了了,请手动访问一次接口地址,过一下CF的五秒盾 接口地址
接口调用
接口地址:
https://api.deeplx.org/translate
接口参数
text: 待翻译的文字
source_lang: 你当前提交的文字语言(可设置为"auto"自动识别)
target_lang: 你欲要翻译为的语言
调用示例:
Curl
curl --location 'https://api.deeplx.org/translate' \
--header 'Content-Type: application/json' \
--data '{
"text": "Hello, world!",
"source_lang": "EN",
"target_lang": "ZH"
}'
javascript
var myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");
var raw = JSON.stringify({
"text": "Hello, world!",
"source_lang": "auto",
"target_lang": "ZH"
});
var requestOptions = {
method: 'POST',
headers: myHeaders,
body: raw,
redirect: 'follow'
};
fetch("https://api.deeplx.org/translate", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));
nodejs
const axios = require('axios');
let data = JSON.stringify({
"text": "Hello, world!",
"source_lang": "auto",
"target_lang": "ZH"
});
let config = {
method: 'post',
maxBodyLength: Infinity,
url: 'https://api.deeplx.org/translate',
headers: {
'Content-Type': 'application/json'
},
data : data
};
axios.request(config)
.then((response) => {
console.log(JSON.stringify(response.data));
})
.catch((error) => {
console.log(error);
});
Python
import requests
import json
url = "https://api.deeplx.org/translate"
payload = json.dumps({
"text": "Hello, world!",
"source_lang": "auto",
"target_lang": "ZH"
})
headers = {
'Content-Type': 'application/json'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
在沉浸式翻译使用
首先访问 沉浸式翻译 官网,根据你的浏览器下载相应的插件
安装好之后,点击浏览器右上角插件按钮,选择"沉浸式翻译",进入设置页面
在左下角点击"开发者设置",点击开启"Beta测试特性"
点击"基本设置",之后翻译服务选择"DeepLX",在"API URL"下填入API:
https://api.deeplx.org/translate
之后点击右上角"点击测试服务",提示成功即可