Translation API in Python

Chris Angelico rosuav at gmail.com
Wed May 15 20:02:13 EDT 2013


On Thu, May 16, 2013 at 8:00 AM, Hala Gamal <halagamal2009 at gmail.com> wrote:
> I want to use A translator from Arabic to English and reverse in my application which is written in pyhton,
> Is there  any open source Translator that can be used with python,
> Or Any Suggestion?
> Please Help,
> Thanks In Advance :)

I would recommend, in order:
1) Searching the Python modules [1]
2) Searching PyPI [2]
3) Searching the web [3]
4) Finding a translation program that uses stdin/stdout

I suspect #1 will come up blank, but any of the others could well come
up with something. Working with an external program is a bit harder
than an actual Python module, but it'll work.

ChrisA
[1] http://docs.python.org/3/
[2] https://pypi.python.org/pypi
[3] http://www.google.com/ or http://www.duckduckgo.com/ or
http://yahoo.com/ or whatever



More information about the Python-list mailing list