tags:

views:

61

answers:

2

any c/c++ library out there that provides functions like getUrl, urlopen, post etc. ?

+5  A: 

There are some libraries, libcurl and libwww amongst others.

libcurl website even lists some other alternatives.

el.pescado
+1  A: 

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).

Marcelo Cantos