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::Importer::MARC::MiJ - Package that imports MARC-in-JSON records

Inherted Methods

counteach(&callback)...
       Every Catmandu::Importer is a Catmandu::Iterable all its methods are inherited.

Methods

new(file=>$file,fh=>$fh,id=>$field)
       Parse a file or a filehandle into a Catmandu::Iterable. Optionally provide an id attribute specifying the
       source of the system identifer '_id' field (e.g. '001').

Name

       Catmandu::Importer::MARC::MiJ - Package that imports MARC-in-JSON records

See Also

       MARC::File::MARCMaker

perl v5.38.2                                       2024-08-03                 Catmandu::Importer::MARC::MiJ(3pm)

Synopsis

           # From the command line
           $ catmandu convert MARC --type MiJ --fix "marc_map('245a','title')" < /foo/bar.json

           # From perl
           use Catmandu;

           # import records from file
           my $importer = Catmandu->importer('MARC',file => '/foo/bar.json', type => 'MiJ');
           my $fixer    = Catmandu->fixer("marc_map('245a','title')");

           $importer->each(sub {
               my $item = shift;
               ...
           });

           # or using the fixer

           $fixer->fix($importer)->each(sub {
               my $item = shift;
               printf "title: %s\n" , $item->{title};
           });

See Also