Using cURLpp software

To use the curlpp, we need to first install.

Download the package at  http://curlpp.org/index.php/download

The simplest way to compile this package is:

  1. `cd' to the directory containing the package's source code and type
     `./configure'

  2. Type `make' to compile the package.

  3. Type `make install' to install, if error occurs do 'sudo make install'

  4. You can remove the program binaries and object files from the
     source code directory by typing `make clean'.

After installing, there are several examples at http://curlpp.org/index.php/examples
cURLpp is a C++ wrapper for libcURL.
libcURL is described as:
a free and easy-to-use client-side URL transfer library, supporting FTPFTPSHTTPHTTPSGOPHERTELNETDICTFILE and LDAP. libcurl supports HTTPScertificates, HTTP POSTHTTP PUTFTP uploading, kerberos, HTTP form based upload, proxies, cookies, user+password authentication, file transfer resume, http proxy tunneling and more!

No comments:

Post a Comment

Python contextlib for Timing Python code

If you've ever found yourself needing to measure the execution time of specific portions of your Python code, the `contextlib` module o...