Curl Object¶
-
class
pycurl.
Curl
→ New Curl object¶ Creates a new Curl Object which corresponds to a
CURL
handle in libcurl. Curl objects automatically set CURLOPT_VERBOSE to 0, CURLOPT_NOPROGRESS to 1, provide a default CURLOPT_USERAGENT and setup CURLOPT_ERRORBUFFER to point to a private error buffer.Implicitly calls
pycurl.global_init()
if the latter has not yet been called.Curl objects have the following methods:
-
close
() → None¶ Close handle and end curl session.
Corresponds to curl_easy_cleanup in libcurl. This method is automatically called by pycurl when a Curl object no longer has any references to it, but can also be called explicitly.
-
setopt
(option, value) → None¶ Set curl session option. Corresponds to curl_easy_setopt in libcurl.
option specifies which option to set. PycURL defines constants corresponding to
CURLOPT_*
constants in libcurl, except that theCURLOPT_
prefix is removed. For example,CURLOPT_URL
is exposed in PycURL aspycurl.URL
. For convenience,CURLOPT_*
constants are also exposed on the Curl objects themselves:import pycurl c = pycurl.Curl() c.setopt(pycurl.URL, "http://www.python.org/") # Same as: c.setopt(c.URL, "http://www.python.org/")
In order to distinguish between similarly-named CURLOPT and CURLINFO constants, some have CURLOPT constants have
OPT_
prefixes. These areOPT_FILETIME
andOPT_CERTINFO
. As an exception to the exception,COOKIELIST
does not have anOPT_
prefix but the corresponding CURLINFO option isINFO_COOKIELIST
.value specifies the value to set the option to. Different options accept values of different types:
Options specified by curl_easy_setopt as accepting
1
or an integer value accept Python integers, long integers (on Python 2.x) and booleans:c.setopt(pycurl.FOLLOWLOCATION, True) c.setopt(pycurl.FOLLOWLOCATION, 1) # Python 2.x only: c.setopt(pycurl.FOLLOWLOCATION, 1L)
Options specified as accepting strings by
curl_easy_setopt
accept byte strings (str
on Python 2,bytes
on Python 3) and Unicode strings with ASCII code points only. For more information, please refer to String And Unicode Handling. Example:c.setopt(pycurl.URL, "http://www.python.org/") c.setopt(pycurl.URL, u"http://www.python.org/") # Python 3.x only: c.setopt(pycurl.URL, b"http://www.python.org/")
HTTP200ALIASES
,HTTPHEADER
,POSTQUOTE
,PREQUOTE
,PROXYHEADER
andQUOTE
accept a list or tuple of strings. The same rules apply to these strings as do to string option values. Example:c.setopt(pycurl.HTTPHEADER, ["Accept:"]) c.setopt(pycurl.HTTPHEADER, ("Accept:",))
READDATA
accepts a file object or any Python object which has aread
method. On Python 2, a file object will be passed directly to libcurl and may result in greater transfer efficiency, unless PycURL has been compiled withAVOID_STDIO
option. On Python 3 and on Python 2 when the value is not a true file object,READDATA
is emulated in PycURL viaREADFUNCTION
. The file should generally be opened in binary mode. Example:f = open('file.txt', 'rb') c.setopt(c.READDATA, f)
WRITEDATA
andWRITEHEADER
accept a file object or any Python object which has awrite
method. On Python 2, a file object will be passed directly to libcurl and may result in greater transfer efficiency, unless PycURL has been compiled withAVOID_STDIO
option. On Python 3 and on Python 2 when the value is not a true file object,WRITEDATA
is emulated in PycURL viaWRITEFUNCTION
. The file should generally be opened in binary mode. Example:f = open('/dev/null', 'wb') c.setopt(c.WRITEDATA, f)
*FUNCTION
options accept a function. Supported callbacks are documented in Callbacks. Example:# Python 2 import StringIO b = StringIO.StringIO() c.setopt(pycurl.WRITEFUNCTION, b.write)
SHARE
option accepts a CurlShare Object.
It is possible to set integer options - and only them - that PycURL does not know about by using the numeric value of the option constant directly. For example,
pycurl.VERBOSE
has the value 42, and may be set as follows:c.setopt(42, 1)
setopt can reset some options to their default value, performing the job of
pycurl.Curl.unsetopt()
, ifNone
is passed for the option value. The following two calls are equivalent:c.setopt(c.URL, None) c.unsetopt(c.URL)
Raises TypeError when the option value is not of a type accepted by the respective option, and pycurl.error exception when libcurl rejects the option or its value.
-
perform
() → None¶ Perform a file transfer.
Corresponds to curl_easy_perform in libcurl.
Raises pycurl.error exception upon failure.
-
getinfo
(info) → Result¶ Extract and return information from a curl session.
Corresponds to curl_easy_getinfo in libcurl, where option is the same as the
CURLINFO_*
constants in libcurl, except that theCURLINFO_
prefix has been removed. (See below for exceptions.) Result contains an integer, float or string, depending on which option is given. Thegetinfo
method should not be called unlessperform
has been called and finished.In order to distinguish between similarly-named CURLOPT and CURLINFO constants, some have
OPT_
andINFO_
prefixes. These areINFO_FILETIME
,OPT_FILETIME
,INFO_COOKIELIST
(butsetopt
usesCOOKIELIST
!),INFO_CERTINFO
, andOPT_CERTINFO
.The value returned by
getinfo(INFO_CERTINFO)
is a list with one element per certificate in the chain, starting with the leaf; each element is a sequence of (key, value) tuples.Example usage:
import pycurl c = pycurl.Curl() c.setopt(pycurl.URL, "https://python.org") c.setopt(pycurl.FOLLOWLOCATION, 1) c.perform() print c.getinfo(pycurl.HTTP_CODE), c.getinfo(pycurl.EFFECTIVE_URL) ... --> 200 "https://www.python.org/"
Raises pycurl.error exception upon failure.
-
reset
() → None¶ Reset all options set on curl handle to default values, but preserves live connections, session ID cache, DNS cache, cookies, and shares.
Corresponds to curl_easy_reset in libcurl.
-
unsetopt
(option) → None¶ Reset curl session option to its default value.
Only some curl options may be reset via this method.
libcurl does not provide a general way to reset a single option to its default value;
pycurl.Curl.reset()
resets all options to their default values, otherwisepycurl.Curl.setopt()
must be called with whatever value is the default. For convenience, PycURL provides this unsetopt method to reset some of the options to their default values.Raises pycurl.error exception on failure.
c.unsetopt(option)
is equivalent toc.setopt(option, None)
.
-
pause
(bitmask) → None¶ Pause or unpause a curl handle. Bitmask should be a value such as PAUSE_RECV or PAUSE_CONT.
Corresponds to curl_easy_pause in libcurl. The argument should be derived from the
PAUSE_RECV
,PAUSE_SEND
,PAUSE_ALL
andPAUSE_CONT
constants.Raises pycurl.error exception upon failure.
-
errstr
() → string¶ Return the internal libcurl error buffer of this handle as a string.
Return value is a
str
instance on all Python versions.
-
setopt_string
(option, value) → None¶ Set curl session option to a string value.
This method allows setting string options that are not officially supported by PycURL, for example because they did not exist when the version of PycURL being used was released.
pycurl.Curl.setopt()
should be used for setting options that PycURL knows about.Warning: No checking is performed that option does, in fact, expect a string value. Using this method incorrectly can crash the program and may lead to a security vulnerability. Furthermore, it is on the application to ensure that the value object does not get garbage collected while libcurl is using it. libcurl copies most string options but not all; one option whose value is not copied by libcurl is CURLOPT_POSTFIELDS.
option would generally need to be given as an integer literal rather than a symbolic constant.
value can be a binary string or a Unicode string using ASCII code points, same as with string options given to PycURL elsewhere.
Example setting URL via
setopt_string
:import pycurl c = pycurl.Curl() c.setopt_string(10002, "http://www.python.org/")
-