Added Custom Search example
diff --git a/samples/customsearch/main.py b/samples/customsearch/main.py
new file mode 100644
index 0000000..d13f53c
--- /dev/null
+++ b/samples/customsearch/main.py
@@ -0,0 +1,30 @@
+#!/usr/bin/python2.4
+# -*- coding: utf-8 -*-
+#
+# Copyright 2010 Google Inc. All Rights Reserved.
+
+"""Simple command-line example for Custom Search.
+
+Command-line application that does a search.
+"""
+
+__author__ = 'jcgregorio@google.com (Joe Gregorio)'
+
+from apiclient.discovery import build
+
+import pprint
+
+# Uncomment the next line to get very detailed logging
+# httplib2.debuglevel = 4
+
+def main():
+
+  p = build("customsearch", "v1", developerKey="AIzaSyDRRpR3GS1F1_jKNNM9HCNd2wJQyPG3oN0")
+  res = p.cse().list(
+      q='lectures',
+      cx='017576662512468239146:omuauf_lfve',
+    ).execute()
+  pprint.pprint(res)
+
+if __name__ == '__main__':
+  main()