NAME

Catmandu::Importer::WoSRetrieveById - Import Web of Science records by id

SYNOPSIS

# On the command line

$ catmandu convert WoSRetrieveById --username XXX --password XXX --uid 'WOS:000413520000001' to YAML

# In perl

use Catmandu::Importer::WoSRetrieveById;

my $wos = Catmandu::Importer::WoSRetrieveById->new(username => 'XXX', password => 'XXX', uid => ['WOS:000413520000001']);
$wos->each(sub {
    my $record = shift;
    # ...
});

AUTHOR

Nicolas Steenlant <nicolas.steenlant@ugent.be>

COPYRIGHT

Copyright 2017- Nicolas Steenlant

LICENSE

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

SEE ALSO