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

NAME

PICA::Writer::Plus - Normalized PICA+ format serializer

VERSION

version 0.06

DESCRIPTION

    use PICA::Writer::Plus;

    my $fh = \*STDOUT; # filehandle or object with method print, e.g. IO::Handle
    my $writer = PICA::Writer::Plus->new( fh => $fh );

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

METHODS

write ( @records )

Writes one or more records, given as hash with key 'record' or as array reference with a list of fields, as described in Catmandu::PICA.

SEEALSO

The counterpart of this module is PICA::Parser::Plus. An alternative writer, not aligned with the Catmandu framework, has been implemented as PICA::Writer included in the release of PICA::Record.

AUTHOR

Johann Rolschewski <rolschewski@gmail.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2014 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.