11 unstable releases (3 breaking)

0.7.0 Jul 19, 2023
0.7.0-rc.1 Jun 12, 2023
0.4.0 Mar 31, 2023
0.3.1 Nov 18, 2022
0.1.3 Jul 10, 2020

#2131 in Web programming

MIT license

81KB
1.5K SLoC

giphy-api

A fully generated, opinionated API client library for Giphy.

docs.rs

API Details

Giphy API

API Terms of Service

Contact

email
support@giphy.com

Client Details

This client is generated from the Giphy 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]
giphy-api = "0.7.0"

Basic example

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

use giphy_api::Client;

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

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

  • GIPHY_API_KEY

And then you can create a client from the environment.

use giphy_api::Client;

let giphy = Client::new_from_env();

Dependencies

~16–33MB
~625K SLoC