Crates.io | giphy-api |
lib.rs | giphy-api |
version | 0.7.0 |
source | src |
created_at | 2020-07-09 23:09:02.917266 |
updated_at | 2023-07-19 18:18:06.579146 |
description | A fully generated & opinionated API client for the Giphy API. |
homepage | |
repository | https://github.com/oxidecomputer/third-party-api-clients/tree/main/giphy |
max_upload_size | |
id | 263045 |
size | 80,613 |
giphy-api
A fully generated, opinionated API client library for Giphy.
Giphy API
support@giphy.com |
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"
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();