| WWW-Metalgate documentation | Contained in the WWW-Metalgate distribution. |
WWW::Metalgate - parse http://www.metalgate.jp/.
Version 0.04
use WWW::Metalgate;
my @years = WWW::Metalgate->years;
my @albums = $years[0]->best_albums;
none.
my @years = WWW::Metalgate->years; # WWW::Metalgate::Year instances.
my $year = WWW::Metalgate->year( year => 2000 ); # WWW::Metalgate::Year instance.
my $review_index = WWW::Metalgate->review_index; # WWW::Metalgate::ReviewIndex instance.
Tomohiro Hosaka, <bokutin at cpan.org>
Copyright 2008 Tomohiro Hosaka, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| WWW-Metalgate documentation | Contained in the WWW-Metalgate distribution. |
package WWW::Metalgate; use warnings; use strict; use WWW::Metalgate::Column; use WWW::Metalgate::Year; use WWW::Metalgate::ReviewIndex;
our $VERSION = '0.04';
sub years { WWW::Metalgate::Column->new->years; }
sub year { WWW::Metalgate::Year->new( year => $_[1] ); }
sub review_index { WWW::Metalgate::ReviewIndex->new; }
1;