awscurl

Crates.ioawscurl
lib.rsawscurl
version0.1.0
sourcesrc
created_at2023-04-14 23:33:24.963014
updated_at2023-04-14 23:33:24.963014
descriptionhttps/mqtt API for AWS
homepage
repositoryhttps://github.com/nalchevanidze/awscurl
max_upload_size
id839578
size40,509
David Nalchevanidze (nalchevanidze)

documentation

README

AWSCurl

Provides an https/mqtt API for AWS. is inspired by awscurl, but does not provide a CLI, only an API for similar functions.

Example

use awscurl::{AWSCurl, AWSProfile, Method};

fn main() {
    let profile = AWSProfile::from_env().expect("can't read aws credentials");
    let awscurl = AWSCurl::new(&profile);
    awscurl.http_request(&Method::GET, "https://blog.com/users")
        .expect("can't fetch users");
}
Commit count: 10

cargo fmt