9 unstable releases (3 breaking)

0.7.0 Jul 19, 2023
0.7.0-rc.1 Jun 12, 2023
0.3.0 Mar 31, 2023
0.2.1 Nov 18, 2022
0.1.1 Sep 23, 2021

#1970 in Web programming

Download history 23/week @ 2024-01-07 32/week @ 2024-01-14 53/week @ 2024-01-21 31/week @ 2024-02-18 26/week @ 2024-02-25 10/week @ 2024-03-03 82/week @ 2024-03-10 9/week @ 2024-03-17 38/week @ 2024-03-31 52/week @ 2024-04-07 23/week @ 2024-04-14 13/week @ 2024-04-21

126 downloads per month

MIT license

260KB
5.5K SLoC

shipbob

A fully generated, opinionated API client library for ShipBob.

docs.rs

API Details

ShipBob Developer API Documentation

Authentication

Client Details

This client is generated from the ShipBob OpenAPI specs based on API spec version 1.0. This way it will remain up to date as features are added. The documentation for the crate is generated along with the code to make this library easy to use.

To install the library, add the following to your Cargo.toml file.

[dependencies]
shipbob = "0.7.0"

Basic example

Typical use will require intializing a Client. This requires a user agent string and set of credentials.

use shipbob::Client;

let shipbob = Client::new(
    String::from("api-key"),
);

Alternatively, the library can search for most of the variables required for the client in the environment:

  • SHIPBOB_API_KEY

And then you can create a client from the environment.

use shipbob::Client;

let shipbob = Client::new_from_env();

Dependencies

~16–35MB
~628K SLoC