NAME TableData - Specification for TableData::*, modules that contains table data SPECIFICATION VERSION 0.1 VERSION This document describes version 0.1.5 of TableData (from Perl distribution TableData), released on 2021-04-11. SYNOPSIS Use one of the "TableData::*" modules. DESCRIPTION NOTE: EARLY SPECIFICATION; THINGS WILL STILL CHANGE A LOT. "TableData::*" modules are modules that contain two-dimensional table data. The table can be accessed via a standard interface (see TableDataRole::Spec::Basic). An example of table data would be list of countries along with their names and country code, or a list of CPAN authors along with their published email addresses. Why put data in a Perl module, as a Perl distribution? To leverage the Perl/CPAN toolchain and infrastructure: 1) ease of installation, update, and uninstallation; 2) allowing dependency expression and version comparison; 3) ease of packaging further as OS packages, e.g. Debian packages (converted from Perl distribution); 4) testing by CPAN Testers. The table data can actually be stored as CSV in the DATA section of a Perl module, or as a CSV file in a shared directory of a Perl distribution, or a Perl structure in the module source code, or from other sources. The standard interface provides a convenient and consistent way to access the data, from accessing the rows, getting the column names, and dumping to CSV or Perl structure for other tools to operate on. To get started, see TableDataRole::Spec::Basic and one of existing "TableData::*" module. NAMESPACE ORGANIZATION "TableData" (this module) is the specification. "TableDataRole::*" the roles. All the modules under "TableData::*" will be modules with actual table data. "TableDataCollection-*" name for distribution that contains several "TableData" modules. FAQ HOMEPAGE Please visit the project's homepage at . SOURCE Source repository is at . BUGS Please report any bugs or feature requests on the bugtracker website When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature. SEE ALSO ArrayData, HashData are related projects. WordList is an older, related project. Modules and CLIs that manipulate table data: Data::TableData::Object, td (from App::td). AUTHOR perlancar COPYRIGHT AND LICENSE This software is copyright (c) 2021, 2020 by perlancar@cpan.org. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.