1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-28 05:29:48 +00:00
freebsd-ports/ftp/py-pycurl/pkg-descr
Dmitry Marakasov c637402081 Switch all pypi.python.org WWWs to a new PyPi home pypi.org where
they now redirect to anyway. All new urls checked to return 200,
I've fixed a couple of them in the process.

Approved by:	portmgr blanket, mat
2018-04-25 16:42:37 +00:00

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: https://pypi.org/project/pycurl/
WWW: http://pycurl.io/