Metadata-Version: 1.0
Name: translate
Version: 0.0.2
Summary: 
This is a simple, yet powerful command line translator with google translate
in behind.

Home-page: https://github.com/terryyin/google-translate-python
Author: Terry Yin
Author-email: terry.yinze@gmail.com
License: UNKNOWN
Description: google-translate-python
        =======================
        
        Google translate as Python module &amp; command line tool. No key, no authentication whatsoever.
        
        ## Installation
        <pre>
        python setup.py install
        </pre> 
        Add sudo in the beginning if you met problem.
        
        ## Command-Line Usage
        In your command-line:
        <pre>
        translate "This is a pen."
        </pre>
        
        ## Use As A Python Module
        <pre>
        from translate import Translator
        translator= Translator(to_lang="zh")
        translation = translator.translate("This is a pen.")
        </pre>
        The result is in translation, and it's usually a unicode string.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: Freeware
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Topic :: Education
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
