| Catmandu::Blacklight(3pm) | User Contributed Perl Documentation | Catmandu::Blacklight(3pm) |
Catmandu::Blacklight - Catmandu modules for working with Blacklight catalogs
# From the command line
$ catmandu convert Blacklight --url http://lib.ugent.be/catalog -q Schopenhauer
# From Perl
use Catmandu;
my $importer = Catmandu->importer('Blacklight',
url => 'http://lib.ugent.be/catalog' ,
q => 'Schopenhauer');
$importer->each(sub {
my $item = shift;
print "%s %s\n", $item->{_id} , $item->{title}->[0];
});
Patrick Hochstenbach, "<patrick.hochstenbach at ugent.be>"
Copyright 2015 Patrick Hochstenbach
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.
| 2023-02-02 | perl v5.36.0 |