Catmandu::Importer::MARC::Line(3pm) | User Contributed Perl Documentation | Catmandu::Importer::MARC::Line(3pm) |
Catmandu::Importer::MARC::Line - Package that imports Index Data's MARC Line records
# From the command line $ catmandu convert MARC --type Line --fix 'marc_map("245a","title")' < t/code4lib.line $ catmandu convert MARC --type Line to MARC --type XML < t/code4lib.line # From perl use Catmandu; # import records from file my $importer = Catmandu->importer('MARC',file => 't/code4lib.line' , type => 'Line'); 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.
Johann Rolschewski, <jorol at cpan>
Catmandu::Importer, Catmandu::Iterable
2022-09-27 | perl v5.34.0 |