NAME
Catmandu::Importer::EuropePMC - Package that imports EuropePMC data.
API Documentation
This module uses the REST service as described at http://www.ebi.ac.uk/europepmc/.
SYNOPSIS
use Catmandu::Importer::EuropePMC;
my %attrs = (
source => 'MED',
query => 'malaria',
module => 'search',
db => 'EMBL',
page => '2',
);
my $importer = Catmandu::Importer::EuropePMC->new(%attrs);
my $n = $importer->each(sub {
my $hashref = $_[0];
# ...
});