mstranslate

Microsoft(Bing) translate API for python3


Keywords
translate, api
License
Other
Install
pip install mstranslate==1.0.1

Documentation

Python-Microsoft-Translate-API

Microsoft(Bing) translate API for python3


###Requirement

Requests

Python3


###Installation

pip install mstranslate

###Usage

from mstranslate import MSTranslate

kk = MSTranslate('client_id', 'client_secret')
print(kk.translate('你好', 'en'))
>>> How do you do

PS:You can specificy the from language as the third parameter in translate() function.