PycURL is a thin wrapper around the C libcurl API, I wonder if there’s any more pythonic wrapper for libcurl which supports CurlMulti ?
PycURL is a thin wrapper around the C libcurl API, I wonder if there’s
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
As with most bindings made for C libraries, it is clever to make a very thin layer on top of it to offer the most of it.
This said, it generally makes sense to wrap that binding itself then to offer more higher level features and more language-specific ways to do things, rather than to write yet another binding.
So no, I don’t know of any such wrapper but I would advice that such a wrapper would be made on top of pycurl rather than on top of libcurl directly!