NAME
Catmandu::Importer::WoSCitingArticles - Import Web of Science citing articles for a given record
SYNOPSIS
# On the command line
$ catmandu convert WoSCitingArticles --username XXX --password XXX --uid 'WOS:000413520000001' to YAML
# In perl
use Catmandu::Importer::WoSCitingArticles;
my $wos = Catmandu::Importer::WoSCitingArticles->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.