Furl

Fast URL fetcher
Download

Furl Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Publisher Name:
  • Tokuhiro Matsuno
  • Publisher web site:
  • http://search.cpan.org/~tokuhirom/

Furl Tags


Furl Description

Fast URL fetcher Furl is yet another HTTP client library. LWP is the de facto standard HTTP client for Perl5, but it is too slow for some critical jobs, and too complex for weekend hacking. The Furl module resolves these issues. Enjoy it!SYNOPSIS use Furl; my $furl = Furl->new( agent => 'MyGreatUA/2.0', timeout => 10, ); my $res = $furl->get('http://example.com/'); die $res->status_line unless $res->is_success; print $res->content; my $res = $furl->post( 'http://example.com/', # URL , # headers , # form data (HashRef/FileHandle are also okay) ); # Accept-Encoding is supported but optional $furl = Furl->new( headers => , ); my $body = $furl->get('http://example.com/some/compressed'); Requirements: · Perl Limitations: · This library is an beta software. Any API may change without notice.


Furl Related Software