3
votes
4answers
548 views
Why can’t I fetch wikipedia pages with LWP::Simple?
I'm trying to fetch Wikipedia pages using LWP::Simple, but they're not coming back. This code:
#!/usr/bin/perl
use strict;
use LWP::Simple;
print get("http://en.wikipedia.org/wiki/Stack_overflow");
…
0
votes
1answer
220 views
Which Google API search module for Perl?
Which Google API search module for Perl do you recommend?
REST::Google::Search
http://search.cpan.org/~ejs/REST-Google-1.0.5/lib/REST/Google/Search.pod
or
Google::Search
…
