Catmandu::Importer::MARC::RAW(3pm) | User Contributed Perl Documentation | Catmandu::Importer::MARC::RAW(3pm) |
Catmandu::Importer::MARC::RAW - Package that imports ISO 2709 encoded MARC records
# From the command line $ catmandu convert MARC --type RAW --fix "marc_map('245a','title')" < /foo/bar.mrc # From perl use Catmandu; # import records from file my $importer = Catmandu->importer('MARC',file => '/foo/bar.mrc' , type => 'RAW'); 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}; });
Every Catmandu::Importer is a Catmandu::Iterable all its methods are inherited.
Catmandu::Importer, Catmandu::Iterable
2022-09-27 | perl v5.34.0 |