The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

PICA::Writer::PPXML - PicaPlus-XML format serializer

SYNOPSIS

use PICA::Writer::PPXML;
my $writer = PICA::Writer::PPXML->new( $fh );

foreach my $record (@pica_records) {
    $writer->write($record);
}

$writer->end();

DESCRIPTION

PicaPlus-XML (PPXML) is a PICA+ XML format variant (namespace http://www.oclcpica.org/xmlns/ppxml-1.0).

The counterpart of this module is PICA::Parser::PPXML.

METHODS

See PICA::Writer::Base for description of other methods.