DBI - Database independent interface for Perl
The DBI is a database access module for the Perl programming language. It defines a set of methods, variables, and conventions that provide a consistent database interface, independent of the actual database being used. It is important to remember th...
TIMB/DBI-1.643 - 31 Jan 2020 19:02:41 UTC - Search in distribution
UR - rich declarative transactional objects
UR is a class framework and object/relational mapper for Perl. It starts with the familiar Perl meme of the blessed hash reference as the basis for object instances, and extends its capabilities with ORM (object-relational mapping) capabilities, obje...
BRUMMETT/UR-0.47 - 06 Aug 2018 14:29:10 UTC - Search in distribution
perlepigraphs - list of Perl release epigraphs
Many Perl release announcements included an *epigraph*, a short excerpt from a literary or other creative work, chosen by the pumpking or release manager. This file assembles the known list of epigraph for posterity, and also links to the release ann...
RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC - Search in distribution- perl5220delta - what is new for perl v5.22.0
- perl5140delta - what is new for perl v5.14.0
- perl5160delta - what is new for perl v5.16.0
- 16 more results from perl »
eol - Simple script to convert newline endings; uses the EOL.pm module.
This application provides newline conversions to a file in-place. It clobbers the file that you send as input. A backup of the original file will be made one time only (i.e., multiple runnings on the same file would try and overwrite the .bak file)....
TWYLIE/EOL-v0.0.2 - 31 Oct 2006 19:22:05 UTC - Search in distribution- EOL - This module aids in the conversion of text file newline characters within the context of other perl code; includes command line executable.
Storable - persistence for Perl data structures
The Storable package brings persistence to your Perl data structures containing SCALAR, ARRAY, HASH or REF objects, i.e. anything that can be conveniently stored to disk and retrieved at a later time. It can be used in the regular procedural way by c...
NWCLARK/Storable-3.25 - 30 Aug 2021 08:39:08 UTC - Search in distribution
Set::Relation
Set::Relation provides a simple Perl-native facility for an application to organize and process information using the relational model of data, without having to employ a separate DBMS, and without having to employ a whole separate sub-/language (suc...
DUNCAND/Set-Relation-0.13.2 - 21 Oct 2019 06:32:18 UTC - Search in distribution
Net::Server - Extensible, general Perl server engine
"Net::Server" is an extensible, generic Perl server engine. "Net::Server" attempts to be a generic server as in "Net::Daemon" and "NetServer::Generic". It includes with it the ability to run as an inetd process ("Net::Server::INET"), a single connect...
RHANDOM/Net-Server-2.010 - 22 Mar 2021 15:23:31 UTC - Search in distribution- Net::Server::PreForkSimple - Net::Server personality
GD::SVG - Seamlessly enable SVG output from scripts written using GD
GD::SVG painlessly enables scripts that utilize GD to export scalable vector graphics (SVG). It accomplishes this task by wrapping SVG.pm with GD-styled method calls. To enable this functionality, one need only change the "use GD" call to "use GD::SV...
TWH/GD-SVG-0.33 - 10 May 2009 14:39:31 UTC - Search in distribution
JSON::Any - (DEPRECATED) Wrapper Class for the various JSON classes
This module tries to provide a coherent API to bring together the various JSON modules currently on CPAN. This module will allow you to code to any JSON API and have it work regardless of which JSON module is actually installed. use JSON::Any; my $j ...
ETHER/JSON-Any-1.39 - 10 Jun 2015 04:38:55 UTC - Search in distribution
Test::Class - Easily create test classes in an xUnit/JUnit style
Test::Class provides a simple way of creating classes and objects to test your code in an xUnit style. Built using Test::Builder, it was designed to work with other Test::Builder based modules (Test::More, Test::Differences, Test::Exception, etc.). *...
SZABGAB/Test-Class-0.52 - 17 Feb 2021 16:05:13 UTC - Search in distribution
IRI - Internationalized Resource Identifiers
The IRI module provides an object representation for Internationalized Resource Identifiers (IRIs) as defined by RFC 3987 <http://www.ietf.org/rfc/rfc3987.txt> and supports their parsing, serializing, and base resolution....
GWILLIAMS/IRI-0.011 - 20 Feb 2020 05:05:22 UTC - Search in distribution
PBS - Perl extension for PBS
Perl interface to the Portable Batch System EXPORT None by default. Exportable constants MAXNAMLEN MAXPATHLEN MAX_ENCODE_BFR MGR_CMD_ACTIVE MGR_CMD_CREATE MGR_CMD_DELETE MGR_CMD_LIST MGR_CMD_PRINT MGR_CMD_SET MGR_CMD_UNSET MGR_OBJ_JOB MGR_OBJ_NODE MG...
TMERRITT/PBS-0.03 - 08 Sep 2008 15:29:20 UTC - Search in distribution- PBS::Attr - Perl extension for PBS
- PBS::Status - Perl extension for PBS
Tie::File - Access the lines of a disk file via a Perl array
"Tie::File" represents a regular text file as a Perl array. Each element in the array corresponds to a record in the file. The first line of the file is element 0 of the array; the second line is element 1, and so on. The file is *not* loaded into me...
TODDR/Tie-File-1.05 - 27 Jan 2020 07:29:22 UTC - Search in distribution
CDB_File - Perl extension for access to cdb databases
CDB_File is a module which provides a Perl interface to Dan Bernstein's cdb package: cdb is a fast, reliable, lightweight package for creating and reading constant databases. Reading from a cdb After the "tie" shown above, accesses to %h will refer t...
TODDR/CDB_File-1.05 - 11 Dec 2020 19:57:24 UTC - Search in distribution
DBD::Unify - DBI driver for Unify database systems
DBD::Unify is an extension to Perl which allows access to Unify databases. It is built on top of the standard DBI extension and implements the methods that DBI requires. This document describes the differences between the "generic" DBD and DBD::Unify...
HMBRAND/DBD-Unify-0.92 - 01 Jan 2022 12:16:15 UTC - Search in distribution
Perl::Critic - Critique Perl source code for best-practices.
Perl::Critic is an extensible framework for creating and applying coding standards to Perl source code. Essentially, it is a static source code analysis engine. Perl::Critic is distributed with a number of Perl::Critic::Policy modules that attempt to...
PETDANCE/Perl-Critic-1.140 - 24 Mar 2021 03:09:35 UTC - Search in distribution
HTML::Template - Perl module to use HTML-like templating language
This module attempts to make using HTML templates simple and natural. It extends standard HTML with a few new HTML-esque tags - "<TMPL_VAR>" "<TMPL_LOOP>", "<TMPL_INCLUDE>", "<TMPL_IF>", "<TMPL_ELSE>" and "<TMPL_UNLESS>". The file written with HTML a...
SAMTREGAR/HTML-Template-2.97 - 18 May 2017 20:30:05 UTC - Search in distribution
SNMP::Multi - Perform SNMP operations on multiple hosts simultaneously
The SNMP::Multi package provides a mechanism to perform SNMP operations on several hosts simultaneously. SNMP::Multi builds on G. Marzot's SNMP Perl interface to the UC-Davis SNMP libraries, using asynchronous SNMP operations to send queries/sets to ...
TPG/SNMP-Multi-2.1 - 18 Dec 2003 02:48:51 UTC - Search in distribution
BLASTaid - A simple interface for byte indexing a WU-BLAST multi-part report for faster access.
This script is a simple interface to the BLASTaid.pm module and aids in accessing specific reports from longer, multi part WU-BLAST (http://blast.wustl.edu/) alignments reports. Depending on parameters and starting input, BLAST reports may be several...
TWYLIE/BLASTaid-v0.0.3 - 07 Apr 2006 01:06:05 UTC - Search in distribution- BLASTaid - A simple interface for byte indexing a WU-BLAST multi-part report for faster access.