Metadata-Version: 1.0
Name: gtt-python-client
Version: 0.2a1
Summary: Python bindings for Google Translator Toolkit API.
Home-page: https://github.com/jellycrystal/gtt-python-client
Author: Yury Yurevich
Author-email: yyurevich@jellycrystal.com
License: BSD
Description: gtt-python-client
        =======================
        
        Python bindings for Google Tranlator Toolkit API
        http://code.google.com/apis/gtt/
        
        Alpha version, have only basic support (models, ACL) yet.
        
        Installation
        ------------
        
        pip install gtt-python-client
        
        
        Usage
        -----
        
        >>> import translator.client
        
        >>> client = translator.client.TranslatorToolkitClient()
        
        >>> client.client_login('some.google@account', 'P4ssW0rD', 'gtt-client')
        
        >>> document = client.get_documents().entry[0]
        
        >>> acl_link = document.find_acl_link()
        
        >>> client.add_acl(acl_link, 'other.gooogle@account', 'writer')
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
