in reply to Re^4: LWP::Simple... Enough for Site Query & Data Download?
in thread LWP::Simple... Enough for Site Query & Data Download?
Sorry about that. I forget it's not a core module. Try this.
use WWW::Mechanize; use Data::Dumper; $Data::Dumper::Terse = 1; my $mech = WWW::Mechanize->new(); $mech->get( "http://bub2.meteo.psu.edu/wxstn/wxstn.htm" ); print Dumper($mech->forms);
|
|---|