
WebService::Livedoor::Weather - Perl interface to Livedoor Weather Web Service

use WebService::Livedoor::Weather;
$lwws = WebService::Livedoor::Weather->new;
my $ret = $lwws->get('63','tomorrow'); #63 is tokyo
print $ret->{title};
print $ret->{description};

WebService::Livedoor::Weather is a simple interface to Livedoor Weather Web Service (LWWS)

$lwws = WebService::Livedoor::Weather->new;
$lwws = WebService::Livedoor::Weather->new(fetch=>{
Cache=>$c
});
creates an instance of WebService::Livedoor::Weather.
fetch is option for URI::Fetch that used for fetching weather information.
my $ret = $lwws->get('63','tomorrow'); #63 is tokyo
my $ret = $lwws->get('cityname','today');
retrieve weather. You can get a city id from http://weather.livedoor.com/forecast/rss/forecastmap.xml

URI::Fetch http://weather.livedoor.com/weather_hacks/webservice.html (Japanese)

Masahiro Nagano, <kazeburo@nomadscafe.jp>

Copyright (C) 2006 by Masahiro Nagano
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.5 or, at your option, any later version of Perl 5 you may have available.