Google Answers Logo
View Question
 
Q: In Google: how to get really all the results and not just a selection of them ( Answered,   0 Comments )
Question  
Subject: In Google: how to get really all the results and not just a selection of them
Category: Computers
Asked by: sweetwood-ga
List Price: $20.00
Posted: 21 Oct 2002 07:55 PDT
Expires: 20 Nov 2002 06:55 PST
Question ID: 85936
When I search the web for "golf shop". (Results 1 - 10 of about
116,000. Search took 0.18 seconds)  I get 847 websites
When I do repeat the search with the omitted results included I get
900
so I get a total of 847 + 900 = 1.747 sites
However, I want to see all the 116,000 results.
What should I do?? Does Google put a limit on the results?
Answer  
Subject: Re: In Google: how to get really all the results and not just a selection of them
Answered By: webadept-ga on 21 Oct 2002 11:08 PDT
 
Hi, 

Yes Google does limit the return, but it shows most of the sites
anyway. The limitation  after so many 100's is on the domain and the
116,000 + is on URL. Remember that every page on your website is a
single URL, but your domain is only one. Since after 800 or so you
probably saw all the "domains" more than once the program stops there.

I ran a Perl program with your query "golf shops" using the Google
API, and it returned only 500. So this tells me there is a definite
limiting factor on how many results the engine is going to return to
you for a single query. I'll list the source for this here, just in
case you are interested.

#! /usr/local/perl -w

use WWW::Search;

my $key="INSERT YOUR GOOGLE KEY HERE";

  my $search = WWW::Search->new('Google', key => $key);
  $search->native_query("golf shop");
  while (my $result = $search->next_result()) {


    print $result->url, "\n";
    #print $result->description, "\n";

  }

The rest of the pages are available to you, what needs to happen
though is the query needs to be narrowed so that those pages become
more relevant and come closer to the the top. Doing this takes some
patience or a nice little Perl program that can weed through the ones
it already found, using different queries. It's very possible and kind
of fun if you are into this type of thing, or just really want to
know.

Thanks, 

webadept-ga

Clarification of Answer by webadept-ga on 21 Oct 2002 11:19 PDT
Oops .. I meant to post the page regarding the Google API if you wish
to follow up on this using that tool.

://www.google.com/apis/

Thanks, 

webadept-ga
Comments  
There are no comments at this time.

Important Disclaimer: Answers and comments provided on Google Answers are general information, and are not intended to substitute for informed professional medical, psychiatric, psychological, tax, legal, investment, accounting, or other professional advice. Google does not endorse, and expressly disclaims liability for any product, manufacturer, distributor, service or service provider mentioned or any opinion expressed in answers or comments. Please read carefully the Google Answers Terms of Service.

If you feel that you have found inappropriate content, please let us know by emailing us at answers-support@google.com with the question ID listed above. Thank you.
Search Google Answers for
Google Answers  


Google Home - Answers FAQ - Terms of Service - Privacy Policy