Limited number of results in Google Search using Python -


i trying custom google search python. found relevant code @ developer.google.com.

my code:

url = ('https://ajax.googleapis.com/ajax/services/search/web'        '?v=1.0&q=teen%20wolf%20s02e01%20divxstage.eu&userip=users-ip-address')  request = urllib2.request(url, none, {'referer': "http://www.my-ajax-site.com"}) response = urllib2.urlopen(request)  results = simplejson.load(response) print results 

as can see querying teen wolf s02e01 divxstage.eu. above script returned json response.

now, when search teen wolf s02e01 divxstage.eu browser first link google gives me link of site divxstage.eu required link.

now, if closely @ json response doesn't contain divxstage.eu link , results limited.

so, question why there difference in output of above 2 approaches , how customize query required divxstage.eu link www.divxstage.eu/video/6qihgxf1ejzx1.


Comments

Popular posts from this blog

java - Play! framework 2.0: How to display multiple image? -

gmail - Is there any documentation for read-only access to the Google Contacts API? -

php - Controller/JToolBar not working in Joomla 2.5 -