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.
- Host: GitHub
- URL: https://github.com/statickidz/python-google-translate-free
- Owner: statickidz
- Created: 2016-02-04T11:46:34.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-04T11:52:52.000Z (over 10 years ago)
- Last Synced: 2025-05-31T06:31:30.460Z (about 1 year ago)
- Language: Python
- Size: 2.93 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```