blob: 0113acdb35c5a498bcd2d5cac03dc2c94a1fbd53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
pycurl Module Functionality
===========================
.. module:: pycurl
.. autofunction:: pycurl.global_init
.. autofunction:: pycurl.global_cleanup
.. data:: version
This is a string with version information on libcurl, corresponding to
`curl_version`_ in libcurl.
Example usage:
::
>>> import pycurl
>>> pycurl.version
'PycURL/7.19.3 libcurl/7.33.0 OpenSSL/0.9.8x zlib/1.2.7'
.. autofunction:: pycurl.version_info
.. autoclass:: pycurl.Curl
:noindex:
.. autoclass:: pycurl.CurlMulti
:noindex:
.. autoclass:: pycurl.CurlShare
:noindex:
.. _curl_version: https://curl.haxx.se/libcurl/c/curl_version.html
|