A tiny Google Translate API wrapper written in Python. An API key is needed to use this. More information on obtaining the API key can be found on the [Google Translate API site](https://cloud.google.com/translate/).
The full list of [supported languages](https://cloud.google.com/translate/v2/using_rest#language-params).
usage
Identify your api key and make a new Client object. ` >>> from pygtaw import Client >>> api_key = 'ENTER_API_KEY' >>> client = Client(api_key) ` To make the translation request: ` >>> query = 'Hello, world!' >>> target = 'Korean' >>> source = 'English' >>> translation = client.translate(query, target, source) >>> >>> print translation.translated_text 안녕하세요 ` You can send a translation request without a source as well–the Google Translate API can detect the source language: ` >>> translation = client.translate('Hello', target='Spanish') >>> print translation.translated_text Hola >>> print translation.detected_source_language English `
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pygtaw-0.0.1.tar.gz.
File metadata
- Download URL: pygtaw-0.0.1.tar.gz
- Upload date:
- Size: 2.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fce978a77725b0c48919d5a850d5c0fa3efe9668f5350777e918b1f7ad9cfe06
|
|
| MD5 |
30a1f3c4d5b71e37ccb7c2446c35f216
|
|
| BLAKE2b-256 |
73ffedabe65227dd8a809b9223197d0de8bbf0e5275a23931b11c303f1d3234b
|