libexcel-valuereader-xlsx-perl 1.14-2 source package in Ubuntu
Changelog
libexcel-valuereader-xlsx-perl (1.14-2) unstable; urgency=medium * No-change source-only re-upload. -- gregor herrmann <email address hidden> Tue, 21 May 2024 10:49:54 +0200
Upload details
- Uploaded by:
- Debian Perl Group
- Uploaded to:
- Sid
- Original maintainer:
- Debian Perl Group
- Architectures:
- all
- Section:
- misc
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Oracular | release | universe | misc |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
libexcel-valuereader-xlsx-perl_1.14-2.dsc | 2.8 KiB | 1b473a4836c0d41c717d8639d2c30a07f6515d9f3b7c5f8f5ce13d6f7566f944 |
libexcel-valuereader-xlsx-perl_1.14.orig.tar.gz | 75.1 KiB | ad666ab438c8451fbbcd0b4a63349c801eb80bf8db48d7bdbc903cfd8a698759 |
libexcel-valuereader-xlsx-perl_1.14-2.debian.tar.xz | 2.0 KiB | 1568dc07b3d9c9d1554e111fae488dfc12fc7ef11525013a7d60d10c99b77674 |
Available diffs
- diff from 1.14-1 to 1.14-2 (342 bytes)
No changes file available.
Binary packages built by this source
- libexcel-valuereader-xlsx-perl: module for extracting values from Excel workbooks in XLSX format
Excel:
:ValueReader: :XLSX reads the contents of an Excel file in XLSX format.
Unlike other modules like Spreadsheet::ParseXLSX or Spreadsheet::XLSX,
there is no support for reading formulas, formats or other Excel internal
information; all you get are plain values -- but you get them much
faster!
.
Excel::ValueReader: :XLSX has two possible implementation backends for parsing
XLSX files: Excel::ValueReader: :XLSX:: Backend: :Regex, based on regular
expressions, or Excel::ValueReader: :XLSX:: Backend: :LibXML, based on the
libxml2 library.
.
The Regexp backend uses regular expressions to parse the XML content. The
libxml2 backend uses XML::LibXML::Reader to parse the XML content. It is
probably safer but about three times slower than the Regex backend (but still
much faster than Spreadsheet::ParseXLSX) .