2

which API can i use to translate text in Python?

I don't want to use Google or Bing. Is there something others?

Google keeps saying "Day limit exceed" and Bing translates first 3-4 questions and then i've got "Cannot find an active Azure Market Place Translator Subscription associated with the request credentials"

Kaczper
  • 103
  • 1
  • 2
  • 11

1 Answers1

0

I made this script if you want to check it: https://github.com/mouuff/Google-Translate-API : )

very easy to use:

to_translate = 'Hola como estas?'
print("%s >> %s" % (to_translate, translate(to_translate)))
print("%s >> %s" % (to_translate, translate(to_translate, 'fr')))

should print Hola como estas >> Hello how are you

and Hola como estas? >> Bonjour comment allez-vous?

Arnaud Aliès
  • 1,079
  • 13
  • 26