what is similar to requests in python sdk to C++ sdk #2797
-
Hello, I am new to AWS sdk. we have a plugin written in C++. we have a sample in python, need to write same like in c++ (both - aws sdk) in python, i came across requests module to post and get some details with url and some parameters. i am looking for the same module in c++ sdk. please suggest if anyone came across. Regards, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Ah i take this is related to issues/2802. there is two questions here
C++ like python has http clients, if you are looking for one that is like python requests i would recommend curl for people which in its description it says
which cloud storage? S3? if so you can see some examples on how use S3 in the doc examples project. IF you plan on calling S3 you should use the SDK client and NOT curl for people |
Beta Was this translation helpful? Give feedback.
Ah i take this is related to issues/2802. there is two questions here
C++ like python has http clients, if you are looking for one that is like python requests i would recommend curl for people which in its description it says
C++ Requests is a simple wrapper around [libcurl](http://curl.haxx.se/libcurl) inspired by the excellent [Python Requests](https://github.com/kennethreitz/requests) project.
which cloud storage? S3? if so you can see some examples on how use S3 in the doc examples project.