| Catmandu::Importer::MARC::Lint(3pm) | User Contributed Perl Documentation | Catmandu::Importer::MARC::Lint(3pm) |
Catmandu::Importer::MARC::Lint - Package that imports USMARC records validated with MARC::Lint
# From the command line
$ catmandu convert MARC --type Lint --fix "marc_map('245a','title')" < /foo/data.mrc
# From perl
use Catmandu;
# import records from file
my $importer = Catmandu->importer('MARC',file => '/foo/data.mrc', type => 'Lint');
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};
});
All items produced with the Catmandu::Importer::MARC::Lint importer contain three keys:
'_id' : the system identifier of the record (usually the 001 field)
'record' : an ARRAY of ARRAYs containing the record data
'lint' : the output of MARC::Lint's check_record on the MARC record
Every Catmandu::Importer is a Catmandu::Iterable all its methods are inherited.
Catmandu::Importer, Catmandu::Iterable
| 2022-09-27 | perl v5.36.0 |