1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
#
# Lightweight package to retrieve movie/tv programme data from The Movie Database (http://www.themoviedb.org/ )
#
# This is a custom version of the CPAN package :
# WWW::TMDB::API - TMDb API (http://api.themoviedb.org) client
# Version 0.04 (2012)
# Author Maria Celina Baratang, <maria at zambale.com>
# https://metacpan.org/pod/WWW::TMDB::API
#
# Modified for XMLTV use to
# - fix broken methods
# - add methods for TV programmes, and Configuration
# - 'version' changed to be 0.05
#
# Modifications: Geoff Westcott, December 2021
#
# Package changes for XMLTV
# - new package for XMLTV - not in WWW::TMDB::API
#
package XMLTV::TMDB::API::Config;
use strict;
use warnings;
our $VERSION = '0.05';
sub configuration {
my $self = shift;
my (%params) = @_;
$self->{api}->send_api( [ 'configuration' ] );
}
1;
|