Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #45380
| Path | csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.freenet.ag!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <rosuav@gmail.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.001 |
| X-Spam-Evidence | '*H*': 1.00; '*S*': 0.00; 'python,': 0.02; 'url:pypi': 0.03; '16,': 0.03; 'subject:Python': 0.06; 'pypi': 0.07; 'advance': 0.07; 'translator': 0.09; 'python': 0.11; 'translation': 0.12; 'blank,': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'subject:API': 0.16; 'wrote:': 0.18; 'bit': 0.19; 'thu,': 0.19; 'written': 0.21; 'module,': 0.24; 'source': 0.25; 'header:In-Reply-To:1': 0.27; 'external': 0.29; '[1]': 0.29; 'am,': 0.29; '[2]': 0.30; 'message- id:@mail.gmail.com': 0.30; 'work.': 0.31; 'open': 0.33; 'url:python': 0.33; 'actual': 0.34; 'could': 0.34; 'received:209.85': 0.35; 'received:209.85.220': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'there': 0.35; 'thanks': 0.36; 'url:org': 0.36; 'searching': 0.37; 'application': 0.37; 'received:209': 0.37; 'whatever': 0.38; 'to:addr:python-list': 0.38; 'help,': 0.39; 'to:addr:python.org': 0.39; 'url:3': 0.61; 'reverse': 0.68; 'order:': 0.84; '2013': 0.98 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:content-type; bh=Lp8IsJTM+uDL75Ev9yK72Nmgjelr2FlRRLjQI7jbS2o=; b=kCHjte9kQSqZ+h4QqjifGJkWvBK6kPbxwzM8nV6UM7zvBM7wAlHGQMULJXFUBQ9E3l ykUkf8fExbKskwtwZ4ZJiuCgtl9SXCuThjZJAQ200O2EOzyil0eE5Bd+Cg3Rzg4KTAhW cgNwZP+IxxonQVTTtau2l/I+vZ002VeE6vY0VADcWW1LzI7224xNjj6Mb7J02RPBUlLa iyKns/g7wzyBDX0kgbkYNnQyO5GAHpK3FXdRdV1OqoSjWg2qIRQqIVFYIzd29I7DvfYc VjqXPGqFqRmTPWAkPmxsb6S9hrGJuY8LpU1Rd0iXl+eUzuACW0EgQWhOp4E3hjle2wqx ceEA== |
| MIME-Version | 1.0 |
| X-Received | by 10.220.215.73 with SMTP id hd9mr26708314vcb.19.1368662533379; Wed, 15 May 2013 17:02:13 -0700 (PDT) |
| In-Reply-To | <baff2d6f-272a-479e-8f78-2aafb74e6a5d@googlegroups.com> |
| References | <baff2d6f-272a-479e-8f78-2aafb74e6a5d@googlegroups.com> |
| Date | Thu, 16 May 2013 10:02:13 +1000 |
| Subject | Re: Translation API in Python |
| From | Chris Angelico <rosuav@gmail.com> |
| To | python-list@python.org |
| Content-Type | text/plain; charset=ISO-8859-1 |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.15 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.1723.1368662535.3114.python-list@python.org> (permalink) |
| Lines | 22 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1368662535 news.xs4all.nl 15930 [2001:888:2000:d::a6]:44861 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:45380 |
Show key headers only | View raw
On Thu, May 16, 2013 at 8:00 AM, Hala Gamal <halagamal2009@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
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Translation API in Python Hala Gamal <halagamal2009@gmail.com> - 2013-05-15 15:00 -0700
Re: Translation API in Python Chris Angelico <rosuav@gmail.com> - 2013-05-16 10:02 +1000
Re: Translation API in Python Hala Gamal <halagamal2009@gmail.com> - 2013-05-21 15:16 -0700
Re: Translation API in Python Chris Angelico <rosuav@gmail.com> - 2013-05-23 00:27 +1000
csiph-web