https://github.com/davidsclarke/Excel-Template-XLSX
Excel-Template-XLSX - Create Excel .xlsx files starting from (one or more) template(s).
https://github.com/davidsclarke/Excel-Template-XLSX
Last synced: 4 months ago
JSON representation
Excel-Template-XLSX - Create Excel .xlsx files starting from (one or more) template(s).
- Host: GitHub
- URL: https://github.com/davidsclarke/Excel-Template-XLSX
- Owner: davidsclarke
- Created: 2015-03-27T02:31:04.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2023-04-04T14:05:55.000Z (about 2 years ago)
- Last Synced: 2024-08-13T07:04:50.907Z (8 months ago)
- Language: Perl
- Size: 96.7 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README
- Changelog: Changes
Awesome Lists containing this project
- jimsghstars - davidsclarke/Excel-Template-XLSX - Excel-Template-XLSX - Create Excel .xlsx files starting from (one or more) template(s). (Perl)
README
NAME
Excel-Template-XLSX
DESCRIPTION
Programmatically creates Excel (.xlsx) files from a template, and appends
content by sub-classing Excel::Writer::XLSX.SYNOPSIS
use Excel::Template::XLSX;
my $workbook = Excel::Template::XLSX->new('perl.xlsx', 'template.xlsx');
# Add a worksheet, ... and anything else you would do with Excel::Writer::XLSX
$worksheet = $workbook->add_worksheet();INSTALLATION
Install with CPAN or cpanm
cpan Excel::Template::XLSX
cpanm Excel::Template::XLSXor, use the standard Unix style installation.
Unzip and untar the module as follows:
tar -zxvf Excel::Template::XLSX-nnn.tar.gz
The module can be installed using the standard Perl procedure:
perl Makefile.PL
make
make test
make install # As sudo/rootAUTHOR
David Clarke [email protected]