#booru #basic-authentication #szurubooru #image-host

szurubooru-client

A wrapper around the Szurubooru API, including type-safe Query and Sort tokens

10 releases (4 breaking)

0.6.2 Sep 6, 2024
0.6.1 Sep 6, 2024
0.5.0 Sep 6, 2024
0.3.0 Aug 11, 2024
0.1.1 Aug 10, 2024

#502 in Web programming

Download history 354/week @ 2024-08-09 26/week @ 2024-08-16 480/week @ 2024-09-06

512 downloads per month

MIT license

295KB
5K SLoC

szurubooru-client

SzurubooruClient is a wrapper around the excellently-documented Szurubooru API, including type-safe (if not API-safe) Query and Sort tokens.

Creating a new client

Basic authentication

Please keep in mind that this is not the preferred method of authentication. Tokens are far superior.

use szurubooru_client::SzurubooruClient;
let client = SzurubooruClient::new_with_basic_auth("http://localhost:5001", "myuser",
    "mypassword", true).unwrap();

Token authentication

The far superior and more secure means of authentication

use szurubooru_client::SzurubooruClient;
let client = SzurubooruClient::new_with_token("http://localhost:5001", "myuser", "sz-123456", true).unwrap();

For all other methods for making the requests, see the documentation.


lib.rs:

SzurubooruClient is a wrapper around the excellently-documented Szurubooru API, including type-safe (if not API-safe) Query and Sort tokens.

Creating a new client

Basic authentication

Please keep in mind that this is not the preferred method of authentication. Tokens are far superior.

use szurubooru_client::SzurubooruClient;
let client = SzurubooruClient::new_with_basic_auth("http://localhost:5001", "myuser",
    "mypassword", true).unwrap();

Token authentication

The far superior and more secure means of authentication

use szurubooru_client::SzurubooruClient;
let client = SzurubooruClient::new_with_token("http://localhost:5001", "myuser", "sz-123456", true).unwrap();

For all other methods for making the requests, see the documentation.

Dependencies

~8–23MB
~392K SLoC