What Perl module would you be lost without?
|
7
|
|
|
|
|
|
If we're allowed built-ins, then When I'm debugging, I want to be able to see what that data structure looks like... |
|||
|
|
|
|
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. |
|||
|
|
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.) |
|||
|
|
|
|
My first choice would be |
|||
|
|
|
|
CPAN.pm -- because it's my gateway to all the great libraries that people have already written to make my job easier. |
|||
|
|
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... |
|||
|
|
|
|
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. |
|||
|
|
|
|
|
|||
|
|
|
|
Can't live without Text::CSV_XS for parsing and generating line-oriented structured data. |
|||
|
|
|
|
|
|||
|
|
|
|
'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. |
|||
|
|
|
|
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. |
|||
|
|
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. |
||||
|
|
|
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. |
|||
|
|
|
|
When I'm writing network I almost always use POE. It's one of the most amazing networking libraries that I know. Of course saying that POE is just a networking library sells it short. It's among other things an amazing mainloop as well. Just a few days ago I wrote a music player with it, which contains a combination of Gstreamer and a networking protocol, all in the same program. |
|||
|
|
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. |
|||
|
|
|
|
DBI for sure...that one should just be a given. Outside of that, Data::Dumper |
|||
|
|
|
|
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. |
|||
|
|
|
|
Along with many listed here, for general coding I would also include:
For package testing, I would also not do without: |
|||
|
|
|
|
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. |
|||
|
|
|
|
DBI - probably over 80% of the things I do with Perl require a database. |
|||
|
|
|
|
It's probably DBI. I use LWP heavily but I'm guessing that I could more easily replace it than DBI. |
|||
|
|
|
|
DB_File. I like most of those answers, but I use DB_File the most. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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). |
|||
|
|
|
|
Just one choice? That's so hard. I'd have to say Josh Pritikin's 'Event'. It is the backbone of every non-trivial Perl program I write. |
|||
|
|
|
|
CGI and DBI hard to choose between them but most things I do have these somewhere near the bottom of the stack. |
|||
|
|
|
|
While DBI is the first thing that came to mind, I can work around it w/o having it. I would be lost without win32::API on the sad occasions I've had to write code that used it. |
|||
|
|
|
|
IO:All - It makes everything easy and uniform (Files, DBs, Sockets, etc) |
|||
|
|
