Go to file
Leon Grünewald ad4a5789ee post.rs: Make sample and preview pub 2024-05-07 00:45:45 +02:00
src post.rs: Make sample and preview pub 2024-05-07 00:45:45 +02:00
.gitignore WIP posts parameter 2024-01-01 21:50:57 +01:00
Cargo.lock post.rs: Make sample and preview pub 2024-05-07 00:45:45 +02:00
Cargo.toml post.rs: Make sample and preview pub 2024-05-07 00:45:45 +02:00
README.md Add missing fields to single post and fix README example 2024-02-16 22:47:35 +01:00

README.md

r621

A simple e621 client using requwest.

Buy Me a Coffee at ko-fi.com

If you would like to contact me you can reach me via Telegram

Features

Implemented

  • Post
    • Listing

Missing

  • Post
    • Create
    • Update
    • Flag
    • Vote
    • Favorite
  • Favorites
    • Listing
    • Create
    • Delete
  • Tags
    • Listing
  • Tag Aliases
    • Listing
  • Tag Implications
    • Listing
  • Notes
    • Listing
    • Create
    • Update
  • Pools
    • Listing
    • Create
    • Update
    • Revert

Example Usage

use r621::client::{Authentication, Client};
use r621::post::Post;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    let user_agent = "MyProject/1.0 (by username on e621)";
    let auth = Authentication::Authorized {
        username: "hexerade",
        apikey: "1nHrmzmsvJf26EhU1F7CjnjC"
    };
    
    let mut esix_client = Client::new(auth, user_agent);
    let posts = esix_client.list_posts(None, Some(String::from("lucario")), None).await?;
}