cpr

C++ Requests: Curl for People, a spiritual port of Python Requests. (by libcpr)

Cpr Alternatives

Similar projects and alternatives to cpr

  1. libcurl

    365 cpr VS libcurl

    A command line tool and library for transferring data with URL syntax, supporting DICT, FILE, FTP, FTPS, GOPHER, GOPHERS, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, MQTT, MQTTS, POP3, POP3S, RTSP, SCP, SFTP, SMB, SMBS, SMTP, SMTPS, TELNET, TFTP, WS and WSS. libcurl offers a myriad of powerful features

  2. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  3. stb

    182 cpr VS stb

    stb single-file public domain libraries for C/C++

  4. {fmt}

    176 cpr VS {fmt}

    A modern formatting library

  5. json

    98 cpr VS json

    JSON for Modern C++

  6. abseil-cpp

    71 cpr VS abseil-cpp

    Abseil Common Libraries (C++)

  7. spdlog

    50 cpr VS spdlog

    Fast C++ logging library.

  8. cpp-httplib

    38 cpr VS cpp-httplib

    A C++ header-only HTTP/HTTPS server and client library

  9. Magic Enum C++

    Static reflection for enums (to string, from string, iteration) for modern C++, work with any enum type without any macro or boilerplate code

  10. µWebSockets

    Simple, secure & standards compliant web server for the most demanding of applications

  11. Wt

    43 cpr VS Wt

    Wt, C++ Web Toolkit

  12. GLM

    41 cpr VS GLM

    OpenGL Mathematics (GLM)

  13. Boost.Beast

    11 cpr VS Boost.Beast

    HTTP and WebSocket built on Boost.Asio in C++11

  14. RapidJSON

    17 cpr VS RapidJSON

    A fast JSON parser/generator for C++ with both SAX/DOM style API

  15. RESTinio

    14 cpr VS RESTinio

    Cross-platform, efficient, customizable, and robust asynchronous HTTP(S)/WebSocket server C++ library with the right balance between performance and ease of use

  16. PEGTL

    13 cpr VS PEGTL

    Parsing Expression Grammar Template Library

  17. curlcpp

    7 cpr VS curlcpp

    An object oriented C++ wrapper for CURL (libcurl)

  18. outcome

    9 cpr VS outcome

    Provides very lightweight outcome<T> and result<T> (non-Boost edition)

  19. Experimental Boost.DI

    C++14 Dependency Injection library

  20. C++ REST SDK

    Discontinued The C++ REST SDK is a Microsoft project for cloud-based client-server communication in native code using a modern asynchronous C++ API design. This project aims to help C++ developers connect to and interact with services.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better cpr alternative or higher similarity.

cpr discussion

Log in or Post with

cpr reviews and mentions

Posts with mentions or reviews of cpr. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-08.
  • What C++ library do you wish existed but hasn’t been created yet?
    18 projects | /r/cpp | 8 Jul 2023
    This one might fit the bill https://github.com/libcpr/cpr
  • [CMake] Can't include external header in .h file
    2 projects | /r/cpp_questions | 8 Jul 2023
    cmake_minimum_required(VERSION 3.15) project(xrpc++ DESCRIPTION "C++ AT Protocol XRPC library" VERSION 1.0.0 LANGUAGES CXX) include(FetchContent) FetchContent_Declare(cpr GIT_REPOSITORY https://github.com/libcpr/cpr.git GIT_TAG 2553fc41450301cd09a9271c8d2c3e0cf3546b73) # The commit hash for 1.10.x. Replace with the latest from: https://github.com/libcpr/cpr/releases FetchContent_MakeAvailable(cpr) FetchContent_Declare(json URL https://github.com/nlohmann/json/releases/download/v3.11.2/json.tar.xz) FetchContent_MakeAvailable(json) add_library(${PROJECT_NAME} SHARED src/lexicon.cpp src/xrpc.cpp ) target_link_libraries(${PROJECT_NAME} PRIVATE cpr::cpr) target_link_libraries(${PROJECT_NAME} PRIVATE nlohmann_json::nlohmann_json) set_target_properties(${PROJECT_NAME} PROPERTIES VERSION ${PROJECT_VERSION}) set_target_properties(${PROJECT_NAME} PROPERTIES SOVERSION 1) target_include_directories(${PROJECT_NAME} PUBLIC include) set(CMAKE_BUILD_TYPE debug)
    2 projects | /r/cpp_questions | 8 Jul 2023
    include(FetchContent) FetchContent_Declare(cpr GIT_REPOSITORY https://github.com/libcpr/cpr.git GIT_TAG 2553fc41450301cd09a9271c8d2c3e0cf3546b73) # The commit hash for 1.10.x. Replace with the latest from: https://github.com/libcpr/cpr/releases FetchContent_MakeAvailable(cpr)
  • How to convert libcurl to C++?
    2 projects | /r/cpp_questions | 16 Mar 2023
    There is also the cpr package which should offer a more c++ focussed interface for curl.
  • Trying to use libcpr, linking errors - newbie...
    1 project | /r/cpp_questions | 3 Dec 2022
    So I'm very new to C++ and I'm trying to write a C++ version of a tool that I put together in Python. I'm trying to use libcpr for all my HTTP needs. I've spent the day trying to get it set up and working, but I'm getting a bunch of linking errors when I try to run. I really don't know if I did the building of it correctly, I'm trying to use Visual Studio Community 2022 and the Usage section of their docs talks about CMake and a couple package manager methods.
  • Como são feitos os downloaders? (exemplos no texto)
    2 projects | /r/brdev | 2 Dec 2022
  • Standardise a C++ build tool and package manager?
    2 projects | /r/cpp | 27 Sep 2022
    I think vcpkg manifests have solved a really key portion of the "please give me these libraries" problem. Couple lines in a json file, pass CMake to your vcpkg toolchain script path and triplet, and you're pretty much done with dependencies. I actually used it for a project with libcpr/cpr and a couple other popular libraries, and I was shocked at how painless it was to get up and running with some web request stuff.
  • What are some cool modern libraries you enjoy using?
    32 projects | /r/cpp | 18 Sep 2022
    Libraries like nlohmann's json, cpr, fmt are prime examples of what I'm seeking. Any suggestions?
  • I'm getting a 422 Validation Failed from Github API. Only when making a request with the Cpr library.
    1 project | /r/cpp_questions | 17 Sep 2022
    Basically specifying the language and the repo, and it does work when the request is made from postman or from the browser. However, when using https://github.com/libcpr/cpr, I'm getting the following response:
  • how to make a C++ web scraper?
    2 projects | /r/cpp_questions | 10 Aug 2022
  • A note from our sponsor - SaaSHub
    www.saashub.com | 16 Aug 2026
    SaaSHub helps you find the best software and product alternatives Learn more →

Stats

Basic cpr repo stats
22
7,402
7.3
21 days ago

libcpr/cpr is an open source project licensed under GNU General Public License v3.0 or later which is an OSI approved license.

The primary programming language of cpr is C++.


Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com