Is there an equivalent to python's urllib in c/c++?
any c/c++ library out there that provides functions like getUrl, urlopen, p开发者_高级运维ost etc. ?
There are some libraries, libcurl and libwww amongst others.
libcurl
website even lists some other alternatives.
Not a batteries-included, officially endorsed library, but there are numerous libraries out there. The most popular, AFAIK, is libCURL, which I've used to good effect in the past. It has an "easy" interface, which really is easy to use (though definitely not as easy as Python's urllib).
精彩评论