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::Parser::Plus - Normalized PICA+ format parser

SYNOPSIS

    use PICA::Parser::Plus;

    my $parser = PICA::Parser::Plus->new( $filename );

    while ( my $record_hash = $parser->next ) {
        # do something        
    }

METHODS

next

Reads the next record from PICA+ XML input stream. Returns a Perl hash.

_decode

Deserialize a PICA+ record to an array of field arrays.

SEEALSO

The counterpart of this module is PICA::Writer::Plus.

See Catmandu::Importer::PICA for usage of this module in Catmandu.

An alternative writer had been implemented as PICA::PlainParser included in the release of PICA::Record.