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

Marc - MARC bibliographic records set of tools

VERSION

version 0.002

DESCRIPTION

SYNOPSYS

 use Marc::Record;
 use Marc::Reader::File;
 use Marc::Parser::Iso2709;
 use Marc::Formater::Text;

 my $reader = Marc::Reader::File->new(
     file   => 'biblio.iso',
     parser => Marc::Parser::Iso2709->new()
 );
 my $formater = Marc::Formater::Text->new();
 while ( my $record = $reader->read() ) {
     print $formater->format( $record );
 }

SEE ALSO

AUTHOR

Frederic Demians <f.demians@tamil.fr>

COPYRIGHT AND LICENSE

This software is copyright (c) 2010 by Frederic Demians.

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