NAME

Catmandu::Importer::WoS - Import Web of Science records

SYNOPSIS

# On the command line

$ catmandu convert WoS --username XXX --password XXX --query 'TS=(lead OR cadmium)' to YAML
$ catmandu convert WoS --username XXX --password XXX --query 'TS=(lead OR cadmium)' --edition SCI to YAML

# In perl

use Catmandu::Importer::WoS;

my $wos = Catmandu::Importer::WoS->new(username => 'XXX', password => 'XXX', query => 'TS=(lead OR cadmium)');
$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