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

Biblio::SIF::Patron - standard patron interchange file for Voyager ILS

SYNOPSIS

use Biblio::SIF::Patron;
$iter = Biblio::SIF::Patron->iterator(\*STDIN);
while (my $patron = $iter->()) {
    $patron->institution_id($new_id);
    print $patron;
}