tags:

views:

161

answers:

3

I'm building an application which I'd like to have it connect to a website and parse some data off it. I'm wondering if anyone could provide me some raw example code.

I don't necessarily need help parsing, I'm just wondering in C++ how would I go about downloading the data from the page into my app so that I can start parsing the data I need out of it?

+7  A: 

Check out libCurl.

Daniel A. White
+3  A: 

Check out boost.asio [examples].

Roger Pate
A: 

Check out neon.

brianegge