An open API service indexing awesome lists of open source software.

https://github.com/statickidz/python-google-translate-free

Simple Python class for talking to Google's Translate API for free.
https://github.com/statickidz/python-google-translate-free

Last synced: 11 months ago
JSON representation

Simple Python class for talking to Google's Translate API for free.

Awesome Lists containing this project

README

          

# python-google-translate-free
Simple Python class for talking to Google's Translate API for free.

# Usage
```python
# coding=utf-8
from lib.translator import GoogleTranslate as translator

translation = translator.translate("es", "en", "Esto es una prueba")

print translation # output: This is a test
```