Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jpbarrette/curlpp
C++ wrapper around libcURL
https://github.com/jpbarrette/curlpp
c-plus-plus curlpp libcurl transfer
Last synced: 1 day ago
JSON representation
C++ wrapper around libcURL
- Host: GitHub
- URL: https://github.com/jpbarrette/curlpp
- Owner: jpbarrette
- Created: 2015-02-26T08:59:16.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-05-31T07:18:28.000Z (8 months ago)
- Last Synced: 2025-01-02T23:07:34.615Z (9 days ago)
- Topics: c-plus-plus, curlpp, libcurl, transfer
- Language: C++
- Homepage: http://www.curlpp.org
- Size: 3.19 MB
- Stars: 1,696
- Watchers: 65
- Forks: 360
- Open Issues: 69
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
- awesome-code-for-gamedev - jpbarrette/curlpp - C++ wrapper around libcURL (Communication Clients / fake data)
README
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Travis CI](https://img.shields.io/travis/jpbarrette/curlpp.svg)](https://travis-ci.org/jpbarrette/curlpp) [![AppVeyor CI](https://img.shields.io/appveyor/ci/jpbarrette/curlpp.svg)](https://ci.appveyor.com/project/jpbarrette/curlpp)
# Description
[cURLpp](http://www.curlpp.org) is a C++ wrapper for libcURL. libcURL is described as:
a free and easy-to-use client-side URL transfer library, supporting FTP, FTPS, HTTP, HTTPS, GOPHER, TELNET, DICT, FILE and LDAP. libcurl supports HTTPS certificates, HTTP POST, HTTP PUT, FTP uploading, kerberos, HTTP form based upload, proxies, cookies, user+password authentication, file transfer resume, http proxy tunneling and more!
libcurl is highly portable, it builds and works identically on numerous platforms, including Solaris, NetBSD, FreeBSD, OpenBSD, Darwin, HPUX, IRIX, AIX, Tru64, Linux, Windows, Amiga, OS/2, BeOs, Mac OS X, Ultrix, QNX, OpenVMS, RISC OS, Novell NetWare, DOS and more...
libcurl is free, thread-safe, IPv6 compatible, feature rich, well supported and fast.First, I need to quote Daniel Stenberg, the maintener of libcURL:
You can use libcURL instantly from within your C++ programs. You don't need cURLpp for that, cURLpp just adds an OO'ified layer that libcURL doesn't normally provide. It means that you need to be sure that you need, or want, cURLpp features. If not, I suggest to use directly the libcURL library. So, what are thoses features that cURLpp offers?* You can query handles for option values (version 0.5.x and newer only).
* It uses the C++ standard library structures instead of home made ones.
* It is exception safe.
* It is type safe.# Download
Latest version is available on GitHub [here](https://github.com/jpbarrette/curlpp/releases/latest).
# Documentation
The programming guide is [here](https://github.com/jpbarrette/curlpp/tree/master/doc/guide.pdf). This guide is greatly inspired by the libcURL guide, that I strongly suggest to read. There's also some examples in the "[examples](http://github.com/jpbarrette/curlpp/tree/master/examples)/" source directory of cURLpp.