=head1 NAME WWW::TV - Parse TV.com for information about TV shows. =head1 SYNOPSIS use WWW::TV qw(); my $series = WWW::TV::Series->new(id => 31635); my $episode = WWW::TV::Episode->new(id => 475540); =head1 DESCRIPTION The L modules is a helper package, so you don't need to "use" the sub modules all the time. =head1 SEE ALSO L L =head1 BUGS Please report any bugs or feature requests through the web interface at L. =head1 AUTHOR Danial Pearce C =head1 LICENCE AND COPYRIGHT Copyright (c) 2006, 2007 Danial Pearce C. All rights reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut package WWW::TV; use WWW::TV::Series; use WWW::TV::Episode; our $VERSION = '0.08'; 1; __END__