NAME
WWW::BBC::TrackListings - Get track listings for BBC radio programmes
VERSION
version 0.01
SYNOPSIS
my $listings = WWW::BBC::TrackListings->new({ url => 'http://www.bbc.co.uk/programmes/b03c8l9l' });
for my $track ( $listings->all_tracks ) {
say $track->artist;
say $track->title;
}
DESCRITPION
Scrape of BBC radio programme pages to generate track listings.
METHODS
all_tracks
Returns all WWW::BBC::Track listings of this programme.
ATTRIBUTES
url
AUTHOR
Adam Taylor <ajct@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2013 by Adam Taylor.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.