The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

WWW::BurrpTV - Parse tv.burrp.com for TV listings.

SYNOPSIS

                Example:

                my $tv = WWW::BurrpTV->new ( 
                                             cache => '/tmp/module', # Path to use as cache (optional).
                                           );
                           

The cache is used only to store the list of available TV channels. It does not cache the TV listings.

DESCRIPTION

This module has the following methods.

channel_list() - Returns a hashref.

get_shows() - Takes a hash as argument.

              Example:
                       $tv->get_shows (
                                        channel         =>      'Star Movies', #Required. Channel names are the ones listed by channel_list()
                                        timezone        =>      'Asia/Taipei', #Optional. Defaults to Asia/Kolkata
                                      );

Returns a hashref with the keys _show, _link, _time24 (24 hour format), _time12 (12 hour format).

SEE ALSO

http://tv.burrp.com/

AUTHOR

rarbox, <rarbox@cpan.org>

COPYRIGHT AND LICENSE

Copyright (C) 2009 by rarbox

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.10.0 or, at your option, any later version of Perl 5 you may have available.