What Perl module would you be lost without?
|
7
|
|
|
|
|
|
I agree with the strict comments, but i'd also be lost without |
|||
|
|
|
|
Lightweight, reliable, fast: classes - conventional Perl 5 classes |
|||
|
|
|
|
I would really not be able to function without the Win32::ODBC, I have so much old legacy code using this. I know DBI is better, but this module is used every second. |
|||
|
|
|
|
|
|||
|
|
|
|
I tend to use Path::Class a lot. It transforms something like:
Into:
If you work with the filesystem and do this all manually, Path::Class will make you very happy. |
|||
|
|
CGI. I rarely write a perl script without it. But that's just the nature of most of my perl scripts. |
|||
|
|
|
|
While this module is by no means a universal cure-all, over the past two years if Nagios::Plugin had not existed I would assuredly have had to implement it myself, and probably not as well. |
|||
|
|
|
|
|
|||
|
|
|
|
Everything I write has tests, so Test::Builder without which most of the other testing modules would not exist.
|
|||
|
|
|
|
IO:All - It makes everything easy and uniform (Files, DBs, Sockets, etc) |
|||
|
|
|
|
Along with many listed here, for general coding I would also include:
For package testing, I would also not do without: |
|||
|
|
|
|
DateTime and family, although there are a number of implementation decisions DateTime made that I think are poor, and I prefer some of the interface of Time::Piece + Time::Seconds (formerly Time::Object; I liked the previous name better, too). |
|||
|
|
|
|
I do a lot of date arithmetic at $work, and my first (and only) port of call is Date::Calc. Yes, the DateTime project is the way to go these days, but since I've committed most of the API to memory, and the problem domain can be addressed in a purely procedural manner, it seems to work out just fine. Getopt::Long is another module who's API I know off by heart. For command-line argument parsing, it's hard to beat. Mail::Sendmail is my favourite e-mail sending module for batch processes to phone home when things go wrong. I use Net::LDAP for hacking on LDAP directories, although I hate the interface. That said, I've been using it for years and I cannot think of an interface that would be an improvement. The problem domain is complex. |
|||
|
|
|
|
'strict' and 'warnings' have probably saved me more head-scratching time than anything else. Honorable mentions (in no particular order) to DBI, XML::LibXML, Moose, HTML::Parser, Path::Class, Log::Log4perl, Getopt::Long, File::Find::Rule, DateTime, Test::More, WWW::Mechanize and Data::Dumper. I can't even imagine how how bad my code would be without these (and many others), let alone how much longer it would have taken to write. |
|||
|
|
|
|
DBI for sure...that one should just be a given. Outside of that, Data::Dumper |
|||
|
|
|
|
There are many modules whose absence would make my Perl programmer life quite a lot less comfortable. If I were to enumerate those, the result would be virtually identical to rjray’s list. However, there is only one single module that I use in every program and without which I truly would be lost: strict. Seriously. It has happened to me in some cases, like when I started writing code on the command line and then put into a file to evolve it into a proper program, or when I got involved with someone else’s code, that I missed that crucial I think it’s easy to forget just how much time and mental effort strict saves on an ongoing basis, simply because as conscientious programmers we’re so incredibly used to it. (Of course, ultimately that is just as it should be.) |
|||
|
|
|
|
Getopt::Long I'd like to say DBI and DBD::Oracle, but they're such a pain to get working (under cygwyn) that they're almost non-functional. That's a special feature of cygwin I guess, 'cause ActiveState works peachy. |
|||
|
|
|
|
For modules in the core of Perl itself:
From CPAN:
Of course, I'd argue that probably the most critical/useful is the CPAN module itself... |
|||
|
|
|
|
Damian Conway's Smart::Comments, and I use YAML for a bit of modeling (see yaml.org, specifically the fast YAML::Syck. In addition, I have my own module (not on CPAN) Test::Setup which is just an easy importer for Test::More and Benchmark and Perl6::Say (on 5.8). Oh, and not to mention a bunch of core modules: Scalar::Util, List::Util (and List::MoreUtils), Symbol, and of course Carp. |
|||
|
|
|
|
|
|||
|
|
|
|
Can't live without Text::CSV_XS for parsing and generating line-oriented structured data. |
|||
|
|
|
|
I would be lost without many Perl modules. Test::More, Cwd.pm, Template-Toolkit, String::ShellQuote, DBI, CGI.pm, XML::RSS/XML::Feed, Module::Build, Term::ANSIColor, Exception::CLass, Exporter, Class::Accessor, XML::LibXML, Getopt::Long (still didn't take the Moose path), CPANPLUS::Dist::Mdv, File::Path, HTML::Parser and friends and many of my own. |
|||
|
|
|
|
I'm dabbling a lot in XML, so I'd have to say XML::LibXML. There are other excellent XML modules out there (XML::Twig and the pure-Perl-when-all-else-fails XML::XPath), but XML::LibXML is the primary one I keep using over and over again. |
|||
|
|
|
|
First one that came to mind is DBI, but then I remembered that I mostly use DBIx::Class these days and I could live with either of them. Then I thought of Data::Dumper but I really like Data::Dump better. Finally, it hit me: this is a trick question. With the wealth of CPAN modules and TMTOWTDI, there should be no module you can't live without. ... and to answer the question about which module I like best, I'd say Catalyst, because I've learned more from it than from any other Perl module or framework. |
|||
|
|
|
|
FileHandle. Lots of Perl scripts I write deal with files and although I could do without this module, it's neater to pass around files as objects. |
||||
|
|
|
DBI and Data::Dumper Everything I do is either driven by a database or ends up in a database, so DBI is a must. Data::Dumper is just magic for debugging. |
|||
|
|
|
|
DB_File. I like most of those answers, but I use DB_File the most. |
|||
|
|
|
|
Moose. Gets rid of the cruft involved in implementing Perl OO, and allows me to just get the hell on and code in a manner my peers can follow and maintain. |
|||
|
|
CPAN.pm -- because it's my gateway to all the great libraries that people have already written to make my job easier. |
|||
|
|
It's probably DBI. I use LWP heavily but I'm guessing that I could more easily replace it than DBI. |
|||
|
|
