-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,56 @@ | ||
//! This crate is an unofficial implementation of the [Imgur](https://imgur.com) API in Rust. | ||
//! | ||
//! # Installation | ||
//! | ||
//! ## Requirements | ||
//! - Rust 1.58 (earlier versions are not tested (only the latest stable version is tested!)) | ||
//! - Network connection | ||
//! | ||
//! ## Importing | ||
//! The driver is available on [crates.io](https://crates.io/crates/imgurs). To use the driver in | ||
//! your application, simply add it to your project's `Cargo.toml`. | ||
//! ```toml | ||
//! [dependencies] | ||
//! imgurs = "0.7.0" | ||
//! ``` | ||
//! | ||
//! # Example Usage | ||
//! | ||
//! ## Create new ImgurClient | ||
//! ``` | ||
//! use imgurs::ImgurClient; | ||
//! | ||
//! let client = ImgurClient::new("client id"); | ||
//! ``` | ||
//! | ||
//! ## Image Upload | ||
//! ``` | ||
//! // From URL | ||
//! let info = client.upload_image("https://cdn.magicuser.cf/lFaGr1x.png").await? | ||
//! | ||
//! // From File | ||
//! let info = client.upload_image("path/to/image.png").await? | ||
//! ``` | ||
//! | ||
//! ## Delete Image | ||
//! ``` | ||
//! client.delete_image("SuPeRsEcReTDeLeTeHaSh").await? // delete hash | ||
//! ``` | ||
//! | ||
//! ## Get Image Info | ||
//! ``` | ||
//! let info = client.image_info("lFaGr1x").await? // image id | ||
//! | ||
//! println!("{:?}", info) | ||
//! ``` | ||
//! | ||
//! ## Get Client RateLimit | ||
//! ``` | ||
//! let info = client.rate_limit.await? | ||
//! | ||
//! println!("{:?}", info) | ||
//! ``` | ||
mod api; | ||
|
||
pub use api::*; |