All Projects → imWildCat → sogou-translate

imWildCat / sogou-translate

Licence: WTFPL license
The Python wrapper for Sogou Translate API.

Programming Languages

python
139335 projects - #7 most used programming language
Makefile
30231 projects

Projects that are alternatives of or similar to sogou-translate

Php Google Translate Free
PHP class to use the Google Translator API for free.
Stars: ✭ 182 (+378.95%)
Mutual labels:  translate
Deep Translator
A flexible free and unlimited python tool to translate between different languages in a simple way using multiple translators.
Stars: ✭ 233 (+513.16%)
Mutual labels:  translate
pypapago
🐧[Archived][Unofficial] Python wrapper for Papago translation service
Stars: ✭ 45 (+18.42%)
Mutual labels:  translate
Saladict Desktop
✨✨桌面划词与翻译工具,聚合了 N 多词典,功能强大,支持 Windows 、 Mac 和 Linux。
Stars: ✭ 187 (+392.11%)
Mutual labels:  translate
Vscode Comment Translate
vscode 注释翻译插件, 不干扰正常代码,方便快速阅读源码。
Stars: ✭ 235 (+518.42%)
Mutual labels:  translate
Flutter translate
Flutter Translate is a fully featured localization / internationalization (i18n) library for Flutter.
Stars: ✭ 245 (+544.74%)
Mutual labels:  translate
React Translated
A dead simple way to add complex translations (i18n) in a React (DOM/Native) project 🌎🌍🌏
Stars: ✭ 176 (+363.16%)
Mutual labels:  translate
AlfredWorkflow YoudaoTranslate
alfred workflow,有道翻译
Stars: ✭ 20 (-47.37%)
Mutual labels:  translate
Tms
基于频道模式的团队沟通协作+轻量级任务看板,支持mardown、富文本、在线表格和思维导图的团队博文wiki,i18n国际化翻译管理的响应式web开源团队协作系统。
Stars: ✭ 232 (+510.53%)
Mutual labels:  translate
LibreTranslate
Free and Open Source Machine Translation API. Self-hosted, offline capable and easy to setup.
Stars: ✭ 3,932 (+10247.37%)
Mutual labels:  translate
Yii2 Translate Manager
Translation Manager
Stars: ✭ 221 (+481.58%)
Mutual labels:  translate
Mtranslate
A simple api for google translate
Stars: ✭ 222 (+484.21%)
Mutual labels:  translate
HighlightTranslator
Highlight Translator can help you to translate the words quickly and accurately. By only highlighting, copying, or screenshoting the content you want to translate anywhere on your computer (ex. PDF, PPT, WORD etc.), the translated results will then be automatically displayed before you.
Stars: ✭ 54 (+42.11%)
Mutual labels:  translate
Transformation Matrix
Javascript isomorphic 2D affine transformations written in ES6 syntax. Manipulate transformation matrices with this totally tested library!
Stars: ✭ 184 (+384.21%)
Mutual labels:  translate
po-auto-translation
translate PO files automatically for FREE using google translate
Stars: ✭ 33 (-13.16%)
Mutual labels:  translate
Cv Translation
我叫CV翻译,因为我的精髓就是Ctrl + c 不用v (原名QTranser)
Stars: ✭ 180 (+373.68%)
Mutual labels:  translate
Dict
Chinese and English translation tools in the command line(命令行下中英文翻译工具)
Stars: ✭ 243 (+539.47%)
Mutual labels:  translate
terminal-translate
a terminal-translate tool
Stars: ✭ 73 (+92.11%)
Mutual labels:  translate
pdx-ymltranslator
Paradox Interactive YML Translator
Stars: ✭ 18 (-52.63%)
Mutual labels:  translate
translation-google
A Google Translate component for Nodejs.
Stars: ✭ 42 (+10.53%)
Mutual labels:  translate

Sogou-Translate Build Status codecov PyPI version

The Python wrapper for Sogou Translate API. Only Python 3.6 is supported.

sogou_translate_logo

Get started

You could install this library using pip:

pip install sogou-translate

Note: You might have to apply for the keys in order to use the service. If you wish to have a brief demo of this service, you could use the demo keys mentioned in the related web pages.

Example usage

from sogou_translate import SogouTranslate, SogouLanguages

trans = SogouTranslate('[Your pid]', '[Your secret key]')

en_text = 'Hello, world!'
zh_text = trans.translate(en_text, from_language=SogouLanguages.EN, to_language=SogouLanguages.ZH_CHS)
print(zh_text) # '你好,世界!'

License

The code is licensed under DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE. For more details, read the LICENSE file.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].