hot questions tagged wikipedia+perl - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T08:18:09Zhttp://stackoverflow.com/feeds/tag?tagnames=wikipedia%2bperl&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/24546/why-cant-i-fetch-wikipedia-pages-with-lwpsimple3Why can't I fetch wikipedia pages with LWP::Simple?Jesse Beder2008-08-23T19:54:09Z2009-10-21T10:29:14Z
<p>I'm trying to fetch Wikipedia pages using <a href="http://search.cpan.org/dist/libwww-perl" rel="nofollow">LWP::Simple</a>, but they're not coming back. This code:</p>
<pre><code>#!/usr/bin/perl
use strict;
use LWP::Simple;
print get("http://en.wikipedia.org/wiki/Stack_overflow");
</code></pre>
<p>doesn't print anything. But if I use some other webpage, say <code>http://www.google.com</code>, it works fine. </p>
<p>Is there some other name that I should be using to refer to Wikipedia pages? </p>
<p>What could be going on here?</p>
http://stackoverflow.com/questions/794245/which-google-api-search-module-for-perl0Which Google API search module for Perl?Mike2009-04-27T16:20:54Z2009-05-07T08:22:51Z
<p>Which Google API search module for Perl do you recommend?</p>
<p>REST::Google::Search
<a href="http://search.cpan.org/~ejs/REST-Google-1.0.5/lib/REST/Google/Search.pod" rel="nofollow">http://search.cpan.org/~ejs/REST-Google-1.0.5/lib/REST/Google/Search.pod</a></p>
<p>or</p>
<p>Google::Search
<a href="http://search.cpan.org/~rkrimen/Google-Search-0.022/lib/Google/Search.pm#Google::Search-" rel="nofollow">http://search.cpan.org/~rkrimen/Google-Search-0.022/lib/Google/Search.pm#Google::Search-</a>>Web(...)</p>
<p>Ease of use is important because I only really need to get the top 2, maybe 3 results from the web search.</p>
<p>Also, is there a module that one knows of for getting things from wikipedia. Again easy of use is important.</p>