1#!/usr/bin/env python 2# -*- coding: utf-8 -*- 3# 4# Copyright 2014 Google Inc. All Rights Reserved. 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. 17 18"""Simple command-line example for Translate. 19 20Command-line application that translates some text. 21""" 22from __future__ import print_function 23 24__author__ = 'jcgregorio@google.com (Joe Gregorio)' 25 26from googleapiclient.discovery import build 27 28 29def main(): 30 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. 34 service = build('translate', 'v2', 35 developerKey='AIzaSyDRRpR3GS1F1_jKNNM9HCNd2wJQyPG3oN0') 36 print(service.translations().list( 37 source='en', 38 target='fr', 39 q=['flower', 'car'] 40 ).execute()) 41 42if __name__ == '__main__': 43 main() 44