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

WebService::Pixabay - Perl 5 interface to Pixabay API.

VERSION

version 0.0.1

AUTHOR

faraco <skelic3@gmail.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2017 by faraco.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

SYNOPSIS

use WebService::Pixabay;

my $pix = WebService::Pixabay->new(api_key => 'secret');

# default searches
my $img_search = $pix->image_search();
my $vid_search = $pix->video_search();

$pix->show_data_structure($img_search);
$pix->show_data_structure($vid_search);

# example custom searches
my $nis = $pix->image_search(
	q => 'cats dog'.
	en => 'es',
	response_group => 'high_resolution',
	image_type => 'illustration',
	category => 'animals',
	safesearch => 'true',
	order => 'latest',
	page => 2,
	per_page => 5,
	pretty => 'true'
);

$pix->show_data_structure($nis);

SEE ALSO

Pixabay API documentations

Moo

Function::Parameters

Test::More

WebService::Client

LWP::Online

Data::Printer