TMDB
NAME
WebService::TMDB - a module for accessing The Movie Database data.
SYNOPSIS
use WebService::TMDB;
my $search = $tmdb.search_movie: query => 'legend of 1900';
say $search.results[0].title;
my $movie = $tmdb.movie: 10775, :append(['credits']);
say $movie.title;
say $movie.credits.cast[0].name;
INSTALLATION
You need to have Raku and zef, then run:
zef install WebService::TMDB
or if you have cloned the repo:
zef install .
TESTING
prove -ve 'raku -Ilib' --ext rakutest
DESCRIPTION
WebService::TMDB is a module for interfacing with the TMDB API. An access token is required to use the API.
ATTRIBUTES/METHODS
ERRORS
HTTP::UserAgent
module is used with exception throwing enabled.
So exceptions will be thrown in case of non-existent resources, out of range values, etc.
See http://modules.perl6.org/dist/HTTP::UserAgent.
When an exception of type X::HTTP::Response
is caught, and the response received from themoviedb.org
contains an error message, an attribute named tmdb_status_message
or tmdb_errors
will be added
to the exception containing that error message.
ENVIRONMENT
Some live tests will run when NETWORK_TESTING
environment variable is set.
REPOSITORY
https://codeberg.org/CIAvash/WebService-TMDB
BUGS
https://codeberg.org/CIAvash/WebService-TMDB/issues
AUTHOR
Siavash Askari Nasr https://siavash.askari-nasr.com
COPYRIGHT AND LICENSE
Copyright Ā© 2020 Siavash Askari Nasr
This file is part of WebService::TMDB.
WebService::TMDB is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
WebService::TMDB is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with WebService::TMDB. If not, see <http://www.gnu.org/licenses/>.