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

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;
    }