Catmandu::Exporter::MARC::XML(3pm) | User Contributed Perl Documentation | Catmandu::Exporter::MARC::XML(3pm) |
Catmandu::Exporter::MARC::XML - Exporter for MARC records to MARCXML
# From the command line $ catmandu convert MARC to MARC --type XML < /foo/data.mrc # From Perl use Catmandu; my $importer = Catmandu->importer('MARC', file => "/foo/bar.mrc" , type => 'ISO'); my $exporter = Catmandu->exporter('MARC', file => "marc.xml", type => 'XML' ); $exporter->add($importer); $exporter->commit;
This Catmandu::Exporter::MARC serializes MARC records as XML.
See Catmandu::Exporter, Catmandu::Addable, Catmandu::Fixable, Catmandu::Counter, and Catmandu::Logger for a full list of methods.
Catmandu::Importer::MARC::XML
2022-09-27 | perl v5.34.0 |