The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Catmandu::PICA - Catmandu modules for working with PICA+ XML data.

VERSION

version 0.03

SYNOPSIS

Catmandu::PICA is a parser for PICA+ XML records.

    use Catmandu::PICA;

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

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

MODULES

SUBROUTINES/METHODS

new

next()

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

_decode()

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

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Catmandu::PICA

You can also look for information at:

    Catmandu
        https://metacpan.org/module/Catmandu::Introduction
        https://metacpan.org/search?q=Catmandu

    LibreCat
        http://librecat.org/tutorial/index.html

CONTRIBUTORS

Jakob Voß <voss@gbv.de>

AUTHOR

Johann Rolschewski <rolschewski@gmail.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Johann Rolschewski.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.