Use the same api to call the third party translator apis, such as google, tencent, baidu.
Project description
cloud-translator
Use the same api to call the third party translator apis, such as google, tencent, baidu.
Prerequisite
Python 3.7 or more latest version
Installation
pip install cloud-translator
Usage
The library support GoogleTranslator, TencentTranslator, BaiduTranslator, where GoogleTranslator depends on py-googletrans which not needs appid and appkey, but is not stable and probably blocked by google.
TencentTranslator and BaiduTranslator are rewritted with reference to the offical demo script to support python 3.7 version
from translator import *
# use google
translator = GoogleTranslator()
print(translator.translate('我是中国人', dest='en'))
# use baidu api
translator = BaiduTranslator(appid, appkey)
print(translator.translate('我是中国人', dest='en'))
# use tencent api
translator = TencentTranslator(appid, appkey)
print(translator.translate('我是中国人', dest='en'))
# throttle api call frequency.
translate_func = throttle(seconds=1)(translator.translate) # call api every second
for i in range(100):
translate_func('我是中国人', dest='en')
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
cloud-translator-1.0.tar.gz
(3.4 kB
view hashes)
Built Distribution
Close
Hashes for cloud_translator-1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9b30991ace789bdbfff07d12699e2d78aea1ccb57168da0142d2a79b3980fcfc |
|
MD5 | 137a32064a34c25b77fbadd543ec84dc |
|
BLAKE2b-256 | 22d0880b128e9ce0c1c60e32c4706cfdcc6ec52fd8641339ed77280f6638c6b6 |