Group
Extension

Matches 1

Museum-EICAS ( R/RS/RSHEAT/Museum-EICAS-0.01.tar.gz, RSHEAT, 2023; MetaCPAN )
Museum-EICAS/lib/Museum/EICAS.pm ( view source; MetaCPAN )
package Museum::EICAS;

use 5.34.0;
use strictures 2;

use JSON::MaybeXS;
use LWP::UserAgent;
use Moo;
use URI::QueryParam;

use namespace::clean;

=head1 NAME

Museum::EICAS - A simple interface to t
my $req = HTTP::Request->new(
        GET => $url,
        [
            'Accept' => 'application/json; charset=UTF-8',
        ]
    );

    my $res = $ua->request($req);

    if (!$res->is_success) 
 EICAS '$url_part' endpoint: " . $res->status_line . "\n";
    }

    my $json = JSON::MaybeXS->new();
    my $content = $json->decode( $res->decoded_content );
    return $content;
}

has 'url_base' 

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.