Craig Citro | 15744b1 | 2015-03-02 13:34:32 -0800 | [diff] [blame] | 1 | #!/usr/bin/env python |
Joe Gregorio | 618e63b | 2010-11-04 19:55:28 -0400 | [diff] [blame] | 2 | # -*- coding: utf-8 -*- |
| 3 | # |
Craig Citro | 751b7fb | 2014-09-23 11:20:38 -0700 | [diff] [blame] | 4 | # Copyright 2014 Google Inc. All Rights Reserved. |
Joe Gregorio | 652898b | 2011-05-02 21:07:43 -0400 | [diff] [blame] | 5 | # |
| 6 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | # you may not use this file except in compliance with the License. |
| 8 | # You may obtain a copy of the License at |
| 9 | # |
| 10 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | # |
| 12 | # Unless required by applicable law or agreed to in writing, software |
| 13 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | # See the License for the specific language governing permissions and |
| 16 | # limitations under the License. |
Joe Gregorio | 618e63b | 2010-11-04 19:55:28 -0400 | [diff] [blame] | 17 | |
| 18 | """Simple command-line example for Translate. |
| 19 | |
Joe Gregorio | 652898b | 2011-05-02 21:07:43 -0400 | [diff] [blame] | 20 | Command-line application that translates some text. |
Joe Gregorio | 618e63b | 2010-11-04 19:55:28 -0400 | [diff] [blame] | 21 | """ |
INADA Naoki | e8d8782 | 2014-08-20 15:25:24 +0900 | [diff] [blame] | 22 | from __future__ import print_function |
Joe Gregorio | 618e63b | 2010-11-04 19:55:28 -0400 | [diff] [blame] | 23 | |
| 24 | __author__ = 'jcgregorio@google.com (Joe Gregorio)' |
| 25 | |
John Asmuth | 864311d | 2014-04-24 15:46:08 -0400 | [diff] [blame] | 26 | from googleapiclient.discovery import build |
Joe Gregorio | 618e63b | 2010-11-04 19:55:28 -0400 | [diff] [blame] | 27 | |
Joe Gregorio | af276d2 | 2010-12-09 14:26:58 -0500 | [diff] [blame] | 28 | |
Joe Gregorio | 618e63b | 2010-11-04 19:55:28 -0400 | [diff] [blame] | 29 | def main(): |
| 30 | |
Joe Gregorio | 652898b | 2011-05-02 21:07:43 -0400 | [diff] [blame] | 31 | # Build a service object for interacting with the API. Visit |
| 32 | # the Google APIs Console <http://code.google.com/apis/console> |
| 33 | # to get an API key for your own application. |
Joe Gregorio | 1ae3e74 | 2011-02-25 15:17:14 -0500 | [diff] [blame] | 34 | service = build('translate', 'v2', |
Joe Gregorio | 61d7e96 | 2011-02-22 22:52:07 -0500 | [diff] [blame] | 35 | developerKey='AIzaSyDRRpR3GS1F1_jKNNM9HCNd2wJQyPG3oN0') |
INADA Naoki | e8d8782 | 2014-08-20 15:25:24 +0900 | [diff] [blame] | 36 | print(service.translations().list( |
Joe Gregorio | 61d7e96 | 2011-02-22 22:52:07 -0500 | [diff] [blame] | 37 | source='en', |
| 38 | target='fr', |
| 39 | q=['flower', 'car'] |
INADA Naoki | e8d8782 | 2014-08-20 15:25:24 +0900 | [diff] [blame] | 40 | ).execute()) |
Joe Gregorio | 618e63b | 2010-11-04 19:55:28 -0400 | [diff] [blame] | 41 | |
| 42 | if __name__ == '__main__': |
| 43 | main() |