MARC::File::MiJ(3pm) | User Contributed Perl Documentation | MARC::File::MiJ(3pm) |
MARC::File::MiJ - Read newline-delimited marc-in-json files
Version 0.04
Use by itself or with MARC::Batch
use MARC::Batch; use MARC::File::MiJ; my $reader = new MARC::Batch('MiJ', $jsonfilename); while (my $r = $batch->next) { ... } # or, use it without MARC::Batch my $reader = MARC::File::MiJ->in($jsonfilename);
A subclass of MARC::File for reading MARC records encoded as newline-delimited marc-in-json, as supported by pymarc/ruby-marc/marc4j and described at http://dilettantes.code4lib.org/blog/2010/09/a-proposal-to-serialize-marc-in-json/.
The underlying "next" that pulls the next line from the filehandle;
Bill Dueber, "<dueberb at umich.edu>"
Please report any bugs or feature requests to "bug-MARC-File-MiJ at rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=MARC-File-MiJ>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc MARC::File::MiJ
You can also look for information at:
<http://rt.cpan.org/NoAuth/Bugs.html?Dist=MARC-File-MiJ>
<http://annocpan.org/dist/MARC-File-MiJ>
<http://cpanratings.perl.org/d/MARC-File-MiJ>
<http://search.cpan.org/dist/MARC-File-MiJ/>
Copyright 2013 Bill Dueber.
This software is free software and may be distributed under the same terms as Perl itself.
2022-06-15 | perl v5.34.0 |