| WWW-Curl-Simple documentation | view source | Contained in the WWW-Curl-Simple distribution. |
WWW::Curl::Simple - A Simpler interface to WWW::Curl
version 0.100184
Makes WWW::Curl::(Easy|Multi) easier to use.
use WWW::Curl::Simple;
my $curl = WWW::Curl::Simple->new();
my $res = $curl->get('http://www.google.com/');
Sets the timeout of individual requests, in seconds or milliseconds.
Sets the timeout of the connect phase of requests, in seconds or milliseconds.
Defaults to true, but if set to false, it will make failure in multi-requests warn instead of die.
$req should be a HTTP::Request object.
If you have a URI string or object, look at the get method instead.
Returns a WWW::Curl::Simple::Request object.
Accepts one parameter, which should be a reference to a URI object or a string representing a URI. Returns a HTTP::Response object.
Creates a HTTP::Request of type POST to $uri, which can be a string
or a URI object, and sets the form of the request to $form. See
HTTP::Request for more information on the format of $form.
Adds $req (a HTTP::Request object) to the list of URLs to fetch. Returns
a WWW::Simple::Curl::Request object.
An alias for add_request.
Will return true if $request is one of the object's requests.
Removes $req from the object's list of requests.
Does all the requests added with add_request and returns a list of
WWW::Curl::Simple::Request objects.
These methods are here to provide an easier transition from
LWP::Parallel::UserAgent. It is by no means a drop in replacement, but using
wait instead of perform makes the return value more like that of
LWP::PUA.
Andreas Marienborg <andremar@cpan.org>
This software is copyright (c) 2011 by Andreas Marienborg.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| WWW-Curl-Simple documentation | view source | Contained in the WWW-Curl-Simple distribution. |