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 plat translate demo
content = 'china'
for plat in ['google', 'baidu', 'youdao']:
print(f'{plat}:{translate_other2cn(content, plat)}')
content = '中国'
for plat in ['google', 'baidu', 'youdao']:
print(f'{plat}:{translate_other2en(content, plat)}')
# if your request is limit by google,please use proxies ip
tran_rs = translate_other2cn(content='chinese', platform='google', 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.9.tar.gz
(5.6 kB
view hashes)
Built Distribution
Close
Hashes for translate_util-1.0.9-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4cfb9df73837f33ab8a3268d09f330a2264a9312f95072afc2453fcec520dc76 |
|
MD5 | af2d6ee08b935eb22cf7e72ed10019a0 |
|
BLAKE2b-256 | 24522c8e8528e6546396e26f71f1cef461c39965d84e6d6214b57f2e97dbf39d |