translate tool support(google,baidu,iciba,youdao)
Project description
translate utils support google,baidu,iciba,youdao
[introduction]
- support version: python 3.0+
down install
- pip install:
pip install translate-util
DEMO
from translate_util.translate_tool import translate_other2cn,translate_other2en
# translate other language to chinese (default use google)
print(translate_other2cn('china'))
# translate other language to english (default use google)
print(translate_other2en('中国'))
# other translate demo
content = 'china'
for plat in ['google', 'baidu', 'iciba', 'youdao']:
print(f'{plat}:{translate_other2cn(content, plat)}')
content = '中国'
for plat in ['google', 'baidu', 'iciba', 'youdao']:
print(f'{plat}:{translate_other2en(content, plat)}')
# if your request is limit by google,please use proxies ip
tran_rs = translate_other2cn('chinese', 'youdao', proxies='5.34.178.48:8080')
print(tran_rs)
OTHER SUPPORT
any customization demand,contact me with email
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
translate_util-1.0.5.tar.gz
(5.4 kB
view hashes)
Built Distribution
Close
Hashes for translate_util-1.0.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e715edf3eeabc4c6de655abec5ad1d495f0f62d39c127b963c6f260725b325c2 |
|
MD5 | 9243dfec8bb7f5922770c936df375d52 |
|
BLAKE2b-256 | 19e41f3afc0a7dfda2d78536716ed52727d85a257b2b8c235d6dc5a79e5b1ed4 |