使用python使用google API

由google开发人员的开发的python的goole API, 可以让我们使用python非常方便的使用google提供的服务。

该工程的地址:

http://code.google.com/p/google-api-python-client/

除了有详细的文档介绍,还丰富的例子:

下面提供一个很简单的例子:

from apiclient.discovery import build


def main():

  # Build a service object for interacting with the API. Visit
  # the Google APIs Console <http://code.google.com/apis/console>
  # to get an API key for your own application.
  service = build('translate', 'v2',
            developerKey='AIzaSyDRRpR3GS1F1_jKNNM9HCNd2wJQyPG3oN0')
  print service.translations().list(
      source='en',
      target='fr',
      q=['flower', 'car']
    ).execute()

if __name__ == '__main__':
  main()

上面这个例子是通过调用google提供的翻译服务来翻译英语

flower car

到法语。

版权所有,禁止转载. 如需转载,请先征得博主的同意,并且表明文章出处,否则按侵权处理.

    分享到:

留言

你的邮箱是保密的 必填的信息用*表示