active questions tagged wikipedia+perl - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T14:05:53Z http://stackoverflow.com/feeds/tag/wikipedia+perl http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/24546/why-cant-i-fetch-wikipedia-pages-with-lwpsimple 3 Why can't I fetch wikipedia pages with LWP::Simple? Jesse Beder 2008-08-23T19:54:09Z 2009-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-perl 0 Which Google API search module for Perl? Mike 2009-04-27T16:20:54Z 2009-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>