logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Catmandu::Blacklight - Catmandu modules for working with Blacklight catalogs

Author

       Patrick Hochstenbach, "<patrick.hochstenbach at ugent.be>"

Modules

       •   Catmandu::Importer::Blacklight

Name

       Catmandu::Blacklight - Catmandu modules for working with Blacklight catalogs

Synopsis

         # 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];
         });

See Also