blob: d7b6ac51ff833cdd30e7f8cc0c764de110fd3a77 [file] [log] [blame]
Joe Gregorio5e4aa152010-11-04 20:04:40 -04001#!/usr/bin/python2.4
2# -*- coding: utf-8 -*-
3#
Joe Gregorio652898b2011-05-02 21:07:43 -04004# Copyright (C) 2010 Google Inc.
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 Gregorio5e4aa152010-11-04 20:04:40 -040017
18"""Simple command-line example for Custom Search.
19
20Command-line application that does a search.
21"""
22
23__author__ = 'jcgregorio@google.com (Joe Gregorio)'
24
Joe Gregorio5e4aa152010-11-04 20:04:40 -040025import pprint
26
Joe Gregorio652898b2011-05-02 21:07:43 -040027from apiclient.discovery import build
Joe Gregorio5e4aa152010-11-04 20:04:40 -040028
Joe Gregorio5e4aa152010-11-04 20:04:40 -040029
Joe Gregorioaf276d22010-12-09 14:26:58 -050030def main():
Joe Gregorio652898b2011-05-02 21:07:43 -040031 # 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 Gregorio1ae3e742011-02-25 15:17:14 -050034 service = build("customsearch", "v1",
Joe Gregorioaf276d22010-12-09 14:26:58 -050035 developerKey="AIzaSyDRRpR3GS1F1_jKNNM9HCNd2wJQyPG3oN0")
Joe Gregorio652898b2011-05-02 21:07:43 -040036
Joe Gregorio1ae3e742011-02-25 15:17:14 -050037 res = service.cse().list(
Joe Gregorio5e4aa152010-11-04 20:04:40 -040038 q='lectures',
39 cx='017576662512468239146:omuauf_lfve',
40 ).execute()
41 pprint.pprint(res)
42
43if __name__ == '__main__':
44 main()