Skip to content

alexgtn/spacex-api-wrapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SpaceX API wrapper written in Rust

SpaceX-API-Wrapper Crate GitHub issues GitHub stars GitHub license

API Reference

See the full API reference here

Installation

Via cargo, add this to your project's Cargo.toml:

[dependencies]
spacex-api-wrapper = "0.2.0"

Usage example

extern crate spacex_api_wrapper;
use spacex_api_wrapper::SpaceXAPI;

let spacex_api = SpaceXAPI::default();
spacex_api.get_company_info()
    .wait()
    .map(|mut b| {
        println!("{:?}", b.text());
    });

About

SpaceX API wrapper written in Rust

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages