NAME

Koha::Contrib::Tamil::RecordReader - Koha biblio/authority records reader

VERSION

version 0.073

SYNOPSYS

# Read all biblio records and returns MARC::Record objects
# Do it for a default Koha instace.
my $reader = Koha::Contrib::Tamil::RecordReader->new( koha => Koha->new() );
while ( $record = $reader->read() ) {
    print $record->as_formatted(), "\n";
}

my $reader = Koha::Contrib::RecordReader->new(
  koha => k$, source => 'biblio', select => 'all' );

my $reader = Koha::Contrib::Tamil::RecordReader->new(
  koha => k$, source => 'biblio', select => 'queue' );

my $k = Koha::Contrib::Tamil::Koha->new(
  '/usr/local/koha-world/etc/koha-conf.xml' );
# Return XML records.
my $reader = Koha::Contrib::Tamil::RecordReader->new(
  koha => k$, source => authority, select => 'queue', xml => 1 );

AUTHOR

Frédéric Demians <f.demians@tamil.fr>

COPYRIGHT AND LICENSE

This software is Copyright (c) 2024 by Fréderic Démians.

This is free software, licensed under:

The GNU General Public License, Version 3, June 2007