mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
80e5d5e0f3
Changes: https://github.com/pycurl/pycurl/blob/master/ChangeLog http://pycurl.io/docs/latest/release-notes.html
17 lines
820 B
Plaintext
17 lines
820 B
Plaintext
PycURL is a Python interface to libcurl, the multiprotocol file transfer
|
|
library. Similarly to the urllib Python module, PycURL can be used to fetch
|
|
objects identified by a URL from a Python program. Beyond simple fetches however
|
|
PycURL exposes most of the functionality of libcurl, including:
|
|
|
|
- Speed - libcurl is very fast and PycURL, being a thin wrapper above libcurl,
|
|
is very fast as well. PycURL was benchmarked to be several times faster than
|
|
requests.
|
|
- Features including multiple protocol support, SSL, authentication and proxy
|
|
options. PycURL supports most of libcurl's callbacks.
|
|
- Multi and share interfaces.
|
|
- Sockets used for network operations, permitting integration of PycURL into the
|
|
applications' I/O loop (e.g., using Tornado).
|
|
|
|
WWW: http://pycurl.io/
|
|
WWW: https://github.com/pycurl/pycurl
|