All posts in Perl

Perl – Using HTTP::Lite

I recently had to use the HTTP::Lite perl module and thought I would share an example of how to use it. HTTP::Lite was is available on www.cpan.org; its very lightweight and has no dependancies other than Socket & Fcntl which included with almost all Perl implementations by default. Based on the examples by the HTTP::Lite author Roy Hooper <rhooper@thetoybox.org> [perl] #!perl use HTTP::Lite; # # Get and print out the Read More...