Re: Weather data via Perl-- just sharing

2002-06-13 Thread John Brooking
Fred, This is very interesting. Do you know what it does under the covers? I'm just curious because I'm currently getting trained in XML, and this seems like exactly the type of thing that one uses XML for, incorporating data from another site into your own. If that's what this module really do

RE: weather

2001-11-19 Thread Al Hospers
> im would like write a script that goes and gets a weather forcast, > does any one know a site that has plain text weather forcast. or > if someone who has done this before could help me out on > the best way to go about this..maybe? the only way i could think > of doing it would be with LWP::Sim

Re: weather

2001-11-19 Thread Bkwyrm
We use this to turn on or not turn on our sprinklers at home via a serial i/o board: # test weather.com; if we find 'rain' or 'showers' in the forecast for today, # we exit. if (`/usr/local/scripts/GET http://www.weather.com/weather/local/92101|perl -pe 's/<.+?>//g;' |grep -B 1 "Feels Like"|head

Re: weather

2001-11-19 Thread Kevin Meltzer
Hi Nate, Take a look at these modules and see if any will do what you want: http://search.cpan.org/search?mode=module&query=Weather Cheers, Kevin On Mon, Nov 19, 2001 at 01:11:39PM -0800, Nate ([EMAIL PROTECTED]) said something similar to: > just a quick question, > > im would like write a