Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

Monks,
I'm attempting to use Lingua::EN::Keywords::Yahoo, but I don't get a response back.
I can call the yahoo service directly, so I think it could be a proxy issue. Unfortunatly there is no error or warning message to put me on the right track.
Would any kind Monk be able to instruct this Novice on how to set a proxy in this module? My non-working code is below
#!/usr/bin/perl use Lingua::EN::Keywords::Yahoo qw(keywords); use Data::Dumper; use LWP::UserAgent; my $ua = LWP::UserAgent->new(agent => "test"); $ua->proxy('http', 'http://myproxy.com:80'); my @keywords = keywords(" Two Scottish towns have seen the highest inc +rease in house prices in the UK this year, according to new figures. +Alexandria in West Dunbartonshire and Coatbridge in North Lanarkshire + both saw an average 35% rise in 2005" ); print Dumper @keywords;