The DeepL API offers officially-supported client libraries in Python, .NET, Node.js, PHP, Ruby, and Java. Need to generate your own client? There's an OpenAPI spec for that. Read the docs Get in touch Built something cool with our API? Need help? Just want to say hi? Reach out to...
我们打算用Python库支持DeepL API的全部功能中的所有功能,尽管新功能会在它们被添加到API之后才被添加到Python库中。 如果这就是你需要的,而且你想马上开始,你可以在这里查看Python客户端库和相关文件。 (此外,你需要一个API认证密钥以使用Python库。如果你还没有密钥,你可以在这里注册一个Free或Pro API计划。) 在...
例如,我们可以尝试翻译"Hello, world!"为中文:import requestsurl = 'https://api-free.deepl.com/v2/translate'key = '17c14c1e-0ba8-49b8-b317-25b58e00eb67fx' # 请替换为实际购买的Keyheaders = { 'Authorization': 'DeepL-Auth-Key ' + key, 'Content-Type': 'application/json'}data...
在我实现 DeepL Free Api 的过程中,我发现 DeepL 并没有像之前见到的一些接口设计那样,通过签名等手段来避免接口滥用,相反,他们使用了一些欺骗战术来混淆视听,从而尝试让抓包分析者放弃,本文将围绕此进行讨论。 过程 进入研究生阶段,为了方便阅读论文,为自己开发了划词翻译工具,在众多翻译引擎中 DeepL 的效果尤为出色。
在我对DeepL Free Api的实现中,我发现DeepL并没有像我之前看到的一些接口设计那样通过签名等手段来避免接口滥用,相反,他们使用一些欺骗性的手段来混淆视听,从而试图让抓包的分析师放弃,本文将围绕这一点进行讨论。 过程 进入研究生阶段后,为了方便阅读论文,我为自己开发了一个划痕翻译工具,在众多翻译引擎中,DeepL,效...
Note: If you are on a free API account, you can replace https://api.deepl.com with https://api-free.deepl.com. Step 3: Keep building with our client libraries and how-to guides. You can use our API with popular programming languages (Python, JavaScript, .NET, PHP, Java, Ruby). ...
Free API ユーザーの場合は、アカウントの [プラン] タブで アップグレードできます。よくあるご質問DeepL API Free と Pro のプランの違いは何ですか?DeepL API Free は、DeepL API Pro のプランの一種で、毎月最大 500,000 文字を無料で翻訳できます。
Use in Python import httpx, json deeplx_api = "http://127.0.0.1:1188/translate" data = { "text": "Hello World", "source_lang": "EN", "target_lang": "ZH" } post_data = json.dumps(data) r = httpx.post(url = deeplx_api, data = post_data).text print(r) Backup the Docker...
Note: If you are on a free API account, you can replacehttps://api.deepl.comwithhttps://api-free.deepl.com. Step 3: Keep building with our client libraries and how-to guides. You can use our API with popular programming languages (Python, JavaScript, .NET, PHP, Java, Ruby). Click...
Python zachey01/deepljs Star8 Code Issues Pull requests 💬 Unofficial DeepL API (without apikey) clideepldeepl-apideepl-translation-apifree-deepl UpdatedJan 20, 2025 JavaScript Unofficial DeepL extension to translate websites. chrome-extensiontranslatortranslationtranslatechrome-extensionsweb-translatortran...