translation icon indicating copy to clipboard operation
translation copied to clipboard

Python translation package

Results 6 translation issues
Sort by recently updated
recently updated
newest added

The default example fails with ```py In [6]: print(baidu('hello world!', dst = 'ru')) --------------------------------------------------------------------------- TranslateError Traceback (most recent call last) in () ----> 1 print(baidu('hello world!', dst = 'ru')) /home/chillaranand/.virtualenvs/py35/lib/python3.5/site-packages/translation/__init__.py...

Hi, Can you explain how exactly can I use translation module in Python?

Bing translator not working from last few days, getting error translation.exception.TranslateError: No translation get, you may retry

都可以在这里交流,我会及时回复的~

你好! 我试了这段code: from translation import google, ConnectError try: print(google('hello world!', dst = 'zh-CN', proxies = {'http': '127.0.0.1:1080'})) except ConnectError: print('Invaild proxy') 但是总是出现ConnectionRefusedError。请问是为什么呢?proxy 不对吗? 我试这段 from translation import baidu, google, youdao,...