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

NAME

Spreadsheet::ParseExcel::Stream::XLS - Simple interface to Excel data with less memory overhead

SYNOPSIS

  my $xls = Spreadsheet::ParseExcel::Stream::XLS->new($xls_file, \%options);
  while ( my $sheet = $xls->sheet() ) {
    while ( my $row = $sheet->row ) {
      my @data = @$row;
    }
  }

DESCRIPTION

See Spreadsheet::ParseExcel::Stream.

AUTHOR

Douglas Wilson, <dougw@cpan.org<gt>

COPYRIGHT AND LICENSE

This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.