![]() |
![]()
| ![]() |
![]()
NAMEWWW::Baseball::NPB - Fetches Japanese baseball games information SYNOPSISuse WWW::Baseball::NPB; my $baseball = WWW::Baseball::NPB->new; my @games = $baseball->games; # or @games = $baseball->games('central'); for my $game (@games) { my $home = $game->home; my $visitor = $game->visitor; printf "%s %d - %d %s (%s) [%s]\n", $home, $game->score($home), $game->score($visitor), $visitor, $game->status, $game->stadium; } DESCRIPTIONWWW::Baseball::NPB provides you a way to fetch and extract Japanese baseball games information via Yahoo! Baseball. (NPB = Nippon Professional Baseball) NOTE
TODO
AUTHORTatsuhiko Miyagawa <miyagawa@bulknews.net> This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSOLWP::Simple
|