NAME
WebService::Livedoor::Weather - Perl interface to Livedoor Weather Web Service
SYNOPSIS
use utf8;
use WebService::Livedoor::Weather;
binmode STDOUT, ':utf8';
$lwws = WebService::Livedoor::Weather->new;
my $ret = $lwws->get('東京'); # forecast data for Tokyo.
### or ...
$ret = $lwws->get('130010'); # '130010' is Tokyo's city_id.
printf "%s\n---\n%s\n", $ret->{title}, $ret->{description};
DESCRIPTION
WebService::Livedoor::Weather is a simple interface to Livedoor Weather Web Service (LWWS)
METHODS
- new
-
$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. - get(cityid or name)
-
my $ret = $lwws->get('63'); #63 is tokyo my $ret = $lwws->get('cityname');
retrieve weather. You can get a city id from http://weather.livedoor.com/forecast/rss/primary_area.xml
SEE ALSO
URI::Fetch http://weather.livedoor.com/weather_hacks/webservice.html (Japanese)
AUTHOR
Original version by Masahiro Nagano, <kazeburo@nomadscafe.jp>
Latest version by Satoshi Azuma, <ytnobody@gmail.com>
COPYRIGHT AND LICENSE
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.
2 POD Errors
The following errors were encountered while parsing the POD:
- Around line 114:
'=item' outside of any '=over'
- Around line 133:
You forgot a '=back' before '=head1'