| Crates.io | esix |
| lib.rs | esix |
| version | 0.1.1 |
| created_at | 2025-01-24 20:33:47.426157+00 |
| updated_at | 2025-01-24 20:48:24.406076+00 |
| description | A simple wrapper of the e621 API |
| homepage | https://github.com/Alekuso/esix |
| repository | https://github.com/Alekuso/esix |
| max_upload_size | |
| id | 1529929 |
| size | 47,636 |
Esix is a simple wrapper for the e621 API in Rust.
[dependencies]
esix = "0.1.1"
use esix::{error::Error, Esix};
fn main() -> Result<(), Error> {
let mut client = Esix::new(
"API_KEY",
"USERNAME",
"project_name".to_string(),
"project_version".to_string(),
);
let posts = client.list("rating:safe", 1)?;
for post in posts {
println!("{:?}", post);
}
Ok(())
}
This crate is still in development and is not yet ready for production use.
It may include many bugs and missing features.
This project is licensed under the MIT license.
Please feel free to contribute to this project by opening a pull request.
You are responsible for any possible form of abuse with the e621 API.