summaryrefslogtreecommitdiffstats
path: root/lib/libUPnP/Neptune/Extras/Tools/Testing/MakeUrlList.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libUPnP/Neptune/Extras/Tools/Testing/MakeUrlList.py')
-rw-r--r--lib/libUPnP/Neptune/Extras/Tools/Testing/MakeUrlList.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/libUPnP/Neptune/Extras/Tools/Testing/MakeUrlList.py b/lib/libUPnP/Neptune/Extras/Tools/Testing/MakeUrlList.py
new file mode 100644
index 0000000..27128e1
--- /dev/null
+++ b/lib/libUPnP/Neptune/Extras/Tools/Testing/MakeUrlList.py
@@ -0,0 +1,16 @@
+import urllib2
+import simplejson
+
+# This example request includes an optional API key which you will need to
+words = open('/usr/share/dict/words').readlines()
+for word in words:
+ word = word.rstrip()
+ url = ('http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q='+word+'+https&userip=67.169.84.240')
+ #print url
+ #print word.rstrip()
+ request = urllib2.Request(url, None, {'Referer': 'http://test.com'})
+ response = urllib2.urlopen(request)
+
+ results = simplejson.load(response)
+ for result in results['responseData']['results']:
+ print result['unescapedUrl']