Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.479.657 Times

Perl Access Dynamically Loaded Libraries freeware
Filter: All | Freeware | Demo
 

Perl Access Dynamically Loaded Libraries

< 1 2 3 4 5 
Added: February 10, 2010 | Visits: 1.809

Mail::Client::Yahoo Mail::Client::Yahoo is a Perl module with programmatically access Yahoos web-based email. SYNOPSIS use Mail::Client::Yahoo; $y = Mail::Client::Yahoo->login( username => bob, password => secret, secure => 1, # for the paranoid and patient ); $y->select_folder(Inbox); $m =... Platforms: *nix

License: Freeware Size: 6.14 KB Download (210): Mail::Client::Yahoo Download

Added: July 09, 2010 | Visits: 573

DBIWrapper DBIWrapper is a Perl Module that provides for easier access to databases using DBI. It supports MySQL, PostgreSQL and ODBC DBD modules. High level methods for reading and writing to the database are provided. DBI data structures or XML are returned. Platforms: *nix

License: Freeware Size: 27.65 KB Download (92): DBIWrapper Download

Added: May 04, 2010 | Visits: 1.266

PDL::Graphics::LUT PDL::Graphics::LUT is a Perl module that provides access to a number of look-up tables. SYNOPSIS use PDL::Graphics::PGPLOT; use PDL::Graphics::LUT; # what tables are available my @tables = lut_names(); # get the reversed colour table smooth, # with the gamma intensity ramp my ( $l,... Platforms: *nix

License: Freeware Size: 1.1 MB Download (98): PDL::Graphics::LUT Download

Added: July 15, 2010 | Visits: 1.363

Font::FreeType::Glyph Font::FreeType::Glyph is a Perl module that contains glyphs from font typefaces loaded from Font::FreeType. SYNOPSIS use Font::FreeType; my $freetype = Font::FreeType->new; my $face = $freetype->face(Vera.ttf); $face->set_char_size(24, 24, 100, 100); my $glyph =... Platforms: *nix

License: Freeware Size: 95.23 KB Download (130): Font::FreeType::Glyph Download

Added: November 14, 2010 | Visits: 906

VCS VCS project is a Perl library for generic Version Control System access in Perl. SYNOPSIS use VCS; $file = VCS::File->new($ARGV[0]); print $file->url, ":n"; for $version ($file->versions) { print $version->version, was checked in by , $version->author, "n"; } VCS is an API for... Platforms: *nix

License: Freeware Size: 21.5 KB Download (105): VCS Download

Added: February 26, 2010 | Visits: 845

libintl-perl libintl-perl is a library that supports message translation for Perl, written in pure Perl (version 5.004 or better). A faster C version is also built and installed if the system fulfills all requirements. Its interface is very similar to the gettext family of functions in C, and it uses the... Platforms: *nix

License: Freeware Size: 450.56 KB Download (95): libintl-perl Download

Added: January 24, 2010 | Visits: 1.269

Config::LotusNotes Config::LotusNotes is a Perl module that allows you to access Lotus Notes/Domino configuration. SYNOPSIS $factory = Config::LotusNotes->new(); # access default installation $conf = $factory->default_configuration(); $data = $conf->get_environment_value(Directory);... Platforms: *nix

License: Freeware Size: 28.67 KB Download (99): Config::LotusNotes Download

Added: November 22, 2010 | Visits: 1.034

Sys::Gamin Sys::Gamin is a Perl interface to Gamin (File Access Monitor implementation). SYNOPSIS use Sys::Gamin; my $fm=new Sys::Gamin; $fm->monitor(/foo); $fm->monitor(/foo/bar.txt); while (1) { my $event=$fm->next_event; # Blocks print "Pathname: ", $event->filename, " Event: ", $event->type,... Platforms: *nix

License: Freeware Size: 7.17 KB Download (103): Sys::Gamin Download

Added: March 17, 2010 | Visits: 727

OpenOffice::OODoc::Meta OpenOffice::OODoc::Meta is a Perl module to access document metadata. The OpenOffice::OODoc::Meta class is a specialist derivative of OpenOffice::OODoc::XPath for XML members which describe the metadata of OpenDocument (ODF) and OpenOffice.org documents.. Platforms: *nix

License: Freeware Size: 215.04 KB Download (101): OpenOffice::OODoc::Meta Download

Added: August 09, 2010 | Visits: 849

AnyData::Format::XML AnyData::Format::XML is a Perl module for tiedhash and DBI access to XML. SYNOPSIS # access XML data via a multi-dimensional tied hash # see AnyData.pod for full details # use AnyData; my $table = adTie( XML, $file, $mode, $flags ); OR # convert data to and from XML # see AnyData.pod... Platforms: *nix

License: Freeware Size: 44.03 KB Download (94): AnyData::Format::XML Download

Added: September 14, 2010 | Visits: 913

Perl::Critic::Config Perl::Critic::Config is a Perl module to find and load Perl::Critic user-preferences. Perl::Critic::Config takes care of finding and processing user-preferences for Perl::Critic. The Config object defines which Policy modules will be loaded into the Perl::Critic engine and how they should be... Platforms: *nix

License: Freeware Size: 245.76 KB Download (90): Perl::Critic::Config Download

Added: March 20, 2010 | Visits: 1.078

Crypt::SSLeay Crypt::SSLeay is a Perl module for OpenSSL glue that provides LWP https support. SYNOPSIS lwp-request https://www.nodeworks.com use LWP::UserAgent; my $ua = new LWP::UserAgent; my $req = new HTTP::Request(GET, https://www.nodeworks.com); my $res = $ua->request($req); print... Platforms: *nix

License: Freeware Download (106): Crypt::SSLeay Download

Added: March 03, 2010 | Visits: 954

Tie::File Tie::File can access the lines of a disk file via a Perl array. SYNOPSIS # This file documents Tie::File version 0.96 use Tie::File; tie @array, Tie::File, filename or die ...; $array[13] = blah; # line 13 of the file is now blah print $array[42]; # display line 42 of the file $n_recs... Platforms: *nix

License: Freeware Size: 67.58 KB Download (97): Tie::File Download

Added: May 27, 2010 | Visits: 654

NDBM_File NDBM_File is a Perl module that allows tied access to ndbm files. SYNOPSIS use Fcntl; # For O_RDWR, O_CREAT, etc. use NDBM_File; tie(%h, NDBM_File, filename, O_RDWR|O_CREAT, 0666) or die "Couldnt tie NDBM file filename: $!; aborting"; # Now read and change the hash $h{newkey} =... Platforms: *nix

License: Freeware Size: 12.2 MB Download (101): NDBM_File Download

Added: August 24, 2010 | Visits: 894

Apache2::SiteMap Apache2::SiteMap is a Perl module that can dynamically create Google SiteMap files. SYNOPSIS Create a Google SiteMap much like a mod_dir listing. < Location "/sitemap.xml" > SetHandler modperl PerlHandler Apache2::SiteMap PerlSetVar SiteMapBase http://host/ PerlSetVar SiteMapDir... Platforms: *nix

License: Freeware Size: 4.1 KB Download (91): Apache2::SiteMap Download

Added: October 11, 2010 | Visits: 1.174

Search::Tools::RegExp::Keywords Search::Tools::RegExp::Keywords is a Perl module to access regular expressions for keywords. SYNOPSIS my $regexp = Search::Tools::RegExp->new(); my $kw = $regexp->build(the quick brown fox); for my $w ($kw->keywords) { my $r = $kw->re( $w ); } Search::Tools::RegExp::Keywords provides... Platforms: *nix

License: Freeware Size: 49.15 KB Download (98): Search::Tools::RegExp::Keywords Download

Added: July 22, 2010 | Visits: 629

DBIx::MyParse DBIx::MyParse is a Perl module that provides access to the MySQL SQL parser.. Platforms: *nix

License: Freeware Size: 86.02 KB Download (92): DBIx::MyParse Download

Added: August 06, 2010 | Visits: 1.212

PBJ::JNI PBJ::JNI is a Perl module with full access to and from Java virtual machine from Perl. SYNOPSIS use PBJ::JNI::JavaVM; my ($env, $jvm, @vm_opts); my ($cls, $fid, $mid, $out); # Create the Java VM @vm_opts = ("-Xrs", "-Xcheck:jni"); $jvm = new PBJ::JNI::JavaVM(); $env =... Platforms: *nix

License: Freeware Size: 14.34 KB Download (93): PBJ::JNI Download

Added: March 22, 2010 | Visits: 707

DBIx::CGITables DBIx::CGITables is a Perl module for easy DB access from a CGI. SYNOPSIS use DBIx::CGITables; my %parameters=(); my $query=DBIx::CGITables->new(%parameters)); $query->search_execute_and_do_everything_even_parse_the_template(); This module is under development - and this version is not... Platforms: *nix

License: Freeware Size: 20.48 KB Download (87): DBIx::CGITables Download

Added: November 15, 2010 | Visits: 884

Snort::Rule Snort::Rule is a Perl extension for dynamically building snort rules. SYNOPSIS use Snort::Rule; $rule = Snort::Rule->new( -action => alert, -proto => tcp, -src => any, -sport => any, -dir => ->, -dst => 192.188.1.1, -dport => 44444, ); $rule->opts(msg,Test Rule");... Platforms: *nix

License: Freeware Size: 5.12 KB Download (157): Snort::Rule Download

< 1 2 3 4 5